@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    font: inherit;
    font-size: 100%;
}
ol, ul {
    list-style: none;
}
a {
    color: var(--tirol-blue);
    text-decoration: underline;
}
@media (hover: hover) {
    a:hover {
        text-decoration: none;
    }
}
a img {
    border: none;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

:root {
    --tirol-blue: #20a0e9;
    --tirol-blue-sub: #f0f8fc;
    --tirol-gradation: linear-gradient(to right, #53b9f3, #c7e6f4);
    --font-jp: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    --font-eng: "Poppins", sans-serif;
    --content-width: 82vw;
    --max-content-width: 1968px;
    --wide-width: 89.92vw;
    --section-skew: 157px;
    --font-size-large: 17px;
    --hover-transition: ease .3s;
}

html, body {
    background-color: #fff;
    color: #333;
    font-family: var(--font-jp);
    font-size: 14px;
    line-height: 1;
}
.pc_none {
    display: none;
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    width: var(--wide-width);
    margin: auto;
    padding: 50px 0;
    z-index: 1;
    animation: fadeInUp 1s ease .4s backwards;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.logo img {
    height: 30px;
}
.logo a {
    color: #fff;
    text-decoration: none;
}
.gnavi ul {
    display: flex;
    column-gap: min(3.75vw, 45px);
}
.gnavi a {
    position: relative;
    color: #fff;
    text-decoration: none;
}
.gnavi a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 0;
    height: 1px;
    margin: auto;
    background-color: #fff;
    transition: width var(--hover-transition);
}
@media (hover: hover) {
    .gnavi a:hover::after {
        width: 100%;
    }
}

#contents {
    min-height: 80vh;   
}
#contents section {
    position: relative;
    animation: fadeIn 1s ease 1.4s backwards;
}

#contents #main {
    background: url(../img/mv_bg.webp) no-repeat center bottom / cover;
    height: 900px;
    padding-top: 180px;
    box-sizing: border-box;
    animation: fadeIn 1s ease;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#main .information{
    width: 80vw;
    max-width: 100%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 20px;
}
#main h2 {
    color: #000;
    font-weight: 600;
    font-size: 28px;
}
#main .section_ttl {
    margin-bottom: 35px;
}
#main p {
    color: #000;
    font-size: 16px;
    line-height: 2.3;
    text-align: center;
    animation: fadeInUp 1s ease 1s backwards;
}
#main p + p {
  margin-top: 30px;
}
#main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: transparent transparent transparent #fff;
}

.wrap {
    width: var(--content-width);
    max-width: var(--max-content-width);
    margin: auto;
}
.section_ttl {
    color: var(--tirol-blue);
    font-family: var(--font-eng);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 75px;
}
.section_ttl > span {
    display: block;
    font-family: var(--font-jp);
    font-size: var(--font-size-large);
    font-weight: 400;
    margin-top: 15px;
}
.bg_blue {
    color: #fff;
    background: var(--tirol-gradation);
}
.bg_blue .section_ttl {
    color: #fff;
}

#business {
    padding: 35px 0;
}
.detail {
    width: 55.92vw;
}
#business .detail > li + li {
    margin-top: 60px;
}
.detail_ttl {
    color: var(--tirol-blue);
    font-family: var(--font-eng);
    font-size: 21px;
    font-weight: 400;
}
.detail p {
    line-height: 1.9;
    text-align: justify;
    margin-top: 20px;
}

.product {
    position: relative;
    background: var(--tirol-blue-sub) url(../img/product_bg.webp) no-repeat top right / auto 100%;
    width: var(--wide-width);
    margin: 100px auto 0;
    padding: 110px 0 220px;
}
.product .detail {
    width: 47.33vw;
    max-width: 100%;
}
.product .detail .detail_ttl {
    margin-bottom: 50px;
}
.product_list li {
    display: flex;
    align-items: center;
    column-gap: 5%;
    background-color: #fff;
    padding: 35px;
    box-sizing: border-box;
}
.product_list li + li {
    margin-top: 30px;
}
.detail_txt {
    width: 75%;
}
.product_ttl {
    color: var(--tirol-blue);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}
