﻿/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #000;
  text-align: center;
  color: #fff;
  translate3d(0, 0, 0) !important;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  max-width: 400px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 挙動なくす */
.slideInUp {
  opacity: 0;
}

.slideInUp.animate__animated {
  opacity: 1;
}

/* ＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿＿ */

.swiper-pagination {
  bottom: 3% !important;
}



/* html,
body,
a {
  cursor: none;
} */

/* #cursor {
  pointer-events: none;
  position: fixed;
  top: -4px;
  left: -4px;
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 1.0);
  transform: translate(-100px, -100px);
  border-radius: 50%;
  z-index: 999;
} */

/* #stalker {
  pointer-events: none;
  position: fixed;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transform: translate(-100px, -100px);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 998;
} */

@media screen and (max-width:768px) {

  #cursor,
  #stalker {
    display: none;
  }
}

#stalker.hov_ {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: .15s;
  background: rgba(0, 0, 0, 0.5);
}

/* ＿＿＿＿＿＿＿＿＿＿ */

#globalheader {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 68px;
  z-index: 101;
  background-color: #F5F5F5;
  padding: 0 3%;
  align-items: center;
}

/*モーゼンロゴ*/
.header_logo_img {
  width: 190px;
  height: auto;
  margin-top: 10px;
}

.gnav-panel {
  display: flex;
  align-items: center;
}

.gnavi {
  display: flex;
  /* margin-right: 20px; */
}

.gnavi li {
  margin: 0 0 0 8px;
  list-style: none;
}

.gnavi li a {
  position: relative;
  display: block;
  padding: 10px 12px 10px 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  list-style: none;
}


.header-contact a {
  background-color: #000;
  color: #FFF;
  font-size: 1.4rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  border: solid 1px #000;
  border-radius: 24px;
  transition: background-color .3s, color 0.3s;
}


.header-contact a::after {
  content: '';
  position: absolute;
  top: 36%;
  right: 18px;
  background-image: url(../image/diagonal-icon.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
}

/* ー動き：Eng→Ja */

.gnavi-inner {
  position: relative;
  display: block;
  height: 20px;
  overflow: hidden;
  text-align: center;
}

.btn__text {
  position: relative;
  left: 0;
  display: block;
  height: 20px;
  line-height: 20px;
  transition: top 0.3s;
  font-size: 1.4rem;
}

/* btn-text(default) */
.btn__text:nth-child(1) {
  top: 0;
}

/* btn-text(hidden) */
.btn__text:nth-child(2) {
  top: 0;
}


/* hover-style */
.gnavi a:hover .btn__text:nth-child(1) {
  top: -20px;
}

.gnavi a:hover .btn__text:nth-child(2) {
  top: -20px;
}


/* --CONTACT BTN--- */

.btn___text {
  position: relative;
  left: 0;
  display: block;
  height: 20px;
  line-height: 20px;
  transition: top 0.3s;
  font-size: 1.4rem;
}

/* btn-text(default) */
.btn___text:nth-child(1) {
  top: 0;
  color: #FFF;
  width: 83px;
}

/* btn-text(hidden) */
.btn___text:nth-child(2) {
  top: 0;
  color: #FFF;
}


/* hover-style */
.gnavi a:hover .btn___text:nth-child(1) {
  top: -20px;
}

.gnavi a:hover .btn___text:nth-child(2) {
  top: -20px;
}

/* -------------------------------------------- */

.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -30;
}

.swiper-slide {
  object-fit: cover;
}

.swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Swiper/ページネーション */
/* .swiper-pagination-bullets {
  position: static;
  margin-top: 16px;
} */

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 0 0 10px !important;
  background: #FFF !important;
}

.header-copy {
  position: absolute;
  top: 26%;
  left: 5%;
  z-index: 3;
  animation-delay: 2s;
}

.header-copy01 {
  font-size: 16.0rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.11rem;
  line-height: 1.0;
  color: #FFF;
}

.header-copy02 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: 8px;
  animation-delay: 0.4s;
}

#top-g-nav {
  display: none;
}

.sp_memu {
  display: none;
}

@media screen and (max-width: 834px) {
  #top-g-nav {
    position: fixed;
    z-index: -3;
    top: 80px;
    right: -120%;
    width: 100%;
    height: 93vh;
    background: #000;
    transition: all 0.6s;
    display: block;
    opacity: 0.99;
  }

  .gnav-panel {
    display: none;
  }

  #globalheader {
    height: 80px;
    padding: 0 5%;
  }

  .sp_memu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    width: 80px;
    height: 80px;
  }

  .sp_memu_bar-1 {
    display: block;
    width: 30px;
    height: 2px;
    background: #FFF;
    margin-top: 26px;
    margin-left: 25px;
    transition: width .3s, transform .3s;
    transform: translateY(0px) rotate(0);
  }

  .sp_memu_bar-2 {
    display: block;
    width: 30px;
    height: 2px;
    background: #FFF;
    margin-top: 10px;
    margin-left: 25px;
    transition: width .3s, transform .3s;
    transform: translateY(0px) rotate(0);
  }


  .sp_memu_bar-3 {
    display: block;
    width: 30px;
    height: 2px;
    margin-top: 10px;
    margin-left: 25px;
    background: #FFF;
    transition: width .3s, transform .3s;
    transform: translateY(0px) rotate(0);
  }

  /* .act */

  .act .sp_memu_bar-1 {
    transform: translateY(8px) rotate(40deg);
    margin-top: 31px;
  }


  .act .sp_memu_bar-2 {
    display: none;
  }


  .act .sp_memu_bar-3 {
    transform: translateY(-4px) rotate(-40deg);
  }


  #top-g-nav.panelactive {
    right: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #top-g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #top-g-nav ul {
    z-index: 999;
    top: 0%;
    left: 0;
    padding: 0 8%;
  }
}

#top-g-nav li {
  list-style: none;
  text-align: center;
  padding: 28px 0 14px 0;
}

#top-g-nav li a {
  color: #333;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: initial;
}

.menu-item {
  color: #FFF;
  border-bottom: 0.05px solid #FFF;
}

.menu-item-btn {
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  line-height: 1;
  font-weight: 700;
  color: #FFF;
}

