@charset "UTF-8";
/* SCSS を使用してください */
/* -----------------------------------------------
var
----------------------------------------------- */
@media screen and (min-width: 641px) {
  .for-sp {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .for-pc {
    display: none;
  }
}
@-webkit-keyframes lineAnime {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes lineAnime {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* -----------------------------------------------
common
----------------------------------------------- */
html {
  height: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 54.7%;
  }
}

body {
  background-color: #000;
}

body * {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  font-feature-settings: "palt";
}

section > :not(.nofade) {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s;
}

section > .fade {
  opacity: 1;
  transform: translate(0, 0);
}

article {
  margin: 64px auto 0;
  max-width: 976px;
}
@media screen and (max-width: 640px) {
  article {
    margin: 0 auto;
  }
}

h2 {
  font-size: 36px;
  line-height: 60px;
  letter-spacing: 0.1em;
  margin: 0 0 0 0;
}
@media screen and (max-width: 640px) {
  h2 {
    font-size: 23px;
    line-height: 40px;
  }
}

.logo-store img,
.logo-letsnote img {
  width: 240px;
}

img {
  width: 100%;
}

sup {
  font-size: 70%;
}
@media screen and (max-width: 640px) {
  sup {
    font-size: 10px !important;
  }
}

.box-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .box-flex {
    flex-direction: column;
  }
}

.sec-performance .txt-shoulder {
  background-color: #fff;
}

.txt-shoulder {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: #000;
  display: inline-block;
  font-weight: 500;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.txt-shoulder span::before {
  padding: 9px 16px;
  top: -8px;
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .txt-shoulder {
    font-size: 16px;
    line-height: 30px;
    padding: 4px 12px;
    margin-bottom: 18px;
  }
}

.txt-lead {
  line-height: 34px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .txt-lead {
    line-height: 27px;
  }
}

.txt-graf-title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.box-btn {
  display: block;
  text-align: center;
}
.box-btn .button {
  display: inline-block;
  border-radius: 100px;
  padding: 16px 0;
  width: 600px;
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  position: relative;
  transition: 0.5s;
  color: #333;
  background-color: #fff;
  border: 1px solid #000000;
}
@media screen and (max-width: 640px) {
  .box-btn .button {
    width: 100%;
    font-size: 16px;
  }
}
/*.box-btn .button:hover {
  opacity: 0.7;
}
.box-btn .button::after {
  content: "▶";
  position: absolute;
  right: 24px;
  top: 38%;
  font-size: 8px;
}*/
.box-btn .button.navy {
  color: #FFF;
  background-color: #364563;
  border: 1px solid #364563;
}
.box-btn .button.gray {
  color: #FFF;
  background-color: #aaa;
}

.note {
  font-size: 1.4rem;
  margin: 0;
}
@media screen and (max-width: 640px) {
  .note {
    font-size: 80%;
  }
}

/* -----------------------------------------------
Background
----------------------------------------------- */
.box-bg::before {
  content: "";
  position: absolute;
  min-width: 1200px;
  width: 100vw;
  height: 3000px;
  margin-left: calc(-50vw + 488px);
  display: block;
  z-index: -5;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0;
}
@media screen and (max-width: 1200px) {
  .box-bg::before {
    width: 1200px;
    margin-left: -112px;
  }
}

.bg-present-start::before {
  background-image: url(../img/bg_present-start.png);
  top: -505px;
}

.bg-present-end::before {
  background-image: url(../img/bg_present-end.jpg);
}

/* -----------------------------------------------
Line Anime
----------------------------------------------- */
.animation-outer {
  -webkit-animation-name: lineAnimeOuter;
          animation-name: lineAnimeOuter;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
  font-size: inherit;
  color: #000;
}

@-webkit-keyframes lineAnimeOuter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineAnimeOuter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animation-inner {
  -webkit-animation-name: lineAnimeInner;
          animation-name: lineAnimeInner;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  font-size: inherit;
  color: #000;
}

@-webkit-keyframes lineAnimeInner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lineAnimeInner {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.animation-bg::before {
  -webkit-animation-name: lineAnimeBg;
          animation-name: lineAnimeBg;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 0 16px;
  left: -16px;
}

@-webkit-keyframes lineAnimeBg {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}

@keyframes lineAnimeBg {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
.animation-inner-trigger,
.animation-bg-trigger {
  opacity: 0;
}

.animation-top::before {
  -webkit-animation-name: lineAnimeTop;
          animation-name: lineAnimeTop;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 0 16px;
  left: -16px;
}

@-webkit-keyframes lineAnimeTop {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}

@keyframes lineAnimeTop {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    transform: scaleX(1);
  }
}
/* -----------------------------------------------
header
----------------------------------------------- */
@media screen and (min-width: 641px) {
  a {
    transition: opacity 0.5s ease;
  }
  header .header-content {
    width: 976px;
    margin: 0 auto;
    padding: 0 0 5px;
  }
  header .header-content .header-logo-cnt {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-top: 13px;
    margin: 0 0 16px;
  }
  header .header-content .header-logo-cnt .logo-store {
    width: 212px;
  }
  header .header-content .header-logo-cnt .logo-store img {
    width: 100%;
  }
  header .header-content .header-logo-cnt .logo-letsnote {
    float: right;
    width: 197px;
    padding-top: 8px;
  }
  header .header-content .header-logo-cnt .logo-letsnote img {
    width: 100%;
  }
}
header .header-content .breadcrumb ul {
  box-sizing: border-box;
  margin: 0;
  padding: 0 3px 0 9px;
  list-style: none;
  letter-spacing: -0.4em;
  color: #fff;
  white-space: nowrap;
  padding: 0;
}
header .header-content .breadcrumb ul li {
  font-size: 1.2rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  display: inline-block;
  letter-spacing: normal;
  vertical-align: baseline;
  margin-right: 0.5em;
}
header .header-content .breadcrumb ul li:before {
  content: "＞";
  font-size: 50%;
  margin: 0 8px;
  padding-right: 0.5em;
}
header .header-content .breadcrumb ul li:first-child:before {
  display: none;
}
header .header-content .breadcrumb ul li a {
  font-size: 1.2rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #c8c8c8;
  text-decoration: none;
}
header .header-content .breadcrumb ul li a:hover {
  text-decoration: underline;
}
header .header-content .breadcrumb ul li h1 {
  font-size: 100%;
  font-weight: normal;
  display: inline;
}
@media screen and (max-width: 640px) {
  header .header-content {
    padding: 16px;
  }
  header .header-content .header-logo-cnt {
    display: flex;
    justify-content: space-between;
  }
  header .header-content .header-logo-cnt .logo-store {
    width: 44.44%;
    max-width: 168px;
  }
  header .header-content .header-logo-cnt .logo-store img {
    width: 100%;
  }
  header .header-content .header-logo-cnt .logo-letsnote {
    width: 41.27%;
    max-width: 156px;
  }
  header .header-content .header-logo-cnt .logo-letsnote a {
    padding-top: 8px;
    display: block;
  }
  header .header-content .header-logo-cnt .logo-letsnote a img {
    width: 100%;
    height: auto;
  }
}

#wrap {
  min-width: 1200px;
  overflow: hidden;
}

#wrap::before,
#wrap::after {
  content: "";
  width: 100%;
  height: 7091px;
  display: block;
  position: absolute;
  top: 0;
  z-index: -5;
}

#wrap::before {
  min-width: 1200px;
  background-image: url(../img/bg1.jpg);
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
}

