@charset "UTF-8";
/* ::::::::::::::::: */
/* ::::: reset ::::: */
/* ::::::::::::::::: */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

main {
  display: block;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

input[type="text"] {
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type="email"] {
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type="tel"] {
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

blockquote,
q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
  min-height: 1%;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.clear {
  clear: both;
}

/* :::::::::::::::::: */
/* ::::: common ::::: */
/* :::::::::::::::::: */
* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0 auto;
  background-color: #3c3e4e;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* sp font-size : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 2.14;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}

section {
  position: relative;
  padding: 64px 0;
}
@media screen and (min-width: 768px), print {
  section {
    padding: 100px 0 140px 0;
  }
}

@media screen and (min-width: 768px), print {
  section:first-child {
    padding-top: 140px;
  }
}

a {
  color: #fff;
  cursor: pointer;
}

a:hover {
  color: #b44343;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
}

.ani_load_fadeIn,
.ani_load_fadeUp_s,
.ani_load_fadeDown,
.ani_scroll_fadeUp,
.ani_scroll_fadeDown,
.ani_scroll_fadeLeft,
.ani_scroll_fadeRight,
.ani_scroll_scaleUp {
  opacity: 0;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-200px);
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    -o-transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-200px);
    -webkit-transform: translateY(-200px);
    -moz-transform: translateY(-200px);
    -ms-transform: translateY(-200px);
    -o-transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.fadeDown_delay {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-0.5em);
    -webkit-transform: translateY(-0.5em);
    -moz-transform: translateY(-0.5em);
    -ms-transform: translateY(-0.5em);
    -o-transform: translateY(-0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.fadeUp_s {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}
.scaleUp {
  -webkit-animation-name: scaleUpAnime;
  animation-name: scaleUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes scaleUpAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

@keyframes scaleUpAnime {
  from {
    opacity: 0;
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
/* :::::::::::::::::: */
/* ::::: helper ::::: */
/* :::::::::::::::::: */
.hp_inlineBlock {
  display: inline-block;
}

.hp_indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

.hp_ol li {
  margin-left: 1.5em;
  list-style: decimal;
}
.hp_ol li::marker {
  font-weight: 500;
  color: #fff;
}

.hp_ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.hp_ul li::before {
  content: "・";
}

.hp_onlySp {
  display: block;
}
@media screen and (min-width: 992px), print {
  .hp_onlySp {
    display: none;
  }
}

.hp_onlyPc {
  display: none;
}
@media screen and (min-width: 992px), print {
  .hp_onlyPc {
    display: block;
  }
}

.hp_bg_defaultColor {
  background-color: #3c3e4e;
}

.hp_bg_subColor {
  background-color: #3c3e4e;
}

.hp_textCenter {
  text-align: center;
}

.hp_textRight {
  text-align: right;
}

.hp_textLeft {
  text-align: left;
}

.hp_textCapitalize {
  text-transform: capitalize;
}

.hp_textUppercase {
  text-transform: uppercase;
}

.hp_textBold {
  font-weight: 700;
}

.hp_textHeavy {
  font-weight: 900;
}

.hp_textUnderLine {
  text-decoration: underline;
}

.hp_textLink,
.hp_textLink span {
  font-weight: 600;
}

.hp_textLink i {
  display: inline;
  padding: 0 4px;
}

.hp_textLink:hover {
  color: #b44343;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.hp_fontNotoSerifJp {
  font-family: "Noto Serif JP", serif;
}

.hp_mt1em {
  margin-top: 1em;
}

.hp_mt12 {
  margin-top: 12px;
}

.hp_mt24 {
  margin-top: 24px;
}

.hp_mt32 {
  margin-top: 32px;
}

.hp_mt40 {
  margin-top: 40px;
}

.hp_mt50 {
  margin-top: 50px;
}

.hp_pt12 {
  padding-top: 12px;
}

@media screen and (min-width: 992px), print {
  .hp_formContact_pt12 {
    padding-top: 12px;
  }
}

/* :::::::::::::::::: */
/* ::::: layout ::::: */
/* :::::::::::::::::: */
.ly_inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (min-width: 1200px), print {
  .ly_innerCompany {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 20px;
  }
}

@media screen and (min-width: 768px), print {
  .ly_footer {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.ly_videoArea {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.ly_video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.ly_btnVideo {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 576px), print {
  .ly_btnVideo {
    bottom: 16%;
  }
}

.ly_topAbout {
  width: 100%;
}

.ly_topAbout_item {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .ly_topAbout {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
  }
  .ly_topAbout_item {
    display: inline-block;
    width: 50%;
    flex-basis: 50%;
  }
}
.ly_topService_wrapper {
  position: relative;
}

.ly_topService_ImgL {
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 576px), print {
  .ly_topService_ImgL {
    width: 114px;
  }
}

.ly_topService_ImgR {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
}
@media screen and (min-width: 992px), print {
  .ly_topService_ImgR {
    display: inline-block;
    width: 56%;
    height: 100%;
  }
}

@media screen and (min-width: 992px), print {
  _::-webkit-full-page-media,
  _:future,
  :root .ly_topService_ImgR {
    width: 500px;
    left: 460px;
  }
}
@media screen and (min-width: 1080px) {
  _::-webkit-full-page-media,
  _:future,
  :root .ly_topService_ImgR {
    width: 560px;
  }
}
@media screen and (min-width: 1140px) {
  _::-webkit-full-page-media,
  _:future,
  :root .ly_topService_ImgR {
    width: 638px;
  }
}
@media screen and (min-width: 1200px), print {
  _::-webkit-full-page-media,
  _:future,
  :root .ly_topService_ImgR {
    width: 638px;
    left: 500px;
  }
}

@media screen and (min-width: 992px), print {
  .ly_topCta {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
  }
  .ly_topCta_item {
    display: inline-block;
    flex-basis: 490px;
  }
}
@media screen and (min-width: 1200px), print {
  .ly_mainContainer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    row-gap: 102px;
  }
}

.ly_mainContainer_side {
  display: none;
}
@media screen and (min-width: 1200px), print {
  .ly_mainContainer_side {
    display: inline-block;
    flex-basis: 204px;
    padding-top: 140px;
  }
}

@media screen and (min-width: 1200px), print {
  .ly_mainContainer_main {
    display: inline-block;
    flex-basis: calc(100% - 204px - 102px);
  }
}

@media screen and (min-width: 768px), print {
  .ly_mediaStrength {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
  }
}

.ly_mediaStrength_item {
  display: block;
}
@media screen and (min-width: 768px), print {
  .ly_mediaStrength_item {
    display: inline-block;
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px), print {
  .ly_feature {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.ly_products {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 576px), print {
  .ly_products {
    width: 80%;
  }
}
@media screen and (min-width: 768px), print {
  .ly_products {
    width: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .ly_product {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.ly_product:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px), print {
  .ly_product:not(:last-of-type) {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px), print {
  .ly_productImage {
    display: inline-block;
    width: 36%;
    flex-basis: 36%;
  }
}

.ly_productDetail_wrapper {
  margin-top: 20px;
}
@media screen and (min-width: 768px), print {
  .ly_productDetail_wrapper {
    display: inline-block;
    margin-top: 0;
    width: 60%;
    flex-basis: 60%;
  }
}

.ly_productDetail {
  display: flex;
  margin-top: 16pt;
}

.ly_productDetail_ttl {
  flex-basis: 68px;
}

.ly_productDetail_detail {
  flex-basis: calc(100% - 68px);
}

@media screen and (min-width: 768px), print {
  .ly_featureDetail {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.ly_featureDetail_img {
  display: block;
  width: 200px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px), print {
  .ly_featureDetail_img {
    display: inline-block;
    flex-basis: 166px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px), print {
  .ly_featureDetail_text {
    flex-basis: calc(100% - 166px - 40px);
  }
}

.ly_cardLineUp {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  row-gap: 44px;
}
@media screen and (min-width: 576px), print {
  .ly_cardLineUp {
    width: 80%;
  }
}
@media screen and (min-width: 768px), print {
  .ly_cardLineUp {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.ly_cardLineUp_item {
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .ly_cardLineUp_item {
    width: 48%;
  }
}

.ly_recruit_videoArea {
  position: relative;
  width: 100%;
  height: 55.63%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .ly_recruit_videoArea {
    width: 80%;
  }
}

.ly_recruit_video {
  width: 100%;
  height: 100%;
}

.ly_recruit_btnVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  -o-transform: translate(-50%, -100%);
}

.ly_interview_item {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .ly_interview_item {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px), print {
  .ly_interview_item {
    width: 100%;
  }
}
@media screen and (min-width: 992px), print {
  .ly_interview_item::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: calc(21.4% + 48px);
    height: 88%;
    top: -40px;
    left: 0;
    z-index: 1;
    background-size: cover;
  }
}
@media screen and (min-width: 1200px), print {
  .ly_interview_item::before {
    height: 98%;
  }
}

@media screen and (min-width: 992px), print {
  .ly_interview_item:nth-child(even)::before {
    left: auto;
    right: 0;
  }
}

@media screen and (min-width: 992px), print {
  .ly_interview_item:nth-of-type(1)::before {
    background-image: url(images/recruit_interview01.jpg);
    background-position: center 60%;
  }
  .ly_interview_item:nth-of-type(2)::before {
    background-image: url(images/recruit_interview02.jpg);
    background-position: center 51%;
  }
  .ly_interview_item:nth-of-type(3)::before {
    background-image: url(images/recruit_interview03.jpg);
    background-position: center 60%;
  }
}
.ly_interview_item:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .ly_interview_item:not(:first-of-type) {
    margin-top: 104px;
  }
}

.ly_interview_img {
  display: block;
  width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 992px), print {
  .ly_interview_img {
    display: none;
  }
}

.ly_interview_text {
  margin: 20px auto 0;
}
@media screen and (min-width: 992px), print {
  .ly_interview_text {
    width: 78.6%;
    margin: 48px 0 0 21.4%;
  }
}

@media screen and (min-width: 992px), print {
  .ly_interview_item:nth-child(even) .ly_interview_text {
    width: 78.6%;
    margin: 48px 21.4% 0 0;
  }
}

@media screen and (min-width: 768px), print {
  .ly_companyAccess {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1200px), print {
  .ly_companyAccess {
    width: 100%;
    display: block;
  }
}

@media screen and (min-width: 768px), print {
  .ly_companyAccess_map {
    display: inline-block;
    flex-basis: 54%;
  }
}

@media screen and (min-width: 768px), print {
  .ly_companyAccess_text {
    display: inline-block;
    flex-basis: 38%;
  }
}

.ly_historyItem {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.ly_history_year {
  display: inline-block;
  flex-basis: 120px;
}
@media screen and (min-width: 768px), print {
  .ly_history_year {
    flex-basis: 158px;
  }
}

.ly_history_detail_wrapper {
  display: inline-block;
  flex-basis: calc(100% - 120px);
}
@media screen and (min-width: 768px), print {
  .ly_history_detail_wrapper {
    flex-basis: calc(100% - 158px);
  }
}

/* :::::::::::::::::: */
/* :::: elements :::: */
/* :::::::::::::::::: */
.el_scroll {
  position: absolute;
  writing-mode: vertical-rl;
  bottom: 100px;
  left: 20px;
  line-height: 1.42;
  letter-spacing: 0.1em;
  /*font-size   : calc(13 / 16 * 1rem) */
  font-size: 0.8125rem;
  font-family: "Noto Serif JP", serif;
  /*font-size: calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
  font-weight: 500;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 1200px), print {
  .el_scroll {
    left: 80px;
  }
}

.el_scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  right: 50%;
  bottom: -115px;
  transform: translateX(-50%);
  width: 1px;
  height: 100px;
  animation: el_scroll 1.5s infinite;
  -webkit-animation: el_scroll 1.5s infinite;
}

@-webkit-keyframes el_scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}

@keyframes el_scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}
.el_line__beforePrimary,
.el_line__beforeSecondary {
  position: relative;
  border-top: 1px solid #fff;
}
.el_line__beforePrimary:before,
.el_line__beforeSecondary:before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 1px;
  left: 0;
  top: -1px;
  z-index: 1;
}
.el_line__beforePrimary:before {
  width: 94px;
  background-color: #b44343;
}
.el_line__beforeSecondary:before {
  width: 94px;
  background-color: #818393;
}

.el_link {
  display: inline-block;
  position: relative;
  padding: 0 8px 10px 36px;
  border-bottom: 2px solid #b44343;
  /* font-size : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
  font-family: "Noto Serif JP", serif;
  text-transform: capitalize;
}
.el_link:before {
  display: inline-block;
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  top: calc(50% - 10px);
  left: 9px;
  background-color: #b44343;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.el_link__topAbout {
  margin-top: 150px;
}
.el_link__topService {
  margin-top: 64px;
  margin-left: 20px;
}
@media screen and (min-width: 576px), print {
  .el_link__topService {
    margin-left: 40px;
  }
}
@media screen and (min-width: 992px), print {
  .el_link__topService {
    margin-left: 60px;
  }
}
.el_link__topRecruit {
  margin-top: 62px;
}

.el_verticalLine {
  border-left: 2px solid #b44343;
}

.el_require {
  /* font-size: calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
  margin-left: 16px;
  padding: 0 6px;
  background-color: #b44343;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}

.el_radio {
  accent-color: #b44343;
  inline-size: 1rem;
  block-size: 1rem;
}

.el_checkbox {
  accent-color: #b44343;
  inline-size: 1rem;
  block-size: 1rem;
}

.el_comment {
  /*font-size   : calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
  line-height: 1.5;
  color: #b4b6c7;
}

.el_btnSubmit {
  display: inline-block;
  position: relative;
  padding: 16px 150px 16px 36px;
  background-color: #b44343;
  /*font-size     : calc(16 / 16 * 1rem) */
  font-size: 1rem;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  border-radius: 28px;
  -webkit-border-radius: 28px;
  -moz-border-radius: 28px;
  -ms-border-radius: 28px;
  -o-border-radius: 28px;
}
.el_btnSubmit__dot::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  right: 26px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.el_btnSubmit:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.el_btnSubmit:hover__dot:after {
  opacity: 0.8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

/* ::::::::::::::::::: */
/* ::::: modules ::::: */
/* ::::::::::::::::::: */
.bl_loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #34375c;
  z-index: 200;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_loading_text {
  display: none;
}

.openbtn {
  position: relative;
  position: fixed;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  margin-right: 0;
  margin-left: auto;
  z-index: 400;
  cursor: pointer;
  background: transparent;
}

.openbtn span {
  display: inline-block;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.openbtn span:nth-of-type(1) {
  top: 22px;
  width: 50%;
}

.openbtn span:nth-of-type(2) {
  top: 29px;
  width: 30%;
}

.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}

.openbtn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  width: 35%;
  transform: translateY(-6px) rotate(45deg);
}

.bl_gNav_wrapper {
  display: none;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 96px 20px 20px;
  left: 50%;
  z-index: 300;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 992px), print {
  .bl_gNav_wrapper {
    z-index: 100;
  }
}
.bl_gNav_wrapper.panelactive {
  display: block;
  position: fixed;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.bl_gNav {
  line-height: 1.43;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.bl_gNav_title {
  width: 210px;
  margin: 0 auto;
}
@media screen and (min-width: 992px), print {
  .bl_gNav_title {
    margin: 0;
  }
}

.bl_gNav_title a:hover {
  opacity: 0.8;
}

.bl_gNav_list {
  margin-top: 40px;
}

.bl_gNav_listItem:not(:first-of-type) {
  margin-top: 20px;
}

@media screen and (min-width: 992px), print {
  .openbtn {
    display: none;
  }
  .bl_gNav_wrapper {
    display: block;
    position: fixed;
    max-width: 1306px;
    height: auto;
    padding: 64px 20px 0;
    background-color: transparent;
  }
  .bl_gNav {
    display: flex;
    justify-content: space-between;
  }
  .bl_gNav_list {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }
  .bl_gNav_listItem {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
  .bl_gNav_listItem:not(:first-of-type) {
    margin-top: 0;
    margin-left: 32px;
  }
  .bl_gNav_listItem:last-of-type {
    position: relative;
    margin-left: 48px;
    padding-left: 26px;
  }
  .bl_gNav_listItem:last-of-type::before {
    display: inline-block;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    left: 0;
    background-color: #b44343;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
}
@media screen and (min-width: 1200px), print {
  .bl_gNav_wrapper {
    padding: 64px 51px 0 20px;
  }
}
.bl_topMv {
  position: relative;
  height: 100vh;
  height: 100svh;
  background-color: rgba(16, 16, 16, 0.35);
}

.bl_catchCopy {
  position: absolute;
  width: 100%;
  padding: 0 20px;
  top: 50%;
  left: 50%;
  z-index: 250;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
}

.bl_catchCopy_en {
  line-height: 1.43;
  font-family: "Noto Serif JP", serif;
  /*font-size: calc(28 / 16 * 1rem) */
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 576px), print {
  .bl_catchCopy_en {
    /*font-size: calc(48 / 16 * 1rem) */
    font-size: 3rem;
  }
}
@media screen and (min-width: 1400px), print {
  .bl_catchCopy_en {
    /*font-size: calc(60 / 16 * 1rem) */
    font-size: 3.75rem;
  }
}

.bl_catchCopy_ja {
  margin-top: 40px;
  line-height: 1.43;
  font-family: "Noto Serif JP", serif;
  /*font-size: calc(20 / 16 * 1rem) */
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 576px), print {
  .bl_catchCopy_ja {
    /*font-size: calc(24 / 16 * 1rem) */
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1400px), print {
  .bl_catchCopy_ja {
    margin-top: 4px;
    /*font-size: calc(33 / 16 * 1rem) */
    font-size: 2.0625rem;
  }
}

.bl_btnVideo {
  position: relative;
  display: inline-block;
  width: 234px;
}

.bl_btnPlay {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.7);
}
.bl_btnPlay:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.bl_btnPlay a {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  width: 232px;
  height: 51px;
  padding: 2px 13px 2px 33px;
  font-family: "Noto Serif JP", serif;
  /*font-size: calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #34375c;
  text-align: left;
}

.bl_btnPlay a span {
  display: inline-block;
}

.bl_btnPlay_icon {
  display: inline-block;
}

.bl_topAbout_sect {
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .bl_topAbout_sect {
    padding: 180px 0 85px;
  }
}

.bl_topAbout_wrapper {
  position: relative;
}

.bl_topAbout_item:first-of-type {
  padding-top: 80px;
}
@media screen and (min-width: 768px), print {
  .bl_topAbout_item:first-of-type {
    padding-top: 0;
  }
}

.bl_topAbout_imgL {
  width: 120px;
  margin-bottom: -10px;
  margin-right: 6%;
  margin-left: 4%;
}
@media screen and (min-width: 400px), print {
  .bl_topAbout_imgL {
    width: 160px;
    margin-right: 5%;
    margin-left: 8%;
  }
}
@media screen and (min-width: 576px), print {
  .bl_topAbout_imgL {
    width: 205px;
    margin-right: 16%;
    margin-left: 10%;
  }
}
@media screen and (min-width: 768px), print {
  .bl_topAbout_imgL {
    width: 160px;
    margin-right: 5%;
    margin-left: 0;
  }
}
@media screen and (min-width: 992px), print {
  .bl_topAbout_imgL {
    width: 205px;
    margin-right: 10%;
  }
}
@media screen and (min-width: 1200px), print {
  .bl_topAbout_imgL {
    margin-right: 17%;
  }
}

.bl_topAbout {
  display: inline-block;
  width: 130px;
  text-align: left;
}

.bl_topAbout_textImg {
  position: absolute;
  display: inline-block;
  width: 100%;
  top: -40px;
}
@media screen and (min-width: 768px), print {
  .bl_topAbout_textImg {
    width: 55%;
  }
}

.bl_topAbout_ttl {
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  /*font-size: calc(28 / 16 * 1rem) */
  font-size: 1.75rem;
  text-align: left;
}
@media screen and (min-width: 576px), print {
  .bl_topAbout_ttl {
    /*font-size: calc(36 / 16 * 1rem) */
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px), print {
  .bl_topAbout_ttl {
    line-height: 1.1;
    /*font-size: calc(45 / 16 * 1rem) */
    font-size: 2.8125rem;
  }
}

.bl_topAbout_ttl span {
  display: block;
  margin-top: 1.5em;
}

.bl_topAbout_item:last-of-type {
  margin-top: 80px;
}
@media screen and (min-width: 768px), print {
  .bl_topAbout_item:last-of-type {
    margin-top: 0;
  }
}

.bl_topAbout_imgR {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.bl_topAbout_imgR:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(images/top_about2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .bl_topAbout_imgR {
    padding-top: 78.7719298246%;
  }
  .bl_topAbout_imgR:after {
    width: 50vw;
  }
}
.bl_topAbout_text {
  margin-top: 40px;
  /*font-size: calc(16 / 16 * 1rem) */
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.bl_topService_sect {
  padding: 80px 0;
  background-color: rgba(52, 55, 92, 0.8);
}
@media screen and (min-width: 992px), print {
  .bl_topService_sect {
    padding-top: 180px;
    padding-bottom: 164px;
  }
}

.bl_topService {
  /*font-size: calc(16 / 16 * 1rem) */
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 992px), print {
  .bl_topService {
    padding: 74px 0;
  }
}

.bl_topService_ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.425;
  /*font-size: calc(24 / 16 * 1rem) */
  font-size: 1.5rem;
}
@media screen and (min-width: 576px), print {
  .bl_topService_ttl {
    /*font-size: calc(32 / 16 * 1rem) */
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .bl_topService_ttl {
    /*font-size: calc(40 / 16 * 1rem) */
    font-size: 2.5rem;
  }
}

.bl_topService_text {
  margin-top: 30px;
  padding-left: 20px;
}
@media screen and (min-width: 576px), print {
  .bl_topService_text {
    padding-left: 40px;
  }
}

.bl_topService_textImg {
  margin-top: -60px;
}
@media screen and (min-width: 576px), print {
  .bl_topService_textImg {
    margin-top: 22px;
  }
}

.bl_topService_spImg {
  display: block;
  width: 90%;
  margin: 64px auto 0;
}
@media screen and (min-width: 576px), print {
  .bl_topService_spImg {
    width: 70%;
  }
}
@media screen and (min-width: 992px), print {
  .bl_topService_spImg {
    display: none;
  }
}

.bl_topRecruit_sect {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(images/top_recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 65% top;
}
@media screen and (min-width: 768px), print {
  .bl_topRecruit_sect {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

.bl_topRecruit_wrapper {
  position: relative;
  padding-top: 120px;
}
@media screen and (min-width: 768px), print {
  .bl_topRecruit_wrapper {
    width: 526px;
    margin-left: auto;
    padding-top: 0;
  }
}

.bl_topRecruit {
  /*font-size : calc(16 / 16 * 1rem) */
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 1;
}

.bl_topRecruit_ttl {
  margin: 0 auto;
  line-height: 1.1;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: left;
  /*font-size: calc(28 / 16 * 1rem) */
  font-size: 1.75rem;
}
@media screen and (min-width: 576px), print {
  .bl_topRecruit_ttl {
    /*font-size: calc(36 / 16 * 1rem) */
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px), print {
  .bl_topRecruit_ttl {
    /*font-size: calc(57 / 16 * 1rem) */
    font-size: 3.5625rem;
  }
}

.bl_topRecruit_ttl span {
  display: block;
  margin-top: 2.5em;
}

.bl_topRecruit_text {
  text-align: left;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px), print {
  .bl_topRecruit_text {
    width: 73%;
  }
}

.bl_topRecruit_textImg {
  position: absolute;
  display: inline-block;
  width: 100%;
  top: -60px;
}
@media screen and (min-width: 992px), print {
  .bl_topRecruit_textImg {
    top: 18px;
  }
}

@media screen and (min-width: 768px), print {
  .bl_topCta_sect {
    padding: 140px 0 100px;
  }
}

.bl_topCta_item {
  line-height: 1.875;
  letter-spacing: 0.1em;
  /*font-size   : calc(16 / 16 * 1rem) */
  font-size: 1rem;
}

.bl_topCta_item a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 35px 40px 30px 40px;
}
@media screen and (min-width: 576px), print {
  .bl_topCta_item a {
    padding: 70px 80px 60px 80px;
  }
}

.bl_topCta_item a::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(images/bg_circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
}

.bl_topCta_item a:hover {
  color: #fff;
}
.bl_topCta_item a:hover::before {
  opacity: 1;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.bl_ttlCta_ja {
  position: relative;
  padding-left: 30px;
}
.bl_ttlCta_ja:before {
  display: inline-block;
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  top: calc(50% - 6px);
  left: 0;
  background-color: #b44343;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.bl_ttlCta_en {
  line-height: 1.43;
  /*font-size: calc(36 / 16 * 1rem) */
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-transform: capitalize;
}
@media screen and (min-width: 576px), print {
  .bl_ttlCta_en {
    /*font-size: calc(54 / 16 * 1rem) */
    font-size: 3.375rem;
  }
}

.bl_topCta_text {
  margin-top: 30px;
}

.bl_pageMv {
  padding-top: 144px;
  padding-bottom: 72px;
  background-repeat: no-repeat;
  background-size: cover;
}

.bl_pageMv_about {
  background-image: url(images/about_mv.jpg);
  background-position: 10% top;
}

.bl_pageMv_service {
  background-image: url(images/service_mv.jpg);
  background-position: center;
}

.bl_pageMv_recruit {
  background-image: url(images/recruit_mv.jpg);
  background-position: 25% top;
}

.bl_pageMv_company {
  background-image: url(images/company_mv.jpg);
  background-position: center 40%;
}

.bl_pageMv_contact {
  background-image: url(images/contact_mv.jpg);
  background-position: 30% top;
}

.bl_pageMv_privacy {
  background-image: url(images/privacy_mv.jpg);
  background-position: 30% top;
}

.bl_ttlPage {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
}

.bl_ttlPage_en {
  line-height: 1.44;
  /*font-size: calc(48 / 16 * 1rem) */
  font-size: 3rem;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.1em;
}

.bl_ttlPage_ja {
  position: relative;
  text-align: right;
}

.bl_ttlPage_jaText {
  padding-left: 32px;
  line-height: 1.45;
  /*font-size : calc(18 / 16 * 1rem) */
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px), print {
  .bl_pageMv {
    padding-top: 423px;
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 992px), print {
  .bl_ttlPage_en {
    /*font-size: calc(110 / 16 * 1rem) */
    font-size: 6.875rem;
  }
  .bl_ttlPage_jaText {
    /*font-size: calc(20 / 16 * 1rem) */
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
.bl_ttlSection {
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
}

.bl_ttlSection_en {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
  /*font-size : calc(20 / 16 * 1rem) */
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
}
.bl_ttlSection_en:before {
  display: inline-block;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 6px;
  background-color: #b44343;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.bl_ttlSection_ja {
  margin-top: 4px;
  line-height: 1.43;
  /*font-size: calc(28 / 16 * 1rem) */
  font-size: 1.75rem;
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  .bl_ttlSection_ja {
    /*font-size: calc(35 / 16 * 1rem) */
    font-size: 2.1875rem;
  }
}

.bl_pageNav {
  background-color: #dfe0ef;
  border-radius: 10px;
  font-family: "Noto Serif JP", serif;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.bl_pageNav_item:not(:last-of-type) {
  border-bottom: 1px solid #b4b6c7;
}

.bl_pageNav_item a {
  display: inline-block;
  position: relative;
  width: 100%;
  line-height: 62px;
  padding: 0 26px;
  font-weight: 600;
  color: #101010;
}

.bl_pageNav_item:first-of-type a {
  color: #b44343;
}

.bl_pageNav_dot {
  position: relative;
  display: inline-block;
}

.bl_pageNav_dot:after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  right: -20px;
  background-color: #b44343;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.bl_pageNav_item a:hover .bl_pageNav_dot:after {
  background-color: #101010;
  right: -30px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.bl_name_title {
  margin-top: 56px;
  line-height: 1.44;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  /*font-size   : calc(16 / 16 * 1rem) */
  font-size: 1rem;
  text-align: right;
}

.bl_name {
  line-height: 1.34;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  /*font-size   : calc(23 / 16 * 1rem) */
  font-size: 1.4375rem;
  text-align: right;
}

.ly_mediaStrength {
  margin-top: 56px;
}

.ly_mediaStrength_item:first-child {
  text-align: center;
}

.bl_strength_ttl {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 240px;
  background-image: url(images/about_strength1.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1200px), print {
  .bl_strength_ttl {
    width: 316px;
    height: 316px;
  }
}

.bl_strength_ttlText {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: auto;
  line-height: 1.44;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  /*font-size      : calc(24 / 16 * 1rem) */
  font-size: 1.5rem;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media screen and (min-width: 1200px), print {
  .bl_strength_ttlText {
    /*font-size      : calc(32 / 16 * 1rem) */
    font-size: 2rem;
  }
}

.bl_tableArea_Facilities {
  width: 100%;
  max-width: 854px;
}

.bl_tblFacilities {
  width: 854px;
  line-height: 2.5;
  border-collapse: collapse;
  background-color: #fff;
  /*font-size         : calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
  color: #101010;
}

.bl_tblFacilities th {
  padding: 6px 12px;
  line-height: 1.43;
  background-color: #818393;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  /*font-size      : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
  color: #fff;
}

.bl_tblFacilities th,
.bl_tblFacilities td {
  padding: 8px 12px;
  vertical-align: middle;
  border: solid 1px #707070;
}

.bl_tblFacilities tr th:nth-child(1),
.bl_tblFacilities tr td:nth-child(1) {
  width: 240px;
}

.bl_tblFacilities tr th:nth-child(2),
.bl_tblFacilities tr td:nth-child(2) {
  width: 92px;
  text-align: center;
}

.bl_tblFacilities tr th:nth-child(3),
.bl_tblFacilities tr td:nth-child(3) {
  width: 192px;
  text-align: center;
}

.bl_tblFacilities tr th:nth-child(4),
.bl_tblFacilities tr td:nth-child(4) {
  width: 74px;
  text-align: center;
}

.bl_tblFacilities tr th:nth-child(5),
.bl_tblFacilities tr td:nth-child(5) {
  width: 256px;
}

.bl_feature_item {
  padding: 40px 20px 56px 20px;
  background: linear-gradient(
    195deg,
    rgba(250, 250, 250, 0.26) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 23px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  -o-border-radius: 23px;
}
@media screen and (min-width: 576px), print {
  .bl_feature_item {
    padding: 40px 40px 56px 40px;
  }
}
@media screen and (min-width: 768px), print {
  .bl_feature_item {
    padding: 40px 54px 56px 46px;
  }
}

.bl_feature_item:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (min-width: 768px), print {
  .bl_feature_item:not(:first-of-type) {
    margin-top: 50px;
  }
}

.bl_feature_ttl {
  margin-bottom: 30px;
  padding-left: 14px;
  line-height: 1.44;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  /*font-size      : calc(18 / 16 * 1rem) */
  font-size: 1.125rem;
}
@media screen and (min-width: 768px), print {
  .bl_feature_ttl {
    /*font-size      : calc(25 / 16 * 1rem) */
    font-size: 1.5625rem;
  }
}

.bl_productName {
  padding: 8px 20px;
  line-height: 1.44;
  background-color: #b44343;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  /*font-size      : calc(18 / 16 * 1rem) */
  font-size: 1.125rem;
}

.bl_productDetail {
  padding: 0 20px;
}
@media screen and (min-width: 768px), print {
  .bl_productDetail {
    padding: 0 40px 0 20px;
  }
}

.bl_lineUp_ttl {
  margin-top: 16px;
  padding: 4px 4px 4px 22px;
  line-height: 1.45;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  /*font-size      : calc(18 / 16 * 1rem) */
  font-size: 1.125rem;
}
@media screen and (min-width: 768px), print {
  .bl_lineUp_ttl {
    /*font-size      : calc(20 / 16 * 1rem) */
    font-size: 1.25rem;
  }
}

.bl_recruitLead_sect {
  padding-bottom: 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .bl_recruitLead_sect {
    padding-bottom: 80px;
  }
}

.bl_recruitLead_ttl {
  position: relative;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  /*font-size      : calc(30 / 16 * 1rem) */
  font-size: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 576px), print {
  .bl_recruitLead_ttl {
    /*font-size      : calc(36 / 16 * 1rem) */
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 768px), print {
  .bl_recruitLead_ttl {
    line-height: 1.11;
    /*font-size      : calc(57 / 16 * 1rem) */
    font-size: 3.5625rem;
  }
}

.bl_recruitLead_ttl::after {
  content: "Beyond Tradition And Innovation.";
  position: absolute;
  display: inline-block;
  width: 1120px;
  height: 80px;
  line-height: 1;
  letter-spacing: 0.1em;
  /*font-size   : calc(56 / 16 * 1rem) */
  font-size: 3.5rem;
  color: #fff;
  text-align: left;
  opacity: 0.15;
  z-index: -1;
  bottom: 0;
  left: calc(50% - 50vw);
}
@media screen and (min-width: 768px), print {
  .bl_recruitLead_ttl::after {
    width: 2190px;
    height: 110px;
    /*font-size: calc(110 / 16 * 1rem) */
    font-size: 6.875rem;
    bottom: 20px;
  }
}
@media screen and (width >= 2184px) {
  .bl_recruitLead_ttl::after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
}

.bl_recruitLead_text {
  width: 80%;
  margin: 40px auto 0;
  line-height: 2;
  letter-spacing: 0.1em;
  /*font-size      : calc(16 / 16 * 1rem) */
  font-size: 1rem;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .bl_recruitLead_text {
    width: 572px;
    margin-top: 54px;
    line-height: 2.5;
    /*font-size      : calc(18 / 16 * 1rem) */
    font-size: 1.125rem;
    text-align: center;
  }
}

.bl_interview {
  margin-top: 100px;
}
@media screen and (min-width: 768px), print {
  .bl_interview {
    margin-top: 180px;
  }
}

.bl_interview_text {
  padding: 40px 20px;
  background: linear-gradient(
    195deg,
    rgba(250, 250, 250, 0.26) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 23px;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  -ms-border-radius: 23px;
  -o-border-radius: 23px;
}
@media screen and (min-width: 400px), print {
  .bl_interview_text {
    padding: 40px 40px;
  }
}
@media screen and (min-width: 992px), print {
  .bl_interview_text {
    padding: 40px 48px 14px 107px;
  }
}

@media screen and (min-width: 992px), print {
  .bl_interview_item:nth-child(even) .bl_interview_text {
    padding: 40px 116px 14px 68px;
  }
}

.bl_interview_lead {
  line-height: 1.44;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  /*font-size      : calc(16 / 16 * 1rem) */
  font-size: 1rem;
}
@media screen and (min-width: 400px), print {
  .bl_interview_lead {
    /*font-size      : calc(20 / 16 * 1rem) */
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 400px) and (min-width: 768px), print {
  .bl_interview_lead {
    /*font-size      : calc(25 / 16 * 1rem) */
    font-size: 1.5625rem;
  }
}

.bl_interview_name {
  position: relative;
  margin: 20px 0;
  padding-bottom: 10px;
  line-height: 1.44;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  /*font-size      : calc(16 / 16 * 1rem) */
  font-size: 1rem;
}
@media screen and (min-width: 768px), print {
  .bl_interview_name {
    /*font-size      : calc(18 / 16 * 1rem) */
    font-size: 1.125rem;
  }
}
.bl_interview_name span {
  margin-left: 24px;
  line-height: 1.43;
  /*font-size      : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
}

.bl_interview_name::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: calc(100% + 20px);
  height: 1px;
  background-color: #b44343;
  bottom: -1px;
  left: 0;
}
@media screen and (min-width: 400px), print {
  .bl_interview_name::after {
    width: calc(100% + 40px);
  }
}
@media screen and (min-width: 992px), print {
  .bl_interview_name::after {
    width: calc(100% + 48px);
  }
}

@media screen and (min-width: 992px), print {
  .bl_interview_item:nth-child(even) .bl_interview_name::after {
    width: calc(100% + 116px);
  }
}

.bl_interview_detail {
  line-height: 2;
}
.bl_interview_detail:not(:first-of-type) {
  margin-top: 1em;
}

@media screen and (min-width: 768px), print {
  .bl_recruitGallery_sect {
    padding: 50px 0 90px 0;
  }
}

.bl_tableArea_recruit {
  width: 100%;
  max-width: 900px;
}

.bl_tblRecruit {
  width: 900px;
  border-collapse: collapse;
  background-color: #fff;
  line-height: 2;
  /*font-size            : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
  color: #191919;
}

.bl_tblRecruit th {
  padding: 25px 15px;
  border: solid 1px #f2f2f2;
  background-color: #e6e6e6;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .bl_tblRecruit th {
    padding: 25px;
  }
}

.bl_tblRecruit td {
  padding: 25px 15px;
  border: solid 1px #f2f2f2;
}
@media screen and (min-width: 768px), print {
  .bl_tblRecruit td {
    padding: 25px;
  }
}
@media screen and (min-width: 992px), print {
  .bl_tblRecruit td {
    padding: 25px 50px;
  }
}

.bl_tblRecruit tr th:nth-child(1),
.bl_tblRecruit tr td:nth-child(1) {
  width: 140px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .bl_tblRecruit tr th:nth-child(1),
  .bl_tblRecruit tr td:nth-child(1) {
    width: 160px;
  }
}
@media screen and (min-width: 992px), print {
  .bl_tblRecruit tr th:nth-child(1),
  .bl_tblRecruit tr td:nth-child(1) {
    width: 208px;
  }
}

.bl_tblRecruit tr th:nth-child(2),
.bl_tblRecruit tr td:nth-child(2) {
  width: calc(100% - 140px);
}
@media screen and (min-width: 768px), print {
  .bl_tblRecruit tr th:nth-child(2),
  .bl_tblRecruit tr td:nth-child(2) {
    width: calc(100% - 160px);
  }
}
@media screen and (min-width: 992px), print {
  .bl_tblRecruit tr th:nth-child(2),
  .bl_tblRecruit tr td:nth-child(2) {
    width: calc(100% - 208px);
  }
}

.bl_recruitCta_sect {
  padding: 0 0 80px 0;
}

.bl_tableArea_profile {
  width: 100%;
}

.bl_tblProfile {
  width: 100%;
  margin: 0 auto;
  line-height: 1.67;
  border-collapse: collapse;
  font-weight: 500;
  /*font-size            : calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
}
@media screen and (min-width: 768px), print {
  .bl_tblProfile {
    width: 70%;
  }
}
@media screen and (min-width: 1200px), print {
  .bl_tblProfile {
    width: 100%;
  }
}

.bl_tblProfile th {
  padding: 18px 12px;
  line-height: 1.42;
  font-weight: 700;
  border-bottom: solid 1px #818393;
  width: 96px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .bl_tblProfile th {
    width: 164px;
    padding: 18px 40px;
  }
}

.bl_tblProfile td {
  padding: 18px 12px;
  border-bottom: solid 1px #fff;
  width: calc(100% - 96px);
}
@media screen and (min-width: 768px), print {
  .bl_tblProfile td {
    padding: 18px 40px;
    width: calc(100% - 164px);
  }
}

.bl_access_map {
  width: 100%;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px), print {
  .bl_access_map {
    aspect-ratio: 452/600;
  }
}

.bl_companyAccess_text {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .bl_companyAccess_text {
    text-align: left;
  }
}

.bl_access_name {
  margin-top: 40px;
  line-height: 1.44;
  font-weight: 500;
  /*font-size            : calc(18 / 16 * 1rem) */
  font-size: 1.25rem;
}
@media screen and (min-width: 1200px), print {
  .bl_access_name {
    /*font-size            : calc(18 / 16 * 1rem) */
    font-size: 1.5625rem;
  }
}

.bl_access_address {
  margin-top: 30px;
  line-height: 1.43;
  font-weight: 500;
  /*font-size            : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
}

.bl_history {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .bl_history {
    width: 70%;
  }
}
@media screen and (min-width: 1200px), print {
  .bl_history {
    width: 100%;
  }
}

.bl_history_year {
  line-height: 1.44;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  /*font-size            : calc(15 / 16 * 1rem) */
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px), print {
  .bl_history_year {
    /*font-size            : calc(18 / 16 * 1rem) */
    font-size: 1.125rem;
  }
}

.bl_history_detail_wrapper {
  position: relative;
  padding: 0 0 40px 20px;
  border-left: solid 1px #fff;
}
@media screen and (min-width: 768px), print {
  .bl_history_detail_wrapper {
    padding-left: 40px;
  }
}
.bl_history_detail_wrapper::before {
  display: inline-block;
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 10px;
  left: -5px;
  background-color: #b44343;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ly_historyItem:first-of-type .bl_history_detail_wrapper::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 3px;
  height: 10px;
  top: 0;
  left: -2px;
  background-color: #3c3e4e;
}

.ly_historyItem:last-of-type .bl_history_detail_wrapper {
  padding-bottom: 0;
}
.ly_historyItem:last-of-type .bl_history_detail_wrapper::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 3px;
  height: calc(100% - 10px - 10px);
  bottom: 0;
  left: -2px;
  background-color: #3c3e4e;
}

.bl_history_detail {
  line-height: 1.43;
  font-weight: 500;
  /*font-size            : calc(14 / 16 * 1rem) */
  font-size: 0.875rem;
}

.bl_formContact {
  width: 80%;
  max-width: 788px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.bl_formRow:not(:first-of-type) {
  margin-top: 24px;
}

.bl_formRow dt {
  display: block;
  margin-bottom: 8px;
}

.bl_formRow_title {
  padding-top: 12px;
  line-height: 1.33;
  letter-spacing: 0.1em;
  /*font-size   : calc(15 / 16 * 1rem) */
  font-size: 0.9375rem;
}

.select-wrapper,
.input-wrapper,
.inputFile-wrapper,
.radio-wrapper {
  display: block;
  width: 100%;
  background-color: #fff;
}

.radio-wrapper,
.inputFile-wrapper {
  background-color: transparent;
}

.bl_formContact input[type="text"],
.bl_formContact input[type="email"],
.bl_formContact input[type="tel"],
.bl_formContact textarea,
.bl_formContact select {
  width: 100%;
  padding: 12px 30px;
  /*font-size: calc(15 / 16 * 1rem) */
  font-size: 0.9375rem;
  line-height: 1.33;
  font-family: "Noto Sans JP", sans-serif;
  color: #1c1c1c;
}

.bl_formContact input[type="file"] {
  /*font-size: calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
  line-height: 1.67;
}

.bl_formContact input[type="text"]::-moz-placeholder,
.bl_formContact input[type="email"]::-moz-placeholder,
.bl_formContact input[type="tel"]::-moz-placeholder,
.bl_formContact textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
}

.bl_formContact input[type="text"]::placeholder,
.bl_formContact input[type="email"]::placeholder,
.bl_formContact input[type="tel"]::placeholder,
.bl_formContact textarea::placeholder,
.bl_formContact select {
  font-family: "Noto Sans JP", sans-serif;
}

.bl_formContact input[type="text"]::-moz-placeholder,
.bl_formContact input[type="email"]::-moz-placeholder,
.bl_formContact input[type="tel"]::-moz-placeholder,
.bl_formContact textarea::-moz-placeholder {
  color: #9b9a9a;
}

.bl_formContact input[type="text"]::placeholder,
.bl_formContact input[type="email"]::placeholder,
.bl_formContact input[type="tel"]::placeholder,
.bl_formContact textarea::placeholder {
  color: #9b9a9a;
}

.bl_formContact select {
  position: relative;
  z-index: 2;
}

.bl_formRow_kind .select-wrapper {
  max-width: 288px;
}

.bl_formContact .select-wrapper {
  position: relative;
}
.bl_formContact .select-wrapper:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 6px;
  top: calc(50% - 3px);
  right: 30px;
  z-index: 1;
  background-image: url(images/down_bk.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.bl_formContact input[type="radio"] {
  display: inline-block;
  margin-right: 10px;
}

.bl_formContact textarea {
  resize: vertical;
}

.address-wrapper .input-wrapper:first-of-type,
.address-wrapper .select-wrapper {
  width: 168px;
}

.address-wrapper .select-wrapper {
  margin-top: 24px;
}

.bl_formContact input[type="checkbox"] {
  margin-right: 12px;
}

.bl_formContact select:hover,
.bl_formContact input[type="radio"]:hover,
.bl_formContact label:hover,
.bl_formContact input[type="checkbox"]:hover,
.bl_formContact input[type="file"]:hover {
  cursor: pointer;
}

@media screen and (min-width: 992px), print {
  .bl_formRow {
    display: flex;
    justify-content: space-between;
  }
  .bl_formRow dt {
    display: inline-block;
    flex-basis: 227px;
  }
  .bl_formRow_title {
    display: inline-block;
    width: 168px;
    text-align: right;
  }
  .select-wrapper,
  .input-wrapper,
  .address-wrapper,
  .inputFile-wrapper,
  .radio-wrapper,
  .inputFile-wrapper {
    display: inline-block;
    flex-basis: calc(100% - 227px - 24px - 5px);
  }
  .bl_formRow_kind .select-wrapper {
    flex-basis: 288px;
    margin-right: calc(100% - 227px - 24px - 5px - 288px);
  }
  .address-wrapper .select-wrapper {
    margin-top: 0;
    margin-left: 18px;
  }
  .bl_formContact input[type="radio"] {
    display: inline-block;
  }
  .bl_formContact input[type="radio"]:not(:first-of-type) {
    margin-top: 0;
    margin-left: 24px;
  }
}
.bl_privacy_conainer {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.428;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.bl_privacy_ttl {
  line-height: 1.625;
  letter-spacing: 0.1em;
  font-weight: 700;
  /*font-size   : calc(18 / 16 * 1rem) */
  font-size: 1.125rem;
}

.bl_footer {
  padding: 48px 0 24px;
  border-top: 1px solid #b4b6c7;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .bl_footer {
    padding: 92px 0 95px 28px;
    text-align: left;
  }
}
.bl_footer_item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.bl_footer_item a:hover {
  opacity: 0.8;
}
.bl_footer_item a:hover .bl_footer_nameJa {
  color: #fff;
}

.bl_footer_logo {
  width: 240px;
}
@media screen and (min-width: 576px), print {
  .bl_footer_logo {
    width: 270px;
  }
}

.bl_footer_nameJa {
  line-height: 1.67;
  letter-spacing: 0.1em;
  /*font-size   : calc(18 / 16 * 1rem) */
  font-size: 1.125rem;
  font-weight: 700;
}

.bl_footer_Detail {
  margin-top: 24px;
  line-height: 1.79;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bl_footer_item:last-of-type {
  margin: 48px auto 0;
  line-height: 1.41;
  /*font-size: calc(12 / 16 * 1rem) */
  font-size: 0.75rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.bl_footer_item:last-of-type small:last-of-type {
  margin-top: 20px;
  display: block;
  width: 100%;
}
@media screen and (min-width: 576px), print {
  .bl_footer_item:last-of-type small:last-of-type {
    display: inline;
    margin-top: 0;
    margin-left: 30px;
  }
}

@media screen and (min-width: 768px), print {
  .bl_footer_item:first-of-type {
    margin: 0 auto 0 0;
  }
  .bl_footer_item:last-of-type {
    margin: 0 0 0 auto;
  }
}
/* :::::::::::::::::: */
/* ::::: helper ::::: */
/* :::::::::::::::::: */
.js-scrollable {
  overflow-x: scroll;
  margin: 0 auto;
}

.lity {
  background: rgba(0, 0, 0, 0.8);
}

.lity-close {
  top: 10px;
  right: 10px;
}

.bl_topMv {
  overflow: hidden;
}

.ly_fvanime {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  z-index: 1;
}

.ly_fvanime_item {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px), print {
  .ly_fvanime {
    width: 700px;
  }
}
@media screen and (max-width: 500px), print {
  .ly_fvanime {
    width: 500px;
  }
}

/*# sourceMappingURL=style.css.map */