.menu-group02 {
  display: flex;
  justify-content: start;
  margin-top: 48px;
}

.menu-item02 {
  color: #FFF;
}

.menu-item-btn02 {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  line-height: 1;
  font-weight: 400;
  color: #FFF;
}

.menu-group02 a {
  color: #FFF;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: initial;
  text-decoration: none;
}

.menu-item-btn02-company {
  padding-right: 24px;
}

.menu-group-cintainer {
  width: 100%;
}

.memu-link {
  margin-top: 54px;
  padding: 0 8%;
}

.memu-link01 a,
.memu-link02 a {
  text-decoration: none;
  margin-top: 48px;
  margin-bottom: 80px;
  align-items: center;
  position: relative;
  padding: 1.2em 2.5em 1.2em 1.5em;
  width: 200px;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  border: solid 1px #FFF;
  border-radius: 32px;
  position: relative;
  margin-left: -2%;
}

.memu-link02 {
  margin-top: 40px;
}

.memu-link01 a::after,
.memu-link02 a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 21px;
  background-image: url(../image/diagonal-icon.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
}

/* SP:top_________________________________ */

@media screen and (max-width: 767px) {

  .header-copy01 {
    font-size: 7.0rem;
  }

  .header-copy02 {
    font-size: 1.5rem;
  }

  .header-copy {
    top: 50%;
  }

  .slide03 {
    object-position: left;
  }
}

@media screen and (max-width: 358px) {
  .header-copy01 {
    font-size: 6.4rem;
  }

  .header-copy02 {
    font-size: 1.4rem;
  }
}

/* ________________________________________ */

.l-wrapper {
  background-color: transparent;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
}

.bg-gray {
  background-color: #F5F5F5;
}

.section-news {
  padding-top: 56px;
  padding-bottom: 40px;
}

.section-news-container {
  margin-left: 5%;
}


.section-news ul {
  display: flex;
}

.section-news ul li {
  list-style: none;
  margin-right: 24px;
}

.section-news h2 {
  font-size: 5.0rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  display: inline-block;
  animation-delay: 0.3s;
}

.news-container {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
}

.news-time {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05rem
}

.news-tag {
  font-weight: 400;
  border: solid 1px #000;
  padding: 2px 12px;
  font-size: 1.2rem;
}

.news-detail {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 4px;
}

.slider-news img {
  width: 100%;
  height: auto;
}

/* 矢印 */
.slider-news .slick-next {
  right: 98px;
  top: -56px;
  transform: none;
  width: 40px;
  height: 40px;
}

.slider-news .slick-prev {
  top: -56px;
  left: auto;
  right: 148px;
  transform: none;
  width: 40px;
  height: 40px;
}

.slider-news .slick-next::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../image/yajirushi_right.svg);
  background-size: contain;
}

.slider-news .slick-prev::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../image/yajirushi_left.svg);
  background-size: contain;
}

.news-btn-more {
  display: flex;
  justify-content: flex-end;
  padding: 0 5%;
  margin: 0 auto;
}

/* moreボタン */
.news-btn-more a {
  text-decoration: none;
  margin-top: 48px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding: 1em 1.5em;
  width: 200px;
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  border: solid 1px #000;
  border-radius: 32px;
  position: relative;
}

.news-btn-more a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 28px;
  background-image: url(../image/diagonal-icon-black.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
}

/*____SP:NEWS___________________________ */

@media screen and (max-width: 767px) {

  .section-news h2 {
    font-size: 48px;
  }

  .slider-news .slick-prev {
    top: -50px;
    right: 60px;
  }

  .slider-news .slick-next {
    right: 15px;
    top: -50px;
  }

  .slider-news li {
    width: 250px;
  }

  .news-time {
    font-size: 1.4rem;
    padding-top: 3px;
  }

  .news-tag {
    font-size: 1.2rem;
    line-height: 2;
  }

  .news-detail {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 4px;
  }

  .news-btn-more {
    justify-content: center;
  }

  .news-btn-more a {
    font-size: 1.5rem;
    width: 231px;
    height: 66px;
  }

  .section-news ul li {
    margin-right: 16px;
  }
}

/*_________________________________ */


/* PC:CONCEPT START____________________  */

