@charset "utf-8";

body {
    background-color: #F8F8F8;
    color: #3C3C3C;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
}

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

.wrapper {
    margin: 0 auto;
}

.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 10px 20px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    opacity: 0.4;
}
/*=========================================
#hamburger
=========================================*/
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 150;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform .3s;
}

.hamburger.is-active span {
    background-color: #ffffff;
}

.hamburger span:nth-child(1) {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 60%;
}

.hamburger span:nth-child(3) {
    top: 90%;
}

/*=========================================
#drawer
=========================================*/
.drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100vh;
    background-color: #333333;
    transition: opacity .3s, visibility .3s;
}

.drawer.is-active {
    visibility: visible;
    opacity: 1;
}

.drawer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.drawer__list {
    display: flex;
    flex-direction: column;

    gap: 50px;
}

.drawer__link {
    color: #ffffff;
}
.sp-show {
    display: none;
}


header {
    background-color: #101820;
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1.5rem;
    width: min(1280px, 96%);
    margin: 0 auto;
    gap: 15px;
}

.global-nav ul {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.global-nav a {
    position: relative;
    padding-bottom: .5rem;
}

.global-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.global-nav li:hover a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo {
    width: 150px;
}
.global-nav__btn {
    display: flex;
    gap: 1rem;
}
.global-nav__btn .btn {
    width: auto;
    padding: .5rem 1rem;
    margin: 0;
}

.main-visual .wrapper {
    background-color: #101820;
}

.main-visual__container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    width: 80%;
    margin: 0 auto;
    color: #FFFFFF;
}

.main-visual__img {
    width: 40%;
}

.main-visual__text {
    width: 50%;
    margin: 0 3.125vw 0 0;
}

.main-visual__text-title {
    font-size: 2rem;
    margin: 0 0 2.343vw;
}

.main-visual__h1 {
    font-size: 3rem;
    font-weight: bold;
    padding: 0 0 3.515vw;
}
.main-visual__h1 span {
    display: inline-block;
}

.main-visual__text-detail {
    font-size: 1.25rem;
    line-height: 1.8;
    padding-bottom: 1rem;
}

.main-visual__text-detail.bold-text {
    font-weight: bold;
}

.main-visual__btn-container {
    padding-bottom: 65px;
    display: flex;
    justify-content: space-between;
    margin: -25px auto;
    width: 480px;
}

.red-text {
    color: #e5632e;
}

.btn {
    padding: 15px 0;
    color: #FFFFFF;
    border-radius: 3.906vw;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.05); /* ボタンを拡大 */
}

.btn.green {
    background-color: #038789;
}

.btn.yellow {
    background-color: #E3A72F;
}

.btn span {
    transition: transform 0.2s ease;
}

.btn:hover span {
  transform: translateX(4px); /* 矢印を右にスライド */
}

span.material-symbols-outlined {
    width: 1.875vw;
    padding-left: 17px;
}

.broadcast {
    text-align: center;
}

.h2 {
    font-size: 2rem;
    text-align: center;
    color: #3C3C3C;
    font-weight: bold;
    padding: 24px 0;
    margin-bottom: 60px;
}

.h2 span {
    display: block;
    font-size: 6rem;
    margin: 60px 0 20px;
}

.broadcast .h2 span {
    color: #038789;
}

.delivery-method {
    background-color: #038789;
    margin: 0 auto 60px;
}

.delivery-method__container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.delivery-method__text {
    flex: 2;
    text-align: left;
    padding: 10px 30px;
}

.h3 {
    font-size: 2.25rem;
    font-weight: bold;
    padding: 60px 0 40px 0;
    text-align: center;
    line-height: 2.5rem;
}

.broadcast .h3 {
    color: #038789;
}

.broadcast .delivery-method .h3 {
    color: #fff;
}

.delivery-method__text p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: normal;
    margin-bottom: 16px;
    color: #fff;
}

.delivery-method__image {
    flex: 1;
    text-align: center;
    position: relative;
    height: 280px;
    overflow: hidden;
}

.delivery-method__image img {
    object-fit: contain;
    width: 270px;
}

.content {
    margin: 0 auto 60px;
}

.broadcast .content .h3 {
    color: #038789;
}

.broadcast .btn {
    margin: 0 auto;
}

.content__inner {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 0 52px;
}

.content__container {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    max-width: 480px;
}

.content__title {
    background-color: #038789;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 38px 20px;
}

.content__detail {
    padding: 40px;
    line-height: 1.75;
    background-color: #ffffff;
    text-align: left;
}


.revenue-rate__contents{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
}

