@charset "UTF-8";
/* ===========================
price.css
============================== */
/* price_section */
.price_section {
    max-width: 830px;
    width: 94%;
    margin: -30px auto 0;
    padding: 100px 0 0;
}

.price_section h1 {
    padding: 0 0 15px;
    font-size: 1.125rem;
    transform: skewX(0.03deg);
    font-weight: bold;
    line-height: 1.43;
    letter-spacing: 0.18em;
    color: #0398C2;
    text-align: center;
    border-bottom: #0398C2 3px solid;
}

.price_section h2 {
    max-width: 330px;
    margin: 0 auto;
    padding: 0 0 15px;
    font-size: 1.125rem;
    transform: skewX(0.03deg);
    font-weight: bold;
    line-height: 1.43;
    letter-spacing: 0.18em;
    color: #0398C2;
    text-align: center;
    border-bottom: #0398C2 1px solid;
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .price_section h1 {
        font-size: 1.5625rem;
        transform: skewX(0deg);
    }

    .price_section h2 {
        font-size: 1.5625rem;
        transform: skewX(0deg);
    }
}

/* price_table */
.swipe-area {
    position: relative;
    overflow-x: scroll;
    padding-bottom: 20px;
}

.price_table {
    width: 800px;
    margin: 50px 0 10px;
    border-collapse: separate;
    border-spacing: 0px;
    empty-cells: show;
}

.price_table.clipping_table {
    width: 100%;
    margin: 10px 0 10px;
}

.price_table th,
.price_table td {
    margin: 0;
    padding: 3px;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    font-weight: normal;
    line-height: 1.6;
    text-align: center;
    vertical-align: middle;
    border-left: #BCE4F9 1px solid;
    border-top: #BCE4F9 1px solid;
    background-clip: padding-box;
}

.price_table th {
    letter-spacing: 0.1em;
    color: #7A7A7A;
    background-color: #ECF7FD;
}

.price_table.clipping_table th {
    width: 30%;
}

.price_table.clipping_table td {
    padding-left: 1em;
    text-align: left;
    color: #7A7A7A;
    border-right: #BCE4F9 1px solid;
}

.price_table.unit_table thead tr:first-child td:nth-child(2) {
    border-left: none;
}

.price_table thead tr:first-child td {
    border-top: none;
}

.price_table thead tr:first-child td:first-child {
    border-left: none;
}

.price_table thead tr:first-child td:last-child {
    border-right: none;
}

.price_table.unit_table thead tr:first-child td:nth-child(2) {
    border-left: none;
}

.price_table.compare_table tbody tr:last-child th,
.price_table.compare_table tbody tr:last-child td {
    border-bottom: #BCE4F9 1px solid;
}

.price_table.clipping_table tbody tr:last-child th,
.price_table.clipping_table tbody tr:last-child td {
    border-bottom: #BCE4F9 1px solid;
}

.price_table.unit_table tbody .right_line {
    border-right: #BCE4F9 1px solid;
}

.price_table.unit_table tbody .bottom_line {
    border-bottom: #BCE4F9 1px solid;
}

.price_table .compare_logo {
    width: 25%;
}

.price_table.unit_table .compare_logo {
    width: 23%;
}

.price_table .compare_logo img {
    display: inline-block;
    max-width: 150px;
    width: 100%;
    margin: 20px 0 5px;
}

.price_table .sky_blue {
    display: inline-block;
    padding: 0.3em 0.8em;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    background: #00A0E9;
    border-radius: 5px;
}

.price_table .orange {
    display: inline-block;
    padding: 0.2em 1.4em;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    font-weight: 500;
    text-align: center;
    color: #fff;
    background: #FC9C2D;
    border-radius: 5px;
}

.price_table .numbers {
    font-size: 1.125rem;
    transform: skewX(0.03deg);
    font-weight: 500;
}

.price_table .large {
    font-size: 1.0625rem;
    transform: skewX(0.03deg);
}

.price_table .notes {
    font-size: 0.625rem;
    transform: skewX(0.03deg);
    vertical-align: text-top;
}

.price_table .spacer {
    display: inline-block;
    width: 2rem;
}

.price_table .viertically {
    writing-mode: vertical-rl;
    transform: skewX(0.03deg);
}