.product_list li p {
    text-align: justify;
    margin-top: 15px;
}
.detail_img {
    width: 20%;
}
.product_img {
    display: none;
}
.product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 var(--wide-width);
    border-color: #fff transparent transparent transparent;
}
.product::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 var(--wide-width);
    border-color: transparent transparent transparent #fff;
}

#company {
    padding: 220px 0 260px;
    font-size: var(--font-size-large);
}
.table li + li {
    margin-top: 40px;
}
.table dl {
    display: flex;
}
.table dt {
    width: 20%;
}
.table dd {
    width: 80%;
}
#company::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: #fff transparent transparent transparent;
}
#company::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 var(--section-skew) 100vw;
    border-color: transparent transparent #fff transparent;
}

#history {
    padding: 130px 0 60px;
}
#history .wrap {
    display: flex;
    gap: 5vw;
}
#history .detail {
    width: 100%;
    max-width: 100%;
}
#history .detail li + li {
    margin-top: 50px;
}
#history .detail li > div + div {
    margin-top: 25px;
}
.history_year {
    position: relative;
    color: var(--tirol-blue);
    font-family: var(--font-eng);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}
.history_year > span {
    position: relative;
    background-color: #fff;
    padding-right: 20px;
    z-index: 1;
}
.history_year::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: var(--tirol-blue);
}
#history .detail p {
    line-height: 1.7;
    margin-top: 5px;
}

#access {
    padding: 220px 0 280px;
}
#access .map iframe {
    width: 100%;
    height: 600px;
    vertical-align: bottom;
}
#access .access_list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    width: 47.33vw;
    max-width: 1200px;
    margin-top: 50px;
}
#access .access_list li {
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 15px;
}
@media screen and (max-width: 1200px) {
    #access .access_list {
        row-gap: 15px;
    }
    #access .access_list li {
        width: 100%;
    }
}
#access .access_list li::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 15px;
    padding: 5px 0;
    background: url(../img/access_ico.png) no-repeat center / 100% auto;
}
#access::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: #fff transparent transparent transparent;
}
#access::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: transparent transparent transparent var(--tirol-blue-sub);
}

#group {
    background-color: var(--tirol-blue-sub);
    padding-bottom: 90px;
    font-size: var(--font-size-large);
}
#group .detail {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}
#group .left {
    width: 55.92vw;
    max-width: 671px;
}
#group .right {
    width: 36.96vw;
    max-width: 443px;
}
.document figcaption {
    width: 12.83vw;
    max-width: 154px;
    margin: 40px auto 0;
}
.group_ttl {
    font-weight: 700;
    margin-bottom: 40px;
}
.office ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    width: 970px;
}
.office li {
    width: 155px;
}
.office li.wide {
    width: calc(155px * 2);
}
#group .detail .left > * + * {
    margin-top: 80px;
}
.group li + li {
    margin-top: 20px;
}

#contact {
    padding: 60px 0 70px;
    background-color: var(--tirol-blue-sub);
}
#contact .btn {
    max-width: 363px;
    margin-top: 50px;
}
#contact .btn a {
    display: block;
    background-color: hsla(202, 82%, 52%, 0.15);
    padding: 20px;
    color: var(--tirol-blue);
    font-size: var(--font-size-large);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background-color var(--hover-transition), color var(--hover-transition);
}
#contact .btn span {
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact .btn span::before {
    content: "";
    width: 34px;
    height: 37px;
    margin-right: 25px;
    background: url(../img/contact_ico.png) no-repeat center / 100% auto;
    transition: width var(--hover-transition), margin var(--hover-transition);
}
@media (hover: hover) {
    #contact .btn a:hover {
        color: #fff;
        background-color: var(--tirol-blue);
    }
    #contact .btn:hover span::before {
        width: 0;
        margin-right: 0;
    }
}
#contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: var(--tirol-blue-sub) transparent transparent transparent;
}

#footer {
    background: var(--tirol-gradation);
    padding: 50px 0;
    color: #fff;
    font-family: var(--font-eng);
    font-size: 13px;
    font-weight: 500;
    animation: fadeIn 1s ease 1.4s backwards;
}


