@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.25;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
}

:root {
  --primary-color: #001E78;
  /* --orange: #FF6C00; */
}

body {
  color: #000;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

a {
  transition: 0.4s;
}

a:hover {
    color: var(--primary-color);
}

.inner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    box-sizing: content-box;
}

.section {
    padding: 100px 0;
}

.section h2 {
    margin-bottom: 56px;
    font-size: 40px;
    font-weight: 700;
}

.section .sub-title {
    margin-top: -32px;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
}

.section .desc {
    margin-bottom: 64px;
    color: #828282;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .inner-content {
        padding: 0 24px;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .section .sub-title {
        margin-bottom: 24px;
        margin-top: -16px;
        font-size: 18px;
    }

    .section .desc {
        margin-bottom: 32px;
        font-size: 16px;
    }
}

/* header */

header {
    padding: 20px 0;
    background-color: #F2F2F0;
}

header .inner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

header nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

header nav .en {
    font-size: 14px;
}

header .sp-menu {
    display: none;
}

@media (max-width: 1024px) {
    header nav {
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        height: 100%;
        transition: .2s;
        z-index: 2;
    }

    header .sp-menu {
        display: block;
        position: relative;
        width: 32px;
        height: 25px;
        cursor: pointer;
        z-index: 3;
    }

    header span {
        position: absolute;
        left: 0;
        width: 32px;
        height: 3px;
        background-color: #000;
        transition: .2s;
    }

    header span:first-child {
        top: 0;
    }

    header span:nth-child(2) {
        top: 11px;
    }

    header span:last-child {
        top: 22px;
    }

    body.is-navOpen header nav {
        opacity: 1;
        visibility: visible;
    }

    body.is-navOpen span:first-child {
        transform: translateY(11px) rotate(45deg);
    }

    body.is-navOpen span:nth-child(2) {
        opacity: 0;
    }

    body.is-navOpen span:last-child {
        transform: translateY(-11px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
    header .logo {
        width: 200px;
    }
}

/* hero */

.hero {
    padding: 200px 0;
    background-color: #F2F2F0;
}

.hero .inner-content {
    position: relative;
}

.hero-img {
    position: absolute;
    top: -50%;
    right: 0;
}

.hero-text .copy-1 {
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 700;
}

.hero-text .copy-2 {
    margin-bottom: 32px;
    font-size: 24px;
}

.hero-text .awards {
    display: flex;
    gap: 16px;
}

@media (max-width: 950px) {
    .hero-img {
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 50px 0;
    }

    .hero-img {
        position: static;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-text .copy-1 {
        font-size: 24px;
    }

    .hero-text .copy-2 {
        font-size: 18px;
    }

    .hero-text .awards .img {
        width: 80px;
    }
}

/* media */

.media {
    display: flex;
    gap: 64px;
}

.media:not(:last-child) {
    margin-bottom: 100px;
}

.media:nth-child(odd) {
    flex-direction: row-reverse;
}

.media-img {
    width: 46.7%;
    max-width: 560px;
}

.media-text {
    flex: 1;
    padding-left: 56px;
    border-left: 4px solid var(--primary-color);
}

.media-text h3 {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

.media-text .h {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

.media-text .list {
    font-weight: 500;
}

.media-text .list:not(:last-child) {
    margin-bottom: 40px;
}

.media-text .list li {
    position: relative;
    padding-left: 16px;
}

.media-text .list li:before {
    content: "";
    display: block;
    position: absolute;
    top: 11px;
    left: 3px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.media-awards {
    display: flex;
    gap: 16px;
}

@media (max-width: 1024px) {
    .media {
        display: block;
    }

    .media:not(:last-child) {
        margin-bottom: 50px;
    }

    .media-img {
        width: 100%;
        max-width: none;
        margin-bottom: 32px;
    }

    .media-text {
        padding-left: 24px;
        border-left-width: 2px;
    }

    .media-text h3 {
        font-size: 24px;
    }

    .media-text .h {
        font-size: 14px;
    }

    .media-text .list:not(:last-child) {
        margin-bottom: 32px;
    }

    .media-awards .img {
        width: 80px;
    }
}

/* scene */
.scene-group h3 {
    font-size: 20px;
    font-weight: 700;
}

.scene-group .sub {
    margin-top: 8px;
}

.scene-group .item:not(:last-child) {
    margin-bottom: 80px;
}

.scene-group .images {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 767px) {
    .scene-group .images {
        flex-direction: column;
    }

    .scene-group .images img {
        width: 100%;
    }
}

/* cable */
.cable-group .item {
    display: flex;
    gap: 50px;
}

.cable-group .item:not(:last-child) {
    margin-bottom: 80px;
}

.cable-group .img {
    width: 61.3%;
}

.cable-group .text {
    flex: 1;
}

.cable-group .text h3 {
    position: relative;
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

.cable-group .text h3:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

@media (max-width: 767px) {
    .cable-group .item {
        display: block;
    }

    .cable-group .item:not(:last-child) {
        margin-bottom: 40px;
    }

    .cable-group .img {
        width: 100%;
        margin-bottom: 24px;
    }
}

/* shop */
.shop-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.shop-group h3 {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
}

.shop-group .list li:not(:last-child) {
    margin-bottom: 16px;
}

.shop-group .list a {
    font-weight: 700;
}

.shop-group .list a[target="_blank"]:after {
    content: "";
    display: inline-block;
    position: relative;
    top: 2px;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: url(../img/blank.svg) no-repeat center center / cover;
}

@media (max-width: 767px) {
    .shop-group {
        gap: 24px;
    }
}

/* footer */
footer {
    padding: 40px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

footer .logo {
    margin-bottom: 24px;
}

footer .sns {
    margin-bottom: 24px;
}

footer .mailaddress {    font-size: 12px;   }footer .copyright {
    font-size: 12px;   
}