.top {
  position: relative;
  margin-bottom: 30rem;
}

.top_images {
  display: block;
}

.top_images_sp {
  display: none;
}

.top_image_shadow {
  position: absolute;
  width: 100%;
  bottom: -0.5rem;
  left: 0;
}

.dots-box {
  display: block;
  position: absolute;
  bottom: 10rem;
  right: 10rem;
}

.dots-box_sp {
  display: none;
}

.dots-wrap {
  display: flex;
  justify-content: right;
}

.dots-wrap li.slick-active {
  background: #333;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-wrap li {
  width: 1rem;
  height: 1rem;
  margin: 0 2rem;
  background: #BEA976;
  border-radius: 50%;
  cursor: pointer;
}

/* トップ画像の拡大表示 */
.add-animation {
  animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.04);
  }
}

/* スクロール表示 */
.scroll_wrapper {
  position: absolute;
  top: 65.5rem;
  left: 62rem;
}

.scroll {
  display: inline-block;
  padding-top: 9.8rem;
  position: relative;
}

.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid white;
  border-width: 0 0 2px 2px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 3.7rem;
  height: 3.7rem;
}

@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }

  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

.scroll_text {
  color: white;
  font-family: Noto Sans JP;
  font-size: 1.4rem;
}

/* トップ画像に乗せる文字（大） */
.top_text {
  font-family: "Shippori Mincho", serif;
  font-size: 7rem;
  line-height: 1.428em;
  letter-spacing: 0.1em;
  color: #BEA976;
  text-align: center;
}

/* トップ画像に乗せる文字（小） */
.top_text_sub {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  color: #BEA976;
  text-align: center;
  margin-top: 1.4rem;
  margin-bottom: 20rem;
}

/* トップ画像に乗せる文字がスムーズに出てくる */
.smooth {
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 3s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1;
  height: 35rem;
  width: 108rem;
  margin: 0 auto;
  position: absolute;
  top: 16.2rem;
  left: 10rem;
}

.smooth.is-animated {
  clip-path: inset(0);
}

/* 会社概要 */
/* 会社概要のタイトル画像 */
.company_img {
  display: block;
  height: 40rem;
  overflow: hidden;
  opacity: 0;
  object-fit: cover;
}

.company_img_sp {
  display: none;
}

/* 会社概要の画像のフェイドインアニメーション */
.company_img.is-animated {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* 会社概要のタイトルの囲い */
.company_title {
  display: block;
  width: 45rem;
  margin: 0.4rem auto;
  opacity: 0;
}

.company_title_sp {
  display: none;
}

/* 会社概要のタイトル文字のフェイドアップアニメーション */
.company_title.fadeup.is-animated {
  animation: fadeUp 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  /* animation-delay: 1.5s; */
}

@keyframes fadeUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(-25rem);
  }
}

.company_title_e {
  font-family: Noto Serif;
  font-size: 4rem;
  color: white;
  text-shadow: 3px 3px 3px #000000;
  text-align: center;
  margin-bottom: 0.6rem;
}

.company_title_j {
  margin-top: 1.5rem;
  font-family: Noto Sans JP;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: white;
}

.company_line {
  display: block;
  position: relative;
}

.company_line::after {
  background: white;
  content: '';
  display: block;
  height: 1px;
  width: 0;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
}

.company_line.is-animated::after {
  animation: 3s Line cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

@keyframes Line {
  0% {
    opacity: 0;
    width: 0;
  }

  20% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    transition: 2s;
    width: 100%;
  }
}

/* コンセプト */
/* コンセプトタイトル */
.concept_title {
  width: 10rem;
  margin: 10.5rem auto 1.1rem;
  opacity: 0;
}