.price_table .number-of-photos {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.price_table .number-of-photos span {
    display: block;
    min-width: 6em;
    font-size: 0.875rem;
    transform: skewX(0.03deg);
    line-height: 2;
    letter-spacing: 0;
    text-align: right;
}

.price_notes {
    margin: 0;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 0.75rem;
    transform: skewX(0.03deg);
    line-height: 1.6;
}

.swipe-icon {
    position: absolute;
    top: 50%;
    left: 30%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    animation: swipe-icon 2s ease-in-out 0s infinite normal;
    pointer-events: none; /* アイコン自体を触れないように */
}

@keyframes swipe-icon {
    0% {
        left: 30%;
        opacity: 0;
    }
    20% {
        left: 70%;
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 30%;
        opacity: 0;
    }
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    .swipe-area {
        overflow-x: initial;
        padding-bottom: 0;
    }

    .price_table {
        width: 100%;
    }

    .swipe-icon {
        display: none;
    }
}

@media screen and (min-width: 48em) {
    /* 768px md */
    .price_table th {
        padding: 15px 5px;
        font-size: 1rem;
        transform: skewX(0.03deg);
    }

    .price_table td {
        padding: 5px;
        font-size: 0.9375rem;
        transform: skewX(0.03deg);
    }

    .price_table .bottom_spacer {
        padding-bottom: 20px;
    }

    .price_table .sky_blue {
        font-size: 0.945rem;
        transform: skewX(0.03deg);
    }

    .price_table .orange {
        font-size: 0.945rem;
        transform: skewX(0.03deg);
    }

    .price_table .numbers {
        font-size: 1.25rem;
        transform: skewX(0.03deg);
    }

    .price_table .large {
        font-size: 1.125rem;
        transform: skewX(0.03deg);
    }

    .price_table .notes {
        font-size: 0.6875rem;
        transform: skewX(0.03deg);
    }
}

/* sec01 */
.sec01 {
    max-width: 970px;
    width: 94%;
    margin: 0 auto;
    padding: 50px 0 0;
}

.sec01 nav {
    margin: 20px 0 0;
}

.sec01 nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sec01 nav ul li {
    margin-bottom: 10px;
    border-left: #7a7a7a 1px solid;
}

.sec01 nav ul li:first-child {
    border-left: none;
}

.sec01 nav ul li a {
    display: inline-block;
    padding: 0 0.7em;
    font-size: 0.9375rem;
    transform: skewX(0.03deg);
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.2em;
    color: #7A7A7A;
    transition: all 0.2s;
}

.sec01 nav ul li a:hover {
    color: #0398C2;
    animation: hover-scale 0.1s ease forwards;
}

/* sec02 */
.sec02 {
    padding-bottom: 50px;
}

/* sec03 */
.sec03 {
    padding-bottom: 50px;
}

/* sec04 */
.sec04 {
    padding-bottom: 50px;
}

.sec04 ul {
    margin: 45px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec04 ul li {
    margin-bottom: 20px;
    width: 100%;
}

.sec04 ul li p {
    margin: 0 0 5px;
    font-size: 0.9rem;
    transform: skewX(0.03deg);
    font-weight: 400;
    text-align: center;
}

.sec04 ul li p span {
    font-size: 1.25rem;
    transform: skewX(0.03deg);
    font-weight: 500;
}

@media screen and (min-width: 35.5em) {
    /* 568px sm */
    .sec04 ul li {
        width: 31.5%;
    }
}

/* sec05 */
.sec05 .limited {
    margin: 10px 0 0;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    color: #7A7A7A;
    text-align: center;
}

.sec05 .limited img {
    max-width: 82px;
    margin-right: 5px;
    vertical-align: middle;
}

.example_box {
    max-width: 600px;
    width: 94%;
    margin: 0 auto;
    padding: 40px 0 50px;
}

.example_box h3 {
    padding: 0 0 10px;
    font-size: 1.125rem;
    transform: skewX(0.03deg);
    font-weight: 500;
    letter-spacing: 0.7em;
    text-align: center;
    color: #0398C2;
    border-bottom: #0398C2 1px solid;
}

.example_box .process {
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    color: #7A7A7A;
    text-align: center;
}

.example_box .pict {
    margin: 40px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.example_box .pict > div {
    width: 50%;
    position: relative;
}

.example_box .pict > div p {
    margin: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px;
    left: 18px;
    font-size: 0.8125rem;
    transform: skewX(0.03deg);
    font-weight: 500;
    color: #fff;
    background-color: #F29400;
    border-radius: 50%;
}

.example_box .pict > div:first-child p {
    background-color: #0398C2;
}

.example_box .price {
    margin: 10px 0 0;
    font-size: 1.1875rem;
    transform: skewX(0.03deg);
    text-align: center;
}

.example_box .price span {
    font-size: 1.875rem;
    font-weight: 500;
}

.example_box .example_notes {
    margin: 50px 0;
}