.revenue-rate__title {
    background: #f8d148;
    padding: 0.5rem 1rem;
    font-weight: bold;
    color: #3C3C3C;
}

.revenue-rate__list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.revenue-rate__item {
    width: 14rem;
    height: 14rem;
    background: #fff;
    border-radius: 2rem 2rem 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: .5rem .5rem 0 #038789;
}

.revenue-rate__item h5 {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #3C3C3C;
}

.revenue-rate__item h5 span {
    color: #CD5E30;
}

.revenue-rate__item p {
    font-size: 2.5rem;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px #454545;
    text-shadow: 2px 2px #e5632e;
}

.revenue-rate__item p strong {
    font-size: 5rem;
}


.features {
    text-align: center;
    padding: 60px 20px 80px;
    background-color: #f9f9f9;
}


.features__grid {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;

}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: solid 1px #D9D9D9;
    padding: 0 2rem;
}

.feature:last-child {
    border: none;
}

.feature__title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__title {
    font-size: 20px;
    font-weight: bold;
    color: #038789;
}

.feature__icon {
    margin: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.feature__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.feature__list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature__list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    list-style: none;
    padding: 10px 0;
}

.feature__list li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #038789;
    border-radius: 2px;
    flex-shrink: 0;
}

.broadcast .wrapper {
    padding: 0 0 80px;
}

.audience {
    background-color: #fff;
    padding: 0 0 150px;
}

.audience .h2 span {
    color: #E3A72F;
    padding-top: 0;
    margin-top: -70px;
}

.watch-section {
    background-color: #d49b21;
    padding: 0 20px 40px;
}

.watch-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.watch-text {
    color: #fff;
    display: flex;
    justify-content: center;
}

.audience .h3 {
    color: #fff;
}

.watch-text p {
    color: #333;
    font-size: 1.5rem;
    line-height: 1.8;
}

.watch-image {
    width: max(300px, min(50%, 30rem));
    text-align: right;
    margin-left: 50px;
}

.signup-section {
    margin: 30px 0 30px;
}

.signup-section .h3 {
    color: #d49b21;
}

.signup-step__container {
    display: flex;
    justify-content: center;
}


.signup-step {
    display: flex;
    justify-content: center;
}

.signup-step__child {
    max-width: 280px;
    margin: 10px;
}

.signup-step:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #D9D9D9;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin: 80px 10px;
}

.signup-step:last-of-type::after {
    display: none;
}

.signup-step-text {
    padding: 30px;
    line-height: 1.5;
}
.signup-step-text a {
    text-decoration: underline;
}

.signup-step-no {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #E3A72F;
    text-align: center;
    line-height: 2;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto;
}

.step {
    font-size: 2.8rem;
    line-height: 1;
}

.purchase-section {
    margin: 60px auto;
    max-width: 1280px;
    background-color: #F8F8F8;
}

.purchase-section .h3 {
    color: #E3A72F;
}

.purchase-section__text {
    padding: 0 150px 60px;
    font-size: 1.5rem;
    line-height: 1.5;
}

.audience .btn.yellow {
    margin: 0 auto;
}

.business .h2 span {
    color: #CD5E30;
    padding-top: 0;
    margin-top: -70px;
}

.business .h3 {
    color: #CD5E30;
    padding-top: 0px;
}

.oem-text {
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
}

.table {
    border-collapse: collapse;
    table-layout: fixed;
    font-weight: bold;
    width: 100%;
}

.table-col :first-child {
    width:  15%;
}

.table-scroll {
    margin: 60px auto;
    padding: 0 60px;
    min-width: 700px;
    max-width: 1280px;
}

.table thead th {
    padding: 1em .8em;
    border-right: 2px solid#fff;
    text-align: center;
}

.table td {
    color: #000;
    padding: 1em;
}

.table thead th:not(:first-child) {
    background: #CD5E30;
    color: #fff;
    padding: 1em;
}

.table thead th span {
    font-size: .8rem;
}

.table thead th:nth-child(3) {
    background-color: #CD5E30;
    position: relative;
}

.table tbody th,
.table tbody td {
    border: 2px solid #fff;
}

.table tbody th {
    background-color: #2C3E50;
    color: #fff;
    text-align: center;
    padding: 1rem;
    vertical-align: middle;
}

.table tbody td {
    background-color: #EDE5DA;
    font-weight: normal;
}

.table td:nth-child(3) {
    color: #000;
    background: #EDE5DA;
}


.business-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

.option {
    text-align: center;
    max-width: 438px;
    height: 220px;
    padding: 50px;
    margin: 0 20px 40px;
    background-color: #fff;
    border-radius: 20px;
    text-align: left;
}