#cover {
    display: grid;
    place-content: center;
    background: url(../img/mv_bg.webp) no-repeat center bottom -18vw / cover;
    height: 400px;
}
#cover .section_ttl {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}
#cover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: transparent transparent transparent #fff;
}
#form {
    width: 55.92vw;
    margin: auto;
    padding: 50px 0 100px;
    line-height: 1.6;
}
#form > p {
    font-size: 15px;
    line-height: 2;
}
.required {
    color: #e9203c;
}
form {
    margin-top: 60px;
}
form table {
    width: 55.92vw;
}
form th {
    width: 20%;
    text-align: left;
    vertical-align: middle;
}
form th .required {
    margin-left: 5px;
}
form td {
    width: 80%;
    padding: 15px 0;
}
form input, form select, form textarea {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px 20px;
    box-sizing: border-box;
    line-height: 1.6;
    transition: border-color var(--hover-transition);
}
form input:focus, form textarea:focus {
    border-color: #aaa;
}
form textarea {
    height: 200px;
}
form .select {
    position: relative;
}
form .select::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M0%2C7.3l2.8-2.8l9.2%2C9.3l9.2-9.3L24%2C7.3L12%2C19.5L0%2C7.3z%22%2F%3E%3C%2Fsvg%3E') no-repeat center / 100% auto;
}
form select {
    color: #333;
}
form table.confirm {
    margin-bottom: 60px;
}
.submit {
    position: relative;
    width: 80%;
    margin-top: 15px;
    margin-left: auto;
    background-color: var(--tirol-blue);
    border-radius: 4px;
    overflow: hidden;
}
.submit input {
    position: relative;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: var(--font-size-large);
    font-weight: 500;
    cursor: pointer;
    z-index: 2;
}
.submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-color: #1f96db;
    border-radius: 100%;
    transform: translateY(51%);
    transition: all var(--hover-transition);
    z-index: 1;
}
@media (hover: hover) {
    .submit:hover::before {
        border-radius: 0;
        transform: translateY(0);
    }
}
#sub #footer {
    position: relative;
    padding-top: 140px;
}
#sub #footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: var(--section-skew) 0 0 100vw;
    border-color: #fff transparent transparent transparent;
}

#sub #recruit {
    width: 75vw;
    margin: auto;
    padding: 50px 0 100px;
    font-size: 16px;
    line-height: 2;
}
#sub #recruit .no_status {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: calc(100vh - 600px);
    color: #ccc;
    font-size: 32px;
    font-weight: 500;
}
#sub #recruit .recruit_list {
    margin: 40px 0;
}
#sub #recruit .recruit_list > li {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
#sub #recruit .recruit_list > li::before {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: var(--tirol-blue);
    border-radius: 100%;
}
#sub #recruit .recruit_list > li + li {
    margin-top: 10px;
}
#sub #recruit .recruit_list > li > dl {
    display: flex;
    width: 100%;
}
#sub #recruit .recruit_list > li > dl dt {
    width: 200px;
}
#sub #recruit .recruit_list > li > dl dd {
}



