@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gray:#c0c0c0;
  --white:#ffffff;
  --black:#000000;
  --blue:#0000ff;
  --red:#d7003a;
  --lightgray:#e8e8e8;
  --sky:#1af7fb;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--gray);
  z-index: 9999;
}
.header ul {
  height: 50px;
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.header ul li {
  font-size: 15px;
}
.header ul li a {
  color: var(--black);
  text-decoration: none;
}
.header ul img {
  width: 15px;
}

.information {
  width: 100%;
  margin-top: 50px;
}
.information .title {
  text-align: center;
  letter-spacing: 1px;
  padding-top: 5px;
}
.information .title a {
  color: var(--blue);
  text-decoration: none;
}
.information .title img {
  width: 15px;
}

.section1 {
  width: 100%;
  height: 800px;
  position: relative;
  top: 0;
  left: 0;
  margin-bottom: 30px;
  padding-bottom: 20px;
  background-color: var(--black);
}
.section1 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}
.section1 .background img {
  height: 500px;
}
.section1 .top-title {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
}
.section1 .top-title h2 {
  text-align: center;
  font-size: 34px;
}
.section1 .top-title h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
}
.section1 .top-title button {
  margin: 0 20px;
  border-radius: 200px;
  font-size: 20px;
}
.section1 .top-title button a {
  text-decoration: none;
  color: var(--blue);
  padding: 10px;
}

.section1-copy {
  width: 100%;
  height: 800px;
  position: relative;
  top: 0;
  left: 0;
  background-color: var(--gray);
}
.section1-copy .background {
  background-image: url(img/macbookair.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  /*position:abusolute;
  top:50%;
  left:50%;
  transform: translate: (-50%,-50%);
  の方がいいのでしょうか*/
}
.section1-copy .top-title {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.section1-copy .top-title button {
  border-radius: 20px;
  padding: 10px;
  margin: 10px 10px 0;
}
.section1-copy .top-title button a {
  text-decoration: none;
}

.section1-copy2 {
  width: 100%;
  height: 800px;
  position: relative;
  top: 0;
  left: 0;
  background-color: var(--white);
  margin-bottom: 20px;
}
.section1-copy2 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 100px;
}
.section1-copy2 .background img {
  width: 700px;
}
.section1-copy2 .top-title {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
  text-align: center;
}
.section1-copy2 button {
  padding: 10px;
  margin: 10px 10px 0;
  border-radius: 20px;
}
.section1-copy2 button a {
  text-decoration: none;
}
.section1-copy2 button a:hover {
  cursor: pointer;
  color: var(--blue);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  grid-template-rows: repeat(3, 600px);
  position: relative;
  margin: 20px;
}
.section-grid .content {
  width: 100%;
  position: relative;
  background-color: var(--black);
}
.section-grid .content .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-grid .content .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-grid .content .bottom-title {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
}
.section-grid .content .bottom-title p {
  font-size: 18px;
}
.section-grid .content .bottom-title button {
  border-radius: 20px;
  margin: 10px;
  padding: 10px;
  background-color: var(--sky);
}
.section-grid .content .bottom-title button a {
  text-decoration: none;
  color: var(--white);
}
.section-grid .content1 {
  width: 100%;
  position: relative;
  background-color: var(--lightgray);
}
.section-grid .content1 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.section-grid .content1 .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-grid .content1 .top-title-macbookneo {
  text-align: center;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
}
.section-grid .content1 .top-title-macbookneo button {
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--sky);
}
.section-grid .content1 .top-title-macbookneo button a {
  text-decoration: none;
}
.section-grid .content3 {
  width: 100%;
  position: relative;
  background-color: var(--white);
}
.section-grid .content3 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.section-grid .content3 .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-grid .content3 .top-title {
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
}
.section-grid .content3 .top-title .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-grid .content3 .top-title h2 {
  font-weight: 700;
}
.section-grid .content3 .top-title h2:nth-child(2) {
  font-weight: 400;
}
.section-grid .content3 .top-title img {
  width: 30px;
}
.section-grid .content3 .top-title p {
  font-size: 18px;
}
.section-grid .content3 .top-title button {
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--sky);
}
.section-grid .content3 .top-title button a {
  text-decoration: none;
}
.section-grid .content4 {
  width: 100%;
  position: relative;
  background-color: var(--white);
}
.section-grid .content4 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.section-grid .content4 .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-grid .content4 .top-title {
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
}
.section-grid .content4 .top-title p {
  font-size: 18px;
}
.section-grid .content4 .top-title button {
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--sky);
}
.section-grid .content4 .top-title button a {
  text-decoration: none;
}
.section-grid .content5 {
  width: 100%;
  position: relative;
  background-color: var(--white);
}
.section-grid .content5 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.section-grid .content5 .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.section-grid .content5 .top-title {
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
}
.section-grid .content5 .top-title p {
  font-size: 18px;
}
.section-grid .content5 .top-title button {
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--sky);
}
.section-grid .content5 .top-title button a {
  text-decoration: none;
}
.section-grid .content6 {
  width: 100%;
  position: relative;
  background-color: var(--white);
}
.section-grid .content6 .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.section-grid .content6 .background img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-grid .content6 .top-title {
  text-align: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
}
.section-grid .content6 .top-title .flex {
  display: flex;
  justify-content: center;
}
.section-grid .content6 .top-title .flex img {
  width: 15px;
}
.section-grid .content6 .top-title p {
  font-size: 18px;
}
.section-grid .content6 .top-title button {
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--sky);
}
.section-grid .content6 .top-title button a {
  text-decoration: none;
}

