/* 追加 */
body {
  color: #444444;
  font-weight: 400;
}

.c_main a[target="_blank"]:not(.icn-none):after, .c_main a[href*=".pdf"]:not(.icn-none):after {
  display: none;
}

.c_main a {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}
/* 追加ここまで */

.c_main {
  max-width: 1366px;
  position: relative;
  margin: 0 auto;
}

.c_main .container {
  padding: 80px 83px 120px 83px;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}

.c_main .container .left {
  width: 560px;
}

.c_main .container .right {
  max-width: calc(50% - 25px);
}

.c_main .container .right .right_main {
  position: relative;
  width: 100%;
}

.c_main .container .right .right_main img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease 0.08s;
  /* active以外はゆっくり消える */
  z-index: 2;
}

.c_main .container .right .right_main img.active {
  position: relative;
  transition: initial;
  /* activeはすぐ表示 */
  opacity: 1;
  z-index: 1;
}

.c_main .container .right .right_sub {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 24px;
  gap: 8px;
}

.c_main .container .right .right_sub>div {
  position: relative;
}

.c_main .container .right .right_sub>div::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #00A0DC;
  content: "";
}

.c_main .container .right .right_sub>div img {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s;
}

.c_main .container .right .right_sub>div.active img {
  opacity: 0.7;
}

.c_main .container .right .right_sub img {
  max-width: 100%;
  width: 144px;
  cursor: pointer;
}

.c_main .container h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: bold;
  margin-bottom: 24px;
}

.c_main .container h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 24px;
}

.c_main .container p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}


.c_main .container p.small {
  font-size: 10px;
  font-weight: lighter;
}

.c_main .c_main_attention+.c_main_attention {
  margin-top: 1em;
}

.c_main .c_main_attention>li {
  font-size: 10px;
  position: relative;
  line-height: 16px;
  padding-left: 14px;
}

.c_main .c_main_attention>li:before {
  content: "※";
  height: 16px;
  position: absolute;
  left: 2px;
  top: 0;
}

.c_main .c_main_attention--square>li:before {
  content: "■";
}

.bar {
  width: 100%;
  min-height: 80px;
  background-color: #000000;
  justify-content: space-between;
  align-items: center;

  display: grid;
  grid-template-columns: auto 1fr;
}

.bar .price_area {
  color: #FFFFFF;
  font-weight: bold;
  padding-right: 83px;
  text-align: right;
  display: flex;
  column-gap: 40px;

  justify-content: flex-end;
}

.bar .price_area_variation {
  font-size: 24px;
}

.bar .price_area_line {
  display: inline-block;
}

.bar .price_area_value {
  margin-left: 24px;
  font-size: 32px;
  font-weight: 400;
  vertical-align: sub;
}

.bar .price_area_prefix {
  font-size: 16px;
  margin-right: -24px;
}

.bar .price_area_postfix {
  font-size: 16px;
}

.bar .price_area_info {
  font-size: 12px;
  font-weight: 700;
}

.bar .back {
  position: relative;
  width: 120px;
  height: 100%;
  border-right: #FFFFFF 2px solid;
}

.bar .back a {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  ;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.bar .back a span {
  font-size: 18px;
  color: #FFFFFF;
  transition: all 0.3s ease 0s;
  position: relative;
}

.bar .back a span::before {
  content: '<';
  position: absolute;
  top: 0;
  width: 0;
  left: -12px;
  background-color: #00A0DC;
}

.bar .back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: all 0.3s ease 0s;
  background-color: #00A0DC;
}

@media (hover:hover) {
  .bar .back:hover::before {
    width: 100%;
  }

  .bar .back:hover a span {
    color: #000;
  }
}

.bar .back img {
  transition: all 0.3s ease 0s;
}

@media (hover:hover) {
  .bar .back:hover img {
    filter: brightness(0);
  }
}

@media screen and (max-width: 768px) {
  .c_main {
    width: 100vw;
    height: auto;
    padding: 0;
  }

  .c_main .container {
    padding: 0 0 80px 0;
    flex-direction: column-reverse;
    align-items: center;
  }

  .c_main .container .left {
    padding-top: 24px;
    width: calc(100% - 48px);
  }

  .c_main .container h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 900;
  }

  .c_main .container .right {
    max-width: 100vw;
  }

  .c_main .container .right .right_main {
    max-width: 100vw;
  }

  .c_main .container .right .right_main img {
    max-width: 100vw;
    width: 100vw;
  }

  .c_main .container .right .right_sub {
    max-width: 100vw;
    margin: 8px 24px;
  }

  .c_main .container .right .right_sub img {
    width: 100%;
  }

  .bar {
    height: auto;
    min-height: 80px;
  }

  .bar .price_area {
    padding: 12px 24px 12px 0;
    flex-direction: column;
    row-gap: 12px;
  }

  .bar .price_area_value {
    font-size: 28px;
    margin-left: 12px;
    margin-right: 2px;
  }

  .bar .price_area_prefix {
    margin-right: -12px;
  }

  .bar .price_area_info {
    font-size: 10px;
  }

  .bar .price_area_variation {
    font-size: 14px;
    display: block;
  }
}