.option-title {
    display: block;
    padding-bottom: 20px;
    font-size: 1.25rem;
}

.option-text {
    line-height: 1.5;
    
}

.option-text a {
    text-decoration: underline;
    font-weight: bold;
}

.option-text a img {
    width: 5%;
    vertical-align: middle;
}

.inquiry {
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

.inquiry-text {
    font-size: 1.5rem;
    margin: 60px 0;
}

.btn.orange {
    background-color: #CD5E30;
    margin: 0 auto;
}

.footer {
    padding: 100px 100px;
    background-color: #101820;
    margin: 100px 0 0;
}

.footer .logo {
    margin: 0 auto;
}

.copy-right {
    color: white;
    text-align: center;
    padding-top: 2rem;
}

@media screen and (max-width: 768px) {
    .keep-all-break-word {
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    /* .sp-show {
        display: block;
      } */
    .sp-none {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
    }
    .logo {
        width: 50px;
    }
    .global-nav {
        order: 1;
        font-size: 12px;
        width: min(500px, 100vw);
        margin: 0 auto;
    }
    .global-nav ul {
        gap: 10px;
    }

    .main-visual {
        background-color: #101820;
    }
    .main-visual__container {
        display: block;
        width: initial;
        padding: 150px 0 50px;
    }

    .main-visual__text {
        width: initial;
        padding: 0 10px;
        margin: 0 auto;
        text-align: center;
    }

    .business-option {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-visual__img {
        margin: 30px auto 0;
        width: 300px;
    }
    .main-visual__text-title {
        font-size: 1rem;
    }

    .main-visual__h1 {
        font-size: 2rem;
    }

    .main-visual__text-detail {

        font-size: 1rem;
    }

    .main-visual__btn-container {
        display: block;
        width: fit-content;
        margin: 0 auto;
        padding-bottom: 30px;
    }

    .main-visual__btn {
        text-align: center;
    }

    .btn {
        margin-bottom: 20px;
    }

    .h2 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .h2 span {
        font-size: 15vw;
    }

    .broadcast .wrapper {
        padding-bottom: 60px;
    }

    .revenue-rate__title {
        display: inline-block;
    }

    .revenue-rate__list {
        margin-top: 30px;
        gap: 1rem;
        }


    .h3 {
        padding: 20px;
        font-size: 1.5rem;
    }

    .delivery-method__container {
        display: block;
    }

    .delivery-method__text p {
        font-size: 1rem;
    }

    .tabke-scroll {
        overflow-x: auto
    }

    .content {
        margin-bottom: 20px;
    }
    .content__inner {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 0;
    }
    .content__title {
        font-size: 1rem;
    }
    .content__detail {
        padding: 1.5rem;
    }

    .content__container {
        margin: 20px 0 40px;
    }

    .revenue-rate__section {
        display: block;
    }

    .revenue-rate__item {
        padding: 2rem;
    }
    .features {
        padding-bottom: 50px;
        padding-top: 30px;
    }

    .features__grid {
        display: block;
    }
    .feature {
        border-right: none;
        border-bottom: solid 1px #D9D9D9;
        padding: 20px 20px 30px;
    }
    .feature :first-child {
        padding-top: 0;
    }

    .audience .h2 span,
    .business .h2 span {
        margin-top: -60px;
    }

    .watch-section {
        margin-top: 30px;
    }

    .watch-content {
        display: block;
    }
    .watch-text {
        padding: 0 20px;
        min-height: auto;
        max-width: none;
        margin-bottom: 1rem;
    }
    .watch-text p {
        font-size: 1rem;
    }

    .watch-image {
        margin: 0 auto;
    }

    .signup-step__container {
        display: block;
    }

    .signup-step {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .signup-step-text {
        padding: 30px 5px 10px;
        text-align: center;
    }
      
      .signup-step:after {
        transform: rotate(90deg);
        margin: 0;
      }
      
    .purchase-section {
        margin: 60px 30px;
    }

    .purchase-section__text {
        padding: 10px 20px 20px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .business .h3 {
        padding-top: 30px;
    }

    .table {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 30px;
    }
    .table-scroll {
        margin: 30px auto;
        padding: 0;
        min-width: auto;
    }
    .table tbody td ,.table tbody th{
        min-width: 30vw;
    }
    .option {
        height: auto;
    }
    .audience {
        padding-bottom: 80px;
    }

    .oem-text {
        font-size: 1.15rem;
        line-height: 1.5;
        padding: 0 30px;
    }

    .inquiry-text {
        font-size: 1.15rem;
        padding: 0 30px;
        margin: 30px 0;
    }
    footer .logo {
        width: 150px;
    }
}