@charset "UTF-8";

.wrapper {
    width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}

.pagelink-list {
    display: flex;
    margin-bottom: 80px;
}

.pagelink-list li {
    width: calc(100% /4);
    border-left: solid 1px #1f1f1f;
    font-size: 14px;
    text-align: center;
    position: relative;
}

.pagelink-list li:last-child {
    border-right: solid 1px #1f1f1f;
}

.pagelink-list li::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #1f1f1f;
    margin: 0 auto;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}

.pagelink-list li a {
    display: block;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
}

.section-title span {
    max-width: 1000px;
    display: block;
    padding: 0 20px;
    margin: 0 auto;
}

.section-title::before{
    content: "";
    width: calc((100% - 1000px) / 2);
    height: 1px;
    background-color: #1f1f1f;
    position: absolute;
    top: 12px;
    left: 0;
}

#philosophy {
    margin-bottom: 120px;
    overflow: hidden;
    position: relative;
}

#philosophy .img-top {
    width: clamp(390px, 50vw, 460px);
    position: absolute;
    top:70px;
    left: 50%;
}

#philosophy .text-area {
    width: 70%;
    background-color: #fafafa;
    padding: 7% 0 10% 6%;
    margin-top: 120px;
}

#philosophy .text-area .inner {
    width: clamp(250px, 34vw, 350px);
}

#philosophy .text-area .inner .title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
}

#philosophy .text-area .inner .text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
}

#philosophy .img-bottom {
    max-width: 280px;
    margin: -60px 0 0 10%;
}

#service {
    margin-bottom: 120px;
}

#service .item {
    display: flex;
    align-items: center;
    box-shadow: 5px 5px 25px #ccc;
    margin-bottom: 40px;
    max-height: 250px;
}

#service .item.store {
    flex-direction: row-reverse;
}

#service .item.dev {
    flex-direction: row-reverse;
}

#service .item.audio {
    flex-direction: row-reverse;
}

#service .item .text {
    width: 44%;
    padding: 1% 5%;
}

#service .item .text .title-ja {
    font-size: 12px;
    margin-bottom: 5px;
}

#service .item .text .title-en {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

#service .item .text .description {
    font-size: 14px;
    margin-bottom: 20px;
}

#service .item .text .view-more {
    font-size: 14px;
    text-align: right;
    text-decoration: underline;
}

#service .item .img {
    width: 56%;
    max-height: 250px;
    overflow: hidden;
}

#service .item.pc .img {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

#service .item.store .img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

#service .item.learning .img {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

#service .item.dev .img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

#service .item.audio .img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

#service .item .img img {
    transition: transform 0.8s ease;
}

#service .item:hover .img img {
    transform: scale(1.1);
}

#overview {
    margin-bottom: 120px;
}

#overview .overview-list {
    display: flex;
    flex-wrap: wrap;
}

#overview .overview-list dt {
    width: 200px;
    border-top: solid 1px #1f1f1f;
    font-size: 15px;
    padding: 40px 0;
}

#overview .overview-list dt:last-of-type {
    border-bottom: solid 1px #1f1f1f;
}

#overview .overview-list dd {
    width: calc(100% - 200px);
    border-top: solid 1px #ccc;
    padding: 40px 0;
    font-size: 15px;
    line-height: 1.8;
}

#overview .overview-list dd:last-of-type {
    border-bottom: solid 1px #ccc;
}

#access {
    margin-bottom: 120px;
}

#access .info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

#access .info a {
    width: 90px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #1f1f1f;
    font-size: 12px;
}

#access .map iframe {
    width: 100%;
    height: 400px;
}