/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*,
::after,
::before {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
}

main {
    display: block;
}

address,
blockquote,
dl,
figure,
form,
iframe,
p,
pre,
table {
    margin: 0;
}

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

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

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}

pre {
    font-family: monospace, monospace;
    font-size: inherit;
}

address {
    font-style: inherit;
}

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

abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: inherit;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

embed,
iframe,
img,
object {
    vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: 0 0;
    padding: 0;
    margin: 0;
    outline: 0;
    border-radius: 0;
    text-align: inherit;
}

[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
}

[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled],
button[disabled] {
    cursor: default;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

select::-ms-expand {
    display: none;
}

option {
    padding: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

label[for] {
    cursor: pointer;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[contenteditable] {
    outline: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: 700;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

:root {
    --sans: "Noto Sans JP", sans-serif;
    --serif: "Noto Serif JP", serif;
    --Lato: "Lato", sans-serif;
    --text-color: #333333;
    --main-color: #07459e;
    --sub-color: #9e0000;
    --accent-color: #ffe300;
    --bg-color1: #dfe9ef;
    --bg-color2: #fff8ce;
    --white: #fff;
    --red: #c90000;
    --orange: #ff7245;
    --border: #dcdcdc;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    99% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.is-show {
    animation: fade-in 1s forwards;
}

@keyframes up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    99% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.up,
.up2 {
    opacity: 0;
    transform: translateY(-20px);
}

.is-show.up {
    animation: up 1s forwards;
}

.is-show.up2 {
    animation: up 1s forwards;
    animation-delay: 0.6s;
}

.is-show.up_s {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

.up_s>* {
    opacity: 0;
    transform: translateY(-20px);
}

.is-show.up_s>* {
    animation: up 1s forwards;
}

@keyframes pop-up {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    60% {
        transform: translateY(3px);
        opacity: 1;
    }

    99% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.pop-up {
    opacity: 0;
}

.is-show.pop-up {
    animation: pop-up 1.4s forwards;
}

.is-show.pop-up_s {
    animation: none;
    opacity: 1;
    transform: translateY(0);
}

.pop-up_s>* {
    opacity: 0;
}

.is-show.pop-up_s>* {
    animation: pop-up 1s forwards;
}

@keyframes left_in {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.left_in {
    opacity: 0;
    transform: translateX(-100px);
}

.is-show.left_in {
    animation: left_in 1s forwards;
}

.lefts_in>* {
    opacity: 0;
    transform: translateX(-100px);
}

.is-show.lefts_in>* {
    animation: left_in 1s forwards;
}

@keyframes right_in {
    0% {
        transform: translateX(100px);
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.right_in {
    opacity: 0;
    transform: translateX(100px);
}

.is-show.right_in {
    animation: right_in 1s forwards;
}

.rights_in>* {
    opacity: 0;
    transform: translateX(100px);
}

.is-show.rights_in>* {
    animation: right_in 1s forwards;
}

.marker.is-show {
    background-size: 100% 100%;
}

.rollAnime.is-show {
    transition-property: opacity, transform;
    transform: rotateY(360deg);
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    display: inline-block;
}

.slide-in {
    overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
    display: inline-block;
}

.leftAnime {
    opacity: 0;
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.downAnime {
    opacity: 0;
}

.slideAnimeDownUp {
    animation-name: slideTextY100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slideAnimeUpDown {
    animation-name: slideTextY-100;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fuwafuwa {
    animation: fuwafuwa 4s linear infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translatey(0);
    }

    50% {
        transform: translatey(-10px);
    }

    100% {
        transform: translatey(0);
    }
}

.obf img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.txt-indent {
    padding-left: 1em;
    text-indent: -1em;
}

.txt-align-c {
    text-align: center;
}

.bg-color-green {
    background-color: var(--bg-color1);
}

.bg-color-yellow {
    background-color: var(--bg-color2);
}

.bg-color-gray {
    background-color: #f7f7f7;
}

@media screen and (min-width: 1280px) {
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 62.5%;
    }

    body {
        font-family: var(--sans);
        color: var(--text-color);
        word-wrap: break-word;
        font-size: 1.4rem;
        font-feature-settings: "palt";
        line-height: 1.7;
    }

    a {
        transition: all 0.3s;
        color: inherit;
        text-decoration: none;
    }

    a:hover {
        opacity: 0.6;
    }

    a[href^="tel:"] {
        pointer-events: none;
    }

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

    .container {
        position: relative;
        overflow: hidden;
    }

    .display_pc {
        display: block;
    }

    .display_sp {
        display: none;
    }

    .wrap_L {
        width: 1280px;
        padding: 0 40px;
        margin: auto;
    }

    .wrap_S {
        width: 1000px;
        margin: auto;
    }

    .h_style01 {
        font-size: 3.6rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .h_style01 span {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1.3;
        display: block;
    }

    .h_style02 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        border-bottom: 2px dashed var(--main-color);
        margin-bottom: 20px;
    }

    .btn {
        display: grid;
        place-content: center;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        background: var(--accent-color);
        color: var(--text-color);
        font-size: 1.6rem;
        font-weight: 500;
        text-align: center;
        margin: 20px auto 0;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .btn::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: var(--orange);
        transform: scale(0, 1);
        transform-origin: left top;
        transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: -1;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .btn:hover {
        opacity: 1;
        color: var(--white);
    }

    .btn:hover::after {
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 1280px) {
    .basic-table table {
        width: 100%;
    }

    .basic-table table td,
    .basic-table table th {
        border: 1px solid var(--border);
        line-height: 1.3;
        padding: 15px;
    }

    .basic-table table th {
        color: var(--white);
        background: var(--main-color);
        vertical-align: middle;
    }
}

@media screen and (min-width: 1280px) {
    .pnav {
        margin-top: 40px;
        border-top: 2px solid var(--border);
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }

    .pnav a {
        font-weight: 700;
    }

    .pnav .pnav_next a,
    .pnav .pnav_prev a {
        text-decoration: none;
        display: flex;
        align-items: center;
        line-height: 1;
        transition: all 0.3s ease;
    }

    .pnav .pnav_next .icon-arrow02,
    .pnav .pnav_prev .icon-arrow02 {
        display: block;
        background: var(--accent-color);
        width: 40px;
        height: 40px;
        border-radius: 20px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .pnav .pnav_next span {
        margin-right: 10px;
    }

    .pnav .pnav_prev span {
        margin-left: 10px;
    }

    .pnav .pnav_prev .icon-arrow02::before {
        transform: rotate(180deg);
    }

    .pnav a.prev_list {
        text-decoration: none;
        width: 160px;
        height: 40px;
        border-radius: 20px;
        background: var(--accent-color);
        text-align: center;
        line-height: 38px;
        font-size: 1.4rem;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {

    .pnav_next a:hover,
    .pnav_prev a:hover {
        opacity: 1;
    }

    .pnav_next a:hover .icon-arrow02,
    .pnav_prev a:hover .icon-arrow02 {
        background: var(--orange);
    }

    a.prev_list:hover {
        opacity: 1;
        background: var(--orange);
    }
}

@media screen and (min-width: 1280px) {
    .wp-pagenavi {
        font-weight: 700;
        text-align: center;
        margin: 80px auto;
    }

    .wp-pagenavi .pages {
        border: 1px solid var(--main-color);
        display: inline-block;
        line-height: 33px;
        height: 36px;
        padding: 0 5px;
        margin: 0 5px 0 0;
        color: var(--main-color);
    }

    .wp-pagenavi .page {
        border: 1px solid var(--main-color);
        width: 26px;
        height: 36px;
        display: inline-block;
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .page:hover {
        opacity: 1;
        color: var(--white);
        border: 1px solid var(--orange);
        background: var(--orange);
    }

    .wp-pagenavi .current {
        width: 26px;
        height: 36px;
        color: var(--white);
        background: var(--main-color);
        border: 1px solid var(--main-color);
        display: inline-block;
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .previouspostslink {
        display: inline-block;
        width: 26px;
        height: 36px;
        border: 1px solid var(--main-color);
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .nextpostslink::after,
    .wp-pagenavi .previouspostslink::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid var(--main-color);
        border-right: 2px solid var(--main-color);
    }

    .wp-pagenavi .nextpostslink:hover,
    .wp-pagenavi .previouspostslink:hover {
        opacity: 1;
        color: var(--white);
        border: 1px solid var(--orange);
        background: var(--orange);
    }

    .wp-pagenavi .nextpostslink:hover::after,
    .wp-pagenavi .previouspostslink:hover::after {
        border-top: 2px solid var(--white);
        border-right: 2px solid var(--white);
    }

    .wp-pagenavi .previouspostslink::after {
        margin-left: 3px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .wp-pagenavi .nextpostslink::after {
        margin-right: 3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wp-pagenavi .extend {
        margin-right: 5px;
    }

    .wp-pagenavi .last {
        height: 40px;
        border: 1px solid #8e8e8e;
        line-height: 37px;
        display: inline-block;
        padding: 0 8px;
        color: #8e8e8e;
    }

    .wp-pagenavi .last::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        margin-left: 3px;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid #8e8e8e;
        border-right: 2px solid #8e8e8e;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wp-pagenavi .last:hover {
        opacity: 1;
        color: var(--white);
        border: 1px solid #8e8e8e;
        background: #8e8e8e;
    }

    .wp-pagenavi .last:hover::after {
        border-top: 2px solid var(--white);
        border-right: 2px solid var(--white);
    }
}

@media screen and (min-width: 1280px) {
    .header {
        width: 100%;
        height: 100px;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        z-index: 10;
    }

    .header .logo {
        margin-left: 20px;
    }

    .header .right {
        display: flex;
    }

    .header .right .tel-wrap {
        color: var(--white);
        font-weight: 700;
        line-height: 1;
        height: 100px;
        background: var(--main-color);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        transition: all 0.3s ease;
    }

    .header .right .tel-wrap .txt {
        display: block;
        font-size: 1.4rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .header .right .tel-wrap .tel {
        display: block;
        font-size: 3rem;
        margin-bottom: 3px;
    }

    .header .right .tel-wrap .icon-tel::before {
        margin-right: 7px;
        font-size: 24px;
    }

    .header .right .tel-wrap .fax {
        text-align: right;
        font-size: 1.8rem;
    }

    .header .menu .menu_list {
        height: 100px;
        display: flex;
        justify-content: center;
        margin-right: 30px;
    }

    .header .menu .menu_list li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 10px;
    }

    .header .menu .menu_list a {
        display: block;
        font-size: 1.5rem;
        position: relative;
    }

    .header .menu .menu_list a::before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--orange);
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: center top;
        transform: scale(0, 1);
        transition: transform 0.3s;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .header .menu .menu_list a:hover {
        opacity: 1;
    }

    .header .menu .menu_list a:hover::before {
        transform-origin: center top;
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 1280px) {
    .footer {
        background: var(--main-color);
    }

    .footer .wrap_L {
        padding: 40px;
        display: flex;
        justify-content: space-between;
        color: var(--white);
    }

    .footer .company-info {
        display: flex;
        flex: 1;
    }

    .footer .company-info .company-img {
        width: 400px;
    }

    .footer .company-info .company-info_txt {
        flex: 1;
        margin-left: 40px;
    }

    .footer .company-info .logo {
        margin-bottom: 20px;
    }

    .footer .company-info .txt {
        margin-top: 20px;
    }

    .footer .footer_contact {
        width: 300px;
        color: var(--white);
        font-weight: 700;
        text-align: center;
    }

    .footer .footer_contact .txt {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .footer .footer_contact .tel {
        display: block;
        font-size: 3.6rem;
        line-height: 1;
        margin-bottom: 10px;
    }

    .footer .footer_contact .tel i {
        font-size: 30px;
        margin-right: 10px;
    }

    .footer .footer_contact .fax {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 5px;
    }

    .footer .footer_contact .open-time {
        font-size: 1.4rem;
        font-weight: 400;
    }

    .footer .map iframe {
        width: 100%;
        height: 400px;
    }

    .footer nav {
        background: var(--bg-color1);
    }

    .footer nav .footer_menu_list {
        height: 70px;
        width: 1280px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        font-size: 1.5rem;
    }

    .footer nav .footer_menu_list li {
        margin: 0 10px;
    }

    .footer .copy-right {
        background-color: #333;
        color: var(--white);
        text-align: center;
        font-size: 1.2rem;
        padding: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .pageTop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 62px;
        z-index: 100;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .pageTop:hover {
        transform: scale(1.1);
    }
}

@media screen and (min-width: 1280px) {
    .fix-simulator {
        position: fixed;
        top: 28vh;
        right: 0;
        z-index: 10;
        color: var(--white);
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 1;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        text-align: center;
    }

    .fix-simulator a {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        background: var(--main-color);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 10px 20px;
    }

    .fix-simulator span {
        margin-top: 10px;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .fix-simulator a:hover {
        opacity: 1;
        background: var(--sub-color);
    }
}

@media screen and (min-width: 1280px) {
    .ichimai {
        position: fixed;
        bottom: 100px;
        right: 0;
        z-index: 99;
        color: var(--white);
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 1;
        text-align: center;
        background: var(--main-color);
        width: 240px;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        flex-flow: column;
        align-items: center;
    }

    .ichimai div {
        width: 100%;
        margin-bottom: 10px;
        border-bottom: 1px dotted #fff;
        padding-bottom: 5px;
    }

    .ichimai span {
        margin-top: 10px;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .fix-simulator a:hover {
        opacity: 1;
        background: var(--sub-color);
    }
}

@media screen and (min-width: 1280px) {
    .main-visual .wrap {
        position: relative;
        height: 100vh;
        width: 100%;
    }

    .main-visual .video-wrap {
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .main-visual .video-wrap::after {
        content: "";
        display: block;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        background-image: radial-gradient(#111 15%, transparent 31%),
            radial-gradient(#111 15%, transparent 31%);
        background-size: 4px 4px;
        background-position: 0 0, 2px 2px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .main-visual .video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .main-visual .catch-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 500px;
    }

    .main-visual .catch-wrap .catch-copy {
        font-size: 4.2rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.5;
        position: relative;
    }

    .main-visual .catch-wrap .catch-logo {
        position: absolute;
        bottom: 10px;
        margin-left: 20px;
    }

    .main-visual .catch-wrap .catch-logo img {
        width: 280px;
    }

    .main-visual .catch-wrap .sub-catch {
        font-family: var(--Lato);
        font-style: italic;
        font-weight: 700;
        font-size: 22px;
        color: var(--white);
    }

    .main-visual .news-box {
        position: absolute;
        bottom: 50px;
        left: 2vw;
        z-index: 2;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        padding: 10px 25px 20px;
        width: 640px;
    }

    .main-visual .news-box h2 {
        font-size: 3.2rem;
        color: var(--main-color);
        font-weight: 700;
        line-height: 1.3;
    }

    .main-visual .news-box .slider-ticker {
        margin: 5px 0 10px;
    }

    .main-visual .news-box time {
        line-height: 1;
    }

    .main-visual .news-box p {
        line-height: 1.3;
    }

    .main-visual .news-box .more {
        display: block;
        width: 120px;
        margin-left: auto;
        padding-bottom: 5px;
        color: var(--main-color);
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 1;
        position: relative;
    }

    .main-visual .news-box .more::before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform 0.3s;
    }

    .main-visual .news-box .icon-arrow01 {
        font-size: 10px;
        margin-left: 5px;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .news-box .more:hover {
        opacity: 1;
    }

    .news-box .more:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 1280px) {
    .top_made-from-100-block {
        background: url(../images/common/top-bg.png),
            url(../images/common/bottom-bg.png);
        background-repeat: no-repeat;
        background-position: top left, bottom right;
        padding: 70px 0 120px;
    }

    .top_made-from-100-block .wrap {
        width: 1280px;
        margin: 0 auto;
    }

    .top_made-from-100-block .headline {
        display: flex;
        justify-content: space-between;
        padding-top: 100px;
        position: relative;
        margin: 0 10px;
    }

    .top_made-from-100-block .headline .price {
        position: absolute;
        left: 37%;
        top: -15px;
    }

    .top_made-from-100-block .headline .marker {
        font-size: 6.6rem;
        color: var(--main-color);
        font-weight: 900;
        line-height: 1.3;
        background: linear-gradient(transparent 60%, #fad90e 60%);
        letter-spacing: -0.1rem;
        padding: 0 15px;
    }

    .top_made-from-100-block .headline+figure {
        margin-top: 100px;
        margin-bottom: 0;
        text-align: center;
    }
}

@media screen and (min-width: 1280px) {
    .value-points_list {
        display: flex;
        margin-top: 100px;
    }

    .value-points_list>* {
        width: calc(25% - 60px);
        margin-right: 80px;
        margin-bottom: 0;
    }

    .value-points_list> :nth-child(4n) {
        margin-right: 0;
    }

    .value-points_list li {
        background: var(--accent-color);
        padding: 20px 10px;
        position: relative;
    }

    .value-points_list li::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: var(--main-color);
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: -1;
    }

    .value-points_list li .numbering {
        display: grid;
        place-content: center;
        width: 64px;
        height: 64px;
        border-radius: 32px;
        background: var(--main-color);
        color: var(--white);
        font-weight: 900;
        font-size: 3.2rem;
        text-align: center;
        line-height: 1;
        margin: -52px auto 0;
        position: relative;
    }

    .value-points_list li .numbering::before {
        content: "";
        width: 74px;
        height: 30px;
        display: block;
        background: url(../images/common/deco_lines_red.svg);
        position: absolute;
        top: -35px;
        left: -5px;
    }

    .value-points_list li .title {
        font-size: 3.2rem;
        text-align: center;
        line-height: 1.3;
        font-weight: 900;
        margin-top: 10px;
        margin-bottom: 26px;
    }

    .value-points_list li .title.small {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }

    .value-points_list li .price {
        text-align: center;
        margin-right: 15px;
    }

    .value-points_list li .price img {
        width: 98px;
    }

    .value-points_list li p {
        line-height: 1.3;
        margin-top: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .more-than-600-block {
        background: var(--sub-color);
        height: 300px;
        margin-bottom: 100px;;
    }

    .more-than-600-block .flex {
        display: flex;
        height: 300px;
        align-items: center;
        justify-content: space-between;
    }

    .more-than-600-block .txt {
        font-size: 6rem;
        color: var(--white);
        font-weight: 900;
        line-height: 1;
        position: relative;
        margin-top: -30px;
    }

    .more-than-600-block .txt::after {
        content: "";
        display: block;
        height: 300px;
        width: 60px;
        background: url(../images/top/speech_line.svg);
        position: absolute;
        right: -70px;
        bottom: -65px;
    }

    .more-than-600-block .number-txt {
        display: inline-block;
        vertical-align: text-bottom;
        font-size: 10rem;
        color: var(--accent-color);
        font-weight: 900;
        letter-spacing: -0.05em;
        margin: 0 10px 0 0;
    }
}

@media screen and (min-width: 1280px) {
    .top_large-orders-block {
        margin-top: 80px;
        margin-bottom: 140px;
    }

    .top_large-orders-block h2 {
        font-size: 4.8rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 100px;
    }

    .top_large-orders-block h2::before {
        content: "";
        width: 98px;
        height: 40px;
        display: block;
        margin: 0 auto;
        background: url(../images/common/deco_lines_orange.svg);
    }

    .top_large-orders-block h2 i.marker {
        font-style: normal;
        background: linear-gradient(transparent 70%, #fad90e 70%);
        padding: 0 20px;
    }

    .top_large-orders-block .product_list {
        display: flex;
    }

    .top_large-orders-block .product_list .item {
        width: calc(100% / 3 - 80px);
        margin: 0 40px;
    }

    .top_large-orders-block .product_list .item .img-wrap {
        display: flex;
        align-items: end;
        justify-content: space-between;
        position: relative;
        width: 100%;
        aspect-ratio: 56/39;
        margin-bottom: 20px;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap {
        background: url(../images/top/speech-bubble.svg);
        background-repeat: no-repeat;
        background-size: contain;
        padding: 1vw 1.5vw 1.9vw 1.5vw;
        width: 67%;
        aspect-ratio: 95/32;
        position: absolute;
        right: -20px;
        top: -20px;
        display: flex;
        align-items: center;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap .numbering {
        font-size: clamp(1rem, 1.5vw, 3rem);
        font-weight: 700;
        color: var(--red);
        text-align: center;
        line-height: 1;
        margin-right: 10px;
        padding-bottom: 10px;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap .numbering::before {
        content: "";
        display: block;
        background: url(../images/top/lines_red.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 3.6vw;
        aspect-ratio: 5/2;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap h3 {
        font-size: clamp(1rem, 1.5vw, 3rem);
        font-weight: 700;
        line-height: 1.1;
    }

    .top_large-orders-block .product_list .item .img-wrap .people01 {
        width: 42%;
    }

    .top_large-orders-block .product_list .item .img-wrap .people02 {
        width: 41%;
    }

    .top_large-orders-block .product_list .item .img-wrap .people03 {
        width: 34%;
    }

    .top_large-orders-block .product_list .item .img-wrap .obf {
        height: 69%;
        aspect-ratio: 10/9;
    }
}

@media screen and (min-width: 1280px) {
    .top_porycy-block {
        background: url(../images/top/wave-bg.png),
            linear-gradient(180deg, #07459e 0, #04234f 100%);
        padding: 100px 0 110px;
    }

    .top_porycy-block .flex {
        display: flex;
    }

    .top_porycy-block .flex>* {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 0;
    }

    .top_porycy-block .flex> :nth-child(2n) {
        margin-right: 0;
    }

    .top_porycy-block .left {
        color: var(--white);
    }

    .top_porycy-block .left h2 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .top_porycy-block .left h2 span {
        color: var(--accent-color);
        font-size: 2.4rem;
        display: block;
    }

    .top_porycy-block .left .txt {
        margin-bottom: 40px;
    }

    .top_porycy-block .left .txt p {
        margin-bottom: 20px;
    }

    .top_porycy-block .left .btn {
        margin: 0 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 120px;
        height: 30px;
        border-radius: 15px;
        font-size: 1.3rem;
    }

    .top_porycy-block .left .btn i {
        margin-left: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .works-block {
        background: url(../images/common/Japanese-bg.jpg);
        background-size: cover;
        background-position: center;
        padding: 50px 0 140px;
    }

    .works-block .works_list {
        display: flex;
    }

    .works-block .works_list>* {
        width: calc(100% / 3 - 27px);
        margin-right: 40px;
        margin-bottom: 40px;
    }

    .works-block .works_list> :nth-child(3n) {
        margin-right: 0;
    }

    .works-block .works_list figure {
        margin-bottom: 10px;
    }

    .works-block .works_list p {
        text-align: center;
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

@media screen and (min-width: 1280px) {
    .lowervisual {
        height: 360px;
        width: 100%;
        display: grid;
        justify-items: center;
        align-items: center;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }

    .lowervisual h1 {
        z-index: 2;
        grid-row: 1/2;
        grid-column: 1/2;
        text-align: center;
        font-size: 4rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        margin-top: 80px;
    }

    .lowervisual .lowervisual-img {
        height: 360px;
        width: 100%;
        z-index: 0;
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .lowervisual .lowervisual-img img {
        filter: brightness(0.8);
    }
}

@media screen and (min-width: 1280px) {
    .breadcrumbs_list {
        border-bottom: 1px solid var(--border);
        font-size: 1.3rem;
        line-height: 1.3;
        padding: 5px 0 3px;
    }
}

@media screen and (min-width: 1280px) {
    .PRIVACY {
        margin-bottom: 130px;
    }

    .PRIVACY h2 {
        margin-top: 80px;
    }

    .PRIVACY h3 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--main-color);
        margin-bottom: 15px;
        margin-top: 50px;
    }

    .PRIVACY h3:first-of-type {
        margin-top: 0;
    }

    .PRIVACY p {
        margin-bottom: 20px;
    }

    .PRIVACY a {
        text-decoration: underline;
    }
}

@media screen and (min-width: 1280px) {
    .aside {
        width: 220px;
        margin-left: 60px;
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .aside .aside-item {
        margin-bottom: 30px;
        position: relative;
    }

    .aside .aside-item:last-child {
        margin-bottom: 0;
    }

    .aside .aside-item .title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--main-color);
        padding: 5px 10px 5px;
        border-bottom: 2px solid var(--main-color);
        margin-bottom: 5px;
    }

    .aside .side_list {
        list-style-type: none;
        padding-left: 0;
        margin-top: 0;
    }

    .aside .side_list li {
        border-bottom: 1px solid var(--border);
    }

    .aside .side_list li a {
        text-decoration: none;
        display: inline-block;
        position: relative;
        padding: 10px 10px;
        padding-left: 15px;
    }

    .aside .side_list li a::before {
        content: "";
        margin: auto;
        position: absolute;
        top: 16px;
        left: 0;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media screen and (min-width: 1280px) {
    .NEWS {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .NEWS .flex {
        display: flex;
    }

    .NEWS .left {
        flex: 1;
    }

    .NEWS .NEWS_list li {
        border-bottom: 1px solid var(--border);
    }

    .NEWS .NEWS_list li:first-child {
        border-top: 1px solid var(--border);
    }

    .NEWS .NEWS_list a {
        display: flex;
        align-items: center;
        padding: 15px;
        line-height: 1.3;
        position: relative;
        overflow: hidden;
        transition: ease 0.2s;
    }

    .NEWS .NEWS_list a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        background: var(--main-color);
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
        transform: scale(0, 1);
        transform-origin: right top;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .NEWS .NEWS_list a:hover {
        opacity: 1;
    }

    .NEWS .NEWS_list a:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 1280px) {
    .NEWS .NEWS_list a::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid #333;
        border-top: 2px solid #333;
        display: inline-block;
        transform: rotate(45deg);
        margin-left: auto;
    }
}

@media screen and (min-width: 1280px) {
    .NEWS .NEWS_list time {
        font-weight: 500;
        margin-right: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .NEWS .NEWS_list .category {
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.3;
        text-align: center;
        color: var(--white);
        background: var(--main-color);
        padding: 3px 10px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .NEWS .NEWS_list h3 {
        margin-left: 10px;
        flex: 1;
    }
}

@media screen and (min-width: 1280px) {
    .NEWS_article {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .NEWS_article .flex {
        display: flex;
    }

    .NEWS_article .left {
        flex: 1;
    }

    .NEWS_article .time-category {
        font-weight: 500;
    }

    .NEWS_article .time-category time {
        margin-right: 10px;
    }

    .NEWS_article .time-category .category {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.3;
        text-align: center;
        color: var(--white);
        background: var(--main-color);
        padding: 3px 10px;
        margin-right: 10px;
    }

    .NEWS_article h2,
    .NEWS_article h3,
    .NEWS_article h4,
    .NEWS_article h5,
    .NEWS_article h6 {
        font-weight: 500;
        line-height: 1.3;
    }

    .NEWS_article h3,
    .NEWS_article h4,
    .NEWS_article h5,
    .NEWS_article h6 {
        margin-top: 40px;
    }

    .NEWS_article h2 {
        font-size: 2.2rem;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 20px;
    }

    .NEWS_article h3 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        padding-left: 5px;
        border-left: 6px solid var(--main-color);
    }

    .NEWS_article h4 {
        font-size: 2rem;
        border-bottom: 1px solid var(--main-color);
        padding-bottom: 5px;
        margin-bottom: 12px;
    }

    .NEWS_article h5 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .NEWS_article h5::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background: var(--main-color);
        margin-right: 5px;
    }

    .NEWS_article h6 {
        font-size: 1.6rem;
        padding-bottom: 5px;
        border-bottom: 1px dashed var(--main-color);
        margin-bottom: 12px;
    }

    .NEWS_article p {
        margin-bottom: 20px;
    }

    .NEWS_article figure {
        margin-bottom: 20px;
    }

    .NEWS_article a {
        text-decoration: underline;
    }

    .NEWS_article blockquote {
        background: var(--bg-color1);
        border-left: 4px solid var(--main-color);
        padding: 20px;
        margin-top: 40px;
    }

    .NEWS_article blockquote p:last-of-type {
        margin-bottom: 0;
    }

    .NEWS_article ul {
        list-style-type: disc;
        padding-left: 30px;
        margin-top: 40px;
    }

    .NEWS_article ol {
        list-style-type: decimal;
        padding-left: 30px;
        margin-top: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .FORM {
        margin-top: 80px;
        margin-bottom: 130px;
    }
}

@media screen and (min-width: 1280px) {

    input[type="email"],
    input[type="tel"],
    input[type="text"] {
        color: var(--text-color);
        background: var(--white);
        width: 100%;
        padding: 6px;
    }
}

@media screen and (min-width: 1280px) {
    input[type="number"] {
        appearance: auto;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 8px;
        width: 80px;
    }
}

@media screen and (min-width: 1280px) {
    input[type="checkbox"] {
        appearance: auto;
        margin-right: 3px;
    }
}

@media screen and (min-width: 1280px) {
    input[type="radio"] {
        appearance: auto;
    }
}

@media screen and (min-width: 1280px) {
    label {
        padding-right: 14px;
        display: inline-block;
        vertical-align: middle;
    }

    label input[type="checkbox"],
    label input[type="radio"] {
        appearance: auto;
        margin-right: 3px;
        margin-bottom: 4px;
    }
}

@media screen and (min-width: 1280px) {
    .checkbox_warp label {
        display: block;
    }
}

@media screen and (min-width: 1280px) {
    input[type="password"] {
        appearance: auto;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 8px;
    }
}

@media screen and (min-width: 1280px) {
    select {
        -moz-appearance: menulist-button;
        -webkit-appearance: menulist-button;
        appearance: menulist-button;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 5px;
        border: 1px solid var(--border);
    }
}

@media screen and (min-width: 1280px) {
    .select-wrap .flex {
        display: flex;
        align-items: center;
    }

    .select-wrap select {
        margin: 0 8px;
    }

    .select-wrap select:first-of-type {
        margin-left: 0;
    }
}

@media screen and (min-width: 1280px) {
    textarea {
        color: var(--text-color);
        background: var(--white);
        width: 100%;
        padding: 6px;
    }
}

@media screen and (min-width: 1280px) {
    .mwform-tel-field input[type="text"] {
        width: auto;
    }
}

@media screen and (min-width: 1280px) {
    .address-cell label {
        display: block;
        margin-bottom: 10px;
        padding-right: 0;
    }
}

@media screen and (min-width: 1280px) {
    .instructor-cell .item {
        padding-bottom: 15px;
        border-bottom: 1px dotted var(--border);
        margin-bottom: 15px;
    }

    .instructor-cell .item:last-of-type {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

    .instructor-cell .item label {
        display: block;
    }

    .instructor-cell .item label:first-of-type {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .required {
        background: #af2228;
        display: inline-block;
        font-size: 1rem;
        color: var(--white);
        text-align: center;
        padding: 3px 6px;
        border-radius: 2px;
        line-height: 1;
        margin-left: 5px;
        vertical-align: middle;
        margin-bottom: 2px;
    }
}

@media screen and (min-width: 1280px) {
    .form-wrap table {
        width: 100%;
        margin-bottom: 80px;
    }

    .form-wrap td,
    .form-wrap th {
        padding: 15px 30px;
        border: 2px solid var(--white);
    }

    .form-wrap th {
        width: 30%;
        background: var(--bg-color1);
        vertical-align: middle;
    }

    .form-wrap td {
        width: 70%;
        background: #f7f7f7;
    }

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

    .form-wrap .input_btnwrap input[type="submit"] {
        display: block;
        color: var(--text-color);
        font-size: 1.6rem;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        line-height: 38px;
        background: var(--accent-color);
        margin: 0 20px;
        text-align: center;
        font-weight: 500;
        font-weight: 700;
        transition: all ease 0.3s;
    }
}

@media screen and (min-width: 1280px) {
    .form_txt-box {
        margin-bottom: 50px;
    }

    .form_txt-box p {
        margin-bottom: 20px;
    }

    .form_txt-box p:last-of-type {
        margin-bottom: 0;
    }

    .form_txt-box a {
        text-decoration: underline;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .form-wrap .input_btnwrap input[type="submit"]:hover {
        background: var(--main-color);
        color: var(--white);
    }
}

@media screen and (min-width: 1280px) {
    .COMPANY_philosophy {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list {
        display: flex;
        flex-wrap: wrap;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list>* {
        width: calc(100% / 3 - 50px);
        margin-right: 75px;
        margin-bottom: 40px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list> :nth-child(3n) {
        margin-right: 0;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li::before {
        content: "";
        display: block;
        margin: 0 auto 15px;
        width: 74px;
        height: 30px;
        background: url(../images/company/line_blue.svg);
        background-size: contain;
        background-position: center;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li h3 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
        background: var(--main-color);
        padding: 10px 15px 3px;
        margin-bottom: 15px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li h3 .count {
        display: inline-block;
        vertical-align: middle;
        font-size: 3rem;
        margin-right: 10px;
        margin-bottom: 7px;
    }
}

@media screen and (min-width: 1280px) {
    .COMPANY_about {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .COMPANY_about table {
        width: 100%;
    }

    .COMPANY_about table td,
    .COMPANY_about table th {
        border: 1px solid var(--border);
        padding: 20px 30px;
    }

    .COMPANY_about table th {
        width: 30%;
        background: var(--main-color);
        color: var(--white);
        line-height: 1.3;
        font-weight: 700;
        vertical-align: middle;
    }

    .COMPANY_about table td {
        width: 70%;
        background: var(--white);
    }
}

@media screen and (min-width: 1280px) {
    .COMPANY_map {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .COMPANY_map .map iframe {
        width: 100%;
        height: 400px;
    }
}

@media screen and (min-width: 1280px) {
    .FAQ {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .FAQ .FAQ_list li {
        margin-bottom: 40px;
    }

    .FAQ .FAQ_list li:last-child {
        margin-bottom: 0;
    }

    .FAQ .question {
        background: var(--bg-color1);
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .FAQ .question h3 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        display: flex;
        align-items: center;
    }

    .FAQ .question .Q {
        display: inline-block;
        font-size: 4rem;
        font-weight: 700;
        color: var(--main-color);
        line-height: 1;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .FAQ .answer {
        background: var(--bg-color2);
        padding: 15px 15px 20px 20px;
    }

    .FAQ .answer .txt {
        display: flex;
    }

    .FAQ .answer .A {
        display: inline-block;
        font-size: 4rem;
        font-weight: 700;
        color: var(--orange);
        line-height: 1;
        margin-right: 10px;
    }
}

@media screen and (min-width: 1280px) {
    .WORKS {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .WORKS .WORKS_list {
        display: flex;
        flex-wrap: wrap;
    }

    .WORKS .WORKS_list>* {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 80px;
    }

    .WORKS .WORKS_list> :nth-child(2n) {
        margin-right: 0;
    }

    .WORKS .WORKS_list .item h3 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--white);
        background: var(--main-color);
        text-align: center;
        padding: 10px;
    }

    .WORKS .WORKS_list .mein-img {
        margin-bottom: 20px;
    }

    .WORKS .WORKS_list .sub-img {
        display: flex;
        flex-wrap: wrap;
    }

    .WORKS .WORKS_list .sub-img>* {
        width: calc(100% / 3 - 14px);
        margin-right: 21px;
        margin-bottom: 20px;
    }

    .WORKS .WORKS_list .sub-img> :nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 1280px) {
    .HOWTO_flow {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .HOWTO_flow .HOWTO_flow_list li {
        background: var(--bg-color1);
        padding: 20px 40px 30px;
        margin-bottom: 40px;
        display: flex;
    }

    .HOWTO_flow .HOWTO_flow_list .illust {
        display: grid;
        place-content: center;
        width: 180px;
        height: 180px;
        border-radius: 90px;
        background: var(--white);
        margin-top: 40px;
        position: relative;
    }

    .HOWTO_flow .HOWTO_flow_list .illust::before {
        content: "";
        display: block;
        width: 74px;
        height: 30px;
        background: url(../images/howto/line_blue.svg);
        background-size: contain;
        background-position: center;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box {
        flex: 1;
        margin-left: 40px;
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box h3 {
        display: flex;
        align-items: center;
        color: var(--white);
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.3;
        background: var(--main-color);
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box h3 .count {
        display: inline-block;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1;
        margin-right: 10px;
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 1280px) {
    .HOWTO_payment {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .HOWTO_payment .basic-table {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .HOWTO_payment .basic-table table {
        width: 100%;
    }

    .HOWTO_payment .basic-table table td,
    .HOWTO_payment .basic-table table th {
        border: 1px solid var(--border);
        line-height: 1.3;
        padding: 20px;
    }

    .HOWTO_payment .basic-table table th {
        color: var(--white);
        background: var(--main-color);
        vertical-align: middle;
    }
}

@media screen and (min-width: 1280px) {
    .PRICE_list {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .PRICE_list .basic-table {
        margin-bottom: 40px;
    }

    .PRICE_list .basic-table td,
    .PRICE_list .basic-table th {
        text-align: center;
    }
}

@media screen and (min-width: 1280px) {
    .PRICE_speech-bubble {
        display: flex;
        margin: 60px 0 80px 40px;
    }

    .PRICE_speech-bubble .illust {
        width: 180px;
    }

    .PRICE_speech-bubble .speech-bubble {
        flex: 1;
        margin-left: 40px;
        padding: 20px 40px 40px;
        background: var(--bg-color2);
        position: relative;
    }

    .PRICE_speech-bubble .speech-bubble::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -30px;
        margin-top: -15px;
        border: 15px solid transparent;
        border-right: 15px solid var(--bg-color2);
    }

    .PRICE_speech-bubble .headline {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        margin-bottom: 20px;
        border-bottom: 2px dashed var(--accent-color);
    }
}

@media screen and (min-width: 1280px) {
    .ABOUT_intro .flex {
        display: flex;
        background: url(../images/about/bg_wave.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .ABOUT_intro .txt-wrap {
        width: 50%;
        max-width: 540px;
        margin-left: auto;
        margin-right: 60px;
        padding-bottom: 100px;
    }

    .ABOUT_intro .right-img {
        width: 50%;
    }

    .ABOUT_intro h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        background: var(--main-color);
        padding: 10px;
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .ABOUT_intro .txt-box {
        margin-bottom: 60px;
    }
}

@media screen and (min-width: 1280px) {
    .ABOUT_quality {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .ABOUT_quality .flex {
        display: flex;
        align-items: flex-start;
        background: url(../images/about/logo-illust.svg);
        background-repeat: no-repeat;
        background-position: 90% bottom;
    }

    .ABOUT_quality .img-wrap {
        width: 55%;
        max-width: 710px;
        aspect-ratio: 71/63;
        margin-left: auto;
        position: relative;
    }

    .ABOUT_quality .img01 {
        width: 56%;
        max-width: 400px;
        aspect-ratio: 40/31;
        position: absolute;
        left: 0;
        top: 0;
    }

    .ABOUT_quality .img03 {
        width: 56%;
        max-width: 400px;
        aspect-ratio: 40/31;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .ABOUT_quality .img02 {
        width: 42%;
        max-width: 300px;
        aspect-ratio: 30/22;
        position: absolute;
        right: 0;
        top: 0;
    }

    .ABOUT_quality .img04 {
        width: 42%;
        max-width: 300px;
        aspect-ratio: 3/4;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .ABOUT_quality .txt-box {
        width: 45%;
        max-width: 400px;
        margin-left: 80px;
        margin-top: 60px;
        margin-right: auto;
    }

    .ABOUT_quality .txt-box p {
        margin-bottom: 1.4rem;
    }
}

@media screen and (min-width: 1280px) {
    .KIND_point {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .KIND_point .flex {
        display: flex;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .KIND_point .flex>* {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 0;
    }

    .KIND_point .flex> :nth-child(2n) {
        margin-right: 0;
    }

    .KIND_point .flex .headline {
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
        background: var(--main-color);
        padding: 10px 20px;
        padding-right: 80px;
        margin-bottom: 20px;
        position: relative;
    }

    .KIND_point .flex .headline img {
        width: 86px;
        position: absolute;
        right: 20px;
        bottom: 0;
    }

    .KIND_point .flex .txt p {
        margin-bottom: 1em;
    }

    .KIND_point .flex .txt table {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-top: 30px;
    }

    .KIND_point .flex .txt table td,
    .KIND_point .flex .txt table th {
        border: 1px solid var(--border);
        padding: 15px;
    }

    .KIND_point .flex .txt table th {
        background: var(--main-color);
        color: var(--white);
        text-align: center;
        vertical-align: middle;
        min-width: 90px;
    }

    .KIND_point .flex .mein-img {
        margin-bottom: 20px;
    }

    .KIND_point .flex .sub-img {
        display: flex;
        flex-wrap: wrap;
    }

    .KIND_point .flex .sub-img>* {
        width: calc(100% / 3 - 14px);
        margin-right: 21px;
        margin-bottom: 20px;
    }

    .KIND_point .flex .sub-img> :nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 1280px) {
    .SIMULATION {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .SIMULATION.wrap_S {
        width: 1000px;
    }

    .SIMULATION .wq-Form {
        margin-top: 20px;
    }

    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-price,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-quantity,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-taxClass,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-unitPrice,
    .SIMULATION .wq-Form .wq-Option>.wq--label>.wq--main>.wq--prices {
        display: none;
    }

    .SIMULATION .wq-Form .wq-Quantity>.wq--head,
    .SIMULATION .wq-Form .wq-Selector>.wq--head,
    .SIMULATION .wq-Form .wq-Slider>.wq--head {
        background: var(--bg-color1);
    }

    .SIMULATION .wq-Form .wq--items>.wq-belongs-hnavigator>.wq--body,
    .SIMULATION .wq-Form .wq-Option>.wq--label,
    .SIMULATION .wq-Form .wq-Selector>.wq--body {
        background: #f7f7f7;
    }

    .SIMULATION .wq-Form .wq-Option>.wq--label:hover {
        background-color: rgba(235, 66, 102, 0.2);
    }

    .SIMULATION .wq-Form .wq-Attributes {
        padding: 20px;
        border: 1px solid var(--border);
    }

    .SIMULATION .wq-Form .wq-Button.wq-type-primary {
        margin-left: calc(50% - 160px);
    }

    .SIMULATION .wq-Form .wq-Button.wq-type-primary:not(:hover):not(:active) {
        background-color: var(--accent-color);
        color: #000;
        font-weight: 500;
        border-radius: 18px;
        border: none;
    }
}

@media screen and (min-width: 1280px) and (hover: hover) {
    .SIMULATION .wq-Form .wq-Button.wq-type-primary:hover {
        font-weight: 500;
        border-radius: 18px;
        border: none;
    }
}

:root {
    --sans: "Noto Sans JP", sans-serif;
    --serif: "Noto Serif JP", serif;
    --Lato: "Lato", sans-serif;
    --text-color: #333333;
    --main-color: #07459e;
    --sub-color: #9e0000;
    --accent-color: #ffe300;
    --bg-color1: #dfe9ef;
    --bg-color2: #fff8ce;
    --white: #fff;
    --red: #c90000;
    --orange: #ff7245;
    --border: #dcdcdc;
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 62.5%;
    }

    body {
        font-family: var(--sans);
        color: var(--text-color);
        word-wrap: break-word;
        font-size: 1.4rem;
        font-feature-settings: "palt";
        line-height: 1.7;
    }

    a {
        transition: all 0.3s;
        color: inherit;
        text-decoration: none;
    }

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

    .container {
        position: relative;
        overflow: hidden;
    }

    .display_pc {
        display: none;
    }

    .display_sp {
        display: block;
    }

    .wrap_L {
        width: 90%;
        margin: 0 5%;
    }

    .wrap_S {
        width: 90%;
        margin: 0 5%;
    }

    .h_style01 {
        font-size: 3.6rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .h_style01 span {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1.3;
        display: block;
    }

    .h_style02 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        border-bottom: 2px dashed var(--main-color);
        margin-bottom: 20px;
    }

    .btn {
        display: grid;
        place-content: center;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        background: var(--accent-color);
        color: var(--text-color);
        font-size: 1.6rem;
        font-weight: 500;
        text-align: center;
        margin: 20px auto 0;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    .btn::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background: var(--orange);
        transform: scale(0, 1);
        transform-origin: left top;
        transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
        z-index: -1;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {
    .btn:hover {
        opacity: 1;
        color: var(--white);
    }

    .btn:hover::after {
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .basic-table table {
        width: 100%;
    }

    .basic-table table td,
    .basic-table table th {
        border: 1px solid var(--border);
        line-height: 1.3;
        padding: 15px;
    }

    .basic-table table th {
        color: var(--white);
        background: var(--main-color);
        vertical-align: middle;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .pnav {
        margin-top: 40px;
        border-top: 2px solid var(--border);
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }

    .pnav a {
        font-weight: 700;
    }

    .pnav .pnav_next a,
    .pnav .pnav_prev a {
        text-decoration: none;
        display: flex;
        align-items: center;
        line-height: 1;
        transition: all 0.3s ease;
    }

    .pnav .pnav_next .icon-arrow02,
    .pnav .pnav_prev .icon-arrow02 {
        display: block;
        background: var(--accent-color);
        width: 40px;
        height: 40px;
        border-radius: 20px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .pnav .pnav_next span {
        margin-right: 10px;
    }

    .pnav .pnav_prev span {
        margin-left: 10px;
    }

    .pnav .pnav_prev .icon-arrow02::before {
        transform: rotate(180deg);
    }

    .pnav a.prev_list {
        text-decoration: none;
        width: 160px;
        height: 40px;
        border-radius: 20px;
        background: var(--accent-color);
        text-align: center;
        line-height: 38px;
        font-size: 1.4rem;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {

    .pnav_next a:hover,
    .pnav_prev a:hover {
        opacity: 1;
    }

    .pnav_next a:hover .icon-arrow02,
    .pnav_prev a:hover .icon-arrow02 {
        background: var(--orange);
    }

    a.prev_list:hover {
        opacity: 1;
        background: var(--orange);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .wp-pagenavi {
        font-weight: 700;
        text-align: center;
        margin: 80px auto;
    }

    .wp-pagenavi .pages {
        border: 1px solid var(--main-color);
        display: inline-block;
        line-height: 33px;
        height: 36px;
        padding: 0 5px;
        margin: 0 5px 0 0;
        color: var(--main-color);
    }

    .wp-pagenavi .page {
        border: 1px solid var(--main-color);
        width: 26px;
        height: 36px;
        display: inline-block;
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .page:hover {
        opacity: 1;
        color: var(--white);
        border: 1px solid var(--orange);
        background: var(--orange);
    }

    .wp-pagenavi .current {
        width: 26px;
        height: 36px;
        color: var(--white);
        background: var(--main-color);
        border: 1px solid var(--main-color);
        display: inline-block;
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .previouspostslink {
        display: inline-block;
        width: 26px;
        height: 36px;
        border: 1px solid var(--main-color);
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .nextpostslink::after,
    .wp-pagenavi .previouspostslink::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid var(--main-color);
        border-right: 2px solid var(--main-color);
    }

    .wp-pagenavi .nextpostslink:hover,
    .wp-pagenavi .previouspostslink:hover {
        opacity: 1;
        color: var(--white);
        border: 1px solid var(--orange);
        background: var(--orange);
    }

    .wp-pagenavi .nextpostslink:hover::after,
    .wp-pagenavi .previouspostslink:hover::after {
        border-top: 2px solid var(--white);
        border-right: 2px solid var(--white);
    }

    .wp-pagenavi .previouspostslink::after {
        margin-left: 3px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .wp-pagenavi .nextpostslink::after {
        margin-right: 3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wp-pagenavi .extend {
        margin-right: 5px;
    }

    .wp-pagenavi .last {
        height: 40px;
        border: 1px solid #8e8e8e;
        line-height: 37px;
        display: inline-block;
        padding: 0 8px;
        color: #8e8e8e;
    }

    .wp-pagenavi .last::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        margin-left: 3px;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid #8e8e8e;
        border-right: 2px solid #8e8e8e;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wp-pagenavi .last:hover {
        opacity: 1;
        color: var(--white);
        border: 1px solid #8e8e8e;
        background: #8e8e8e;
    }

    .wp-pagenavi .last:hover::after {
        border-top: 2px solid var(--white);
        border-right: 2px solid var(--white);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .header {
        height: 50px;
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .logo {
        height: 30px;
        margin-left: 10px;
    }

    .header .logo img {
        height: 100%;
    }

    .header .right {
        display: flex;
    }

    .header .right .tel-wrap {
        order: 2;
    }

    .header .right .tel-wrap a.display_sp {
        color: var(--white);
        height: 50px;
        width: 50px;
        background: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .right .tel-wrap .icon-tel::before {
        font-size: 2.6rem;
        line-height: 1;
    }

    .header .right .mail-wrap {
        order: 1;
    }

    .header .right .mail-wrap a {
        font-size: 1rem;
        line-height: 1;
        color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--main-color);
        width: 50px;
        height: 50px;
    }

    .header .right .mail-wrap .icon-mail::before {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .header .hamburger {
        order: 3;
        position: relative;
        height: 50px;
        width: 50px;
        background: var(--white);
    }

    .header .hamburger .line span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s 0s ease;
    }

    .header .hamburger .line span:first-child {
        top: 16px;
    }

    .header .hamburger .line span:nth-child(2) {
        top: 24px;
    }

    .header .hamburger .line span:nth-child(3) {
        top: 32px;
    }

    .header .hamburger.active {
        position: relative;
        width: 50px;
        height: 50px;
        z-index: 9999;
    }

    .header .hamburger.active .line span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 50%;
    }

    .header .hamburger.active .line span:nth-child(1) {
        top: 24px;
        transform: translateX(-50%) rotate(45deg);
    }

    .header .hamburger.active .line span:nth-child(2) {
        display: none;
    }

    .header .hamburger.active .line span:nth-child(3) {
        top: 24px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .header .menu {
        position: fixed;
        top: 0;
        right: 0;
        opacity: 0;
        z-index: 888;
        background: rgba(0, 0, 0, 0.7);
        padding: 80px 0 0;
        width: 40vw;
        height: 100vh;
        overflow-y: scroll;
        transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        margin: 0;
    }

    .header .menu a {
        display: block;
        margin-left: 5px;
        line-height: 1.3;
        transition: margin 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .header .menu .sp-mail {
        width: 90%;
        margin: 0 auto 20px;
    }

    .header .menu .sp-mail a {
        display: block;
        background: var(--sub-color);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        padding: 20px;
    }

    .header .menu .sp-mail a .icon-mail::before {
        margin-right: 8px;
    }

    .header .menu .sp-tel {
        width: 90%;
        margin: 0 auto 30px;
    }

    .header .menu .sp-tel a {
        display: block;
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        padding: 20px;
    }

    .header .menu .sp-tel .txt {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

    .header .menu .sp-tel .tel {
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 8px;
    }

    .header .menu .sp-tel .tel .icon-tel::before {
        font-size: 24px;
        margin-right: 8px;
    }

    .header .menu .sp-tel .fax {
        font-size: 1.6rem;
    }

    .header .menu .menu_list li {
        border-bottom: 1px solid var(--white);
    }

    .header .menu .menu_list a {
        color: var(--white);
        padding: 15px 5%;
    }

    .header .menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .header .menu.active a {
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .footer {
        margin-bottom: 40px;
        background: var(--main-color);
    }

    .footer .wrap_L {
        padding: 40px 0;
        display: flex;
        justify-content: space-between;
        color: var(--white);
    }

    .footer .company-info {
        display: flex;
        align-items: flex-start;
        flex: 1;
    }

    .footer .company-info .company-img {
        width: 30vw;
        max-width: 400px;
    }

    .footer .company-info .company-info_txt {
        flex: 1;
        margin-left: 20px;
    }

    .footer .company-info .logo {
        margin-bottom: 20px;
    }

    .footer .company-info .txt {
        margin-top: 20px;
    }

    .footer .footer_contact {
        width: 30vw;
        color: var(--white);
        font-weight: 700;
        text-align: center;
    }

    .footer .footer_contact .txt {
        font-size: clamp(1rem, 1.5vw, 2rem);
        margin-bottom: 10px;
    }

    .footer .footer_contact .tel {
        display: block;
        font-size: clamp(2.2rem, 2.8vw, 3.6rem);
        line-height: 1;
        margin-bottom: 10px;
    }

    .footer .footer_contact .tel i {
        font-size: clamp(2rem, 2.3vw, 30px);
        margin-right: 10px;
    }

    .footer .footer_contact .fax {
        font-size: clamp(1.4rem, 1.5vw, 2rem);
        line-height: 1;
        margin-bottom: 5px;
    }

    .footer .footer_contact .open-time {
        font-size: 1.3rem;
        font-weight: 400;
    }

    .footer .footer_contact a.btn {
        max-width: 240px;
        width: 20vw;
        font-size: 1.3rem;
    }

    .footer .map iframe {
        width: 100%;
        height: 400px;
    }

    .footer nav {
        display: none;
    }

    .footer .copy-right {
        background-color: #333;
        color: var(--white);
        text-align: center;
        font-size: 1.2rem;
        padding: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .pageTop {
        position: fixed;
        bottom: 50px;
        right: 20px;
        width: 62px;
        z-index: 100;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {
    .pageTop:hover {
        transform: scale(1.1);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .fix_bottom {
        width: 100%;
        height: 40px;
        position: fixed;
        bottom: 0;
        z-index: 10;
        display: flex;
    }

    .fix_bottom .fix-mail,
    .fix_bottom .fix-simulator,
    .fix_bottom .fix-tel {
        width: calc(100% / 2);
        transition: all 0.3s ease;
    }

    .fix_bottom .fix-mail a,
    .fix_bottom .fix-simulator a,
    .fix_bottom .fix-tel a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 40px;
    }

    .fix_bottom .fix-tel {
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        line-height: 1;
    }

    .fix_bottom .fix-tel .icon-tel {
        margin-right: 5px;
        font-size: 16px;
    }

    .fix_bottom .fix-mail {
        background: var(--accent-color);
        font-weight: 700;
        text-align: center;
        letter-spacing: -0.1em;
        line-height: 1;
    }

    .fix_bottom .fix-mail .icon-mail {
        margin-right: 5px;
        font-size: 15px;
    }

    .fix_bottom .fix-simulator {
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1.2;
        text-align: left;
    }

    .fix_bottom .fix-simulator img {
        width: 24px;
        margin-right: 5px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .ichimai {
        color: var(--white);
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1;
        text-align: center;
        background: var(--main-color);
        padding: 4px;
        display: flex;
        justify-content: center;
        flex-flow: column;
        align-items: center;
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 50px;
        z-index: 99;
        border: 2px solid #ccc;
        border-radius: 10px;
    }

    .ichimai div {
        width: 100%;
        margin-bottom: 5px;
        border-bottom: 1px dotted #fff;
        padding: 10px;
    }

    .ichimai span {
        margin-top: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {

    .fix_bottom .fix-simulator:hover,
    .fix_bottom .fix-tel:hover {
        background: var(--orange);
    }

    .fix_bottom .fix-mail:hover {
        background: var(--orange);
    }

    .fix_bottom .fix-mail:hover a {
        opacity: 1;
        color: var(--white);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .main-visual .wrap {
        position: relative;
        height: 100vh;
        width: 100%;
    }

    .main-visual .video-wrap {
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .main-visual .video-wrap::after {
        content: "";
        display: block;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        background-image: radial-gradient(#111 15%, transparent 31%),
            radial-gradient(#111 15%, transparent 31%);
        background-size: 4px 4px;
        background-position: 0 0, 2px 2px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .main-visual .video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .main-visual .catch-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 500px;
    }

    .main-visual .catch-wrap .catch-copy {
        font-size: 4.2rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.5;
        position: relative;
    }

    .main-visual .catch-wrap .catch-logo {
        position: absolute;
        bottom: 10px;
        margin-left: 20px;
    }

    .main-visual .catch-wrap .catch-logo img {
        width: 280px;
    }

    .main-visual .catch-wrap .sub-catch {
        font-family: var(--Lato);
        font-style: italic;
        font-weight: 700;
        font-size: 22px;
        color: var(--white);
    }

    .main-visual .news-box {
        position: absolute;
        bottom: 2vw;
        left: 2vw;
        z-index: 2;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        padding: 10px 25px 20px;
        width: 500px;
    }

    .main-visual .news-box h2 {
        font-size: 3.2rem;
        color: var(--main-color);
        font-weight: 700;
        line-height: 1.3;
    }

    .main-visual .news-box .slider-ticker {
        margin: 5px 0 10px;
    }

    .main-visual .news-box time {
        line-height: 1;
    }

    .main-visual .news-box p {
        line-height: 1.3;
    }

    .main-visual .news-box .more {
        display: block;
        width: 120px;
        margin-left: auto;
        padding-bottom: 5px;
        color: var(--main-color);
        font-weight: 700;
        font-size: 1.6rem;
        line-height: 1;
        position: relative;
    }

    .main-visual .news-box .more::before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform 0.3s;
    }

    .main-visual .news-box .icon-arrow01 {
        font-size: 10px;
        margin-left: 5px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {
    .news-box .more:hover {
        opacity: 1;
    }

    .news-box .more:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .top_made-from-100-block {
        background: url(../images/common/top-bg.png),
            url(../images/common/bottom-bg.png);
        background-repeat: no-repeat;
        background-position: top left, bottom right;
        background-size: 80%, 80%;
        padding: 70px 0 120px;
    }

    .top_made-from-100-block .headline {
        display: flex;
        justify-content: space-between;
        padding-top: 7.8vw;
        position: relative;
        margin: 0 10px;
    }

    .top_made-from-100-block .headline .price {
        position: absolute;
        left: 37%;
        top: -1vw;
        z-index: 1;
    }

    .top_made-from-100-block .headline .price img {
        width: 28vw;
    }

    .top_made-from-100-block .headline .marker {
        font-size: clamp(3rem, 5.1vw, 6.6rem);
        color: var(--main-color);
        font-weight: 900;
        line-height: 1.3;
        background: linear-gradient(transparent 60%, #fad90e 60%);
        letter-spacing: -0.1rem;
        padding: 0 15px;
    }

    .top_made-from-100-block .headline+figure {
        margin-top: 7.8vw;
        margin-bottom: 0;
        text-align: center;
    }

    .top_made-from-100-block .headline+figure img {
        width: 90%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .value-points_list {
        display: flex;
        margin-top: 100px;
    }

    .value-points_list>* {
        width: calc(25% - 3vw);
        margin-right: 4vw;
        margin-bottom: 0;
    }

    .value-points_list> :nth-child(4n) {
        margin-right: 0;
    }

    .value-points_list li {
        background: var(--accent-color);
        padding: 20px 10px;
        position: relative;
    }

    .value-points_list li::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: var(--main-color);
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: -1;
    }

    .value-points_list li .numbering {
        display: grid;
        place-content: center;
        width: 64px;
        height: 64px;
        border-radius: 32px;
        background: var(--main-color);
        color: var(--white);
        font-weight: 900;
        font-size: 3.2rem;
        text-align: center;
        line-height: 1;
        margin: -52px auto 0;
        position: relative;
    }

    .value-points_list li .numbering::before {
        content: "";
        width: 74px;
        height: 30px;
        display: block;
        background: url(../images/common/deco_lines_red.svg);
        position: absolute;
        top: -35px;
        left: -5px;
    }

    .value-points_list li .title {
        font-size: clamp(2rem, 2.5vw, 3.2rem);
        text-align: center;
        line-height: 1.3;
        font-weight: 900;
        margin-top: 10px;
        margin-bottom: 26px;
    }

    .value-points_list li .title.small {
        font-size: clamp(1.4rem, 1.8vw, 2.4rem);
        margin-bottom: 10px;
    }

    .value-points_list li .price {
        text-align: center;
        margin-right: 15px;
    }

    .value-points_list li .price img {
        max-width: 98px;
        width: 80%;
    }

    .value-points_list li p {
        line-height: 1.3;
        margin-top: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .more-than-600-block {
        background: var(--sub-color);
        height: 23vw;
    }

    .more-than-600-block .flex {
        display: flex;
        height: 23vw;
        align-items: center;
        justify-content: space-between;
    }

    .more-than-600-block .txt {
        font-size: clamp(1rem, 4.6vw, 6rem);
        color: var(--white);
        font-weight: 900;
        line-height: 1;
        position: relative;
        margin-top: -2.3vw;
    }

    .more-than-600-block .txt::after {
        content: "";
        display: block;
        height: 23vw;
        width: 4.6vw;
        background: url(../images/top/speech_line.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        right: -5.4vw;
        bottom: -5vw;
    }

    .more-than-600-block .number-txt {
        display: inline-block;
        vertical-align: text-bottom;
        font-size: clamp(1rem, 7.8vw, 10rem);
        color: var(--accent-color);
        font-weight: 900;
        letter-spacing: -0.05em;
        margin: 0 10px 0 0;
    }

    .more-than-600-block figure {
        width: 23vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .top_large-orders-block {
        margin-top: 80px;
        margin-bottom: 140px;
    }

    .top_large-orders-block h2 {
        font-size: clamp(3.8rem, 3.7vw, 4.8rem);
        font-weight: 700;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 70px;
    }

    .top_large-orders-block h2::before {
        content: "";
        width: 98px;
        height: 40px;
        display: block;
        margin: 0 auto;
        background: url(../images/common/deco_lines_orange.svg);
    }

    .top_large-orders-block h2 i.marker {
        font-style: normal;
        background: linear-gradient(transparent 70%, #fad90e 70%);
        padding: 0 20px;
    }

    .top_large-orders-block .product_list {
        display: flex;
    }

    .top_large-orders-block .product_list .item {
        width: calc(100% / 3 - 20px);
        margin: 0 20px;
    }

    .top_large-orders-block .product_list .item .img-wrap {
        display: flex;
        align-items: end;
        justify-content: space-between;
        position: relative;
        width: 100%;
        aspect-ratio: 56/39;
        margin-bottom: 20px;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap {
        background: url(../images/top/speech-bubble.svg);
        background-repeat: no-repeat;
        background-size: contain;
        padding: 1vw 1.5vw 1.9vw 1.5vw;
        width: 67%;
        aspect-ratio: 95/32;
        position: absolute;
        right: -10px;
        top: -20px;
        display: flex;
        align-items: center;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap .numbering {
        font-size: clamp(1rem, 1.5vw, 3rem);
        font-weight: 700;
        color: var(--red);
        text-align: center;
        line-height: 1;
        margin-right: 10px;
        padding-bottom: 10px;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap .numbering::before {
        content: "";
        display: block;
        background: url(../images/top/lines_red.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 3.6vw;
        aspect-ratio: 5/2;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap h3 {
        font-size: clamp(1rem, 1.5vw, 3rem);
        font-weight: 700;
        line-height: 1.1;
    }

    .top_large-orders-block .product_list .item .img-wrap .people01 {
        width: 42%;
    }

    .top_large-orders-block .product_list .item .img-wrap .people02 {
        width: 41%;
    }

    .top_large-orders-block .product_list .item .img-wrap .people03 {
        width: 34%;
    }

    .top_large-orders-block .product_list .item .img-wrap .obf {
        height: 69%;
        aspect-ratio: 10/9;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .top_porycy-block {
        background: url(../images/top/wave-bg.png),
            linear-gradient(180deg, #07459e 0, #04234f 100%);
        padding: 100px 0 110px;
    }

    .top_porycy-block .flex {
        display: flex;
    }

    .top_porycy-block .flex>* {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 0;
    }

    .top_porycy-block .flex> :nth-child(2n) {
        margin-right: 0;
    }

    .top_porycy-block .left {
        color: var(--white);
    }

    .top_porycy-block .left h2 {
        font-size: 3.2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .top_porycy-block .left h2 span {
        color: var(--accent-color);
        font-size: 2.4rem;
        display: block;
    }

    .top_porycy-block .left .txt {
        margin-bottom: 40px;
    }

    .top_porycy-block .left .txt p {
        margin-bottom: 20px;
    }

    .top_porycy-block .left .btn {
        margin: 0 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 120px;
        height: 30px;
        border-radius: 15px;
        font-size: 1.3rem;
    }

    .top_porycy-block .left .btn i {
        margin-left: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .works-block {
        background: url(../images/common/Japanese-bg.jpg);
        background-size: cover;
        background-position: center;
        padding: 50px 0 140px;
    }

    .works-block .works_list {
        display: flex;
    }

    .works-block .works_list>* {
        width: calc(100% / 3 - 27px);
        margin-right: 40px;
        margin-bottom: 40px;
    }

    .works-block .works_list> :nth-child(3n) {
        margin-right: 0;
    }

    .works-block .works_list figure {
        margin-bottom: 10px;
    }

    .works-block .works_list p {
        text-align: center;
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .lowervisual {
        height: 300px;
        width: 100%;
        display: grid;
        justify-items: center;
        align-items: center;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }

    .lowervisual h1 {
        z-index: 2;
        grid-row: 1/2;
        grid-column: 1/2;
        text-align: center;
        font-size: 4rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        margin-top: 25px;
    }

    .lowervisual .lowervisual-img {
        height: 300px;
        width: 100%;
        z-index: 0;
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .lowervisual .lowervisual-img img {
        filter: brightness(0.8);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .breadcrumbs_list {
        border-bottom: 1px solid var(--border);
        font-size: 1.3rem;
        line-height: 1.3;
        padding: 5px 0 3px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .PRIVACY {
        margin-bottom: 130px;
    }

    .PRIVACY h2 {
        margin-top: 80px;
    }

    .PRIVACY h3 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--main-color);
        margin-bottom: 15px;
        margin-top: 50px;
    }

    .PRIVACY h3:first-of-type {
        margin-top: 0;
    }

    .PRIVACY p {
        margin-bottom: 20px;
    }

    .PRIVACY a {
        text-decoration: underline;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .aside {
        width: 160px;
        margin-left: 60px;
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .aside .aside-item {
        margin-bottom: 30px;
        position: relative;
    }

    .aside .aside-item:last-child {
        margin-bottom: 0;
    }

    .aside .aside-item .title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--main-color);
        padding: 5px 10px 5px;
        border-bottom: 2px solid var(--main-color);
        margin-bottom: 5px;
    }

    .aside .side_list {
        list-style-type: none;
        padding-left: 0;
        margin-top: 0;
    }

    .aside .side_list li {
        border-bottom: 1px solid var(--border);
    }

    .aside .side_list li a {
        text-decoration: none;
        display: inline-block;
        position: relative;
        padding: 10px 10px;
        padding-left: 15px;
    }

    .aside .side_list li a::before {
        content: "";
        margin: auto;
        position: absolute;
        top: 16px;
        left: 0;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .NEWS {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .NEWS .flex {
        display: flex;
    }

    .NEWS .left {
        flex: 1;
    }

    .NEWS .NEWS_list li {
        border-bottom: 1px solid var(--border);
    }

    .NEWS .NEWS_list li:first-child {
        border-top: 1px solid var(--border);
    }

    .NEWS .NEWS_list a {
        display: flex;
        align-items: center;
        padding: 15px;
        line-height: 1.3;
        position: relative;
        overflow: hidden;
        transition: ease 0.2s;
    }

    .NEWS .NEWS_list a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        background: var(--main-color);
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
        transform: scale(0, 1);
        transform-origin: right top;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {
    .NEWS .NEWS_list a:hover {
        opacity: 1;
    }

    .NEWS .NEWS_list a:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .NEWS .NEWS_list a::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid #333;
        border-top: 2px solid #333;
        display: inline-block;
        transform: rotate(45deg);
        margin-left: auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .NEWS .NEWS_list time {
        font-weight: 500;
        margin-right: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .NEWS .NEWS_list .category {
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.3;
        text-align: center;
        color: var(--white);
        background: var(--main-color);
        padding: 3px 10px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .NEWS .NEWS_list h3 {
        margin-left: 10px;
        flex: 1;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .NEWS_article {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .NEWS_article .flex {
        display: flex;
    }

    .NEWS_article .left {
        flex: 1;
    }

    .NEWS_article .time-category {
        font-weight: 500;
    }

    .NEWS_article .time-category time {
        margin-right: 10px;
    }

    .NEWS_article .time-category .category {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.3;
        text-align: center;
        color: var(--white);
        background: var(--main-color);
        padding: 3px 10px;
        margin-right: 10px;
    }

    .NEWS_article h2,
    .NEWS_article h3,
    .NEWS_article h4,
    .NEWS_article h5,
    .NEWS_article h6 {
        font-weight: 500;
        line-height: 1.3;
    }

    .NEWS_article h3,
    .NEWS_article h4,
    .NEWS_article h5,
    .NEWS_article h6 {
        margin-top: 40px;
    }

    .NEWS_article h2 {
        font-size: 2.2rem;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 20px;
    }

    .NEWS_article h3 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        padding-left: 5px;
        border-left: 6px solid var(--main-color);
    }

    .NEWS_article h4 {
        font-size: 2rem;
        border-bottom: 1px solid var(--main-color);
        padding-bottom: 5px;
        margin-bottom: 12px;
    }

    .NEWS_article h5 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .NEWS_article h5::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background: var(--main-color);
        margin-right: 5px;
    }

    .NEWS_article h6 {
        font-size: 1.6rem;
        padding-bottom: 5px;
        border-bottom: 1px dashed var(--main-color);
        margin-bottom: 12px;
    }

    .NEWS_article p {
        margin-bottom: 20px;
    }

    .NEWS_article figure {
        margin-bottom: 20px;
    }

    .NEWS_article a {
        text-decoration: underline;
    }

    .NEWS_article blockquote {
        background: var(--bg-color1);
        border-left: 4px solid var(--main-color);
        padding: 20px;
        margin-top: 40px;
    }

    .NEWS_article blockquote p:last-of-type {
        margin-bottom: 0;
    }

    .NEWS_article ul {
        list-style-type: disc;
        padding-left: 30px;
        margin-top: 40px;
    }

    .NEWS_article ol {
        list-style-type: decimal;
        padding-left: 30px;
        margin-top: 40px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .FORM {
        margin-top: 80px;
        margin-bottom: 130px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {

    input[type="email"],
    input[type="tel"],
    input[type="text"] {
        color: var(--text-color);
        background: var(--white);
        width: 100%;
        padding: 6px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    input[type="number"] {
        appearance: auto;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 8px;
        width: 80px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    input[type="checkbox"] {
        appearance: auto;
        margin-right: 3px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    input[type="radio"] {
        appearance: auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    label {
        padding-right: 14px;
        display: inline-block;
        vertical-align: middle;
    }

    label input[type="checkbox"],
    label input[type="radio"] {
        appearance: auto;
        margin-right: 3px;
        margin-bottom: 4px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .checkbox_warp label {
        display: block;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    input[type="password"] {
        appearance: auto;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 8px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    select {
        -moz-appearance: menulist-button;
        -webkit-appearance: menulist-button;
        appearance: menulist-button;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 5px;
        border: 1px solid var(--border);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .select-wrap .flex {
        display: flex;
        align-items: center;
    }

    .select-wrap select {
        margin: 0 8px;
    }

    .select-wrap select:first-of-type {
        margin-left: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    textarea {
        color: var(--text-color);
        background: var(--white);
        width: 100%;
        padding: 6px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .mwform-tel-field input[type="text"] {
        width: auto;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .address-cell label {
        display: block;
        margin-bottom: 10px;
        padding-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .instructor-cell .item {
        padding-bottom: 15px;
        border-bottom: 1px dotted var(--border);
        margin-bottom: 15px;
    }

    .instructor-cell .item:last-of-type {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

    .instructor-cell .item label {
        display: block;
    }

    .instructor-cell .item label:first-of-type {
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .required {
        background: #af2228;
        display: inline-block;
        font-size: 1rem;
        color: var(--white);
        text-align: center;
        padding: 3px 6px;
        border-radius: 2px;
        line-height: 1;
        margin-left: 5px;
        vertical-align: middle;
        margin-bottom: 2px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .form-wrap table {
        width: 100%;
        margin-bottom: 80px;
    }

    .form-wrap td,
    .form-wrap th {
        padding: 15px 30px;
        border: 2px solid var(--white);
    }

    .form-wrap th {
        width: 30%;
        background: var(--bg-color1);
        vertical-align: middle;
    }

    .form-wrap td {
        width: 70%;
        background: #f7f7f7;
    }

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

    .form-wrap .input_btnwrap input[type="submit"] {
        display: block;
        color: var(--text-color);
        font-size: 1.6rem;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        line-height: 38px;
        background: var(--accent-color);
        margin: 0 20px;
        text-align: center;
        font-weight: 500;
        font-weight: 700;
        transition: all ease 0.3s;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .form_txt-box {
        margin-bottom: 50px;
    }

    .form_txt-box p {
        margin-bottom: 20px;
    }

    .form_txt-box p:last-of-type {
        margin-bottom: 0;
    }

    .form_txt-box a {
        text-decoration: underline;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {
    .form-wrap .input_btnwrap input[type="submit"]:hover {
        background: var(--main-color);
        color: var(--white);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .COMPANY_philosophy {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list {
        display: flex;
        flex-wrap: wrap;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list>* {
        width: calc(100% / 3 - 27px);
        margin-right: 40px;
        margin-bottom: 40px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list> :nth-child(3n) {
        margin-right: 0;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li::before {
        content: "";
        display: block;
        margin: 0 auto 15px;
        width: 74px;
        height: 30px;
        background: url(../images/company/line_blue.svg);
        background-size: contain;
        background-position: center;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li h3 {
        font-size: clamp(1.6rem, 1.5vw, 2rem);
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
        background: var(--main-color);
        padding: 10px 15px 3px;
        margin-bottom: 15px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li h3 .count {
        display: inline-block;
        vertical-align: middle;
        font-size: 3rem;
        margin-right: 10px;
        margin-bottom: 7px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .COMPANY_about {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .COMPANY_about table {
        width: 100%;
    }

    .COMPANY_about table td,
    .COMPANY_about table th {
        border: 1px solid var(--border);
        padding: 20px 30px;
    }

    .COMPANY_about table th {
        width: 30%;
        background: var(--main-color);
        color: var(--white);
        line-height: 1.3;
        font-weight: 700;
        vertical-align: middle;
    }

    .COMPANY_about table td {
        width: 70%;
        background: var(--white);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .COMPANY_map {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .COMPANY_map .map iframe {
        width: 100%;
        height: 400px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .FAQ {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .FAQ .FAQ_list li {
        margin-bottom: 40px;
    }

    .FAQ .FAQ_list li:last-child {
        margin-bottom: 0;
    }

    .FAQ .question {
        background: var(--bg-color1);
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .FAQ .question h3 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        display: flex;
        align-items: center;
    }

    .FAQ .question .Q {
        display: inline-block;
        font-size: 4rem;
        font-weight: 700;
        color: var(--main-color);
        line-height: 1;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .FAQ .answer {
        background: var(--bg-color2);
        padding: 15px 15px 20px 20px;
    }

    .FAQ .answer .txt {
        display: flex;
    }

    .FAQ .answer .A {
        display: inline-block;
        font-size: 4rem;
        font-weight: 700;
        color: var(--orange);
        line-height: 1;
        margin-right: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .FAQ {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .FAQ .FAQ_list li {
        margin-bottom: 40px;
    }

    .FAQ .FAQ_list li:last-child {
        margin-bottom: 0;
    }

    .FAQ .question {
        background: var(--bg-color1);
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .FAQ .question h3 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        display: flex;
        align-items: center;
    }

    .FAQ .question .Q {
        display: inline-block;
        font-size: 4rem;
        font-weight: 700;
        color: var(--main-color);
        line-height: 1;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .FAQ .answer {
        background: var(--bg-color2);
        padding: 15px 15px 20px 20px;
    }

    .FAQ .answer .txt {
        display: flex;
    }

    .FAQ .answer .A {
        display: inline-block;
        font-size: 4rem;
        font-weight: 700;
        color: var(--orange);
        line-height: 1;
        margin-right: 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .WORKS {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .WORKS .WORKS_list {
        display: flex;
        flex-wrap: wrap;
    }

    .WORKS .WORKS_list>* {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 80px;
    }

    .WORKS .WORKS_list> :nth-child(2n) {
        margin-right: 0;
    }

    .WORKS .WORKS_list .item h3 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--white);
        background: var(--main-color);
        text-align: center;
        padding: 10px;
    }

    .WORKS .WORKS_list .mein-img {
        margin-bottom: 20px;
    }

    .WORKS .WORKS_list .sub-img {
        display: flex;
        flex-wrap: wrap;
    }

    .WORKS .WORKS_list .sub-img>* {
        width: calc(100% / 3 - 14px);
        margin-right: 21px;
        margin-bottom: 20px;
    }

    .WORKS .WORKS_list .sub-img> :nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .HOWTO_flow {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .HOWTO_flow .HOWTO_flow_list li {
        background: var(--bg-color1);
        padding: 20px 40px 30px;
        margin-bottom: 40px;
        display: flex;
    }

    .HOWTO_flow .HOWTO_flow_list .illust {
        display: grid;
        place-content: center;
        width: 180px;
        height: 180px;
        border-radius: 90px;
        background: var(--white);
        margin-top: 40px;
        position: relative;
    }

    .HOWTO_flow .HOWTO_flow_list .illust::before {
        content: "";
        display: block;
        width: 74px;
        height: 30px;
        background: url(../images/howto/line_blue.svg);
        background-size: contain;
        background-position: center;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box {
        flex: 1;
        margin-left: 40px;
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box h3 {
        display: flex;
        align-items: center;
        color: var(--white);
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.3;
        background: var(--main-color);
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box h3 .count {
        display: inline-block;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1;
        margin-right: 10px;
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .HOWTO_payment {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .HOWTO_payment .basic-table {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .HOWTO_payment .basic-table table {
        width: 100%;
    }

    .HOWTO_payment .basic-table table td,
    .HOWTO_payment .basic-table table th {
        border: 1px solid var(--border);
        line-height: 1.3;
        padding: 20px;
    }

    .HOWTO_payment .basic-table table th {
        color: var(--white);
        background: var(--main-color);
        vertical-align: middle;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .PRICE_list {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .PRICE_list .basic-table {
        margin-bottom: 40px;
    }

    .PRICE_list .basic-table td,
    .PRICE_list .basic-table th {
        text-align: center;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .PRICE_speech-bubble {
        display: flex;
        margin: 60px 0 80px 40px;
    }

    .PRICE_speech-bubble .illust {
        width: 180px;
    }

    .PRICE_speech-bubble .speech-bubble {
        flex: 1;
        margin-left: 40px;
        padding: 20px 40px 40px;
        background: var(--bg-color2);
        position: relative;
    }

    .PRICE_speech-bubble .speech-bubble::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -30px;
        margin-top: -15px;
        border: 15px solid transparent;
        border-right: 15px solid var(--bg-color2);
    }

    .PRICE_speech-bubble .headline {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        margin-bottom: 20px;
        border-bottom: 2px dashed var(--accent-color);
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .ABOUT_intro .flex {
        display: flex;
        background: url(../images/about/bg_wave.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .ABOUT_intro .txt-wrap {
        width: 50%;
        max-width: 540px;
        margin-left: auto;
        margin-right: 40px;
        padding-bottom: 100px;
    }

    .ABOUT_intro .right-img {
        width: 50%;
    }

    .ABOUT_intro h2 {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        background: var(--main-color);
        padding: 10px;
        margin-top: 60px;
        margin-bottom: 30px;
        margin-left: 30px;
    }

    .ABOUT_intro .txt-box {
        margin-bottom: 60px;
        margin-left: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .ABOUT_quality {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .ABOUT_quality .flex {
        display: flex;
        align-items: flex-start;
        background: url(../images/about/logo-illust.svg);
        background-repeat: no-repeat;
        background-size: 30%;
        background-position: right bottom;
    }

    .ABOUT_quality .img-wrap {
        width: 55%;
        max-width: 710px;
        aspect-ratio: 71/63;
        margin-left: auto;
        position: relative;
    }

    .ABOUT_quality .img01 {
        width: 56%;
        max-width: 400px;
        aspect-ratio: 40/31;
        position: absolute;
        left: 0;
        top: 0;
    }

    .ABOUT_quality .img03 {
        width: 56%;
        max-width: 400px;
        aspect-ratio: 40/31;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .ABOUT_quality .img02 {
        width: 42%;
        max-width: 300px;
        aspect-ratio: 30/22;
        position: absolute;
        right: 0;
        top: 0;
    }

    .ABOUT_quality .img04 {
        width: 42%;
        max-width: 300px;
        aspect-ratio: 3/4;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .ABOUT_quality .txt-box {
        width: 45%;
        max-width: 400px;
        margin-left: 40px;
        margin-top: 20px;
        margin-right: auto;
    }

    .ABOUT_quality .txt-box p {
        margin-bottom: 1.4rem;
        margin-right: 30px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .KIND_point {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .KIND_point .flex {
        display: flex;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .KIND_point .flex>* {
        width: calc(50% - 20px);
        margin-right: 40px;
        margin-bottom: 0;
    }

    .KIND_point .flex> :nth-child(2n) {
        margin-right: 0;
    }

    .KIND_point .flex .headline {
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
        background: var(--main-color);
        padding: 10px 20px;
        padding-right: 80px;
        margin-bottom: 20px;
        position: relative;
    }

    .KIND_point .flex .headline img {
        width: 86px;
        position: absolute;
        right: 20px;
        bottom: 0;
    }

    .KIND_point .flex .txt p {
        margin-bottom: 1em;
    }

    .KIND_point .flex .txt table {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-top: 30px;
    }

    .KIND_point .flex .txt table td,
    .KIND_point .flex .txt table th {
        border: 1px solid var(--border);
        padding: 15px;
    }

    .KIND_point .flex .txt table th {
        background: var(--main-color);
        color: var(--white);
        text-align: center;
        vertical-align: middle;
        min-width: 90px;
    }

    .KIND_point .flex .mein-img {
        margin-bottom: 20px;
    }

    .KIND_point .flex .sub-img {
        display: flex;
        flex-wrap: wrap;
    }

    .KIND_point .flex .sub-img>* {
        width: calc(100% / 3 - 14px);
        margin-right: 21px;
        margin-bottom: 20px;
    }

    .KIND_point .flex .sub-img> :nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .SIMULATION {
        margin-top: 80px;
        margin-bottom: 130px;
    }

    .SIMULATION.wrap_S {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .SIMULATION .wq-Form {
        margin-top: 20px;
    }

    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-price,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-quantity,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-taxClass,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-unitPrice,
    .SIMULATION .wq-Form .wq-Option>.wq--label>.wq--main>.wq--prices {
        display: none;
    }

    .SIMULATION .wq-Form .wq-Quantity>.wq--head,
    .SIMULATION .wq-Form .wq-Selector>.wq--head,
    .SIMULATION .wq-Form .wq-Slider>.wq--head {
        background: var(--bg-color1);
    }

    .SIMULATION .wq-Form .wq--items>.wq-belongs-hnavigator>.wq--body,
    .SIMULATION .wq-Form .wq-Option>.wq--label,
    .SIMULATION .wq-Form .wq-Selector>.wq--body {
        background: #f7f7f7;
    }

    .SIMULATION .wq-Form .wq-Option>.wq--label:hover {
        background-color: rgba(235, 66, 102, 0.2);
    }

    .SIMULATION .wq-Form .wq-Attributes {
        padding: 20px;
        border: 1px solid var(--border);
    }

    .SIMULATION .wq-Form .wq-Button.wq-type-primary {
        margin-left: calc(50% - 160px);
    }

    .SIMULATION .wq-Form .wq-Button.wq-type-primary:not(:hover):not(:active) {
        background-color: var(--accent-color);
        color: #000;
        font-weight: 500;
        border-radius: 18px;
        border: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) and (hover: hover) {
    .SIMULATION .wq-Form .wq-Button.wq-type-primary:hover {
        font-weight: 500;
        border-radius: 18px;
        border: none;
    }
}

:root {
    --sans: "Noto Sans JP", sans-serif;
    --serif: "Noto Serif JP", serif;
    --Lato: "Lato", sans-serif;
    --text-color: #333333;
    --main-color: #07459e;
    --sub-color: #9e0000;
    --accent-color: #ffe300;
    --bg-color1: #dfe9ef;
    --bg-color2: #fff8ce;
    --white: #fff;
    --red: #c90000;
    --orange: #ff7245;
    --border: #dcdcdc;
}

@media screen and (max-width: 767px) {
    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        font-size: 62.5%;
    }

    body {
        font-family: var(--sans);
        color: var(--text-color);
        word-wrap: break-word;
        font-size: 1.4rem;
        font-feature-settings: "palt";
        line-height: 1.7;
    }

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

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

    .container {
        position: relative;
        overflow: hidden;
    }

    .display_pc {
        display: none;
    }

    .display_sp {
        display: block;
    }

    .wrap_L {
        width: 90%;
        margin: 0 5%;
    }

    .wrap_S {
        width: 90%;
        margin: 0 5%;
    }

    .h_style01 {
        font-size: 2.4rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .h_style01 span {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1.3;
        display: block;
    }

    .h_style02 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        border-bottom: 2px dashed var(--main-color);
        margin-bottom: 15px;
    }

    .btn {
        display: grid;
        place-content: center;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        background: var(--accent-color);
        color: var(--text-color);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        margin: 20px auto 0;
    }

    .basic-table table {
        width: 100%;
    }

    .basic-table table td,
    .basic-table table th {
        border: 1px solid var(--border);
        line-height: 1.3;
        padding: 15px;
    }

    .basic-table table th {
        color: var(--white);
        background: var(--main-color);
        vertical-align: middle;
    }

    .pnav {
        margin-top: 40px;
        border-top: 2px solid var(--border);
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }

    .pnav a {
        font-weight: 700;
    }

    .pnav .pnav_next a,
    .pnav .pnav_prev a {
        text-decoration: none;
        display: flex;
        align-items: center;
        line-height: 1;
        transition: all 0.3s ease;
    }

    .pnav .pnav_next .icon-arrow02,
    .pnav .pnav_prev .icon-arrow02 {
        display: block;
        background: var(--accent-color);
        width: 40px;
        height: 40px;
        border-radius: 20px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .pnav .pnav_next span {
        margin-right: 10px;
    }

    .pnav .pnav_prev span {
        margin-left: 10px;
    }

    .pnav .pnav_prev .icon-arrow02::before {
        transform: rotate(180deg);
    }

    .pnav a.prev_list {
        text-decoration: none;
        width: 120px;
        height: 40px;
        border-radius: 20px;
        background: var(--accent-color);
        text-align: center;
        line-height: 38px;
        font-size: 1.4rem;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .wp-pagenavi {
        font-weight: 700;
        text-align: center;
        margin: 40px auto 60px;
    }

    .wp-pagenavi .pages {
        border: 1px solid var(--main-color);
        display: inline-block;
        line-height: 33px;
        height: 36px;
        padding: 0 5px;
        margin: 0 5px 0 0;
        color: var(--main-color);
    }

    .wp-pagenavi .page {
        border: 1px solid var(--main-color);
        width: 26px;
        height: 36px;
        display: inline-block;
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .current {
        width: 26px;
        height: 36px;
        color: var(--white);
        background: var(--main-color);
        border: 1px solid var(--main-color);
        display: inline-block;
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .previouspostslink {
        display: inline-block;
        width: 26px;
        height: 36px;
        border: 1px solid var(--main-color);
        line-height: 33px;
        margin: 0 5px 0 0;
        padding: 0;
    }

    .wp-pagenavi .nextpostslink::after,
    .wp-pagenavi .previouspostslink::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid var(--main-color);
        border-right: 2px solid var(--main-color);
    }

    .wp-pagenavi .previouspostslink::after {
        margin-left: 3px;
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .wp-pagenavi .nextpostslink::after {
        margin-right: 3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .wp-pagenavi .extend {
        margin-right: 5px;
    }

    .wp-pagenavi .last {
        height: 40px;
        border: 1px solid #8e8e8e;
        line-height: 37px;
        display: inline-block;
        padding: 0 8px;
        color: #8e8e8e;
    }

    .wp-pagenavi .last::after {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 2px;
        margin-left: 3px;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid #8e8e8e;
        border-right: 2px solid #8e8e8e;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header {
        height: 50px;
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .logo {
        height: 30px;
        margin-left: 10px;
    }

    .header .logo img {
        height: 100%;
    }

    .header .hamburger {
        order: 3;
        position: relative;
        height: 50px;
        width: 50px;
        background: var(--white);
    }

    .header .hamburger .line span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: all 0.3s 0s ease;
    }

    .header .hamburger .line span:first-child {
        top: 16px;
    }

    .header .hamburger .line span:nth-child(2) {
        top: 24px;
    }

    .header .hamburger .line span:nth-child(3) {
        top: 32px;
    }

    .header .hamburger.active {
        position: relative;
        width: 50px;
        height: 50px;
        z-index: 9999;
    }

    .header .hamburger.active .line span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--main-color);
        position: absolute;
        left: 50%;
    }

    .header .hamburger.active .line span:nth-child(1) {
        top: 24px;
        transform: translateX(-50%) rotate(45deg);
    }

    .header .hamburger.active .line span:nth-child(2) {
        display: none;
    }

    .header .hamburger.active .line span:nth-child(3) {
        top: 24px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 888;
        background: rgba(0, 0, 0, 0.7);
        padding: 80px 0 0;
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        margin: 0;
    }

    .header .menu a {
        display: block;
        margin-left: 5px;
        line-height: 1.3;
        transition: margin 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .header .menu .sp-mail {
        width: 90%;
        margin: 0 auto 20px;
    }

    .header .menu .sp-mail a {
        display: block;
        background: var(--sub-color);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        padding: 20px;
    }

    .header .menu .sp-mail a .icon-mail::before {
        margin-right: 8px;
    }

    .header .menu .sp-tel {
        width: 90%;
        margin: 0 auto 30px;
    }

    .header .menu .sp-tel a {
        display: block;
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        padding: 20px;
    }

    .header .menu .sp-tel .txt {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

    .header .menu .sp-tel .tel {
        font-size: 3rem;
        line-height: 1;
        margin-bottom: 8px;
    }

    .header .menu .sp-tel .tel .icon-tel::before {
        font-size: 24px;
        margin-right: 8px;
    }

    .header .menu .sp-tel .fax {
        font-size: 1.6rem;
    }

    .header .menu .menu_list {
        padding-bottom: 60px;
    }

    .header .menu .menu_list li {
        border-bottom: 1px solid var(--white);
    }

    .header .menu .menu_list a {
        color: var(--white);
        padding: 15px 5%;
    }

    .header .menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .header .menu.active a {
        margin-left: 0;
    }

    .footer {
        background: var(--main-color);
        padding-top: 30px;
        margin-bottom: 40px;
    }

    .footer .wrap_L {
        color: var(--white);
        padding-bottom: 60px;
    }

    .footer .company-info .company-img {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer .company-info .company-info_txt {
        margin-bottom: 20px;
    }

    .footer .company-info .logo {
        margin-bottom: 20px;
    }

    .footer .company-info .txt {
        margin-top: 20px;
    }

    .footer .footer_contact {
        color: var(--white);
        font-weight: 700;
        text-align: center;
    }

    .footer .footer_contact .txt {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .footer .footer_contact .tel {
        display: block;
        font-size: 3.6rem;
        line-height: 1;
        margin-bottom: 10px;
    }

    .footer .footer_contact .tel i {
        font-size: 3rem;
        margin-right: 10px;
    }

    .footer .footer_contact .fax {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 5px;
    }

    .footer .footer_contact .open-time {
        font-size: 1.3rem;
        font-weight: 400;
    }

    .footer .map iframe {
        width: 100%;
        height: 400px;
    }

    .footer nav {
        display: none;
    }

    .footer .copy-right {
        background-color: #333;
        color: var(--white);
        text-align: center;
        font-size: 1.2rem;
        padding: 10px;
    }

    .pageTop {
        position: fixed;
        bottom: 50px;
        right: 10px;
        width: 40px;
        z-index: 100;
    }

    .fix_bottom {
        width: 100%;
        height: 40px;
        position: fixed;
        bottom: 0;
        z-index: 10;
        display: flex;
    }

    .fix_bottom .fix-mail,
    .fix_bottom .fix-simulator,
    .fix_bottom .fix-tel {
        width: calc(100% / 2);
    }

    .fix_bottom .fix-mail a,
    .fix_bottom .fix-simulator a,
    .fix_bottom .fix-tel a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 40px;
    }

    .fix_bottom .fix-tel {
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        text-align: center;
        line-height: 1;
    }

    .fix_bottom .fix-tel .icon-tel {
        margin-right: 5px;
        font-size: 16px;
    }

    .fix_bottom .fix-mail {
        background: var(--accent-color);
        font-weight: 700;
        text-align: center;
        letter-spacing: -0.1em;
        line-height: 1;
    }

    .fix_bottom .fix-mail .icon-mail {
        margin-right: 5px;
        font-size: 15px;
    }

    .fix_bottom .fix-simulator {
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1.2;
        text-align: left;
    }

    .fix_bottom .fix-simulator img {
        width: 24px;
        margin-right: 5px;
    }

    .ichimai {
        color: var(--white);
        font-weight: 700;
        font-size: 1.3rem;
        line-height: 1;
        text-align: center;
        background: var(--main-color);
        padding: 4px;
        display: flex;
        justify-content: center;
        flex-flow: column;
        align-items: center;
        width: 100%;
        height: auto;
        position: fixed;
        bottom: 50px;
        z-index: 99;
        border: 2px solid #ccc;
        border-radius: 10px;
    }

    .ichimai div {
        width: 100%;
        margin-bottom: 5px;
        border-bottom: 1px dotted #fff;
        padding: 5px;
    }

    .ichimai span {
        margin-top: 10px;
    }

    .main-visual .wrap {
        position: relative;
        height: 100vh;
        width: 100%;
    }

    .main-visual .video-wrap {
        height: 100vh;
        width: 100%;
        position: relative;
    }

    .main-visual .video-wrap::after {
        content: "";
        display: block;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        background-image: radial-gradient(#111 15%, transparent 31%),
            radial-gradient(#111 15%, transparent 31%);
        background-size: 4px 4px;
        background-position: 0 0, 2px 2px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .main-visual .video-wrap video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .main-visual .catch-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 310px;
    }

    .main-visual .catch-wrap .catch-copy {
        font-size: 2.6rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.5;
        position: relative;
    }

    .main-visual .catch-wrap .catch-logo {
        position: absolute;
        bottom: 6px;
        margin-left: 20px;
    }

    .main-visual .catch-wrap .catch-logo img {
        width: 170px;
    }

    .main-visual .catch-wrap .sub-catch {
        font-family: var(--Lato);
        font-style: italic;
        font-weight: 700;
        font-size: 1.4rem;
        color: var(--white);
    }

    .main-visual .news-box {
        position: absolute;
        top: 100vh;
        left: 0;
        z-index: 2;
        background: var(--white);
        padding: 10px 5% 20px;
        width: 100%;
        height: 130px;
    }

    .main-visual .news-box h2 {
        font-size: 2.4rem;
        color: var(--main-color);
        font-weight: 700;
        line-height: 1.3;
    }

    .main-visual .news-box .slider-ticker {
        margin: 5px 0 10px;
    }

    .main-visual .news-box time {
        line-height: 1;
        font-size: 1.3rem;
    }

    .main-visual .news-box p {
        line-height: 1.3;
        font-size: 1.3rem;
    }

    .main-visual .news-box .more {
        display: block;
        width: 100px;
        margin-left: auto;
        padding-bottom: 5px;
        color: var(--main-color);
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1;
    }

    .main-visual .news-box .icon-arrow01 {
        font-size: 10px;
        margin-left: 5px;
    }

    .top_made-from-100-block {
        background: url(../images/common/top-bg.png),
            url(../images/common/bottom-bg.png);
        background-repeat: no-repeat;
        background-position: top left, bottom right;
        background-size: 100%, 100%;
        padding: 30px 0 40px;
        margin-top: 130px;
    }

    .top_made-from-100-block .headline {
        display: flex;
        justify-content: space-between;
        padding-top: 7.8vw;
        position: relative;
        margin: 0 10px;
    }

    .top_made-from-100-block .headline .price {
        position: absolute;
        left: 37%;
        top: -1vw;
        z-index: 1;
    }

    .top_made-from-100-block .headline .price img {
        width: 28vw;
    }

    .top_made-from-100-block .headline .marker {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        color: var(--main-color);
        font-weight: 900;
        line-height: 1.3;
        background: linear-gradient(transparent 60%, #fad90e 60%);
        letter-spacing: -0.1rem;
        padding: 0 5px;
    }

    .top_made-from-100-block .headline+figure {
        margin-top: 7.8vw;
        margin-bottom: 0;
        text-align: center;
    }

    .top_made-from-100-block .headline+figure img {
        width: 90%;
    }

    .value-points_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .value-points_list>* {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 60px;
    }

    .value-points_list> :nth-child(2n) {
        margin-right: 0;
    }

    .value-points_list li {
        background: var(--accent-color);
        padding: 20px 10px;
        position: relative;
    }

    .value-points_list li::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: var(--main-color);
        position: absolute;
        top: 5px;
        left: 5px;
        z-index: -1;
    }

    .value-points_list li .numbering {
        display: grid;
        place-content: center;
        width: 44px;
        height: 44px;
        border-radius: 22px;
        background: var(--main-color);
        color: var(--white);
        font-weight: 900;
        font-size: 2.2rem;
        text-align: center;
        line-height: 1;
        margin: -42px auto 0;
        position: relative;
    }

    .value-points_list li .numbering::before {
        content: "";
        width: 50px;
        height: 20px;
        display: block;
        background: url(../images/common/deco_lines_red.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: -20px;
        left: -3px;
    }

    .value-points_list li .title {
        font-size: clamp(2rem, 5.5vw, 2.2rem);
        text-align: center;
        line-height: 1.3;
        font-weight: 900;
        margin-top: 10px;
        margin-bottom: 22px;
    }

    .value-points_list li .title.small {
        font-size: clamp(1.4rem, 4vw, 1.6rem);
        margin-bottom: 10px;
    }

    .value-points_list li .price {
        text-align: center;
        margin-right: 15px;
    }

    .value-points_list li .price img {
        max-width: 80px;
        width: 60%;
    }

    .value-points_list li p {
        line-height: 1.3;
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .more-than-600-block {
        background: var(--sub-color);
        padding: 20px 0 40px;
    }

    .more-than-600-block .flex {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .more-than-600-block .txt {
        font-size: clamp(2.6rem, 6.7vw, 3rem);
        color: var(--white);
        font-weight: 900;
        line-height: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .more-than-600-block .txt::after {
        content: "";
        display: block;
        height: 60px;
        width: 90vw;
        background: url(../images/top/speech_line_sp.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 20px;
    }

    .more-than-600-block .number-txt {
        display: inline-block;
        vertical-align: text-bottom;
        font-size: clamp(4.4rem, 1.1vw, 5rem);
        color: var(--accent-color);
        font-weight: 900;
        letter-spacing: -0.05em;
        margin: 0 5px 0 0;
    }

    .more-than-600-block figure {
        text-align: center;
        margin-bottom: 0;
    }

    .more-than-600-block figure img {
        width: 90%;
    }

    .top_large-orders-block {
        margin-top: 80px;
        margin-bottom: 100px;
    }

    .top_large-orders-block h2 {
        font-size: 2.6rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 60px;
    }

    .top_large-orders-block h2::before {
        content: "";
        width: 52px;
        height: 22px;
        display: block;
        margin: 0 auto;
        background: url(../images/common/deco_lines_orange.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .top_large-orders-block h2 i.marker {
        font-style: normal;
        background: linear-gradient(transparent 70%, #fad90e 70%);
        padding: 0 10px;
    }

    .top_large-orders-block .product_list .item {
        margin: 0 20px 40px;
    }

    .top_large-orders-block .product_list .item .img-wrap {
        display: flex;
        align-items: end;
        justify-content: space-between;
        position: relative;
        width: 100%;
        aspect-ratio: 56/39;
        margin-bottom: 20px;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap {
        background: url(../images/top/speech-bubble.svg);
        background-repeat: no-repeat;
        background-size: contain;
        padding: 1vw 2vw 3vw 3vw;
        width: 67%;
        aspect-ratio: 95/32;
        position: absolute;
        right: -10px;
        top: -10px;
        display: flex;
        align-items: center;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap .numbering {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        color: var(--red);
        text-align: center;
        line-height: 1;
        margin-right: 10px;
        padding-bottom: 10px;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap .numbering::before {
        content: "";
        display: block;
        background: url(../images/top/lines_red.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        width: 10vw;
        aspect-ratio: 5/2;
    }

    .top_large-orders-block .product_list .item .img-wrap .product-name-wrap h3 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        line-height: 1.1;
    }

    .top_large-orders-block .product_list .item .img-wrap .people01 {
        width: 42%;
    }

    .top_large-orders-block .product_list .item .img-wrap .people02 {
        width: 41%;
    }

    .top_large-orders-block .product_list .item .img-wrap .people03 {
        width: 34%;
    }

    .top_large-orders-block .product_list .item .img-wrap .obf {
        height: 69%;
        aspect-ratio: 10/9;
    }

    .top_porycy-block {
        background: url(../images/top/wave-bg.png),
            linear-gradient(180deg, #07459e 0, #04234f 100%);
        background-size: 600px;
        padding: 40px 0 100px;
    }

    .top_porycy-block .left {
        color: var(--white);
        margin-bottom: 40px;
    }

    .top_porycy-block .left h2 {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .top_porycy-block .left h2 span {
        color: var(--accent-color);
        font-size: 1.8rem;
        display: block;
    }

    .top_porycy-block .left .txt {
        margin-bottom: 30px;
    }

    .top_porycy-block .left .txt p {
        margin-bottom: 20px;
    }

    .top_porycy-block .left .btn {
        margin: 0 0 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 120px;
        height: 30px;
        border-radius: 15px;
        font-size: 1.3rem;
    }

    .top_porycy-block .left .btn i {
        margin-left: 10px;
    }

    .works-block {
        background: url(../images/common/Japanese-bg.jpg);
        background-size: cover;
        background-position: center;
        padding: 50px 0 60px;
    }

    .works-block .works_list li {
        margin-bottom: 40px;
    }

    .works-block .works_list figure {
        margin-bottom: 10px;
    }

    .works-block .works_list p {
        text-align: center;
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .lowervisual {
        height: 200px;
        width: 100%;
        display: grid;
        justify-items: center;
        align-items: center;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }

    .lowervisual h1 {
        z-index: 2;
        grid-row: 1/2;
        grid-column: 1/2;
        text-align: center;
        font-size: 3rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        margin-top: 30px;
    }

    .lowervisual .lowervisual-img {
        height: 200px;
        width: 100%;
        z-index: 0;
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .lowervisual .lowervisual-img img {
        filter: brightness(0.8);
    }

    .breadcrumbs_list {
        border-bottom: 1px solid var(--border);
        font-size: 1.3rem;
        line-height: 1.3;
        padding: 5px 0 3px;
    }

    .PRIVACY {
        margin-bottom: 100px;
    }

    .PRIVACY h2 {
        margin-top: 60px;
    }

    .PRIVACY h3 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--main-color);
        margin-bottom: 15px;
        margin-top: 40px;
    }

    .PRIVACY h3:first-of-type {
        margin-top: 0;
    }

    .PRIVACY p {
        margin-bottom: 20px;
    }

    .PRIVACY a {
        text-decoration: underline;
    }

    .aside {
        margin-top: 60px;
        line-height: 1.3;
    }

    .aside .aside-item {
        margin-bottom: 30px;
        position: relative;
    }

    .aside .aside-item:last-child {
        margin-bottom: 0;
    }

    .aside .aside-item .title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--main-color);
        padding: 5px 10px 5px;
        border-bottom: 2px solid var(--main-color);
        margin-bottom: 5px;
    }

    .aside .side_list {
        list-style-type: none;
        padding-left: 0;
        margin-top: 0;
    }

    .aside .side_list li {
        border-bottom: 1px solid var(--border);
    }

    .aside .side_list li a {
        text-decoration: none;
        display: inline-block;
        position: relative;
        padding: 10px 10px;
        padding-left: 15px;
    }

    .aside .side_list li a::before {
        content: "";
        margin: auto;
        position: absolute;
        top: 16px;
        left: 0;
        width: 8px;
        height: 8px;
        transition: 0.2s;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .NEWS {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .NEWS .NEWS_list li {
        border-bottom: 1px solid var(--border);
    }

    .NEWS .NEWS_list li:first-child {
        border-top: 1px solid var(--border);
    }

    .NEWS .NEWS_list a {
        display: block;
        padding: 15px 30px 15px 15px;
        line-height: 1.3;
        position: relative;
    }

    .NEWS .NEWS_list a::after {
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid #333;
        border-top: 2px solid #333;
        display: block;
        transform: translateY(-50%) rotate(45deg);
        position: absolute;
        right: 10px;
        top: 50%;
    }

    .NEWS .NEWS_list time {
        font-weight: 500;
        margin-right: 10px;
    }

    .NEWS .NEWS_list .category {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.3;
        text-align: center;
        color: var(--white);
        background: var(--main-color);
        padding: 3px 10px;
        margin-right: 10px;
    }

    .NEWS .NEWS_list h3 {
        margin-top: 10px;
    }

    .NEWS_article {
        margin-top: 40px;
        margin-bottom: 100px;
    }

    .NEWS_article .time-category {
        font-weight: 500;
    }

    .NEWS_article .time-category time {
        margin-right: 10px;
    }

    .NEWS_article .time-category .category {
        display: inline-block;
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.3;
        text-align: center;
        color: var(--white);
        background: var(--main-color);
        padding: 3px 10px;
        margin-right: 10px;
    }

    .NEWS_article h2,
    .NEWS_article h3,
    .NEWS_article h4,
    .NEWS_article h5,
    .NEWS_article h6 {
        font-weight: 500;
        line-height: 1.3;
    }

    .NEWS_article h3,
    .NEWS_article h4,
    .NEWS_article h5,
    .NEWS_article h6 {
        margin-top: 40px;
    }

    .NEWS_article h2 {
        font-size: 2rem;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 20px;
    }

    .NEWS_article h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        padding-left: 5px;
        border-left: 6px solid var(--main-color);
    }

    .NEWS_article h4 {
        font-size: 1.6rem;
        border-bottom: 1px solid var(--main-color);
        padding-bottom: 5px;
        margin-bottom: 12px;
    }

    .NEWS_article h5 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .NEWS_article h5::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 12px;
        height: 12px;
        background: var(--main-color);
        margin-right: 5px;
        margin-bottom: 2px;
    }

    .NEWS_article h6 {
        font-size: 1.4rem;
        padding-bottom: 5px;
        border-bottom: 1px dashed var(--main-color);
        margin-bottom: 12px;
    }

    .NEWS_article p {
        margin-bottom: 20px;
    }

    .NEWS_article figure {
        margin-bottom: 20px;
    }

    .NEWS_article a {
        text-decoration: underline;
    }

    .NEWS_article blockquote {
        background: var(--bg-color1);
        border-left: 4px solid var(--main-color);
        padding: 20px;
        margin-top: 40px;
    }

    .NEWS_article blockquote p:last-of-type {
        margin-bottom: 0;
    }

    .NEWS_article ul {
        list-style-type: disc;
        padding-left: 20px;
        margin-top: 40px;
    }

    .NEWS_article ol {
        list-style-type: decimal;
        padding-left: 20px;
        margin-top: 40px;
    }

    .FORM {
        margin-top: 40px;
        margin-bottom: 100px;
    }

    input[type="email"],
    input[type="tel"],
    input[type="text"] {
        color: var(--text-color);
        background: var(--white);
        width: 100%;
        padding: 6px;
    }

    input[type="number"] {
        appearance: auto;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 8px;
        width: 80px;
    }

    input[type="checkbox"] {
        appearance: auto;
        margin-right: 3px;
    }

    input[type="radio"] {
        appearance: auto;
    }

    label {
        padding-right: 14px;
        display: inline-block;
        vertical-align: middle;
    }

    label input[type="checkbox"],
    label input[type="radio"] {
        appearance: auto;
        margin-right: 3px;
        margin-bottom: 4px;
    }

    .checkbox_warp label {
        display: block;
    }

    input[type="password"] {
        appearance: auto;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 8px;
    }

    select {
        -moz-appearance: menulist-button;
        -webkit-appearance: menulist-button;
        appearance: menulist-button;
        color: var(--text-color);
        background: var(--white);
        padding: 3px 5px;
        border: 1px solid var(--border);
    }

    .select-wrap .flex {
        display: flex;
        align-items: center;
    }

    .select-wrap select {
        margin: 0 8px;
    }

    .select-wrap select:first-of-type {
        margin-left: 0;
    }

    textarea {
        color: var(--text-color);
        background: var(--white);
        width: 100%;
        padding: 6px;
    }

    .mwform-tel-field input[type="text"] {
        width: auto;
    }

    .address-cell label {
        display: block;
        margin-bottom: 10px;
        padding-right: 0;
    }

    .instructor-cell .item {
        padding-bottom: 15px;
        border-bottom: 1px dotted var(--border);
        margin-bottom: 15px;
    }

    .instructor-cell .item:last-of-type {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

    .instructor-cell .item label {
        display: block;
    }

    .instructor-cell .item label:first-of-type {
        margin-bottom: 10px;
    }

    .required {
        background: #af2228;
        display: inline-block;
        font-size: 1rem;
        color: var(--white);
        text-align: center;
        padding: 3px 6px;
        border-radius: 2px;
        line-height: 1;
        margin-left: 5px;
        vertical-align: middle;
        margin-bottom: 2px;
    }

    .form-wrap table {
        width: 100%;
        margin-bottom: 60px;
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .form-wrap td,
    .form-wrap th {
        padding: 10px 10px;
        border: 2px solid var(--white);
    }

    .form-wrap th {
        width: 40%;
        background: var(--bg-color1);
        vertical-align: middle;
    }

    .form-wrap td {
        width: 60%;
        background: #f7f7f7;
    }

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

    .form-wrap .input_btnwrap input[type="submit"] {
        display: block;
        color: var(--text-color);
        font-size: 1.6rem;
        width: 240px;
        height: 40px;
        border-radius: 20px;
        line-height: 38px;
        background: var(--accent-color);
        margin: 0 20px;
        text-align: center;
        font-weight: 500;
        font-weight: 700;
        transition: all ease 0.3s;
    }

    .form_txt-box {
        margin-bottom: 50px;
    }

    .form_txt-box p {
        margin-bottom: 20px;
    }

    .form_txt-box p:last-of-type {
        margin-bottom: 0;
    }

    .form_txt-box a {
        text-decoration: underline;
    }

    .COMPANY_philosophy {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li {
        margin-bottom: 40px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li::before {
        content: "";
        display: block;
        margin: 0 auto 15px;
        width: 74px;
        height: 30px;
        background: url(../images/company/line_blue.svg);
        background-size: contain;
        background-position: center;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li h3 {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
        background: var(--main-color);
        padding: 10px 15px 3px;
        margin-bottom: 15px;
    }

    .COMPANY_philosophy .COMPANY_philosophy_list li h3 .count {
        display: inline-block;
        vertical-align: middle;
        font-size: 2.4rem;
        margin-right: 10px;
        margin-bottom: 7px;
    }

    .COMPANY_about {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .COMPANY_about table {
        width: 100%;
        font-size: 1.3rem;
    }

    .COMPANY_about table td,
    .COMPANY_about table th {
        border: 1px solid var(--border);
        padding: 15px;
        line-height: 1.3;
    }

    .COMPANY_about table th {
        width: 30%;
        background: var(--main-color);
        color: var(--white);
        font-weight: 700;
        vertical-align: middle;
    }

    .COMPANY_about table td {
        width: 70%;
        background: var(--white);
    }

    .COMPANY_map {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .COMPANY_map .map iframe {
        width: 100%;
        height: 300px;
    }

    .FAQ {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .FAQ .FAQ_list li {
        margin-bottom: 30px;
    }

    .FAQ .FAQ_list li:last-child {
        margin-bottom: 0;
    }

    .FAQ .question {
        background: var(--bg-color1);
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .FAQ .question h3 {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.3;
        display: flex;
        align-items: center;
    }

    .FAQ .question .Q {
        display: inline-block;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--main-color);
        line-height: 1;
        margin-bottom: 6px;
        margin-right: 10px;
    }

    .FAQ .answer {
        background: var(--bg-color2);
        padding: 15px;
    }

    .FAQ .answer .txt {
        display: flex;
    }

    .FAQ .answer .A {
        display: inline-block;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--orange);
        line-height: 1;
        margin-right: 10px;
    }

    .WORKS {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .WORKS .WORKS_list .item {
        margin-bottom: 30px;
    }

    .WORKS .WORKS_list .item h3 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
        background: var(--main-color);
        text-align: center;
        padding: 10px;
    }

    .WORKS .WORKS_list .mein-img {
        margin-bottom: 10px;
    }

    .WORKS .WORKS_list .sub-img {
        display: flex;
        flex-wrap: wrap;
    }

    .WORKS .WORKS_list .sub-img>* {
        width: calc(100% / 3 - 8px);
        margin-right: 12px;
        margin-bottom: 10px;
    }

    .WORKS .WORKS_list .sub-img> :nth-child(3n) {
        margin-right: 0;
    }

    .HOWTO_flow {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .HOWTO_flow .HOWTO_flow_list li {
        background: var(--bg-color1);
        padding: 20px 20px 30px;
        margin-bottom: 40px;
    }

    .HOWTO_flow .HOWTO_flow_list .illust {
        display: grid;
        place-content: center;
        width: 180px;
        height: 180px;
        border-radius: 90px;
        background: var(--white);
        margin: 40px auto 20px;
        position: relative;
    }

    .HOWTO_flow .HOWTO_flow_list .illust::before {
        content: "";
        display: block;
        width: 74px;
        height: 30px;
        background: url(../images/howto/line_blue.svg);
        background-size: contain;
        background-position: center;
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box h3 {
        display: flex;
        align-items: center;
        color: var(--white);
        font-weight: 700;
        font-size: 2rem;
        line-height: 1.3;
        background: var(--main-color);
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .HOWTO_flow .HOWTO_flow_list .txt-box h3 .count {
        display: inline-block;
        font-size: 3rem;
        font-weight: 700;
        line-height: 1;
        margin-right: 10px;
        margin-bottom: 5px;
    }

    .HOWTO_payment {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .HOWTO_payment .basic-table {
        margin-top: 30px;
        margin-bottom: 60px;
    }

    .HOWTO_payment .basic-table table {
        width: 100%;
    }

    .HOWTO_payment .basic-table table td,
    .HOWTO_payment .basic-table table th {
        border: 1px solid var(--border);
        line-height: 1.3;
        padding: 15px;
    }

    .HOWTO_payment .basic-table table th {
        color: var(--white);
        background: var(--main-color);
        vertical-align: middle;
    }

    .PRICE_list {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .PRICE_list .basic-table {
        margin-bottom: 40px;
    }

    .PRICE_list .basic-table td,
    .PRICE_list .basic-table th {
        text-align: center;
    }

    .PRICE_speech-bubble {
        margin: 40px 0 60px;
    }

    .PRICE_speech-bubble .illust {
        width: 180px;
        margin: 0 auto 40px;
    }

    .PRICE_speech-bubble .speech-bubble {
        padding: 20px 20px 30px;
        background: var(--bg-color2);
        position: relative;
    }

    .PRICE_speech-bubble .speech-bubble::before {
        content: "";
        position: absolute;
        top: -30px;
        left: 50%;
        margin-left: -15px;
        border: 15px solid transparent;
        border-bottom: 15px solid var(--bg-color2);
    }

    .PRICE_speech-bubble .headline {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.3;
        padding-bottom: 5px;
        margin-bottom: 20px;
        border-bottom: 2px dashed var(--accent-color);
    }

    .ABOUT_intro .flex {
        background: url(../images/about/bg_wave.png);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 60px;
    }

    .ABOUT_intro .txt-wrap {
        padding-bottom: 60px;
        width: 90%;
        margin: 0 5%;
    }

    .ABOUT_intro h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.3;
        background: var(--main-color);
        padding: 10px;
        margin-bottom: 20px;
    }

    .ABOUT_intro .txt-box {
        margin-bottom: 40px;
    }

    .ABOUT_quality {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .ABOUT_quality .flex {
        background: url(../images/about/logo-illust.svg);
        background-repeat: no-repeat;
        background-size: 50%;
        background-position: right bottom;
    }

    .ABOUT_quality .img-wrap {
        width: 100%;
        aspect-ratio: 71/63;
        margin-bottom: 30px;
        position: relative;
    }

    .ABOUT_quality .img01 {
        width: 56%;
        aspect-ratio: 40/31;
        position: absolute;
        left: 0;
        top: 0;
    }

    .ABOUT_quality .img03 {
        width: 56%;
        aspect-ratio: 40/31;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .ABOUT_quality .img02 {
        width: 42%;
        aspect-ratio: 30/22;
        position: absolute;
        right: 0;
        top: 0;
    }

    .ABOUT_quality .img04 {
        width: 42%;
        aspect-ratio: 3/4;
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .ABOUT_quality .txt-box {
        width: 90%;
        margin: 0 5%;
    }

    .ABOUT_quality .txt-box p {
        margin-bottom: 1.4rem;
    }

    .KIND_point {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .KIND_point .flex {
        margin-top: 40px;
    }

    .KIND_point .flex .headline {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--white);
        background: var(--main-color);
        padding: 10px 15px;
        padding-right: 90px;
        margin-bottom: 20px;
        position: relative;
    }

    .KIND_point .flex .headline img {
        width: 56px;
        position: absolute;
        right: 20px;
        bottom: 0;
    }

    .KIND_point .flex .txt {
        margin-bottom: 40px;
    }

    .KIND_point .flex .txt p {
        margin-bottom: 1em;
    }

    .KIND_point .flex .txt table {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-top: 30px;
    }

    .KIND_point .flex .txt table td,
    .KIND_point .flex .txt table th {
        border: 1px solid var(--border);
        padding: 15px;
    }

    .KIND_point .flex .txt table th {
        background: var(--main-color);
        color: var(--white);
        text-align: center;
        vertical-align: middle;
        min-width: 90px;
    }

    .KIND_point .flex .mein-img {
        margin-bottom: 20px;
    }

    .KIND_point .flex .sub-img {
        display: flex;
        flex-wrap: wrap;
    }

    .KIND_point .flex .sub-img>* {
        width: calc(100% / 3 - 8px);
        margin-right: 12px;
        margin-bottom: 10px;
    }

    .KIND_point .flex .sub-img> :nth-child(3n) {
        margin-right: 0;
    }

    .SIMULATION {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .SIMULATION .wq-Form {
        margin-top: 20px;
    }

    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-price,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-quantity,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-taxClass,
    .SIMULATION .wq-Form .wq-Monitor>.wq--entries>.wq--entry>.wq-for-unitPrice,
    .SIMULATION .wq-Form .wq-Option>.wq--label>.wq--main>.wq--prices {
        display: none;
    }

    .SIMULATION .wq-Form .wq-Quantity>.wq--head,
    .SIMULATION .wq-Form .wq-Selector>.wq--head,
    .SIMULATION .wq-Form .wq-Slider>.wq--head {
        background: var(--bg-color1);
    }

    .SIMULATION .wq-Form .wq--items>.wq-belongs-hnavigator>.wq--body,
    .SIMULATION .wq-Form .wq-Option>.wq--label,
    .SIMULATION .wq-Form .wq-Selector>.wq--body {
        background: #f7f7f7;
    }

    .SIMULATION .wq-Form .wq-Option>.wq--label:hover {
        background-color: rgba(235, 66, 102, 0.2);
    }

    .SIMULATION .wq-Form .wq-Attributes {
        padding: 20px;
        border: 1px solid var(--border);
    }

    .SIMULATION .wq-Form .wq-Button.wq-type-primary:not(:hover):not(:active) {
        background-color: var(--accent-color);
        color: #000;
        font-weight: 500;
        border-radius: 18px;
        border: none;
    }
}