@media screen and (max-width: 768px) {
    :root {
        --max-content-width: 100%;
        --wide-width: 92vw;
        --section-skew: 14vw;
        --font-size-large: 3.5vw;
    }

    html, body {
        font-size: 3.2vw;
    }
    .pc_none {
        display: block;
    }
    .sp_none {
        display: none;
    }

    #header {
        flex-direction: column;
        justify-content: center;
        row-gap: 30px;
        padding: 40px 0;
        text-align: center;
    }
    .logo {
        font-size: 5vw;
    }
    .logo img {
        height: 5vw;
    }
    .gnavi ul {
        justify-content: center;
        column-gap: 5.2vw;
    }

    #contents #main {
        height: 180vw;
        padding-top: 36vw;
    }
    #main .section_ttl {
        margin-bottom: 5vw;
    }
    #main .information{
        width: 90vw;
        max-width: 100%;
        padding: 8vw 5vw;
        box-sizing: border-box;
        text-align: center;
        border-radius: 20px;
    }
    #main p {
        font-size: 3vw;
    }

    .section_ttl {
        font-size: 10vw;
        margin-bottom: 60px;
    }
    .section_ttl > span {
        font-size: 3.8vw;
    }

    #business {
        padding: 40px 0;
    }
    .detail {
        width: 100%;
    }
    .detail_ttl {
        font-size: 4.8vw;
    }
    .product {
        background-image: none;
        margin-top: 80px;
        padding: 90px 0 60px;
    }
    .product .detail {
        width: 100%;
        max-width: 100%;
    }
    .product_list {
        position: relative;
        margin-top: 80px;
        z-index: 1;
    }
    .product_list li {
        position: relative;
        flex-direction: column;
        column-gap: 0;
        row-gap: 20px;
        padding: 10px 6vw 15px;
    }
    .product_list li::before {
        content: "";
        position: absolute;
        top: -12vw;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12vw 0 0 var(--content-width);
        border-color: transparent transparent transparent #fff;
    }
    .product_list li::after {
        content: "";
        position: absolute;
        bottom: -12vw;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12vw 0 0 var(--content-width);
        border-color: #fff transparent transparent transparent;
    }
    .product_list li + li {
        margin-top: 65px;
    }
    .detail_txt {
        width: 100%;
    }
    .product_ttl {
        font-size: 3.8vw;
    }
    .detail_img {
        width: 60%;
        margin: auto 0;
    }
    .product_img {
        position: relative;
        display: block;
        background-color: #fff;
        margin-top: 20px;
    }
    .product_img::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12vw 0 0 var(--content-width);
        border-color: var(--tirol-blue-sub) transparent transparent transparent;
    }
    .product_img::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12vw 0 0 var(--content-width);
        border-color: transparent transparent transparent var(--tirol-blue-sub);
    }

    #company {
        padding: 120px 0;
    }
    .table dl {
        flex-direction: column;
        row-gap: 5px;
    }
    .table dt, .table dd {
        width: 100%;
        line-height: 1.6;
    }

    #history {
        padding-top: 80px;
    }
    #history .wrap {
        flex-direction: column;
    }
    .history_year {
        font-size: 4.8vw;
    }
    .history_year > span {
        padding-right: 3vw;
    }

    #access {
        padding: 120px 0;
    }
    #access .map iframe {
        height: 70vw;
    }
    #access .access_list {
        row-gap: 10px;
        width: 100%;
        margin-top: 40px;
    }
    #access .access_list li {
        font-size: var(--font-size-large);
    }
    #access .access_list li::before {
        width: 5vw;
        height: 5vw;
        margin-right: 10px;
    }

    #group {
        padding: 60px 0 70px;
    }
    #group .detail {
        flex-direction: column-reverse;
        row-gap: 60px;
    }
    #group .right {
        width: 100%;
        max-width: 100%;
    }
    .document figcaption {
        width: 26vw;
        margin-top: 25px;
    }
    #group .left {
        width: 100%;
        max-width: 100%;
    }
    .office ul {
        width: 100%;
    }
    .office li {
        width: 50%;
    }

    #contact {
        padding-top: 100px;
    }
    #contact .btn {
        margin-top: 40px;
    }
    #contact .btn a {
        font-size: 3.6vw;
    }
    #contact .btn span::before {
        width: 5.33vw;
        height: 5.87vw;
    }

    #footer {
        padding-top: 20px;
        font-size: 2.7vw;
        text-align: center;
    }


    #cover {
        background-position: center bottom;
        height: 320px;
    }
    #cover .section_ttl {
        margin-top: 70px;
        margin-bottom: 0;
    }
    #form {
        width: var(--content-width);
        padding: 50px 0 70px;
    }
    #form > p {
        font-size: 3.2vw;
    }
    form {
        margin-top: 50px;
    }
    form table {
        width: 100%;
    }
    form tr, form th, form td {
        display: block;
        width: 100%;
    }
    form tr + tr {
        margin-top: 20px;
    }
    form td {
        padding: 10px 0;
    }
    form input, form textarea {
        padding: 15px 4vw;
    }
    .submit {
        width: 100%;
    }
    #sub #footer {
        padding-top: 80px;
    }

    #sub #recruit {
        width: var(--content-width);
        padding: 50px 0 70px;
        font-size: 3.2vw;
    }
    #sub #recruit .no_status {
        min-height: calc(90vh - 320px);
        font-size: 5.2vw;
        font-weight: 600;
    }
    #sub #recruit .recruit_list > li::before {
        width: 1.8vw;
        height: 1.8vw;
    }
    #sub #recruit .recruit_list > li > dl dt {
        width: 45%;
    }
    #sub #recruit .recruit_list > li > dl dd {
        width: 55%;
    }
}