.slider_wrapper {
  display: flex;
  overflow: hidden;
}
.slider_wrapper .slider {
  animation: scroll-left 60s infinite linear 0.5s both;
  display: flex;
  list-style: none;
  gap: 10px;
}
.slider_wrapper .slider .slide {
  width: 25vw;
}
.slider_wrapper .slider .slide img {
  display: block;
  height: 500px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*@keyframeはどこに記載したらいいのでしょうか？
調べてみてスライダーにするように記載したつもりなのですが、反映しないです*/
.footer-title {
  width: 1000px;
  margin: 0 auto;
}
.footer-title .footer-wrapper {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 20px;
}
.footer-title .footer-wrapper ol {
  font-size: 10px;
  color: gray;
}
.footer-title .footer-wrapper ol li {
  padding-top: 10px;
}
.footer-title .footer-wrapper ol li:nth-child(1) {
  padding-top: 0;
}
.footer-title .footer-wrapper ol li:nth-child(5) {
  list-style: none;
}
.footer-title .footer-wrapper ul {
  font-size: 10px;
  color: gray;
}
.footer-title .footer-wrapper ul li {
  list-style: none;
  padding-top: 20px;
}
.footer-title .footer-wrapper ul li:nth-child(4) {
  padding-bottom: 20px;
}
.footer-title .footer-more {
  height: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.footer-title .footer-more .footer-section {
  margin-bottom: 20px;
}
.footer-title .footer-more .footer-section ul {
  list-style: none;
  font-size: 10px;
}
.footer-title .footer-more .footer-section ul li {
  padding: 5px 0;
}
.footer-title .footer-more .footer-section ul li:nth-child(1) {
  font-weight: bold;
}
.footer-title .footer-other {
  font-size: 10px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray);
}
.footer-title .footer-copyright {
  display: flex;
  justify-content: space-between;
}
.footer-title .footer-copyright p {
  font-size: 12px;
}
.footer-title .footer-copyright ul {
  list-style: none;
  display: flex;
  font-size: 10px;
}
.footer-title .footer-copyright ul li {
  padding: 0 10px;
  border-left: 1px solid var(--gray);
}
.footer-title .footer-copyright ul li:nth-child(1) {
  border-left: none;
  margin-left: -200px;
}/*# sourceMappingURL=style.css.map */