.concept_title_j {
  font-family: Noto Serif JP;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.concept_title_e {
  font-family: Noto Serif JP;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 0.1rem;
}

.concept_title.fadeup.is-animated {
  animation: fadeUp2 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeUp2 {
  0% {
    transform: translateY(15rem);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* コンセプトのテキストを滑らかに出す */
.concept_text {
  font-family: "Shippori Mincho", serif;
  font-size: 7rem;
  letter-spacing: 0.028em;
  color: #BEA976;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1.4285em;
  height: 20.1rem;
  margin: 0 auto 19.8rem;
}

.concept_text.is-animated {
  clip-path: inset(0);
}

/* 経営理念 */
/* 経営理念タイトル */
.management_title {
  width: 19.4rem;
  margin: 0 auto 1.1rem;
  opacity: 0;
}

.management_title_j {
  font-family: Noto Serif JP;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.management_title_e {
  font-family: Noto Serif JP;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 0.1rem;
}

.management_title.fadeup.is-animated {
  animation: fadeUp2 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* 経営理念のテキストを滑らかに出す */
.management_text {
  font-family: "Shippori Mincho", serif;
  font-size: 7rem;
  letter-spacing: 0.028em;
  color: #BEA976;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1.4285emm;
  height: 10.1rem;
  margin: 0 auto 19.8rem;
}

.management_text.is-animated {
  clip-path: inset(0);
}

/* ミッション */
/* ミッションのタイトル */
.mission_title {
  width: 10rem;
  margin: 0 auto 1.1rem;
  opacity: 0;
}

.mission_title_j {
  font-family: Noto Serif JP;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.mission_title_e {
  font-family: Noto Serif JP;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 0.1rem;
}

.mission_title.fadeup.is-animated {
  animation: fadeUp2 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* ミッションのテキストを滑らかに出す */
.mission_text {
  font-family: "Shippori Mincho", serif;
  font-size: 7rem;
  letter-spacing: 0.1em;
  color: #BEA976;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1.4285em;
  height: 20.1rem;
  margin-bottom: 20rem;
}

.mission_text.is-animated {
  clip-path: inset(0);
}

/* ビジョン */
/* ビジョンのタイトル */
.vision_title {
  width: 10rem;
  margin: 0 auto 1rem;
  opacity: 0;
}

.vision_title_j {
  font-family: Noto Serif JP;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.vision_title_e {
  font-family: Noto Serif JP;
  font-size: 1.4rem;
  text-align: center;
}

.vision_title.fadeup.is-animated {
  animation: fadeUp2 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* ビジョンのテキストを滑らかに出す */
.vision_text {
  font-family: "Shippori Mincho", serif;
  font-size: 7rem;
  letter-spacing: 0.1em;
  color: #BEA976;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1.4285em;
  height: 20.1rem;
  margin: 0 auto 20rem;
}

.vision_text.is-animated {
  clip-path: inset(0);
}

/* 社長あいさつ */
/* 社長あいさつタイトル */
.message_title {
  width: 21.6rem;
  margin: 0 auto 1rem;
  opacity: 0;
}

.message_title_j {
  font-family: Noto Serif JP;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.message_title_e {
  font-family: Noto Serif JP;
  font-size: 1.4rem;
  text-align: center;
}

.message_title.fadeup.is-animated {
  animation: fadeUp2 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* 社長あいさつのテキストを滑らかに出す */
.message_text {
  font-family: "Shippori Mincho", serif;
  font-size: 5rem;
  letter-spacing: 0.1em;
  color: #BEA976;
  text-align: center;
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  line-height: 1.4em;
  height: 20.1rem;
  margin: 0 auto 3.6rem;
}

.message_text.is-animated {
  clip-path: inset(0);
}

/* アコーディオン */
/* アコーディオン部 */
.accordion_title {
  list-style: none;
  cursor: pointer;
  width: 108rem;
  margin: 4.5rem auto 0;
  display: block;
}

.summary_text {
  color: #BEA976;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.summary_img {
  background-image: url('../img/accordion_button.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.accordion_img_hover {
  display: block;
  opacity: 0;
  width: 108rem;
}

.accordion_img_hover_sp {
  display: none;
}

.accordion_img_hover:hover {
  animation: fadeIn 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* アコーディオン中身 */
.message_content {
  font-size: 1.6rem;
  line-height: 1.5625em;
  width: 89rem;
  margin: 0.9rem auto 0;
  display: none;
}

.gold {
  color: #BEA976;
}

.accordion {
  margin-bottom: 19.8rem;
}


.table_title {
  font-family: Noto Serif JP;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.company_table {
  width: 88rem;
  margin: 0 auto 29.9rem;
  opacity: 0;
}

.company_table_e {
  margin-left: 1.2rem;
  font-family: Noto Serif;
  font-size: 1.4rem;
}

.company_table table {
  font-size: 1.4rem;
  line-height: 2.78em;
  width: 88rem;
  border-collapse: collapse;
}

.company_table th {
  width: 15rem;
  background-color: #EFE6D3;
  text-align: center;
  border-bottom: 1px solid #BEA976;
  border-top: 1px solid #BEA976;
}

.company_table.fadeup.is-animated {
  animation: fadeUp2 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.company_table td {
  padding-left: 1rem;
  border-bottom: 1px solid #BEA976;
  border-top: 1px solid #BEA976;
}

.brand_img {
  display: block;
  width: 100%;
  opacity: 0;
}

.brand_img_sp {
  display: none;
}

.brand_title {
  display: block;
  width: 45rem;
  margin: 0.5rem auto 0;
  opacity: 0;
}

.brand_title_sp {
  display: none;
}

.brand_img.is-animated {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.brand_title_e {
  font-family: Noto Serif;
  font-size: 4rem;
  color: white;
  text-shadow: 3px 3px 3px #000000;
  text-align: center;
  margin-bottom: 0.6rem;
}

.brand_title_j {
  margin-top: 1.6rem;
  font-family: Noto Sans JP;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: white;
}


.brand_title.fadeup.is-animated {
  animation: fadeUp 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.brand_line {
  display: block;
  position: relative;
}

.brand_line::after {
  background: white;
  content: '';
  display: block;
  height: 1px;
  width: 0;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
}

.brand_line.is-animated::after {
  animation: 3s Line cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.brand1 {
  margin-top: 10.7rem;
  margin-bottom: 29.8rem;
  display: flex;
}

.brand1_title {
  font-family: Shippori Mincho;
  font-size: 7rem;
  margin-left: 20rem;
  margin-right: 4rem;
  color: #BEA976;
  /* width: 49rem; */
  /* width: 56rem; */
  margin-top: 15rem;
  opacity: 0;
  font-weight: bold;
  white-space: nowrap;
}

.brand1_title.fadeup.is-animated {
  animation: fadeUp2 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.brand1_img {
  display: block;
  width: 55rem;
  height: 40rem;
  opacity: 0;
}

.brand1_img_sp {
  display: none;
}

.brand1_img.slidin.is-animated {
  animation: slidIn 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes slidIn {
  0% {
    transform: translateX(50rem);
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.news_img {
  display: block;
  width: 100%;
  opacity: 0;
}

.news_img_sp {
  display: none;
}

.news_title {
  display: block;
  width: 45rem;
  margin: 0.5rem auto 0;
  opacity: 0;
}

.news_title_sp {
  display: none;
}

.news_img.fadein.is-animated {
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.news_title_e {
  font-family: Noto Serif;
  font-size: 4rem;
  color: white;
  text-shadow: 3px 3px 3px #000000;
  text-align: center;
  margin-bottom: 0.6rem;
}

.news_title_j {
  margin-top: 1.5rem;
  font-family: Noto Sans JP;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: white;
}


.news_title.fadeup.is-animated {
  animation: fadeUp 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  /* animation-delay: -1s; */
}

.news_line {
  display: block;
  position: relative;
}

.news_line::after {
  background: white;
  content: '';
  display: block;
  height: 1px;
  width: 0;
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
}

.news_line.is-animated::after {
  animation: 3s Line cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.news_table {
  font-family: Noto Sans JP;
  margin: 10.4rem auto 30rem;
  font-size: 1.4rem;
  line-height: 2.357em;
  /* line-height: 2.285rem; */
  width: 88rem;
  border-collapse: collapse;
}

.news_time {
  font-family: Noto Sans JP;
  width: 13.9rem;
  height: 3.4rem;
  border-bottom: 1px solid #BEA976;
  border-top: 1px solid #BEA976;
  font-weight: bold;
}

.news_contents {
  border-bottom: 1px solid #BEA976;
  border-top: 1px solid #BEA976;
  /* padding-top: -0.2rem; */
}

@media screen and (max-width: 699.98px) {

  .top {
    margin-bottom: 20rem;
  }

  .top_images {
    display: none;
  }


  .top_images_sp {
    display: block;
  }

  .dots-box {
    display: none;
  }

  .dots-box_sp {
    display: block;
    position: absolute;
    bottom: 5rem;
    left: 11.1rem;
  }

  .scroll_wrapper {
    position: absolute;
    top: 47.2rem;
    left: 17rem;
  }

  .scroll {
    display: inline-block;
    padding-top: 9rem;
    position: relative;
  }

  .scroll::before {
    animation: scroll 3.5s infinite;
    border: solid white;
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }

  .top_text {
    font-size: 3rem;
    line-height: 1.5em;
  }

  .top_text_sub {
    font-size: 2rem;
    line-height: 1.45em;
    margin-top: 2rem;
    margin-bottom: 20rem;
  }

  .smooth {
    height: 30rem;
    width: 27.5rem;
    margin: 0 auto;
    position: absolute;
    top: 10rem;
    left: 5rem;
  }

  .company_img {
    display: none;
  }

  .company_img_sp {
    display: block;
    height: 12rem;
    object-fit: cover;
    overflow: hidden;
    opacity: 0;
  }

  .company_img_sp.fadein.is-animated {
    animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .company_title_sp {
    display: block;
    width: 27.5rem;
    margin: 1.7rem auto 0;
    opacity: 0;
  }

  .company_title {
    display: none;
  }

  .company_title_sp.fadeup.is-animated {
    animation: fadeUpSp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.5s;
  }

  @keyframes fadeUpSp {
    0% {
      transform: translateY(0);
      opacity: 0;
    }

    100% {
      opacity: 1;
      transform: translateY(-10rem);
    }
  }

  .company_title_e {
    font-size: 1.6rem;
    text-shadow: 1px 1px 1px #000000;
    margin-bottom: 0.3rem;
  }

  .company_title_j {
    margin-top: 0.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .company_line.is-animated::after {
    animation: 1s Line cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }

  .concept_title {
    width: 7rem;
    margin: 4.1rem auto 0;
    opacity: 0;
  }

  .concept_title_j {
    font-size: 1.4rem;
  }

  .concept_title_e {
    font-size: 1rem;
  }

  .concept_title.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  @keyframes fadeUp2Sp {
    0% {
      transform: translateY(10rem);
      opacity: 0;
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .concept_text {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    height: 5.9rem;
    margin: 0.4rem auto 10rem;
  }

  .management_title {
    width: 13.8rem;
    margin: 0 auto 0.5rem;
  }

  .management_title_j {
    font-size: 1.4rem;
  }

  .management_title_e {
    font-size: 1rem;
    margin-top: 0;
  }

  .management_title.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .management_text {
    font-size: 2rem;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    height: 5.9rem;
    margin: 0 auto 10rem;
  }

  .mission_title {
    width: 7rem;
    margin: 0 auto 0.5rem;
  }

  .mission_title_j {
    font-size: 1.4rem;
  }

  .mission_title_e {
    font-size: 1rem;
    line-height: 1.5em;
    margin-top: 0;
  }

  .mission_title.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .mission_text {
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    height: 5.9rem;
    margin: 0 auto 10rem;
  }

  .vision_title {
    width: 5.6rem;
    margin: 0 auto 0.5rem;
  }

  .vision_title_j {
    font-size: 1.4rem;
  }

  .vision_title_e {
    font-size: 1rem;
    line-height: 1.5em;
  }

  .vision_title.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .vision_text {
    font-size: 2rem;
    line-height: 1.5em;
    height: 5.9rem;
    margin: 0 auto 10rem;
  }

  .message_title {
    width: 15.2rem;
    margin: 0 auto 0.5rem;
  }

  .message_title_j {
    font-size: 1.4rem;
  }

  .message_title_e {
    font-size: 1rem;
  }

  .message_title.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .message_text {
    font-size: 2rem;
    letter-spacing: -0.016em;
    line-height: 1.5em;
    height: 8.9rem;
    margin: 0 auto 5rem;
  }

  .accordion_title {
    list-style: none;
    cursor: pointer;
    width: 31.5rem;
    height: 4.7rem;
    margin: 0 auto;
    display: block;
  }

  .summary_text {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .summary_img {
    background-image: url('../img/accordion_button_sp.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .accordion_img_hover_sp {
    display: block;
    opacity: 0;
    width: 31.5rem;
  }

  .accordion_img_hover {
    display: none;
  }

  .accordion_img_hover_sp:hover {
    animation: fadeIn 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .message_content {
    margin-top: 2.8rem;
    font-size: 1.4rem;
    line-height: 1.4285em;
    width: 27.5rem;
  }

  .accordion {
    margin-bottom: 10rem;
  }

  .table_title {
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
  }

  .company_table {
    width: 27.5rem;
    margin: 0 auto 20rem;
  }

  .company_table_e {
    font-size: 1.2rem;
  }

  .company_table table {
    font-size: 1.2rem;
    line-height: 3.25em;
    width: 27.5rem;
  }

  .company_table th {
    width: 7rem;
  }

  .company_table td {
    padding-left: 0.5rem;
  }

  .company_table.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .brand_img {
    display: none;
  }

  .brand_img_sp {
    display: block;
    width: 100%;
    opacity: 0;
  }

  .brand_img_sp.fadein.is-animated {
    animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .brand_title_sp {
    display: block;
    width: 27.5rem;
    margin: 1.7rem auto 0;
    opacity: 0;
  }

  .brand_title {
    display: none;
  }

  .brand_title_sp.fadeup.is-animated {
    animation: fadeUpSp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.5s;
  }

  .brand_title_e {
    font-size: 1.6rem;
    text-shadow: 1px 1px 1px #000000;
    margin-bottom: 0.2rem;
  }

  .brand_title_j {
    margin-top: 0.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .brand_line.is-animated::after {
    animation: 1s Line cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }

  .brand1 {
    margin-top: 4rem;
    margin-bottom: 18rem;
    flex-direction: column;
  }

  .brand1_title {
    font-size: 3.9rem;
    margin: 0 auto 5rem;
    width: 27.3rem;
    letter-spacing: 0;
  }

  .brand1_title.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .brand1_img {
    display: none;
  }

  .brand1_img_sp {
    display: block;
    width: 27.5rem;
    height: 20.4rem;
    margin: 0 auto 2rem;
    opacity: 0;
  }

  .brand1_img_sp.fadeup.is-animated {
    animation: fadeUp2Sp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }

  .news_img {
    display: none;
  }


  .news_img_sp {
    display: block;
    width: 100%;
    opacity: 0;
  }

  .news_img_sp.fadein.is-animated {
    animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }



  .news_title_sp {
    display: block;
    width: 27.5rem;
    margin: 1.8rem auto 0;
    opacity: 0;
  }

  .news_title {
    display: none;
  }

  .news_title_sp.fadeup.is-animated {
    animation: fadeUpSp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 0.5s;
  }

  .news_title_e {
    font-size: 1.6rem;
    text-shadow: 1px 1px 1px #000000;
    margin-bottom: 0.3rem;
  }

  .news_title_j {
    margin-top: 0.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .news_line.is-animated::after {
    animation: 1s Line cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }

  .news_table {
    margin: 4rem auto 33.9rem;
    font-size: 1.2rem;
    line-height: 1.41667em;
    width: 27.5rem;
  }

  .news_time {
    width: 7rem;
    height: auto;
    padding-top: 0.5rem;
  }

  .news_contents {
    padding-left: 1rem;
    padding-bottom: 0.4rem;
    padding-top: 0;
  }

}