.section-concept {
  width: auto;
  background-image: url(../image/pattern02.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.concept-wrap {
  max-width: 816px;
  margin: 0 auto;
  padding: 0 3%;
  display: flex;
  justify-content: space-between;
}

.concept-left {
  width: 8%;
  height: auto;
}

.concept-left_logo {
  height: auto;
  width: 75%;
}

.concept-right {
  width: 84%;
  height: auto;
}

.concept-right h2 {
  font-size: 2.1rem;
  font-weight: 100;
}

.concept-right h3 {
  font-size: 4.0rem;
  font-weight: 700;
  padding: 12px 0;
  animation-delay: 0.3s;
}

.pattern01 {
  width: 100px;
  height: auto;
}

.concept-right_txt {
  font-size: 1.6re;
  font-weight: 400;
  margin-top: 24px;
  animation-delay: 0.5s;
}

.concept-btn {
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
}

/* moreボタン */
.concept-btn a {
  text-decoration: none;
  margin-top: 48px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding: 1em 1.5em;
  width: 200px;
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  transition: 0.3s;
  letter-spacing: 0.2rem;
  border: solid 1px #000;
  border-radius: 32px;
  position: relative;
}

.concept-btn a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 18px;
  background-image: url(../image/diagonal-icon-black.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
}

/* SP CONCEPT_________________________  */

@media screen and (max-width: 767px) {


  .concept-wrap {
    padding-left: 0;
  }

  .concept-left {
    width: 15%;
    margin-top: -40px;
    margin-left: -1px;
  }

  .concept-right {
    width: 80%;
  }

  .concept-right h2 {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .concept-right h3 {
    font-size: 3.0rem;
  }

  .pattern01 {
    width: 90px;
  }

  .concept-right_txt {
    font-size: 1.4rem;
    margin-top: 16px;
    font-weight: 400;
  }

  .section-concept {
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
  }

  .concept-btn a {
    font-size: 1.5rem;
    width: 231px;
    height: 66px;
  }
}

@media screen and (max-width: 550px) {
  .concept-right h3 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 366px) {
  .concept-right h3 {
    font-size: 2.2rem;
  }

  .concept-btn a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 336px) {
  .concept-right h3 {
    font-size: 2.0rem;
  }
}

/* PC:画像 _____________________  */
.zn-bgimg {
  height: 200px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .zn-bgimg {
    height: 100px;
    width: 100%;
  }
}

/* PC:リンクボタン ________________________  */

.section-linkbotton {
  margin: 100px 0 50px 0;
  padding: 0 3%;
  padding-top: 100px;
}

.under-section-linkbotton {
  padding-top: 0;
}


.linkbotton-wrap-pc {
  display: flex;
  justify-content: space-around;
  max-width: 1230px;
  margin: 0 auto;
}

.linkbotton01-pc {
  width: 98%;
}

.linkbotton02-pc {
  width: 98%;
}

.linkbotton-wrap-sp {
  display: none;
}

@media screen and (max-width: 767px) {

  .linkbotton-wrap-pc {
    display: none;
  }

  .linkbotton-wrap-sp {
    display: block;
  }

  .linkbotton02-sp {
    margin-top: 24px;
  }

  .section-linkbotton {
    padding-top: 80px;
  }
}

/* PC：CONTACT___________________ */

.section-contact {
  padding: 0 3%;
  padding-bottom: 100px;
  background-color: #FFF;
  padding-top: 50px;
}

.contact-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto;
}

.contact-left {
  width: 60%;
}

.contact-right {
  width: 40%;
  border-left: 4px solid #000
}

.contact-left h2 {
  font-size: 50px;
  margin-bottom: 24px;
  line-height: 1;
}

.contact-left_txt {
  font-size: 1.6rem;
  font-weight: 400;
  padding-right: 25px;
}

.contact-right_icon {
  width: 38px;
  height: auto;
  margin: auto;
  line-height: 1;
}

.contact-right_txt {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 24px;
}

.contactsection-btn a {
  background-color: #000;
  color: #FFFFFF;
  font-size: 1.7rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 231px;
  height: 66px;
  border: solid 1px #000;
  border-radius: 32px;
  transition: background-color .3s, color 0.3s;
  margin: auto;
  margin-top: 16px;
  position: relative;
}

.contactsection-btn a::after {
  content: '';
  position: absolute;
  top: 38%;
  right: 44px;
  background-image: url(../image/diagonal-icon.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
}

.contacr-right_txt {
  text-align: center;
  font-size: 1.1rem;
  padding-top: 2px;

}

@media screen and (max-width: 767px) {

  .contact-wrap {
    display: block;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left {
    padding-bottom: 40px;
  }

  .contact-right {
    border-left: none;
    border-top: 1px solid #000;
    padding-top: 40px;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  .contact-left_txt {
    font-size: 1.4rem;
    padding-right: 0;
  }

  .contacr-right_txt {
    text-align: center;
    font-size: 12px;
    padding-top: 8px;
  }

  .contactsection-btn a {
    margin-top: 14px;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .contact-left_txt-comma {
    letter-spacing: -10px;
  }

}

@media screen and (max-width: 394px) {

  .contact-left_txt-br {
    display: none;
  }
}

/* footer */

.section-footer {
  width: 100%;
  background-color: #2E2E2E;
  padding: 0 3%;
  height: 350px;
}

.groval-footer {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto;
  height: auto;
  color: #FFF;
  padding-top: 80px;
}


.footer-left-area {
  width: 35%;
}

.footer-centerright-area {
  display: flex;
  justify-content: space-between;
  width: 65%;
}

.footer_logo_img {
  width: 320px;
  height: auto;
  margin-top: 10px;
}


.footer-center-area {
  width: 18%;
}


.footer-center-area {
  width: 78%;
}


.footer-gnav-panel {
  display: flex;
  justify-content: center;
}

.footer-gnavi {
  margin-right: 40px;
}

.footer-gnavi li {
  margin: 0 0 0 8px;
  list-style: none;
}

.footer-gnavi li a {
  position: relative;
  display: block;
  padding: 16px 10px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  list-style: none;
  color: #FFF;
}

/* .footer-right-area {
  width: 20%;
  margin-left: -100px;
} */


.footer_amazon-btn a,
.footer_line-btn a {
  color: #FFFFFF;
  font-size: 1.6rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 231px;
  height: 66px;
  border: solid 1px #FFF;
  border-radius: 32px;
  transition: background-color .3s, color 0.3s;
  margin: auto;
  position: relative;
}


.footer_amazon-btn a::after,
.footer_line-btn a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 21px;
  background-image: url(../image/diagonal-icon.svg);
  width: 10px;
  height: 10px;
  background-size: contain;
}

.footer_line-btn {
  margin-top: 12px;
}

.footer-copyright {
  font-size: 1.0rem;
  font-weight: 400;
  text-align: right;
  color: #FFF;
  margin-top: 50px;
  padding-bottom: 36px;
  max-width: 1230px;
  margin: 60px auto;
}

/* SP:footer */

@media screen and (max-width: 1128px) {

  .groval-footer {
    display: block;
  }

  .section-footer {
    height: 480px;
  }

  .footer-centerright-area {
    margin-top: 32px;
    width: 100%;
  }

  .footer-gnav-panel {
    justify-content: unset;
  }
}


@media screen and (max-width: 767px) {


  .groval-footer {
    display: block;
    height: auto;
    padding-top: 48px;
  }

  .footer-gnav-panel {
    display: block;
    text-align: center;
  }

  .footer_logo_img {
    width: 280px;
    margin: 0 auto;
  }

  .footer-left-area {
    width: 100%;
  }

  .footer-center-area {
    width: 100%;
    margin-top: 24px;
  }

  .footer-centerright-area {
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .footer-gnavi li a {
    font-size: 1.5rem;
  }

  .footer-right-area {
    width: 100%;
    margin: 24px 0;
  }

  .footer-gnavi {
    margin-right: 0;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer_amazon-btn a,
  .footer_line-btn a {
    font-size: 1.5rem;
  }

  .section-footer {
    height: 780px;
  }
}

/* PC: company */

.under-head {
  height: 264px;
  width: 100%;
  margin-top: 64px;
  background-image: url(../picture/kaiteki2025-1920x900.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .under-head {
    height: 200px;
    width: 100%;
    margin-top: 80px;
    background-image: url(../image/05-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

}

.under-head_bg {
  max-width: 1230px;
  padding-top: 56px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
}

.under-head_title-eng {
  font-size: 9.0rem;
  font-weight: 700;
  font-style: italic;
  color: #FFF;
  letter-spacing: 0.094rem;
  position: relative;
  line-height: 1;
}


.under-head_title-eng-privacy {
  font-size: 9.0rem;
  font-weight: 700;
  font-style: italic;
  color: #FFF;
  letter-spacing: 0.094rem;
  position: relative;
  line-height: 1;
}

.under-head_title-ja {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  padding-left: 8px;
}

.under-head_title-ja-privacy {
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  padding-left: 8px;
}


.section-undercompany {
  margin-top: 100px;
}

.undercompany-wrap {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
}

.undercompany_left {
  width: 25%;
}

.undercompany_right {
  width: 75%;
  position: relative;
}

.undercompany_left h2 {
  font-size: 8.0rem;
  font-weight: 700;
  line-height: 1;
}


.undercompany_left-pattern {
  width: 100px;
  height: auto;
  padding-left: 24px;
}

.company_outline_body {
  position: relative;
  padding: 5% 5% 5% 8%;
  background-color: #F5F5F5;
  /* border-radius: 24px; */
}

.company__outline__block {
  padding: 23px 0 23px 240px;
  position: relative;
}

.company__outline__term {
  font-weight: 400;
  font-size: 1.6rem;
  left: 0;
  line-height: 34px;
  position: absolute;
  letter-spacing: 0.13rem;
}

.company__outline__body {
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.13rem;
  position: relative;
}

.company__outline__body span {
  padding: 0 16px;
}

.company_outline_body::before {
  content: "";
  border-left: 2px solid;
  background-color: #000;
  position: absolute;
  left: 210px;
  top: 64px;
  width: 2px;
  height: 550px;
}

.undercompany_right::after {
  content: "";
  /* background-image: url(../image/cyclingman.png); */
  position: absolute;
  left: -237px;
  bottom: 20px;
  width: 246px;
  height: 242px;
  background-size: contain;
  margin-right: 8px;
  background-repeat: no-repeat;
}

.cyclingman-sp {
  display: none;
}


@media screen and (max-width: 957px) {

  .company__outline__block {
    padding: 23px 0 23px 200px;
  }

  .company_outline_body::before {
    left: 189px;
    top: 52px;
  }

  .undercompany_right::after {
    left: -149px;
    bottom: -49px;
    width: 150px;
  }
}



@media screen and (max-width: 767px) {

  .company_outline_body::before {
    display: none;
  }

  .undercompany-wrap {
    display: block;
  }

  .undercompany_left {
    width: 100%;
  }

  .undercompany_left h2 {
    font-size: 4.7rem;
  }

  .undercompany_left-pattern {
    width: 74px;
    margin: auto 0;
    padding-left: 4px;
  }

  .undercompany_right {
    width: 100%;
    margin-top: -14px;
    z-index: -3;
  }

  .company__outline__block {
    padding: 12px 0;

  }


  .company__outline__term {
    font-size: 1.2rem;
    font-weight: 400;
  }

  .company__outline__body {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.13rem;
    margin-top: 20px;
  }


  .company__outline__term {
    line-height: 1;
  }

  .company_outline_body {
    padding: 5% 3% 5% 3%;
  }

  .section-undercompany {
    margin-top: 32px;
  }


  .undercompany_right::after {
    display: none;
  }

  .cyclingman-sp {
    display: block;
    width: 50%;
    margin: 0 0 0 auto;
  }

}

@media screen and (max-width: 475px) {
  .under-head_title-eng {
    font-size: 6rem;
  }
}


/* ---------CONTACT-------------------------- */

/* コンタクトページ */
.contact {
  width: 100%;
  position: relative;
  margin-top: 116px;
}

.under-contact-container {
  max-width: 1230px;
  margin: 0 auto;
  padding-bottom: 100px;
  margin-top: 100px;
}

.contact h2 {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}

.p-contact_lead {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 3%;
}

.p-form {
  padding-top: 110px;
  font-weight: 400;
  padding-right: 3%;
  padding-left: 3%;

}

.p-form_block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  align-items: center;
}

.p-form_label {
  font-size: 1.5rem;
  width: 32%;
  position: relative;
}

.p-form_block-content {
  align-items: flex-start;
}

.p-form_input {
  width: 68%;
}

input {
  width: 100%;
  border: none;
  background-color: #F5F5F5;
  color: #867F7F;
  padding: 16px;
  letter-spacing: 0.075em;
  border: 2px solid #F5F5F5;
  font-size: 1.6rem;
}

input:focus {
  border-color: #F5F5F5;
  outline: none;
}

.p-form__button-wrap {
  width: 68%;
  margin: 0 0 0 auto;
}

.p-form__link {
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  position: relative;
}

.p-form__lin::before {
  content: '';
  width: 72px;
  height: 30px;
  background-color: #000;
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: 13px;
  left: 200px;
  font-size: 1.2rem;
  text-align: center;
  align-items: center;
  padding-top: 5px;
}

.p-form__text {
  text-align: center;
}

.p-form__text a {
  text-decoration: none;
}

.p-form_input_txtarea {
  width: 68%;
}


textarea {
  width: 100%;
  border: none;
  background-color: #F5F5F5;
  color: #867F7F;
  padding: 1em;
  letter-spacing: 0.075em;
  border: 2px solid #F5F5F5;
  height: 218px;
  font-size: 1.6rem;
}

textarea:focus {
  border-color: #A3A1A1;
  outline: none;
}

.p-form__button {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.p-form__button a {
  text-decoration: none;
  color: #000;
  padding: 32px auto;
}


/*必須 */

.lavel-required::after {
  content: '必須';
  width: 72px;
  height: 30px;
  background-color: #0B3955;
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: 0;
  left: 200px;
  font-size: 1.2rem;
  text-align: center;
  align-items: center;
  padding-top: 5px;
}


.button01 {
  width: 100%;
  border: 1px solid #000;
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background-color: #000;
  color: #FFF;
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
  transition: background-color .3s, color 0.3s;
  -webkit-appearance: none;
  border-radius: 50px;
}



/* ここからSP */
@media screen and (max-width: 955px) {

  .under-contact-container {
    margin-top: 32px;
    padding-bottom: 0;
  }

  .contact-under-jatitle {
    font-size: 3.2rem;
  }

  .contact h2 {
    font-size: 1.2rem;
  }

  .p-contact_lead {
    font-size: 1.4rem;
  }

  .p-form_label span::after {
    left: auto;
    right: 0;
  }

  .input {
    font-size: 1.4rem;
  }

  .p-contact_lead br {
    display: none;
  }

  .p-form_block {
    display: block;
    margin-bottom: 32px;
  }

  .p-form_input {
    width: 100%;
  }

  .p-form_label {
    font-size: 1.4rem;
    padding-bottom: 4px;
    width: 100%;
    font-weight: 700;
  }

  .p-form {
    padding-top: 16px;
  }

  .p-form_input_txtarea {
    width: 100%;
  }

  .p-form__button-wrap {
    width: 100%;
    text-align: center;
  }

  .p-form__text {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  .p-form__link {
    font-size: 1.4rem;
  }

  .p-form__button {
    line-height: 1;
    margin: 0 auto;
    display: block;
  }

  .privacy-confirm {
    padding: 0.1em 0;
  }

  input[name^="privacy-check"]+span:last-child {
    font-size: 1.4rem;
    padding-top: 2px;
    font-weight: 700;
  }

  .mw_wp_form.error {
    font-size: 1.2rem;
  }

  .button01 {
    width: 231px;
    height: 66px;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 700;
  }

}

/* 確認画面 */

.button02 {
  width: 48%;
  border: 1px solid #000;
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background-color: #000;
  cursor: pointer;
  color: #FFF;
  transition: .3s;
  position: relative;
  -webkit-appearance: none;
  border-radius: 50px;
  font-size: 1.6rem;
}


.button03 {
  width: 48%;
  border: 1px solid #000;
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  cursor: pointer;
  background-color: #FFF;
  color: #000;
  transition: .3s;
  position: relative;
  -webkit-appearance: none;
  border-radius: 50px;
  font-size: 1.6rem;
}





@media screen and (max-width: 767px) {
  .button02 {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .button03 {
    font-size: 1.4rem;
    font-weight: 700;
  }
}


.p-form_complete-button {
  border: 1px solid #000;
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background-color: #FFF;
  border-radius: 50px;
  width: 92%;
  color: #000;
  font-size: 1.6rem;
  margin-left: 3%;
}

.p-form_complete-button a {
  text-decoration: none;
  color: #000;
  padding: 32px auto;
}


@media screen and (max-width: 767px) {
  .p-form_complete-button {
    margin-top: 64px;
    width: 231px;
    height: 66px;
    line-height: 1;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto;
    margin-top: 40px;
  }
}


/* 問い合わせ完了 */
.p-form_complete-button {
  border: 1px solid #000;
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background-color: #FFF;
  border-radius: 50px;
  width: 92%;
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  margin-left: 3%;
}

.p-form_complete-button a {
  text-decoration: none;
  color: #000;
  padding: 32px auto;
}


@media screen and (max-width: 767px) {
  .p-form_complete-button {
    padding: 24px;
    margin-top: 64px;
  }
}

/* プライバシーチェック */

/*Checkboxes styles*/
input[name^="privacy-check"] {
  display: none;
}

input[name^="privacy-check"]+span {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
}

input[name^="privacy-check"]+span:last-child {
  margin-bottom: 0;
  max-width: 300px;
  margin: 0 auto;
}

input[name^="privacy-check"]+span:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #4B4B4B;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .6;
  -webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;
  top: 4px;
  left: 13px;
}


input[name^="privacy-check"]:checked+span:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  width: inherit;
}

.p-form__privacy {
  text-align: center;
}

.privacy-confirm {
  padding: 2px 0;
  margin-bottom: 0.2rem;
}


.p-form__privacy-link a {
  font-size: 1.4rem;
  padding-bottom: 2px;
  border-bottom: 1px solid;
}

.p-form__privacy-link {
  margin-bottom: 32px;
}

.mw_wp_form_confirm p.p-form__privacy-link {
  display: none;
}


/* -----------------NEWS------------------- */


.news {
  width: 100%;
  position: relative;
  margin-top: 100px;
}

.under-news-container {
  max-width: 1230px;
  margin: 0 auto;
  padding-bottom: 128px;
  padding: 0 3%;
}

.news h2 {
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
}


.l-news-container {
  padding: 0;
}


.p-blog_cat {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 auto;
  align-items: center;
}

.p-blog_cat-list {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.5;
  border: solid 1px #000;
  padding: 1rem 2rem 1rem 4rem;
  margin-right: 10px;
  position: relative;
  align-items: flex-end;
}

.p-blog_cat-list::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 17px;
  top: 41%;
}

.p-blog_item {
  list-style: none;
  padding-top: 85px;
  margin-right: 5%;
  width: 30%
}

.p-blog_item:nth-child(3n) {
  margin-right: 0;
}

.p-blog_inner {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
}

.p-blog_thumb {
  width: 100%;
}

.p-blog_date-tag {
  display: flex;
  justify-content: space-between;
  margin-top: -10px;
  padding: 0 4px;
}

.p-blog_date {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

.p-blog_tag {
  font-weight: 400;
  border: solid 1px #000;
  padding: 2px 12px;
  font-size: 1.3rem;
}

.p-blog_head {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 8px;
  padding: 0 4px;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-top: 96px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.5rem;
  color: #000;
  background-color: #F5F5F5;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
  font-weight: 400;
}

.wp-pagenavi .extend {
  font-size: 1.6rem;
  font-weight: 400;
}

.wp-pagenavi span.current {
  border: 0px;
  color: #000;
  background-color: #F5F5F5;
  font-weight: 400;
}

.wp-pagenavi a:hover {
  border: 1px solid #131515;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  position: relative;
}

.wp-caption-text,
.wp-caption,
.aligncenter,
.alignleft,
.alignright,
.sticky,
.gallery-caption,
.bypostauthor,
.screen-reader-text {
  font-weight: normal;
}

/* （START）SP：NEWS */

@media screen and (max-width: 767px) {


  .p-blog_item {
    width: 48%;
    padding-top: 32px;
    font-size: 1.2rem;
    margin-right: 4%;
  }

  .p-blog_cat {
    font-size: 1.1rem;
  }

  .news h2 {
    font-size: 7.7rem;
  }

  .news-jatitle {
    font-size: 1.5rem;
  }

  .p-blog_tag {
    font-size: 1.2rem;
    margin-right: 8px;
  }

  .p-blog_date {
    font-size: 1.4rem;
  }

  .p-blog_head {
    font-size: 1.5rem;
    margin-top: 3px;
    font-weight: 700;
  }

  .p-blog_cat-list {
    padding: 0.6em 0.6em 0.6em 1.2em;
    margin-right: 6px;
    width: 90px;
    margin-top: 8px;
  }

  .p-blog_cat-list::before {
    left: 8px;
  }

}

@media screen and (max-width: 470px) {
  .p-blog_item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-blog_item:nth-child(2n) {
    margin-right: 0;
  }

  .p-blog_item:nth-child(3n) {
    margin-right: 4%;
  }
}

@media screen and (max-width: 470px) {

  .p-blog_item:nth-child(3n),
  .p-blog_item {
    margin-right: 0;
  }

}


/* NEWS　記事詳細ページ */

.under-newsedit-bg {
  background-color: #F5F5F5;
}

.under-newedit-container {
  border-top: 1px solid #000;
  padding-top: 76px;
}

.l-newsedit-container {
  border-top: 1px solid #000;
}

.under-p-blog_item {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
  padding-left: 3%;
  padding-right: 3%;
}

/* タイトル */
.under-p-blog_head {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 16px;
}

.under-p-blog_date {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}


.under-p-blog_date--tag {
  display: flex;
  justify-content: flex-start;
  margin: 24px 0;
  align-items: center;
}

.under-p-blog_tag {
  width: auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  border: solid 1px #000;
  padding: 4px 16px 4px 20px;
  margin-right: 10px;
  position: relative;
}

.under-p-blog_tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 6px;
  top: 39%;
}

.news-update p {
  font-size: 1.6rem;
  padding-top: 16px;
}

.news-update img {
  padding-top: 16px;
}



.news-update ul,
.news-update ol {
  padding-left: 20px;
}

.news-update blockquote {
  background-color: #F5F5F5;
  padding: 10px;
}

.news-update blockquote p {
  padding-top: 0;
}

/* peger */

.pager {
  font-size: 1.4rem;
  text-align: center;
  padding: 150px 0 100px 0;
}

.prev {
  background-color: #EAEAEA;
  padding: 16px;
  color: #FFF;
}

.next {
  background-color: #EAEAEA;
  padding: 16px;
  color: #FFF;
}

.back {
  padding: 1%;
  margin-right: 15%;
  margin-left: 15%;
  border-bottom: 0.5px solid #000;
}

.pager a {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 767px) {
  .under-p-blog_head {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .news-update p {
    font-size: 1.4rem;
  }

  .under-newedit-container {
    padding-top: 79px;
  }

  .under-p-blog_item {
    padding-top: 32px;
  }

  .pager {
    font-size: 1.4rem;
    text-align: center;
    padding: 100px 0 100px 0;

  }
}





/* _________________ここまでNEWS＿＿＿＿＿＿＿＿ */


/* _________________Privay＿＿＿＿＿＿＿＿ */

/* プライバシーポリシー */
.privacy-under-head {
  max-width: 1230px;
  padding-top: 100px;
  margin: auto;
}

.privacy-title-ja-privacy {
  font-size: 3.7rem;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.3rem;
}

.privacy-title-en-privacy {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  line-height: 1;
  padding-left: 4px;
}

.privacy-container {
  max-width: 1230px;
  margin: 0 auto;
  padding-left: 3%;
  padding-right: 3%;
  margin-bottom: 100px;
  margin-top: 100px;
}

.p-privacy_lead {
  font-size: 1.5rem
}


.privacy_head {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 36px;
}

.privacy_head span {
  margin-left: 20px;
}

.privacy_block {
  list-style: none;
  margin-top: 56px;
}

.privacy_list li {
  list-style: none;
}

.privacy_block ul {
  margin-top: 24px;
}

.privacy_lead_top {
  font-size: 1.5rem;
  font-weight: 400;
  text-indent: -1.2em;
  padding-left: 1.2em;
  list-style: none;
}


.privacy_lead_bottom {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 24px;
  list-style: none;
  text-indent: -1.2em;
  padding-left: 1.2em
}

.privacy_lead_top_01 {
  font-size: 1.5rem;
  font-weight: 400;
  list-style: none;
}


.privacy_lead_bottom_01 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 24px;
  list-style: none;
}

.privacy_lead_bottom_02 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 24px;
  list-style: none;
  margin-bottom: 24px;
  padding-left: 1.2em;
}

.privacy_lead_bottom_03 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 56px;
  list-style: none;
  margin-bottom: 24px;
}

.colon {
  padding: 0 4px;
  font-weight: 600;
}



@media screen and (max-width: 767px) {

  .p-privacy_lead {
    font-size: 1.4rem;
  }

  .privacy_lead_top_01 {
    font-size: 1.4rem;
  }

  .privacy_lead_bottom_01 {
    font-size: 1.4rem;
  }

  .privacy_lead_bottom {
    font-size: 1.4rem;
  }

  .privacy_lead_bottom_02 {
    font-size: 1.4rem;
  }

  .privacy_lead_top {
    font-size: 1.4rem;
  }

  .privacy_lead_top_02 {
    font-size: 1.4rem;
  }

  .under-head_bg {
    padding-top: 23px;
  }

  .under-head_title-eng-privacy {
    font-size: 7.0rem;
  }

  .privacy-container {
    margin-top: 32px;
  }

  .privacy_head {
    font-size: 2.4rem;
  }
}

/* ______________________＿＿＿＿＿＿＿＿ */

/* PC:Concept*/
.section-under-concept {
  height: auto;
  overflow-x: hidden;
}

.section-under-concept_topimg {
  width: 100%;
  padding-top: 68px;
}

.section-under-concept_tabtopimg {
  display: none;
}

.section-under-concept_sptopimg {
  display: none;
}

.bg-black {
  background-color: #000;
  position: relative;
  z-index: -5;
}

.bg-road {
  background-image: url(https://morethan-cycle.jp/wp-content/themes/morthan-wp/assets//imgsimgs/concept/road.png);
  width: auto;
  background-repeat: no-repeat;
  background-size: auto;
  height: auto;
  position: relative;
  margin-top: -11%;
  background-position: center top;
}

.colorto {
  font-size: 2.0rem;
  font-style: italic;
  font-weight: 700;
  margin-right: 3%;
  color: #FFF;
  text-align: right;
}

/* BRAND CONCEPT */

.brand-concept_top {
  width: 80%;
  padding: 0 3%;
  padding-top: 20%;
  margin: 0 auto;
}


.brandconcept-title {
  width: 184px;
}

.brandconcept4img {
  width: 100%;
  position: relative;
  z-index: 1
}

.brandconcept4imgsp {
  display: none;
}

.brandconcept4img::before {
  content: '01';
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: -259px;
  right: 92px;
  font-size: 27.0rem;
  font-style: italic;
  opacity: .4;
  width: 244px;
  height: 200px;
  letter-spacing: -16.5px;
}

.brand-concept_bottom {
  background-color: rgba(61, 61, 61, .53);
  margin-right: 20%;
  margin-top: -5%;
}

.brand-concept_bottom-txt {
  width: 80%;
  margin: 0 auto;
  padding: 5% 3% 5% 0;
  margin-left: 17%;
}

.brand-concept_top-head {
  font-size: 4.0rem;
  color: #49A9E3;
  font-style: italic;
  margin-top: 32px;
}

.brand-p {
  color: #FFF;
  font-size: 1.5rem;
}

.brand-p2 {
  color: #FFF;
  font-size: 1.5rem;
  padding-top: 16px;
}

/* BRABD NAME */

.brand-name {
  margin-top: 176px;
}

.brandname-name h2 {
  line-height: 1;
}

.brand-name_top {
  width: 44%;
  position: relative;
  z-index: 3;
}

.brandname-title {
  width: 243px;
}

.brandname_top-head {
  font-size: 4.0rem;
  color: #D7E349;
  font-style: italic;
  line-height: 1;
}

.brandconcept4img::before {
  content: '01';
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: -259px;
  right: 92px;
  font-size: 27.0rem;
  font-style: italic;
  opacity: .4;
  width: 244px;
  height: 200px;
  letter-spacing: -16.5px;
}

.brandname_bottom {
  background-color: rgba(100, 105, 100, .51);
  margin-right: 6%;
  margin-top: -5%;
  position: relative;
}

.brandname_bottom-txt {
  margin: 0 auto;
  padding: 3% 3% 4.5% 52%;
  margin-top: -18%;
}

.brand-p3 {
  color: #FFF;
  font-size: 1.5rem;
  margin-top: 24px;
}

.brandname_bottom::before {
  content: '02';
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: -239px;
  right: 50px;
  font-size: 27.0rem;
  font-style: italic;
  opacity: .4;
  width: 244px;
  height: 200px;
  letter-spacing: -16.5px;
}

/* DESIGN */

.design {
  margin-top: 176px;
}

.design_bottom {
  background-color: rgba(61, 61, 61, .53);
  margin-right: 20%;
  margin-top: -5%;
  position: relative;
}

.design_bottom-txt {
  margin: 0 auto;
  padding: 3% 42% 4.5% 8%;
  margin-top: -18%;
}

.design-title {
  width: 152px;
}

.designimg {
  width: 44%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 3;
  margin-right: 5%;
}

.disign_top-sp {
  display: none;
}

.design_top-head {
  font-size: 4.0rem;
  color: #E35B49;
  font-style: italic;
  line-height: 1;
}

.design-p {
  color: #FFF;
  font-size: 1.5rem;
  margin-top: 24px;
}

.design_bottom::before {
  content: '03';
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: -259px;
  left: 400px;
  font-size: 27.0rem;
  font-style: italic;
  opacity: .4;
  width: 244px;
  height: 200px;
  letter-spacing: -16.5px;
  z-index: 4;
}

.quality_bottom::before {
  content: '02';
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: -239px;
  right: 50px;
  font-size: 27.0rem;
  font-style: italic;
  opacity: .4;
  width: 244px;
  height: 200px;
  letter-spacing: -16.5px;
}

/* Quality */

.quality {
  margin-top: 176px;
}

.quality h2 {
  line-height: 1;
}

.quality-name_top {
  width: 44%;
  position: relative;
  z-index: 3;
}

.brandname-title {
  width: 243px;
}

.quality_bottom::before {
  content: '04';
  color: #FFFFFF;
  display: block;
  position: absolute;
  top: -240px;
  right: 66px;
  font-size: 27.0rem;
  font-style: italic;
  opacity: .4;
  width: 244px;
  height: 200px;
  letter-spacing: -16.5px;
}

.quality_bottom-txt {
  margin: 0 auto;
  padding: 3% 3% 4.5% 52%;
  margin-top: -18%;
}

.qualiry_bottom {
  background-color: rgba(61, 61, 61, .53);
  margin-right: 20%;
  margin-top: -5%;
  position: relative;
}

.quality-title {
  width: 160px;
}

.quality_top-head {
  font-size: 4.0rem;
  color: #61E349;
  font-style: italic;
  line-height: 1;
}

.quality_bottom {
  background-color: rgba(100, 105, 100, .51);
  margin-right: 6%;
  margin-top: -5%;
  position: relative;
}

.inove {
  width: 100%;
  height: 400px;
  background-image: url(../image/Innovation.png);
  background-repeat: repeat-x;
  background-size: 2051px 207px;
  animation-name: inove;
  animation-duration: 7s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  will-change: transform;
}

.inove-wrap {
  margin: 200px 0;
  will-change: transform;
}

@keyframes inove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 2051px 0;
  }
}

/* TABLET */
@media screen and (max-width: 1024px) {

  .section-under-concept_topimg {
    display: none;
  }

  .section-under-concept_tabtopimg {
    display: block;
    padding-top: 68px;
  }

  .colorto {
    font-size: 1.8rem;
    padding-top: 80px;
  }

  .design_bottom-txt {
    padding: 5% 5% 4.5% 8%;
  }

  .design_bottom::before {
    left: 240px;
  }

  .inove {
    width: 100%;
    height: 195px;
    background-size: 1025px 104px;
  }

  @keyframes inove {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 1025px 0;
    }
  }

  .inove-wrap {
    margin: 100px 0;
  }
}

@media screen and (max-width: 767px) {

  /* CONCEPT */

  .brandconcept4img {
    display: none;
  }

  .brandconcept4imgsp {
    display: block;
  }

  .brand-concept_top {
    width: 100%;
    padding: 100px px 0 0 0;
  }

  .brandconcept-title {
    width: 184px;
    margin-left: 3%;
  }

  .brandconcept4imgsp {
    position: relative;
  }

  .brandconcept4imgsp::before {
    content: '01';
    color: #FFFFFF;
    display: block;
    position: absolute;
    top: -129px;
    right: 0;
    font-size: 18.0rem;
    font-style: italic;
    opacity: .4;
    width: 160px;
    height: 211px;
    letter-spacing: -16.5px;
    line-height: 1;
  }

  .brand-concept_bottom {
    margin-right: 0;
  }

  .brand-concept_bottom-txt {
    margin: 0 auto;
    padding: 5% 3% 10% 3%;
    width: 100%;
  }

  .brand-concept_top-head {
    line-height: 1;
    margin-bottom: 24px;
  }

  /* brandname */

  .brand-name_top {
    width: 100%;
    padding-left: 3%;
  }

  .brandname_bottom-txt {
    margin-top: 0;
    padding: 7% 3% 10% 3%;
  }

  .brandname_bottom {
    position: relative;
    margin-left: 5%;
    margin-right: 0;
  }

  .brandname-title {
    width: 275px;
  }

  .brandname_top-head {
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .brandname_bottom::before {
    display: none;
  }

  .brand-name_top {
    position: relative;
  }

  .brand-name_top::before {
    content: '02';
    color: #FFFFFF;
    display: block;
    position: absolute;
    top: -113px;
    left: 0;
    font-size: 18.0rem;
    font-style: italic;
    opacity: .4;
    width: 244px;
    height: 200px;
    letter-spacing: -16.5px;
    line-height: 1;
  }

  /* design */

  .design {
    margin-top: 210px;
  }

  .disign_top {
    display: none;
  }

  .disign_top-sp {
    display: block;
    margin-right: 3%;
  }

  .design_bottom {
    margin-right: 5%;
    margin-top: -5%;
    position: relative;
  }

  .design_bottom-txt {
    padding: 5% 3% 8% 3%;
  }

  .design_bottom::before {
    top: -69px;
    font-size: 18.0rem;
    width: 190px;
    height: 212px;
    letter-spacing: -3.5px;
    line-height: 1;
    right: 0;
    left: auto;
  }

  .designimg {
    width: 100%;
  }

  /* quality */

  .quality-name_top {
    width: 100%;
    padding-left: 3%;
  }


  .quality_bottom-txt {
    margin-top: 0;
    padding: 7% 3% 10% 3%;
  }

  .quality_bottom::before {
    display: none;
  }

  .quality-name_top::before {
    content: '04';
    color: #FFFFFF;
    display: block;
    position: absolute;
    top: -136px;
    left: 0;
    font-size: 18.0rem;
    font-style: italic;
    opacity: .4;
    width: 190px;
    height: 200px;
    letter-spacing: -16.5px;
    line-height: 1;
  }

  .quality_bottom {
    margin-right: 0;
    margin-left: 5%;
    margin-top: -5%;
  }

  .concept-inove img {
    padding: 100px 0 150px 0;
  }

  .quality-name {
    margin-top: 191px;
  }

  .inove {
    width: 100%;
    height: 195px;
    background-size: 700px 70px;
  }

  @keyframes inove {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 700px 0;
    }
  }

  .inove-wrap {
    margin: 80px 0;
  }

}

@media screen and (max-width: 550px) {


  .section-under-concept_tabtopimg {
    display: none;
  }

  .section-under-concept_sptopimg {
    display: block;
    padding-top: 80px;
  }
}

.bg-black {
  background-color: #000;
  position: relative;
  z-index: -5;
}


/* 動き */

.brand-concept {
  opacity: 0;
  transition: opacity 0.8s, transform 1.0s;
  transform: translateX(100vw);
}

.brand-concept.is-shown {
  opacity: 1;
  transform: translateX(0px);
}


.brand-name {
  opacity: 0;
  transition: opacity 0.8s, transform 1.0s;
  transform: translateX(-100vw);
}

.brand-name.is-shown {
  opacity: 1;
  transform: translateX(0px);
}


.design {
  opacity: 0;
  transition: opacity 0.8s, transform 1.0s;
  transform: translateX(100vw);
}

.design.is-shown {
  opacity: 1;
  transform: translateX(0px);
}

.quality {
  opacity: 0;
  transition: opacity 0.8s, transform 1.0s;
  transform: translateX(-100vw);
}

.quality.is-shown {
  opacity: 1;
  transform: translateX(0px);
}


/* __________________________________________ */

.concept-left {
  opacity: 0;
  transition: opacity 0.8s, transform 1.2s;
  transform: translateX(-40px);
}

.concept-left.is-shown {
  opacity: 1;
  transform: translateX(0px);
  transition-delay: 0.5s;
}


.simple-base {
  opacity: 0;
  transition: opacity 0.8s, transform 1.2s;
  transform: translateY(40px);
}


.simple-base.is-shown {
  opacity: 1;
  transform: translateY(0px);
}