@charset "UTF-8";
@font-face {
  font-family: "ROLAchan";
  src: url("../font/ROLAchan/ROLAchan-Regular.otf");
}

@-webkit-keyframes circle {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    opacity: .3;
  }
  100% {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    opacity: .3;
  }
  100% {
    -webkit-transform: scale3d(1.2, 1.2, 1);
    transform: scale3d(1.2, 1.2, 1);
    opacity: 0;
  }
}

/*リセットCSS*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
}

:root {
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*全体*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #3e3e3e;
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.45;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/**  header  **/
@-webkit-keyframes header-line {
  0% {
    width: 0;
    height: 2px;
  }
  100% {
    width: 100%;
    height: 2px;
  }
}

@keyframes header-line {
  0% {
    width: 0;
    height: 2px;
  }
  100% {
    width: 100%;
    height: 2px;
  }
}

@-webkit-keyframes slide-up {
  0% {
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__img-wrapper {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  padding: 20px 50px;
  z-index: 1000;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    height: 80px;
    padding: 20px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  max-width: 1240px;
  height: 100%;
  width: 100%;
}

.header__inner.-login {
  align-items: center;
  height: auto;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

.header__logo-wrapper {
  height: 60px;
}

@media screen and (max-width: 768px) {
  .header__logo-wrapper {
    height: 40px;
  }
}

.header__logo-wrapper img {
  height: 100%;
}

.header__logo-ttl {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.45;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .header__logo-ttl {
    font-size: 2.8rem;
    line-height: 1.65;
  }
}

@media screen and (max-width: 768px) {
  .header__logo-ttl {
    font-size: 2.4rem;
    line-height: 1.45;
  }
}

.header-nav {
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header-nav {
    background: #fff;
    position: fixed;
    width: 250px;
    right: -250px;
    bottom: 0;
    top: 0;
    text-align: center;
    -webkit-transition: right .3s linear;
    -o-transition: right .3s linear;
    transition: right .3s linear;
    z-index: 1;
  }
}

.header-nav__hamburger-nav {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .header-nav__hamburger-nav {
    display: block;
    position: absolute;
    width: 32px;
    height: 22px;
    left: -54px;
    top: 20px;
    -webkit-transition: right .3s linear;
    -o-transition: right .3s linear;
    transition: right .3s linear;
    -webkit-transition: opacity 0.8s var(--easeOutCubic), transform 0.8s var(--easeOutCubic);
    transition: opacity 0.8s var(--easeOutCubic), transform 0.8s var(--easeOutCubic);
  }
}

.header-nav__nav-list {
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-align: center;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header-nav__nav-list {
    width: 100%;
    right: -100%;
    background: #fff;
    position: fixed;
    width: 100%;
    opacity: 0;
    padding-top: 20px;
    bottom: 0;
    top: 0;
    -webkit-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
    transition: opacity .3s linear;
    z-index: 1;
    display: block;
    text-align: left;
  }
}

.header-nav__nav-item {
  text-align: center;
  margin-left: 40px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .header-nav__nav-item {
    margin-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__nav-item {
    margin-top: 30px;
    margin-left: 0;
  }
}

.header-nav__nav-item a {
  color: #333;
  display: block;
  transition: color 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
  font-weight: 400;
  padding: .5em 0;
  letter-spacing: -.025em;
  z-index: 9998;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .header-nav__nav-item a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__nav-item a {
    font-size: 3rem;
    padding: 0;
    color: #fff;
  }
}

.header-nav__nav-item a:after {
  background: #333;
  position: absolute;
  content: '';
  bottom: 5px;
  left: 0;
  height: 2px;
  -webkit-transition: -webkit-transform .2s;
  -o-transition: transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  transition: -webkit-transform .2s;
  width: 0;
  z-index: -1;
}

.header-nav__nav-item a:hover:after {
  width: 100%;
  -webkit-animation: header-line .3s forwards;
  animation: header-line .3s forwards;
  content: '';
}

.header-nav__nav-item {
  -webkit-animation-timing-function: cubic-bezier(0, 0.56, 0.44, 1);
  animation-timing-function: cubic-bezier(0, 0.56, 0.44, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

.header-nav__nav-item:nth-of-type(1) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.header-nav__nav-item:nth-of-type(2) {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.header-nav__nav-item:nth-of-type(3) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.header-nav__nav-item:nth-of-type(4) {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

.header-nav__nav-item:nth-of-type(5) {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

.is_active .header-nav__nav-item {
  animation-duration: 1.2s;
}

.is_active .header-nav__nav-item {
  animation-name: fadeInUp;
}

@media screen and (max-width: 768px) {
  .is_active .header-nav__txt-open {
    display: none;
  }
  .is_active .header-nav__txt-close {
    display: block;
  }
  .is_active .bl_headerNav {
    right: 0;
  }
  /*hambueger*/
  .is_active .header-nav__nav-list {
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 90px 24px 0;
    opacity: 1;
    text-align: right;
    background-color: #000 !important;
    z-index: 1000;
  }
  .is_active .header-nav__hamburger-nav {
    top: 44px;
    left: -60px;
    z-index: 1001;
    opacity: 1;
  }
  .header-nav__hamburger-menu {
    background-color: #333;
    display: block;
    position: absolute;
    content: '';
    height: 3px;
    /*線の太さ*/
    width: 32px;
    /*長さ*/
    cursor: pointer;
    z-index: 9998;
  }
  .header-nav__hamburger-menu:before {
    background-color: #333;
    display: block;
    position: absolute;
    content: '';
    height: 3px;
    /*線の太さ*/
    width: 24px;
    margin-left: 8px;
    /*長さ*/
    cursor: pointer;
    z-index: 9998;
    -webkit-transition: opacity 0.8s var(--easeOutCubic), transform 0.8s var(--easeOutCubic);
    transition: opacity 0.8s var(--easeOutCubic), transform 0.8s var(--easeOutCubic);
  }
  .header-nav__hamburger-menu:after {
    background-color: #333;
    display: block;
    position: absolute;
    content: '';
    height: 3px;
    /*線の太さ*/
    width: 12px;
    margin-left: 20px;
    /*長さ*/
    cursor: pointer;
    z-index: 9998;
    -webkit-transition: opacity 0.8s var(--easeOutCubic), transform 0.8s var(--easeOutCubic);
    transition: opacity 0.8s var(--easeOutCubic), transform 0.8s var(--easeOutCubic);
  }
  .header-nav__hamburger-menu:before {
    top: 10px;
  }
  .is_active .header-nav__hamburger-menu:before {
    background-color: #fff;
    display: block;
    left: -40px;
    top: 10px;
    width: 32px;
    margin-left: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .is_active .header-nav__hamburger-menu:before {
    left: -32px;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .header-nav__hamburger-menu {
    top: 15px;
  }
  .is_active .header-nav__hamburger-menu {
    background-color: transparent;
    left: 40px;
    top: 0px;
    opacity: 1;
  }
  .header-nav__hamburger-menu:after {
    top: 20px;
  }
  .is_active .header-nav__hamburger-menu:after {
    background-color: #fff;
    display: block;
    left: -32px;
    top: 10px;
    width: 32px;
    margin-left: 0;
    -webkit-transform: rotate(255deg);
    -ms-transform: rotate(255deg);
    transform: rotate(225deg);
    opacity: 1;
    top: 0;
  }
  .is_active .header__overlay {
    opacity: 1;
    visibility: visible;
  }
  .is_active .header-nav__nav-list {
    opacity: 1;
    visibility: visible;
  }
}

.suit-header .header-nav__hamburger-menu {
  background-color: #fff;
}

.suit-header .header-nav__hamburger-menu:before {
  background-color: #fff;
}

.suit-header .header-nav__hamburger-menu:after {
  background-color: #fff;
}

.suit-header .is_active .header-nav__hamburger-menu:before {
  background-color: #fff;
}

.suit-header .is_active .header-nav__hamburger-menu:after {
  background-color: #fff;
}

.suit-header .nav-item-contact a img {
  vertical-align: top;
}

@media screen and (min-width: 769px) {
  .suit-header .nav-item-contact a img {
    width: 22px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .suit-header .nav-item-contact a img {
    width: 22px;
  }
}

@media screen and (max-width: 768px) {
  .suit-header .nav-item-contact a img {
    width: 26px;
  }
}

/* slide */
.header-nav__nav-item {
  opacity: 1;
}

.is-closed .header-nav__nav-item,
.is_active .header-nav__nav-item {
  -webkit-animation-timing-function: cubic-bezier(0, 0.56, 0.44, 1);
  animation-timing-function: cubic-bezier(0, 0.56, 0.44, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.is_active .header-nav__nav-item {
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

.is_active .header-nav__nav-item {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.is_active .header-nav__nav-item:nth-of-type(1) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.is_active .header-nav__nav-item:nth-of-type(2) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.is_active .header-nav__nav-item:nth-of-type(3) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.is_active .header-nav__nav-item:nth-of-type(4) {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.is_active .header-nav__nav-item:nth-of-type(5) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.is_active .header-nav__nav-item:nth-of-type(6) {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

.is_active .header-nav__nav-item:nth-of-type(7) {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

.is_active .header-nav__nav-item:nth-of-type(8) {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

/**  MV  **/
.ly_MV {
  width: 100%;
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .ly_MV {
    height: 80vh;
  }
}

.ly_MV_inner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ly_MV_txtBox {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .ly_MV_txtBox {
    padding-top: 50px;
  }
}

.bl_MV_txtBox_ttl {
  font-family: "ROLAchan";
  color: #333;
  font-size: 5rem;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_txtBox_ttl {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_txtBox_ttl {
    font-size: 3rem;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.2;
  }
}

.bl_MV_txtBox_ttl_logo {
  margin: 10px auto;
  width: 500px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_txtBox_ttl_logo {
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_txtBox_ttl_logo {
    width: 200px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.bl_MV_txtBox_ttl_logo img {
  width: 100%;
}

.bl_MV_txtBox_ttlSub {
  font-family: "ROLAchan";
  color: #333;
  font-size: 2.8rem;
  margin-top: 15px;
  line-height: 1.2;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_txtBox_ttlSub {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_txtBox_ttlSub {
    font-size: 1.6rem;
    margin-top: 10px;
    line-height: 1.2;
  }
}

.bl_MV_txtBox_borderBottom {
  margin: 0 auto;
  background-color: #333;
  height: 3px;
  width: 350px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .bl_MV_txtBox_borderBottom {
    height: 2px;
    width: 160px;
    margin-top: 10px;
  }
}

.ly_MV_imgBox {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  max-width: 850px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .ly_MV_imgBox {
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .ly_MV_imgBox {
    margin-top: 70px;
    min-width: 320px;
  }
}

.bl_MV_imgWrapper {
  width: 60%;
}

.bl_MV_imgWrapper img {
  width: 100%;
}

.bl_MV_btnBox {
  width: 40%;
  position: relative;
}

.el_btn {
  display: inline-block;
  max-width: 100%;
  background-color: red;
  color: white;
  position: relative;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .el_btn {
    border-radius: 3px;
  }
}

.el_btn_borderH:after,
.el_btn_borderV:after {
  content: '';
  display: inline-block;
  position: absolute;
  transition: all ease 0.7s;
  background-color: red;
}

.el_btn_borderH:before,
.el_btn_borderV:before {
  content: '';
  display: inline-block;
  position: absolute;
  transition: all ease 0.7s;
  background-color: red;
}

.el_btn_borderH:after,
.el_btn_borderH:before {
  width: 0%;
  left: 0px;
  z-index: 2;
  height: 3px;
}

@media screen and (max-width: 768px) {
  .el_btn_borderH:after,
  .el_btn_borderH:before {
    height: 2px;
  }
}

.el_btn_borderV:after,
.el_btn_borderV:before {
  height: 0;
  top: 0px;
  transition-delay: 0.25s;
  z-index: 2;
  width: 3px;
}

@media screen and (max-width: 768px) {
  .el_btn_borderV:after,
  .el_btn_borderV:before {
    width: 2px;
  }
}

.el_btn_borderH:after {
  top: 0;
}

.el_btn_borderH:before {
  bottom: 0;
}

.el_btn_borderV:after {
  left: 0;
}

.el_btn_borderV:before {
  right: 0;
}

.el_btn:hover .el_btn_borderH:after,
.el_btn:hover .el_btn_borderH:before {
  width: 100%;
}

.el_btn:hover .el_btn_borderV:after,
.el_btn:hover .el_btn_borderV:before {
  height: 100%;
}

.el_btn_txt {
  display: block;
  transition: all ease 0.2s;
  width: 100%;
}

.el_btn:hover .el_btn_txt {
  color: red;
  transition-delay: 0.2s;
  transition-property: color;
  background-color: #fff;
}

.el_btn_iconTwitter {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .el_btn_iconTwitter {
    padding-left: 5px;
  }
}

.el_btn_txtMV {
  height: 50px;
  line-height: 50px;
  padding: 0px 20px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .el_btn_txtMV {
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    font-size: 1.4rem;
  }
}

.el_btn_MV {
  width: 170px;
  padding: 10px 20px;
  font-size: 2rem;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .el_btn_MV {
    width: 100px;
    padding: 5px 10px;
    font-size: 1.4rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  }
}

.ly_btn_MV {
  position: absolute;
  left: 0;
  bottom: 35%;
}

@media screen and (max-width: 768px) {
  .ly_btn_MV {
    bottom: 50px;
  }
}

.ly_MV_news {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 950px;
}

@media screen and (max-width: 768px) {
  .ly_MV_news {
    width: 100%;
  }
}

.bl_MV_newsBox {
  display: flex;
  width: 100%;
  background-color: #fff;
  padding: 30px 15px;
  border-top: 5px solid #333;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_newsBox {
    padding: 25px 0;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_newsBox {
    padding: 15px 10px 15px 5px;
    border-top: 3px solid #333;
  }
}

.bl_MV_newsBox_ttl {
  width: 40%;
  border-right: 2px solid #333;
}

@media screen and (max-width: 768px) {
  .bl_MV_newsBox_ttl {
    border-right: 1px solid #333;
  }
}

.bl_MV_newsBox_ttlLeft {
  font-size: 2.4rem;
  margin-right: 10px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_newsBox_ttlLeft {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_newsBox_ttlLeft {
    font-size: 1.2rem;
    margin-right: 5px;
    line-height: 24px;
  }
}

.bl_MV_newsBox_ttlRight {
  font-family: "ROLAchan";
  color: red;
  font-size: 2rem;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_newsBox_ttlRight {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_newsBox_ttlRight {
    font-size: 1rem;
  }
}

.bl_MV_newsBox_txt {
  width: 60%;
  font-size: 2.4rem;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_MV_newsBox_txt {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_MV_newsBox_txt {
    font-size: 1.2rem;
    line-height: 24px;
  }
}

.text-js {
  opacity: 0;
}

.cursor {
  display: inline;
  background-color: white;
  z-index: 1;
  animation: flash 0.5s none infinite alternate;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Dna */
.ly_section {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .ly_section {
    margin-top: 70px;
  }
}

.ly_dna {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bl_section_ttlBox {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .bl_section_ttlBox {
    margin-left: 5%;
  }
}

.bl_section_ttl {
  color: #333;
  font-family: "ROLAchan";
  position: relative;
  text-align: left;
  font-weight: bold;
  font-size: 12rem;
  letter-spacing: .1px;
  line-height: 1.1;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_section_ttl {
    font-size: 9rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_section_ttl {
    font-size: 4.5rem;
    letter-spacing: .1px;
    line-height: 1.1;
  }
}

.bl_section_ttl::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: -50%;
  transform: rotate(-10deg);
  font-family: "DIN Condensed", sans-serif;
  font-weight: 400;
  line-height: 1;
  text-indent: -0.02em;
  color: #333;
  opacity: .1;
  font-size: 28rem;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_section_ttl::before {
    font-size: 21rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_section_ttl::before {
    font-size: 10rem;
    transform: translateY(15%) rotate(-10deg);
  }
}

.bl_section_ttlSub {
  text-align: left;
  font-size: 2rem;
  letter-spacing: .5px;
  font-weight: bold;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .bl_section_ttlSub {
    font-size: 1.4rem;
    padding-left: 5px;
  }
}

.hp_txt_red {
  color: red;
}

.ly_dna_conts {
  display: flex;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .ly_dna_conts {
    flex-direction: column;
    margin-top: 20px;
  }
}

.ly_dna_contLeft {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .ly_dna_contLeft {
    width: 100%;
  }
}

.bl_dna_imgWrapper {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .bl_dna_imgWrapper {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl_dna_imgWrapper img {
  width: 100%;
}

.bl_dna_name {
  font-size: 2.4rem;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_dna_name {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_dna_name {
    font-size: 1.8rem;
  }
}

.bl_dna_name span {
  font-size: 1.8rem;
  margin-right: 10px;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_dna_name span {
    font-size: 1.6rem;
    margin-right: 7px;
  }
}

@media screen and (max-width: 768px) {
  .bl_dna_name span {
    font-size: 1.2rem;
    margin-right: 5px;
  }
}

.ly_dna_contRight {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .ly_dna_contRight {
    width: 100%;
  }
}

.bl_dna_messageBox {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .bl_dna_messageBox {
    margin-bottom: 10px;
  }
}

.bl_dna_message {
  color: #333;
  font-weight: bold;
  font-size: 5rem;
  letter-spacing: .1px;
  line-height: 1.1;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_dna_message {
    font-size: 4.4rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_dna_message {
    font-size: 3rem;
  }
}

.bl_dna_txtBox {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid rgba(55, 55, 55, 0.5);
  border-radius: 15px;
  text-align: left;
  width: 95%;
  padding: 20px 20px 70px 20px;
  font-size: 1.8rem;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_dna_txtBox {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_dna_txtBox {
    width: 100%;
    padding: 20px 15px 80px 15px;
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px) {
  .bl_dna_txtBox:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #fff;
    z-index: 2;
  }
  .bl_dna_txtBox:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -31px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 14px solid rgba(55, 55, 55, 0.5);
    z-index: 1;
  }
}

.ly_btn_dna {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

@media screen and (max-width: 768px) {
  .ly_btn_dna {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 170px;
  }
}

.el_btn_dna {
  width: 180px;
  padding: 5px 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .el_btn_dna {
    width: 180px;
    padding: 5px 10px;
    font-size: 1.4rem;
  }
}

.el_btn_txtDna {
  width: 180px;
  height: 40px;
  line-height: 40px;
  padding: 0px 10px;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .el_btn_txtDna {
    padding: 0px 22px;
    font-size: 1.4rem;
  }
}

/* service */
.ly_service {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.bl_serviceUnit {
  display: flex;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .bl_serviceUnit {
    flex-direction: column;
    margin-top: 10px;
  }
}

.bl_serviceUnit__col3 > .bl_service {
  width: 30%;
  margin-right: 5%;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_serviceUnit__col3 > .bl_service {
    width: 47%;
    margin-right: 6%;
  }
}

@media screen and (max-width: 768px) {
  .bl_serviceUnit__col3 > .bl_service {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl_service {
  position: relative;
  border: 3px solid #333;
  height: 600px;
  border-radius: 30px;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .bl_service {
    margin-top: 20px;
  }
}

.bl_service:hover .bl_service_imgWrapper:before {
  -webkit-animation: circle .7s linear;
  animation: circle .7s linear;
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_service:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .bl_service:nth-child(3) {
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .bl_service:nth-child(3) {
    margin-top: 50px;
  }
}

.bl_service_iconBox {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

.bl_service_icon {
  width: 20px;
  height: 20px;
}

.signal.icon {
  color: #000;
  position: absolute;
  margin-left: 7px;
  margin-top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border-top: solid 1px currentColor;
  border-right: solid 1px transparent;
  border-bottom: solid 1px transparent;
  border-left: solid 1px transparent;
}

.signal.icon:before {
  content: '';
  position: absolute;
  left: -5px;
  top: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-top: solid 1px currentColor;
  border-right: solid 1px transparent;
  border-bottom: solid 1px transparent;
  border-left: solid 1px transparent;
}

.signal.icon:after {
  content: '';
  position: absolute;
  left: -9px;
  top: -9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border-top: solid 1px currentColor;
  border-right: solid 1px transparent;
  border-bottom: solid 1px transparent;
  border-left: solid 1px transparent;
}

.battery-3.icon {
  color: #000;
  position: absolute;
  margin-left: 2px;
  margin-top: 6px;
  width: 13px;
  height: 7px;
  border-radius: 2px;
  border: solid 1px currentColor;
}

.battery-3.icon:before {
  content: '';
  position: absolute;
  right: -3px;
  top: 1px;
  width: 2px;
  height: 3px;
  border-radius: 0 2px 2px 0;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  border-bottom: solid 1px currentColor;
}

.battery-3.icon:after {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: 11px;
  height: 5px;
  background-color: currentColor;
}

.ly_btn_service {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
  .ly_btn_service {
    bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .ly_btn_service {
    bottom: 60px;
  }
}

@media screen and (min-width: 769px) {
  .el_btn_service {
    width: 172px;
    padding: 10px 5px;
    font-size: 1.6rem;
    letter-spacing: .5px;
  }
}

@media screen and (max-width: 768px) {
  .el_btn_service {
    width: 180px;
    padding: 5px 22px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  .el_btn_txtService {
    width: 172px;
    height: 40px;
    line-height: 40px;
    padding: 0px 5px;
    font-size: 1.6rem;
    letter-spacing: .5px;
  }
}

@media screen and (max-width: 768px) {
  .el_btn_txtService {
    width: 180px;
    height: 40px;
    line-height: 40px;
    padding: 0px 22px;
    font-size: 1.4rem;
  }
}

.bl_service_spButton {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
}

.bl_service_inner {
  width: 70%;
  margin: 20px auto;
}

.bl_service_imgWrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: #333;
  border-radius: 50%;
}

.bl_service_imgWrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
}

.bl_service_imgIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: white;
}

.bl_service_img {
  width: 95px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bl_service_seoIcon {
  width: 50%;
  color: #fff;
}

.bl_service_ttl {
  text-align: center;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .bl_service_ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_service_ttl {
    font-size: 1.8rem;
  }
}

.bl_service_txt {
  text-justify: auto;
  font-size: 1.4rem;
  margin-top: 20px;
}

/* skill */
.ly_skill {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.swiper-container {
  position: relative;
  overflow: hidden;
  /*これないとオーバーラップ隠れない*/
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}

.swiper-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  width: 50%;
  height: 50%;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  border-radius: 100%;
  display: inline-block;
  cursor: pointer;
}

.el_skill_pagination {
  position: static;
}

.el_skill_pagination .swiper-pagination-bullet {
  background: #333;
  position: relative;
  height: 12px;
  width: 12px;
  margin: 0 10px;
  opacity: 1;
}

.el_skill_pagination .swiper-pagination-bullet:focus {
  outline: none;
}

.el_skill_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  display: block;
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 50%;
  top: 50%;
  border: solid 1px #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.ly_skill_container {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 85%;
  margin-left: 15%;
  border: 3px solid #333;
  border-right: none;
  border-radius: 10px 0 0 10px;
}

@media screen and (min-width: 769px) {
  .ly_skill_container {
    margin-top: 70px;
  }
}

@media screen and (max-width: 768px) {
  .ly_skill_container {
    margin-top: 50px;
  }
}

.el_skill_pagination {
  margin: 52px 0 0 -5px;
  text-align: center;
}

.el_skill_paginationBox {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .el_skill_paginationBox {
    margin-top: 30px;
    margin-bottom: 220px;
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .el_skill_paginationBox {
    margin-top: 20px;
    margin-bottom: 100px;
    min-width: 250px;
  }
}

.bl_skill_inner {
  width: 80%;
  margin: 20px auto;
}

.bl_skill_imgWrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: #555;
  border-radius: 50%;
}

.bl_skill_imgWrapper img {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 6;
}

.bl_skill_imgWrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 93%;
  height: 93%;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  z-index: 4;
}

.bl_skill_imgWrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  border: 5px solid #555;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .bl_skill_imgWrapper::after {
    border: 3px solid #555;
  }
}

.bl_skill_imgIcon {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  color: #555;
  z-index: 6;
}

.bl_skill_ttl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #555;
  z-index: 6;
}

@media screen and (min-width: 769px) {
  .bl_skill_ttl {
    font-size: 2rem;
    top: 70%;
  }
}

@media screen and (max-width: 768px) {
  .bl_skill_ttl {
    font-size: 1.4rem;
    top: 70%;
  }
}

.el_skill_btnPrev,
.el_skill_btnNext {
  position: absolute;
  outline: none;
}

.el_skill_btnPrev:hover,
.el_skill_btnNext:hover {
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .el_skill_btnPrev {
    left: 10%;
  }
}

@media screen and (max-width: 768px) {
  .el_skill_btnPrev {
    left: 20%;
  }
}

.el_skill_btnPrev:before {
  position: relative;
  font-family: "Font Awesome 5 Free";
  content: "\f0a5";
  color: rgba(55, 55, 55, 0.8);
  font-size: 5rem;
}

@media screen and (min-width: 769px) {
  .el_skill_btnPrev:before {
    font-size: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .el_skill_btnPrev:before {
    font-size: 3rem;
  }
}

.el_skill_btnPrev:hover:before {
  animation: arrow_prev .5s ease-out forwards;
}

@keyframes arrow_prev {
  0% {
    right: 0px;
  }
  50% {
    right: 5px;
  }
  100% {
    right: 0;
  }
}

@media screen and (min-width: 769px) {
  .el_skill_btnNext {
    right: 10%;
  }
}

@media screen and (max-width: 768px) {
  .el_skill_btnNext {
    right: 20%;
  }
}

.el_skill_btnNext:before {
  position: relative;
  font-family: "Font Awesome 5 Free";
  content: '\f0a4';
  color: rgba(55, 55, 55, 0.8);
}

@media screen and (min-width: 769px) {
  .el_skill_btnNext:before {
    font-size: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .el_skill_btnNext:before {
    font-size: 3rem;
  }
}

.el_skill_btnNext:hover:before {
  animation: arrow_next .5s ease-out forwards;
}

@keyframes arrow_next {
  0% {
    left: 0px;
  }
  50% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}

@media screen and (min-width: 769px) {
  .hp_adobeIcon {
    line-height: 1.2;
  }
}

@media screen and (max-width: 768px) {
  .hp_adobeIcon {
    font-size: 1.4rem;
    line-height: 1;
  }
}

/* product */
.hp_bg_black {
  background-color: #333;
}

.hp_txt_white {
  color: white;
}

.hp_txt_white:before {
  color: white;
}

@media screen and (min-width: 769px) {
  .ly_sectionProduct {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .ly_sectionProduct {
    margin-top: 70px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

.ly_product {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bl_productUnit {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) {
  .bl_productUnit {
    flex-wrap: wrap;
    max-width: 1000px;
    margin-top: 65px;
  }
}

@media screen and (max-width: 768px) {
  .bl_productUnit {
    flex-direction: column;
    margin-top: 40px;
  }
}

.bl_product {
  border: 1px solid #333;
}

@media screen and (min-width: 769px) {
  .bl_product {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .bl_product {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 769px) {
  .bl_product:nth-child(3n) {
    margin-right: 0;
  }
}

.bl_product_imgWrapper {
  position: relative;
  padding-top: 70%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  filter: grayscale(1);
}

.bl_product_imgWrapper:hover {
  filter: grayscale(0);
  transition: 1s;
}

.bl_product_imgWrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.bl_product_body {
  padding: 15px;
}

.bl_product_ttl {
  color: white;
}

@media screen and (min-width: 769px) {
  .bl_product_ttl {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .bl_product_ttl {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}

.bl_product_txt {
  color: white;
}

@media screen and (min-width: 769px) {
  .bl_product_txt {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_product_txt {
    font-size: 1.4rem;
  }
}

.ly_message {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bl_message_txtBox {
  position: relative;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .bl_message_txtBox {
    width: 80%;
    border-top: 3px solid #333;
    margin: 50px auto 0;
    padding: 40px 0 40px 50px;
  }
}

@media screen and (max-width: 768px) {
  .bl_message_txtBox {
    width: 90%;
    border: 3px solid #333;
    border-right: none;
    border-radius: 3px;
    margin: 40px auto 20px;
    padding: 20px 0 20px 20px;
  }
}

@media screen and (min-width: 769px) {
  .bl_message_txt {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .bl_message_txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

.bl_message_leadBox {
  position: relative;
  width: 80%;
  height: 200px;
}

@media screen and (min-width: 769px) {
  .bl_message_leadBox {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .bl_message_leadBox {
    display: none;
  }
}

/* border */
@media screen and (min-width: 769px) {
  .bl_message_borderH:after {
    content: '';
    display: inline-block;
    position: absolute;
    transition: all ease 1s;
    transition-delay: 2s;
    background-color: #fff;
  }
  .bl_message_borderV:after {
    content: '';
    display: inline-block;
    position: absolute;
    transition: all ease 1s;
    transition-delay: 3s;
    background-color: #333;
  }
  .bl_message_borderH:before {
    content: '';
    display: inline-block;
    position: absolute;
    transition: all ease 1s;
    transition-delay: 4s;
    background-color: #333;
  }
  .bl_messageLead_borderV:after {
    content: '';
    display: inline-block;
    position: absolute;
    transition: all ease 1s;
    transition-delay: 5s;
    background-color: #333;
  }
  .bl_message_borderH:after {
    width: 100%;
    left: 0px;
    z-index: 3;
    height: 5px;
  }
  .bl_message_borderH:before {
    width: 0%;
    left: 0px;
    z-index: 2;
    height: 3px;
  }
  .bl_message_borderV:after,
  .bl_messageLead_borderV:after {
    height: 0;
    top: 0px;
    z-index: 2;
    width: 3px;
  }
  .bl_message_borderH:after {
    top: -3px;
  }
  .bl_message_borderV:after {
    left: 0;
  }
  .bl_message_borderH:before {
    bottom: 0;
  }
  .bl_messageLead_borderV:after {
    right: 0;
  }
  .ly_message:hover .bl_message_borderH:after {
    width: 0;
  }
  .ly_message:hover .bl_message_borderH:before {
    width: 100%;
  }
  .ly_message:hover .bl_message_borderV:after {
    height: 100%;
  }
  .ly_message:hover .bl_messageLead_borderV:after {
    height: 100%;
  }
}

.bl_message_btnBox {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .bl_message_btnBox {
    height: 150px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .bl_message_btnBox {
    height: 100px;
    margin-top: 10px;
  }
}

.ly_btn_message {
  position: absolute;
}

@media screen and (min-width: 769px) {
  .ly_btn_message {
    top: 20%;
    right: 2%;
  }
}

@media screen and (max-width: 768px) {
  .ly_btn_message {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 769px) {
  .el_btn_txtMessage {
    width: 220px;
    height: 50px;
    line-height: 50px;
    padding: 0px 5px;
    font-size: 2rem;
    letter-spacing: .5px;
  }
}

@media screen and (max-width: 768px) {
  .el_btn_txtMessage {
    width: 170px;
    height: 40px;
    line-height: 40px;
    padding: 0px 15px;
    font-size: 1.4rem;
  }
}

.ly_footer {
  background-color: #333;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .ly_footer {
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .ly_footer {
    padding: 20px;
  }
}

.bl_footer_copyright {
  color: white;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .bl_footer_copyright {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .bl_footer_copyright {
    font-size: 1.2rem;
  }
}

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