#wrap::after {
  min-width: 1200px;
  background-image: url(../img/bg_over1.png);
  background-position: 50% 0;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 640px) {
  #wrap,
#wrap::before,
#wrap::after {
    min-width: auto;
    background-size: auto;
  }
  #wrap::before {
    background-image: url(../img/bg1_sp.jpg);
    background-size: cover;
    top: -70px;
  }
  section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* -----------------------------------------------
fixed
----------------------------------------------- */
.fixed {
  margin: 64px auto 0;
  max-width: 976px;
  position: relative;
}
@media screen and (min-width: 641px) {
  .fixed .present-announce {
    position: absolute;
    background-color: #ffe100;
    border-radius: 150px;
    right: 0;
    top: 520px;
    width: 220px;
    height: 220px;
    opacity: 1;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
    z-index: 10;
  }
  .fixed .present-announce p {
    color: #000;
    text-align: center;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-weight: 500;
  }
  .fixed .present-announce p.red {
    color: #c7000b;
    margin: 0 0 0;
    font-weight: 600;
  }
  .fixed .present-announce p.red strong {
    color: #c7000b;
    font-size: 22px;
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-weight: 600;
  }
  .fixed .present-announce p.small {
    font-size: 16px;
    margin: 26px 0 6px;
    font-weight: 600;
  }
  .fixed .present-announce p.mid {
    margin: 0 0 0;
    font-size: 18px;
  }
  .fixed .present-announce p.big {
    margin: 0 0 6px;
    font-size: 18px;
  }
  .fixed .present-announce .box-img {
    width: 25px;
    margin: auto;
    position: relative;
    top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .fixed .present-announce .box-img {
    height: 185px;
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 10;
  }
  .fixed .present-announce .box-img img {
    height: 100%;
    width: auto;
  }
}
.fixed .present-announce-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 30, 0.9);
  z-index: 10;
}
.fixed .present-announce-fixed * {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.fixed .present-announce-fixed .trigger-scroll {
  display: none;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex {
  width: 976px;
  margin: auto;
  align-items: end;
  padding: 14px 0;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex .box-flex .square {
  background: #ffe100;
  font-size: 20px;
  color: #000;
  padding: 16px 36px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex .box-flex .text .yellow {
  font-size: 18px;
  color: #ffe100;
  margin: 0;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex .box-flex .text .yellow strong {
  font-size: 24px;
  color: #ffe100;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex .box-flex .text .white {
  font-size: 22px;
  margin: 0;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex #close {
  text-align: right;
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex .button {
  width: 175px;
  font-size: 16px;
  padding: 10px 0;
}
.fixed .present-announce-fixed .trigger-scroll > .box-flex .button::after {
  content: "▶";
  position: absolute;
  right: 10px;
  top: 33%;
  font-size: 8px;
}

/* -----------------------------------------------
sec-first
----------------------------------------------- */
.sec-first {
  position: relative;
}
.sec-first .main-visual {
  opacity: 1;
  margin-top: -24px;
}
.sec-first .main-visual .box-grade-1,
.sec-first .main-visual .box-grade-2 {
  padding: 24px;
  position: relative;
}
.sec-first .main-visual .box-grade-1 {
  margin-bottom: 8px;
}
.sec-first .main-visual .box-grade-2 {
  height: 190px;
  margin-bottom: 350px;
}
.sec-first .main-visual .box-grade-1::before,
.sec-first .main-visual .box-grade-2::before {
  content: "";
  display: block;
  height: 100%;
  background: rgb(19, 122, 190);
  background: linear-gradient(90deg, rgba(19, 122, 190, 0.5) 0%, rgba(146, 217, 10, 0.5) 100%);
  margin: -24px;
  position: absolute;
  z-index: -1;
  mix-blend-mode: plus-lighter;
}
.sec-first .main-visual .box-grade-1::before {
  -webkit-animation: lineAnime 0.5s ease forwards;
          animation: lineAnime 0.5s ease forwards;
}
.sec-first .main-visual .box-grade-2::before {
  -webkit-animation: lineAnime 0.5s ease 0.5s forwards;
          animation: lineAnime 0.5s ease 0.5s forwards;
}
.sec-first .main-visual .txt-shoulder {
  font-size: 2.6rem;
  padding: 0 16px;
  margin: 0;
}
.sec-first .main-visual .txt-shoulder span {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.sec-first .main-visual .txt-shoulder span::before {
  padding: 0 16px;
  top: 0;
  background-color: #ffe100;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.sec-first .main-visual .txt-shoulder .small {
  color: #000;
  font-size: 70%;
}
.sec-first .main-visual .box-img.logo-20th {
  width: 90px;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.sec-first .main-visual .txt-title {
  margin: 30px 0 0;
  font-size: 5rem;
  letter-spacing: 0.075em;
  color: #fff;
}

.sec-first .main-visual .sold-out{
	position: absolute;
	top: 120px;
	right: 30px;
}
.sec-first .main-visual .sold-out span {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: #cc0000;
	padding: 15px 20px;
	writing-mode: vertical-rl;
}

.sec-first .main-visual h1 {
  font-size: 2.2rem;
  letter-spacing: 0.075em;
  margin-top: 0;
  color: #fff;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.sec-first .main-visual .txt-num {
  font-family: "Roboto";
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  margin: 0 0 24px;
  color: #fff;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.sec-first .main-visual .box-img.pc {
  width: 618px;
  position: absolute;
  right: 150px;
  top: 90px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.sec-first .main-visual ul {
  padding: 0 0 0 16px;
}
.sec-first .main-visual ul li {
  list-style: none;
  margin-bottom: 7px;
}
.sec-first .main-visual ul li span {
  font-size: 1.4rem;
  padding: 3px 0px;
}
.sec-first .main-visual ul li span::before {
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}
.sec-first .main-visual ul li:first-child {
  position: relative;
  /*top: 4px;*/
}
.sec-first .main-visual ul li:first-child span {
  color: #fff;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
.sec-first .main-visual ul li:first-child span::before {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.sec-first .main-visual ul li:nth-child(2) span, .sec-first .main-visual ul li:nth-child(2) span::before {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.main-visual ul li:nth-child(3) span, .sec-first .main-visual ul li:nth-child(3) span::before {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.sec-first .main-visual ul li:nth-child(4) span, .sec-first .main-visual ul li:nth-child(4) span::before {
  -webkit-animation-delay: 0.95s;
          animation-delay: 0.95s;
}
.sec-first .main-visual ul li:nth-child(5) span, .sec-first .main-visual ul li:nth-child(5) span::before {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.sec-first .main-visual ul li:nth-child(6) span, .sec-first .main-visual ul li:nth-child(6) span::before {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}
.sec-first .main-visual ul li:nth-child(7) span, .sec-first .main-visual ul li:nth-child(7) span::before {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.sec-first .main-visual ul li:nth-child(8) span, .sec-first .main-visual ul li:nth-child(8) span::before {
  -webkit-animation-delay: 1.45s;
          animation-delay: 1.45s;
}
.sec-first .bg-over-2 {
  transform: translate(0, 0);
  pointer-events: none;
  transition: none;
  mix-blend-mode: plus-lighter;
  width: 100vw;
}
@media screen and (min-width: 1201px) {
  .sec-first .bg-over-2 {
    margin-left: calc(-50vw + 488px);
  }
}
.sec-first .bg-over-2::before {
  content: "";
  background-image: url(../img/bg_over2.png);
  background-repeat: no-repeat;
  position: absolute;
  left: 307px;
  top: -470px;
  width: 778px;
  height: 1379px;
  z-index: -4;
  mix-blend-mode: plus-lighter;
}
@media screen and (min-width: 2001px) {
  .sec-first .bg-over-2::before {
    background-size: contain;
    width: 40vw;
    height: 100vw;
  }
}
@media screen and (min-width: 1201px) {
  .sec-first .bg-over-2::before {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 640px) {
  .sec-first .bg-over-2::before {
    background-size: contain;
    left: auto;
    top: -80px;
    right: 0;
    width: 80%;
  }
}
.sec-first .txt-lead {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 58px;
  margin-bottom: 430px;
}

@media screen and (max-width: 640px) {
  .sec-first .main-visual .box-grade-1,
.sec-first .main-visual .box-grade-2 {
    padding: 12px;
  }
  .sec-first .main-visual .box-grade-1::before,
.sec-first .main-visual .box-grade-2::before {
    margin: -12px;
  }
  .sec-first .main-visual .box-img.logo-20th {
    width: 64px;
  }
  .sec-first .main-visual .txt-title {
    font-size: 38px;
    margin-top: 18px;
  }

.sec-first .main-visual .sold-out{
	position: absolute;
	top: 110px;
	right: 10px;
}
.sec-first .main-visual .sold-out span {
	font-size: 15px;
	writing-mode: horizontal-tb;
	padding: 5px 10px;
}
	
  .sec-first .main-visual .box-img.pc {
    width: 100%;
    height: 82vw;
    right: 0;
    top: 155px;
    overflow: hidden;
  }
  .sec-first .main-visual .box-img.pc img {
    position: absolute;
    width: 76%;
    right: -10%;
    display: block;
  }
  .sec-first .main-visual .box-grade-2 {
    margin-bottom: 150px;
  }
  .sec-first .txt-lead {
    font-size: 14px;
    line-height: 32px;
    margin-top: 180px;
    margin-bottom: 200px;
  }
}
/* -----------------------------------------------
anchor navigation
----------------------------------------------- */
nav ul {
  max-width: 780px;
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 0 auto 220px;
  text-align: center;
}
nav ul li {
  width: 25%;
  height: 48px;
}
nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  width: 100%;
  height: 100%;
}
nav ul li + li {
  border-right: 1px solid #646464;
}
nav ul li:first-child {
  border-right: 1px solid #646464;
  border-left: 1px solid #646464;
}

@media screen and (max-width: 640px) {
  nav {
    padding-right: 18px;
    padding-left: 18px;
  }
  nav ul {
    display: block;
    padding: 0;
    margin: 0 auto 120px;
  }
  nav ul li:first-child {
    border: 0;
    border-top: 1px solid #646464;
    border-bottom: 1px solid #646464;
  }
  nav ul li {
    width: 100%;
    height: 60px;
    position: relative;
  }
  nav ul li::before {
    content: "";
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 10px;
    display: block;
    position: absolute;
    right: 12px;
    top: 42%;
  }
  nav ul li a {
    font-size: 16px;
    justify-content: left;
    padding-left: 12px;
  }
  nav ul li + li {
    border: 0;
    border-bottom: 1px solid #646464;
  }
}
/* -----------------------------------------------
sec-performance
----------------------------------------------- */
.sec-performance > div {
  margin-bottom: 120px;
}
@media screen and (max-width: 640px) {
  .sec-performance > div {
    margin-bottom: 80px;
  }
}
.sec-performance .area-cpu,
.sec-performance .area-5g {
  position: relative;
}
.sec-performance .area-cpu .txt-graf-name,
.sec-performance .area-5g .txt-graf-name {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}
.sec-performance .area-cpu .graf-anime-new div,
.sec-performance .area-cpu .graf-anime-old div,
.sec-performance .area-5g .graf-anime-new div,
.sec-performance .area-5g .graf-anime-old div {
  height: 20px;
}
.sec-performance .area-cpu .graf-anime-new,
.sec-performance .area-5g .graf-anime-new {
  margin-bottom: 8px;
}
.sec-performance .area-cpu .graf-anime-new.animation-bg::before,
.sec-performance .area-5g .graf-anime-new.animation-bg::before {
  background: rgb(19, 122, 190);
  background: linear-gradient(90deg, rgba(19, 122, 190, 0.75) 0%, rgba(146, 217, 10, 0.75) 100%);
  padding: 0;
  left: auto;
}
.sec-performance .area-cpu .graf-anime-old.animation-bg::before,
.sec-performance .area-5g .graf-anime-old.animation-bg::before {
  background: rgb(100, 100, 100);
  background: linear-gradient(90deg, rgba(100, 100, 100, 0.35) 0%, rgba(200, 200, 200, 0.35) 100%);
  padding: 0;
  left: auto;
}
.sec-performance .area-cpu .txt-graf-result,
.sec-performance .area-5g .txt-graf-result {
  font-size: 3.2rem;
  color: #fff;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.sec-performance .area-cpu .txt-graf-result strong,
.sec-performance .area-5g .txt-graf-result strong {
  font-size: 6.2rem;
}
.sec-performance .area-cpu .txt-graf-result.new,
.sec-performance .area-5g .txt-graf-result.new {
  font-size: 2rem;
}
.sec-performance .area-cpu .txt-graf-result.new strong,
.sec-performance .area-5g .txt-graf-result.new strong {
  font-size: 3.2rem;
}
.sec-performance .area-cpu .txt-graf-result.old,
.sec-performance .area-5g .txt-graf-result.old {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  color: #646464;
  font-size: 1.4rem;
}
.sec-performance .area-cpu .txt-graf-result.old strong,
.sec-performance .area-5g .txt-graf-result.old strong {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  color: #646464;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-cpu .box-flex,
.sec-performance .area-5g .box-flex {
    flex-direction: initial;
  }
  .sec-performance .area-cpu .txt-graf-result,
.sec-performance .area-5g .txt-graf-result {
    font-size: 16px;
  }
  .sec-performance .area-cpu .txt-graf-result strong,
.sec-performance .area-5g .txt-graf-result strong {
    font-size: 30px;
  }
  .sec-performance .area-cpu .txt-graf-result.new,
.sec-performance .area-5g .txt-graf-result.new {
    font-size: 10px;
  }
  .sec-performance .area-cpu .txt-graf-result.new strong,
.sec-performance .area-5g .txt-graf-result.new strong {
    font-size: 16px;
  }
  .sec-performance .area-cpu .txt-graf-result.old,
.sec-performance .area-5g .txt-graf-result.old {
    font-size: 12px;
  }
  .sec-performance .area-cpu .txt-graf-result.old strong,
.sec-performance .area-5g .txt-graf-result.old strong {
    font-size: 16px;
  }
}
.sec-performance .area-cpu ul {
  padding: 0;
}
.sec-performance .area-cpu ul li {
  list-style: none;
  position: relative;
  margin-bottom: 30px;
}
.sec-performance .area-cpu .graf-anime-new,
.sec-performance .area-cpu .graf-anime-old {
  display: flex;
}
.sec-performance .area-cpu .graf-anime-new.no1::before {
  width: 62.9%;
}
.sec-performance .area-cpu .graf-anime-new.no2::before {
  width: 63.4%;
}
.sec-performance .area-cpu .graf-anime-new.no3::before {
  width: 64%;
}
.sec-performance .area-cpu .graf-anime-new.no4::before {
  width: 62.5%;
}
.sec-performance .area-cpu .graf-anime-new.no5::before {
  width: 57.6%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-cpu .graf-anime-new.no1::before {
    width: 50%;
  }
  .sec-performance .area-cpu .graf-anime-new.no2::before {
    width: 50.1%;
  }
  .sec-performance .area-cpu .graf-anime-new.no3::before {
    width: 50.6%;
  }
  .sec-performance .area-cpu .graf-anime-new.no4::before {
    width: 49.5%;
  }
  .sec-performance .area-cpu .graf-anime-new.no5::before {
    width: 45.5%;
  }
}
.sec-performance .area-cpu .graf-anime-old {
  width: 49.2%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-cpu .graf-anime-old {
    width: 39%;
  }
}
.sec-performance .area-cpu .txt-graf-result {
  position: absolute;
  left: 650px;
  top: -48px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-cpu .txt-graf-result {
    left: 53%;
    top: 0px;
  }
}
.sec-performance .area-cpu .caption {
  margin-top: 40px;
}
.sec-performance .area-cpu .caption small {
  margin-top: 40px;
  font-size: 12px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
.sec-performance .area-cpu .caption small a {
  font-size: 12px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  transition: 0.3s;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  line-break: anywhere;
}
.sec-performance .area-cpu .caption small a:hover {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g .txt-shoulder span::before {
    width: 150%;
  }
}
.sec-performance .area-5g dd {
  position: relative;
  margin-left: 0;
}
.sec-performance .area-5g dd .box-flex {
  justify-content: left;
}
.sec-performance .area-5g dd .box-flex p {
  margin: 0;
  width: 100px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd .box-flex p {
    width: 80px;
    font-size: 11px;
  }
}
.sec-performance .area-5g dd.no1 .graf-anime-new {
  width: 65%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no1 .graf-anime-new {
    width: 161px;
  }
}
.sec-performance .area-5g dd.no1 .txt-graf-result {
  position: absolute;
  left: 758px;
  top: -84px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no1 .txt-graf-result {
    left: 245px;
    top: -24px;
  }
  .sec-performance .area-5g dd.no1 .txt-graf-result strong {
    font-size: 24px;
  }
}
.sec-performance .area-5g dd.no2 {
  margin-bottom: 20px;
}
.sec-performance .area-5g dd.no2 .graf-anime-old {
  width: 7.7%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no2 .graf-anime-old {
    width: 13px;
  }
}
.sec-performance .area-5g dd.no2 .txt-graf-result {
  position: absolute;
  left: 181px;
  top: -19px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no2 .txt-graf-result {
    left: 98px;
    top: -15px;
  }
}
.sec-performance .area-5g dd.no3 .graf-anime-new {
  width: 16.9%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no3 .graf-anime-new {
    width: 27px;
  }
}
.sec-performance .area-5g dd.no3 .txt-graf-result {
  position: absolute;
  left: 285px;
  top: -37px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no3 .txt-graf-result {
    left: 112px;
    top: -12px;
  }
}
.sec-performance .area-5g dd.no4 .graf-anime-old {
  width: 2.1%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no4 .graf-anime-old {
    width: 4px;
  }
}
.sec-performance .area-5g dd.no4 .txt-graf-result {
  position: absolute;
  left: 128px;
  top: -19px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g dd.no4 .txt-graf-result {
    left: 89px;
    top: -15px;
  }
}
.sec-performance .area-5g .txt-graf-5g,
.sec-performance .area-5g .txt-graf-4g {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.sec-performance .area-5g .txt-comment {
  text-align: center;
  font-size: 2.4rem;
  line-height: 40px;
  letter-spacing: 0.1em;
  position: absolute;
  right: 20px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  color: #fff;
}
.sec-performance .area-5g .txt-comment::before {
  content: "";
  background-image: url(../img/cpu_comment.svg);
  background-repeat: no-repeat;
  width: 360px;
  height: 123px;
  display: block;
  position: absolute;
  left: -22px;
  top: -21px;
}
.sec-performance .area-5g .txt-comment strong {
  font-size: 3.6rem;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-5g .txt-comment {
    font-size: 12px;
    line-height: 20px;
    top: 40px;
    left: 208px;
    right: auto;
  }
  .sec-performance .area-5g .txt-comment::before {
    content: "";
    background-image: url(../img/cpu_comment_sp.svg);
    background-size: contain;
    width: 155px;
    height: 100px;
    left: -20px;
  }
  .sec-performance .area-5g .txt-comment strong {
    font-size: 18px;
  }
}
.sec-performance .area-touch > div:first-child {
  width: 55%;
}
.sec-performance .area-touch > div:first-child .txt-lead {
  margin-right: 16px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-touch > div:first-child {
    width: 100%;
  }
  .sec-performance .area-touch > div:first-child .txt-lead {
    margin-right: 0;
  }
}
.sec-performance .area-touch > div:nth-child(2) {
  width: 45%;
  position: relative;
  left: 15px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-touch > div:nth-child(2) {
    width: 100%;
    left: auto;
  }
}
.sec-performance .area-ssd,
.sec-performance .area-ram {
  width: 460px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-ssd,
.sec-performance .area-ram {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .sec-performance .area-ssd {
    margin-bottom: 80px;
  }
}
.sec-performance .area-win > div:first-child {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-win > div:first-child {
    width: 100%;
  }
}
.sec-performance .area-win > div:nth-child(2) {
  width: 47%;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-win > div:nth-child(2) {
    width: 100%;
  }
}
.sec-performance .area-win > div:nth-child(2) .note {
  margin-top: 1em;
}
.sec-performance .area-hispec {
  margin-bottom: 200px;
}
.sec-performance .area-hispec .txt-shoulder {
  margin-bottom: 16px;
  padding: 0;
  color: #fff;
  background: none;
}
.sec-performance .area-hispec .box-wrap {
  border: 1px solid #646464;
  border-radius: 3px;
  padding-bottom: 8px;
  margin-bottom: 120px;
}
.sec-performance .area-hispec .box-wrap h2 {
  font-size: 2.4rem;
  background-color: #323232;
  padding: 4px 36px;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap h2 {
    font-size: 2.2rem;
    padding: 4px 12px;
  }
}
.sec-performance .area-hispec .box-wrap .txt-lead {
  margin: 0 36px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap .txt-lead {
    margin: 0 12px;
  }
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap .box-flex {
    flex-direction: initial;
    position: relative;
  }
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap ul {
    padding: 0;
    margin: 24px 12px 0;
  }
}
.sec-performance .area-hispec .box-wrap ul li {
  list-style-type: none;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.sec-performance .area-hispec .box-wrap ul li::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_check.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: relative;
  top: 5px;
  margin-right: 0.5em;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap ul li::before {
    width: 16px;
    height: 16px;
    top: 3px;
  }
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap ul li {
    font-size: 14px;
    text-indent: -23px;
    margin-left: 23px;
  }
}
.sec-performance .area-hispec .box-wrap .box-img.logo-vpro {
  width: 162px;
  margin-right: 36px;
  position: relative;
  top: 20px;
}
@media screen and (max-width: 640px) {
  .sec-performance .area-hispec .box-wrap .box-img.logo-vpro {
    width: 80px;
    margin-right: 36px;
    position: absolute;
    right: -17px;
    top: 23px;
  }
}

/* -----------------------------------------------
sec-present
----------------------------------------------- */
.sec-present {
  margin-bottom: 300px;
  position: relative;
}
.sec-present::before {
  content: "";
  position: absolute;
  min-width: 1200px;
  width: 100vw;
  height: 120%;
  margin-left: calc(-50vw + 488px);
  display: block;
  z-index: -5;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 0;
  background-color: #7a7472;
}
@media screen and (max-width: 1200px) {
  .sec-present::before {
    width: 1200px;
    margin-left: -112px;
  }
}
.sec-present h2 {
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.sec-present .txt-shoulder {
  background-color: #ffe100;
  padding: 4px 16px 8px;
  letter-spacing: 0.1em;
}
.sec-present .txt-shoulder span {
  color: #000;
  font-size: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .sec-present .txt-shoulder {
    font-size: 16px;
    line-height: 30px;
    padding: 4px 12px;
  }
}
.sec-present .area-first,
.sec-present .area-second {
  margin-bottom: 80px;
  position: relative;
}
.sec-present .area-first h3,
.sec-present .area-second h3 {
  font-size: 36px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first h3,
.sec-present .area-second h3 {
    font-size: 23px;
  }
}
.sec-present .area-first .logo-seal,
.sec-present .area-second .logo-seal {
  width: 453px;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first .logo-seal,
.sec-present .area-second .logo-seal {
    width: auto;
    max-width: 286px;
  }
}
.sec-present .area-first .garrely .main-img,
.sec-present .area-second .garrely .main-img {
  height: 386px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  background: #d1d0d3;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first .garrely .main-img,
.sec-present .area-second .garrely .main-img {
    height: 60.5vw;
  }
}
.sec-present .area-first .garrely .main-img img,
.sec-present .area-second .garrely .main-img img {
  height: 100%;
  width: 100%;
  display: block;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first .garrely,
.sec-present .area-second .garrely {
    width: 100%;
    margin-bottom: 24px;
  }
}
.sec-present .area-first .garrely .sub-img,
.sec-present .area-second .garrely .sub-img {
  display: flex;
  margin: 0;
  padding: 0;
}
.sec-present .area-first .garrely .sub-img li,
.sec-present .area-second .garrely .sub-img li {
  margin-right: 2%;
  width: 32%;
  list-style: none;
}
.sec-present .area-first .garrely .sub-img li.current img,
.sec-present .area-second .garrely .sub-img li.current img {
  transition: border 0.5s;
  opacity: 0.2;
  transition: 0.3s;
  pointer-events: none;
}
.sec-present .area-first .garrely .sub-img li:nth-child(3n),
.sec-present .area-second .garrely .sub-img li:nth-child(3n) {
  margin-right: 0;
}
.sec-present .area-first .garrely .sub-img li img,
.sec-present .area-second .garrely .sub-img li img {
  transition: border 0.5s;
  box-sizing: border-box;
  display: block;
  cursor: pointer;
  width: 100%;
}
.sec-present .area-first .box-flex,
.sec-present .area-second .box-flex {
  position: relative;
}
.sec-present .area-first .box-flex > div:first-child,
.sec-present .area-second .box-flex > div:first-child {
  width: 60%;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first .box-flex > div:first-child,
.sec-present .area-second .box-flex > div:first-child {
    width: 100%;
  }
}
.sec-present .area-first .box-flex > div:nth-child(2),
.sec-present .area-second .box-flex > div:nth-child(2) {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first .box-flex > div:nth-child(2),
.sec-present .area-second .box-flex > div:nth-child(2) {
    width: 100%;
  }
}
.sec-present .area-first .box-flex > div:nth-child(2) .txt-lead,
.sec-present .area-second .box-flex > div:nth-child(2) .txt-lead {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .sec-present .area-first .box-flex > div:nth-child(2) .txt-lead,
.sec-present .area-second .box-flex > div:nth-child(2) .txt-lead {
    margin-bottom: 24px;
  }
}
.sec-present .area-first .box-flex > div:nth-child(2) .txt-lead span.small,
.sec-present .area-second .box-flex > div:nth-child(2) .txt-lead span.small {
  font-size: 90%;
}
.sec-present .area-first .box-flex > div:nth-child(2) .box-btn,
.sec-present .area-second .box-flex > div:nth-child(2) .box-btn {
  width: 100%;
}
.sec-present .area-first .box-flex > div:nth-child(2) .box-btn .button,
.sec-present .area-second .box-flex > div:nth-child(2) .box-btn .button {
  width: 100%;
}
.sec-present .over {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  width: 100% !important;
  height: 100%;
  position: absolute;
  background-color: rgba(96, 91, 90, 0.95);
  border: 2px solid #42403f;
  top: 0;
}
.sec-present .over p {
  font-size: 32px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  text-align: center;
  opacity: 0.6;
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .sec-present .over p {
    font-size: 18px;
  }
}
.sec-present .over.first p {
  font-size: 22px;
}
.sec-present .over.first p .strong {
  font-size: 60px;
}
@media screen and (max-width: 640px) {
  .sec-present .over.first p {
    font-size: 18px;
  }
  .sec-present .over.first p .strong {
    font-size: 40px;
  }
}
.sec-present .area-end .txt-btn-comment {
  font-size: 18px;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .sec-present .area-end .txt-btn-comment {
    font-size: 12px;
  }
}
.sec-present .area-end .box-btn {
  margin-bottom: 80px;
}
.sec-present .area-end dl * {
  font-size: 20px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 640px) {
  .sec-present .area-end dl * {
    font-size: 12px;
  }
}
.sec-present .area-end dd {
  font-size: 16px;
  margin-left: 0.5em;
  text-indent: -0.5em;
}

/* -----------------------------------------------
sec-order
----------------------------------------------- */
.sec-order .txt-shoulder {
  padding: 0;
  color: #fff;
  margin-bottom: 0;
}
.sec-order h2 {
  margin-bottom: 110px;
}
@media screen and (max-width: 640px) {
  .sec-order h2 {
    width: 90%;
    margin-bottom: 40px;
  }
}
.sec-order .box-pcinfo {
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 96px;
}
.sec-order .box-pcinfo .box-img {
  width: 590px;
  margin: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 640px) {
  .sec-order .box-pcinfo .box-img {
    width: 90%;
  }
}
.sec-order .box-pcinfo .txt-edition {
  margin: 0 0 8px 0;
}
.sec-order .box-pcinfo .txt-num {
  font-family: "Roboto";
  font-size: 2.2rem;
  margin: 0 0 8px 0;
}
.sec-order .box-pcinfo .txt-price {
  font-size: 1.8rem;
  margin: 0 0 40px 0;
}
.sec-order .box-pcinfo .txt-price strong {
  font-size: 3rem;
}
.sec-order ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 96px;
}
@media screen and (max-width: 640px) {
  .sec-order ul {
    flex-direction: column;
  }
}
.sec-order ul li {
  list-style: none;
  border: 1px solid #646464;
  border-radius: 3px;
  width: 312px;
  text-align: center;
  padding: 42px 0;
}
@media screen and (max-width: 640px) {
  .sec-order ul li {
    width: 100%;
    display: flex;
    padding: 20px 0 32px;
    margin-bottom: 12px;
  }
  .sec-order ul li > div:first-child {
    margin: auto;
  }
  .sec-order ul li > div:nth-child(2) {
    text-align: left;
    width: 77%;
  }
}
.sec-order ul li .box-img {
  width: 30px;
  margin: 0 auto 36px;
}
.sec-order ul li .txt-lead {
  margin: 0 0 8px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec-order ul li .txt-lead {
    text-align: left;
  }
}
.sec-order ul li .txt-opname {
  margin: 0 0 26px;
  font-size: 3.4rem;
}
@media screen and (max-width: 640px) {
  .sec-order ul li .txt-opname {
    margin: 0 0 8px;
    font-size: 20px;
  }
}
.sec-order ul li a {
  color: #969696;
  font-size: 1.4rem;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  transition: 0.3s;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 4px;
}
.sec-order ul li a:hover {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.sec-order table {
  margin-bottom: 96px;
}
.sec-order table * {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  line-height: 28px;
}
@media screen and (max-width: 640px) {
  .sec-order table * {
    font-size: 12px;
    line-height: 20px;
  }
  .sec-order table * .note {
    font-size: 10px;
  }
}
.sec-order table tr {
  border-top: 1px solid #464646;
}
.sec-order table tr + tr {
  border-bottom: 1px solid #464646;
}
.sec-order table th {
  text-align: left;
  vertical-align: baseline;
  width: 25%;
}
.sec-order table th, .sec-order table td {
  padding: 6px 0;
}

.area-banner {
  margin-bottom: 96px;
}

.area-quality {
  margin-bottom: 96px;
}

/* -----------------------------------------------
sec-quality
----------------------------------------------- */
.sec-quality {
  margin-bottom: 164px;
}
@media screen and (max-width: 640px) {
  .sec-quality {
    margin-bottom: 80px;
  }
}
.sec-quality .txt-shoulder {
  padding: 0;
  color: #fff;
  margin-bottom: 0;
}
.sec-quality .box-flex {
  justify-content: space-between;
}
.sec-quality .box-flex a {
  opacity: 0.8;
  text-decoration: none;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 640px) {
  .sec-quality .box-flex a .txt-title {
    margin-bottom: 10px;
  }
}
.sec-quality .box-flex a .txt-title span {
  border-bottom: 1px solid;
  font-size: 2.2rem;
  transition: 0.3s;
}
.sec-quality .box-flex a .box-img {
  max-width: 476px;
}
.sec-quality .box-flex a:hover {
  opacity: 1;
}
.sec-quality .box-flex a:hover span {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

/* -----------------------------------------------
sec-note
----------------------------------------------- */
.sec-note dl dt {
  float: left;
  clear: both;
}
.sec-note dl dt, .sec-note dl dd {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
@media screen and (max-width: 640px) {
  .sec-note dd {
    margin-left: 2.5em;
  }
}

/* -----------------------------------------------
footer
----------------------------------------------- */
footer {
  background-color: #000;
}
footer * {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
footer .footer-cnt {
  width: 976px;
  margin: 0 auto;
  padding: 25px 0;
  *zoom: 1;
  font-size: 1.2rem;
  color: #fff;
}
footer .footer-cnt:after {
  content: "";
  display: table;
  clear: both;
}
footer .footer-cnt #copyright {
  float: left;
  width: 500px;
}
footer .footer-cnt #pagetop {
  float: right;
  width: auto;
  text-align: right;
}
footer .footer-cnt #pagetop a {
  color: #fff;
  text-decoration: none;
}
footer .footer-cnt #pagetop a:after {
  content: "▲";
}
@media screen and (max-width: 640px) {
  footer .footer-cnt {
    width: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    border-top: 1px solid #ddd;
    padding: 18px;
  }
  footer .footer-cnt #copyright {
    font-size: 11px;
    float: none;
    width: auto;
  }
  footer .footer-cnt #pagetop {
    position: fixed;
    right: 16px;
    bottom: 4px;
    z-index: 9999;
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
  }
  footer .footer-cnt #pagetop a {
    font-size: 11px;
    text-decoration: none;
    color: #000;
    background-color: rgba(227, 227, 227, 0.8);
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
  }
  footer .footer-cnt #pagetop a::after {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */