@charset "utf-8";

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-feature-settings: "palt";
    background-color: var(--white);
    font-size:100%;
    -webkit-text-size-adjust: 100%;
}
/* css-function start*/
:root{
    --blue-1: #ecf2ff;
    --blue-2: #0071bc;
    --blue-3: #1b1464;
    --black: #000000;
    --white: #ffffff;
    --gray: #333333;
    --light-gray: #b3b3b3;
    --light-gray-2: #808080;
    --light-gray-3: #e6e6e6;
    --font-family: "Arial", sans-serif;
}

.flex{
    display: flex;
}
li{
    list-style-type: none;
}
a {
    color: inherit;
    transition: all .8s;
}
a:hover{
    opacity: .6;
}
.wpcf7-list-item {
    margin: 0!important;
}
.head{
    background-color: var(--blue-1);
    width: 100%;
}
.head-wrapper{
    padding: 0 3%;
    height: 100px;
}
.head-inner{
    justify-content: space-between;
    align-items: center;
}
.head-inner h1{
    font-size: clamp(1.1rem, 30 / 980* 100vw, 1.8rem);
    position: relative;
    z-index: 100;
}
.head-inner address{
    font-style: normal;
    text-align: right;
    margin-top: .5rem;
}
.head-inner address p{
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 2px;
}
.head-inner address .possible-time span{
        font-size: 1.1rem;
}
.head-inner address a.flex{
    justify-content: end;
    align-items: baseline;
    gap: .25rem;
}
.head-inner address .phone-number{
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.head-inner .global-nav{
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: end;
}
.head-inner .global-nav li{
    position: relative;
}
.head-inner .global-nav li::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -8px;
    background: var(--black);
    opacity: 0;
    transition: all .8s;
}
.head-inner .global-nav li:hover{
    opacity: .8;
}
.head-inner .global-nav li:hover::after{
    opacity: 1;
}

.head-inner,
.main-inner{
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.hero-wrapper{
    background: url('img/top-1.jpg')no-repeat center center;
    background-size: cover;
    padding: 10.5rem;
    position: relative;
}
.hero-title{
    position: absolute;
    color: var(--white);
    top: 50%;
    left: 25%;
    translate: 0 -50%;
    width: max-content;
    font-family: "Yu Mincho", "游明朝", serif;
}
.hero-title h2{
    font-size: clamp(1.4rem, 30 / 980 * 100vw , 4rem);
    margin-bottom: .5rem;
    letter-spacing: 1.8px;
}
.hero-title p{
    font-size: clamp(1.1rem, 30 / 980 * 100vw , 2rem);
    letter-spacing: 1.1px;
}
.breadcrumbs-wrapper{
    max-width: 1000px;
    margin: 1rem auto 0;
    padding: 0 3%;
}
.breadcrumbs-wrapper .flex{
    gap: .75rem;
}
.breadcrumbs-wrapper .flex li{
    font-size: .8rem;
}
.breadcrumbs-wrapper .flex li:not(:first-of-type)::before{
    content: '>';
    margin-right: .75rem;
}
.main-wrapper{
    padding: 0 3%;
}
.content-wrapper{
    margin-top: 54px;
}
.content-wrapper h3{
    text-align: center;
    margin-bottom: 32px;
    font-size: clamp(1.1rem, 30 / 980 * 100vw , 1.8rem);
    letter-spacing: 1.1px;
    line-height: clamp(1.8rem, 30 / 980* 100vw, 2.6rem);
}
.content-1 p{
    line-height: 2rem;
    letter-spacing: 1px;
    font-size: clamp(.9rem, 30 / 980* 100vw, 1.1rem);
    color: var(--gray);
}
.content-1 .patent{
    margin-top: 1.5rem;
}
.content-1 .reductions{
    margin: 54px 0;
}
.content-1 .reductions img{
    display: block;
    margin: 0 auto;
}
.content-1 .product-img img{
    width: 100%;
    height: auto;
}
.movie-wrapper iframe{
        display: block;
        margin: 54px auto;
        max-width: 840px;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
}
.fix-contact{
    top: 200px;
    position: fixed;
    right: 20px;
}
.fix-contact a{
    font-size: 13px;
    color: var(--white);
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    height: 80px;
    width: 45px;
    padding: 12px 0;
    transition: .8s ease-in-out;
    letter-spacing: 4px;
    display: block;
    background: var(--blue-3);
    border-radius: 12.5px;
    font-weight: bold;
    writing-mode: vertical-rl;
}
.content-na h4{
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: .5rem;
    font-size: 1.2rem;
}
.content-na .flex{
    gap: 3rem;
}
@media (max-width: 820px) {
    .content-na .flex{
    flex-direction: column;
    }
}
.content-na .flex div{
    flex-basis: calc(50% - 1.5rem);
}
.content-na .flex div img{
    width: 100%;
    height: auto;
}
.content-na .flex div ul .list-style-1{
    line-height: 1.8rem;
    color: var(--gray);
    text-indent: -1rem;
    padding-left: 1rem;
}
.content-na .flex div ul .list-style-1 img{
        width: 10px;
        height: 10px;
        margin-right: .5rem;
    }
.content-na .flex div ul ol{
        padding-left: 1.3rem;
    }
.content-na .flex div ul ol .list-style-2{
    line-height: 1.8rem;
    color: var(--gray);
}
.content-na .flex div ul ol .list-style-2 img{
    width: 15px;
    height: 15px;
    margin-right: .5rem;
    }
.content-na .flex div ul ol .list-style-2 img .infinite{
    font-size: 1.4rem;
    vertical-align: bottom;
}

.sample li{
    margin-top: 54px;
    position: relative;
}
@media (max-width: 700px){
    .sample li{
    margin-top: 72px;
    }
    .sample li .flex p{
        position: absolute;
        bottom: -24px;
        right: 0;
        }
}
.sample li .flex{
    align-items: baseline;
    gap: 1rem;
}
.sample li .flex h4.number-1::before{
    background: url('img/icon-1.png')no-repeat center center;
    background-size: cover;
}
.sample li .flex h4.number-2::before{
    background: url('img/icon-2.png')no-repeat center center;
    background-size: cover;
}
.sample li .flex h4.number-3::before{
    background: url('img/icon-3.png')no-repeat center center;
    background-size: cover;
}
.sample li .flex p{
    color: var(--gray);
}

.sample li .flex h4{
    background: var(--black);
    color: var(--white);
    position: relative;
    padding: 0.5rem 2rem 0.5rem 8rem;
    border-radius: 12.5px 12.5px 0 0;
}
.sample li .flex h4 img{
    margin-bottom: -2px;
    padding: 0 1px;
}
.sample li .flex h4::before{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    top: -35px;
    left: 4%;
}
@media (max-width: 500px){
    .sample li .flex h4{
    width: 100%;
    }
}
@media (max-width: 420px){
    .sample li .flex h4{
    line-height: 1.3rem;
    }
    .sample li .flex h4 .re{
        display: block;
    }
}
@media (max-width: 700px){
    .sample li .flex h4::before{
    width: 80px;
    height: 80px;
    top: -25px;
    left: 6%;
    }
}
.sample li .sample-image{
    border: solid 1.5px var(--black);
    border-radius: 0 12.5px 12.5px 12.5px;
    padding: 3rem;
    transition: all .5s;
}
@media (max-width: 500px){
    .sample li .sample-image{
    border-radius: 0 0 12.5px 12.5px;
    }
}
@media (max-width: 700px){
    .sample li .sample-image{
    padding: 2rem;
    }
}
@media (max-width: 420px){
    .sample li .sample-image{
    padding: 1rem;
    }
}
.sample li .size-down img{
    width: 70%;
    margin: 0 auto;
    display: block;
}
.work-wrapper{
    margin-top: 54px;
    gap: 3rem;
}
@media (max-width: 820px) {
    .work-wrapper{
    flex-direction: column;
    }
}
.work-wrapper div{
    flex-basis: calc(50% - 1.5rem);
}
@media (max-width: 700px){
    .work-wrapper div{
    display: flex;
    flex-direction: column-reverse;
    gap: .5rem;
    }
}
.work-wrapper div p{
    margin-bottom: .5rem;
    color: var(--gray);
}
.work-wrapper div img{
    width: 100%;
    height: auto;
}
.content-table{
    margin: 108px 0;
    
}
.content-table h4{
    color: var(--gray);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: .5rem;
}
.content-table h4 span{
    font-weight: 500;
    font-size: 1rem;
}
.content-table .flex{
    gap: 3rem;
}
@media (max-width: 820px) {
    .content-table .flex{
    flex-direction: column;
    }
}
.content-table .flex .figure-wrapper{
    flex-basis: calc(60% - 1.5rem);
}
.content-table .flex .table-wrapper{
    flex-basis: calc(40% - 1.5rem);
}
.content-table .flex .table-wrapper table{
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    color: var(--gray);
}
.content-table .flex .table-wrapper table thead th{
        letter-spacing: 5px;
}
.content-table .flex .table-wrapper table tbody tr:nth-child(odd){
    background: var(--blue-1);
}
.content-table .flex .table-wrapper table tbody .indent{
    text-indent: -1.3rem;
    padding-left: 3rem;
}
.content-table .flex .table-wrapper table th,
.content-table .flex .table-wrapper table td{
    border: solid 1px var(--black);
    text-align: left;
    padding: 0.65rem;
}
footer{
    padding: 1.5rem 0;
    border-top: solid 1px var(--gray);
}
footer nav .flex{
    justify-content: center;
    margin-bottom: 0.5rem;
}
footer nav .flex li{
    padding: 0 .5rem;
}
footer nav .flex li:not(:last-of-type){
    border-right: solid 1px var(--black);
}
footer small{
    text-align: center;
    display: block;
    letter-spacing: 1px;
    font-weight: 400;
}
.company-wrapper{
    margin: 54px 0;
}
.company-wrapper h2{
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}
.company-wrapper .overview-wrapper{
    width: 100%;
}
.company-wrapper .overview-wrapper th{
    width: 15%;
    background: var(--blue-1);
    text-align: left;
    padding: 1rem;
    color: var(--gray);
    font-weight: 500;
    box-sizing: border-box;
}
@media (max-width: 820px) {
    .company-wrapper .overview-wrapper th{
    width: 100%;
    display: block;
    text-align: center;
    }
}
.company-wrapper .overview-wrapper td{
    width: 85%;
    padding: 1rem;
    color: var(--gray);
    box-sizing: border-box;
}
@media (max-width: 820px) {
    .company-wrapper .overview-wrapper td{
    width: 100%;
    display: block;
    text-align: center;
    }
}
.company-wrapper .map-wrapper{
    margin-top: 54px;
}
.company-wrapper .map-wrapper iframe{
    width: 100%;
    height: auto;
}
.company-wrapper .map-wrapper p{
    margin-top: .5rem;
}
.contact-wrapper{
    margin: 54px 0;
}
.contact-wrapper h2{
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}
.contact-wrapper .form-wrapper{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}
.contact-wrapper .form-wrapper th{
    width: 25%;
    text-align: left;
    font-weight: 500;
}
@media (max-width: 860px) {
    .contact-wrapper .form-wrapper th{
    width: 100%;
    display: block;
    }
}
.contact-wrapper .form-wrapper th p{
    display: inline;
}
.contact-wrapper .form-wrapper th label{
    line-height: 34px;
}
.contact-wrapper .form-wrapper .required::before{
    content: '必須';
    background: var(--blue-2);
    color: var(--white);
    padding: 3px 6px;
    margin-right: .5rem;
}
.contact-wrapper .form-wrapper .optional::before{
    content: '任意';
    background: var(--light-gray-3);
    color: var(--light-gray-2);
    padding: 3px 6px;
    margin-right: .5rem;
}
.contact-wrapper .form-wrapper td{
    width: 75%;
}
@media (max-width: 860px) {
    .contact-wrapper .form-wrapper td{
    width: 100%;
    display: block;
    }
}
.contact-wrapper .form-wrapper td textarea, input{
    width: 100%;
    border: solid 2px var(--light-gray);
    padding: .5rem;
    box-sizing: border-box;
}
.contact-wrapper .form-wrapper td label{
    vertical-align: middle;
}
.contact-wrapper .form-wrapper td.consent input{
    width: 30px;
    height: 30px;
    margin: 0 .5rem 0 0;
    transition: all .5s;
}
.contact-wrapper .form-wrapper td.consent input p{
    display: inline-block;
}
.contact-wrapper .form-wrapper td.consent label{
    display: inline-block;
    line-height: 30px;
    margin-top: 2px;
}
.contact-wrapper .form-wrapper td.consent label a{
    border-bottom: dotted 1px var(--gray);
    padding-bottom: 5px;
}
.contact-wrapper .form-wrapper .text-area{
    vertical-align: top;
}
.contact-wrapper .form-wrapper .text-area label{
    line-height: 24px;
}
@media (max-width: 860px) {
    .contact-wrapper .form-wrapper .text-area label{
    line-height: 34px;
    }
}
.contact-wrapper .send-wrapper input{
        margin: 32px auto 0;
        display: block;
        width: 296px;
        padding: 1rem 0;
        border: none;
        background: var(--blue-1);
        letter-spacing: 6px;
        font-weight: 600;
        color: var(--gray);
        font-size: 1rem;
        cursor: pointer;
        transition: all .5s;
    }
.contact-wrapper .send-wrapper input:hover{
    box-shadow: 0px 0px 4px var(--light-gray-2);
}
.privacy-wrapper{
    margin: 54px 0;
}
.privacy-wrapper h2{
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}
.privacy-wrapper h3{
    margin: 1rem 0;
}
.privacy-wrapper ol li{
    line-height: 1.6rem;
    letter-spacing: .1px;
    list-style: decimal;
    list-style-position: inside;
    text-indent: -1rem;
    padding-left: 1rem;
}
.privacy-wrapper p{
    line-height: 1.6rem;
    letter-spacing: .1px;
}
.privacy-wrapper .text-r{
    text-align: right;
}
.drawer-wrapper{
    display: none;
}
.drawer-wrapper .menu-checkbox{
    display: none;
}
.drawer-wrapper .drawer-icon {
    cursor: pointer;
    position: absolute;
    top: 48px;
    right: 39px;
    z-index: 30;
    background-color: var(--white);
}
.drawer-wrapper .drawer-icon span,
.drawer-wrapper .drawer-icon span:before,
.drawer-wrapper .drawer-icon span:after {
    content: '';
    display: block;
    height: 3px;
    width: 27px;
    border-radius: 3px;
    background: var(--gray);
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
}
.drawer-wrapper .drawer-icon span::before {
    bottom: 9px;
}
.drawer-wrapper .drawer-icon span::after {
    top: 9px;
}
.drawer-wrapper .menu-checkbox:checked ~ .drawer-icon span {
    background-color: var(--blue-1);
  }
.drawer-wrapper .menu-checkbox:checked ~ .drawer-icon span::before {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: var(--black);
  }
.drawer-wrapper .menu-checkbox:checked ~ .drawer-icon span::after {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--black);
  }
.drawer-wrapper .drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out 0s;
    background-color: var(--blue-1);
    z-index: 20;
}
.drawer-wrapper .drawer-menu .drawer-menu-list {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.drawer-wrapper .drawer-menu .drawer-menu-list .drawer-menu-item {
    width: 128px;
    border-bottom: solid 1px var(--gray);
    text-align: center;
    padding-bottom: 0.5rem;
}
.drawer-wrapper .menu-checkbox:checked ~ .drawer-menu {
    transform: translateX(0);
  }
@media screen and (max-width: 580px){
    .head-inner > address{
        display: none;
    }
    .head-inner .drawer-wrapper{
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }
    .hero-title{
        left: 50%;
        translate: -50% -50%;
        text-align: center;
    }
}