@charset "UTF-8";
/* CSS Document */
/* reset CSS A Modern CSS Reset (2025) */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-size: 100%;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}
ul[role='list'], ol[role='list'] {
    list-style: none;
}
body {
    min-height: 100vh;
    line-height: 1.75;
}
h1, h2, h3, h4, button, input, label {
    line-height: 1.1;
}
h1, h2, h3, h4 {
    text-wrap: wrap;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}
img, picture {
    max-width: 100%;
    display: block;
}
input, button, textarea, select {
    font: inherit;
    color: #333;
}
textarea:not([rows]) {
    min-height: 10em;
}
:target {
    scroll-margin-block: 5ex;
}
/* common CSS */ :root {
    --orange: #EB6800;
    --orangebtn: #FF8E33;
    --bgcolor: #FFF7EF;
    --radius: 16px;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    color: #333;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    font-size: 1rem;
    font-display: swap;
}
a {
    text-decoration: none;
    color: #333;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 32px;
    font-weight: 500;
}
h2 {
    font-size: 24px;
    font-weight: 500;
}
h3 {
    font-size: 16px;
    font-weight: 500;
}
h4 {
    font-size: 16px;
    font-weight: 300;
}
.subheading {
    font-size: 14px;
    font-weight: 300;
    color: var(--orange);
}
.title-box {
    width: 100%;
    text-align: center;
}
.text-v {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
.text-s {
    font-size: 14px;
}
.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.gicon {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
}
.list {
    position: relative;
    text-indent: 1rem;
}
.list::before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: var(--orange);
    position: absolute;
    top: 12px;
    left: 0;
}
.headingcircle {
    padding-left: 16px;
    margin-bottom: 8px;
    position: relative;
}
.headingcircle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: var(--orange);
    position: absolute;
    top: 7px;
    left: 0;
}
.header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header-wrap {
    width: 95%;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
}
.logo {
    width: fit-content;
    min-width: 137px;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    column-gap: 8px;
    position: relative;
    z-index: 150;
}
.offical {
    border: 1px solid #333;
    padding: 8px 2px;
    font-size: 14px;
}
.logo .none, .header .cta-btn-pc {
    display: none;
}
.header .cta-btn {
    position: absolute;
    top: 0;
    right: 68px;
}
.header .cta-btn-mobile {
    width: 60px;
    height: 60px;
    text-align: center;
    display: block;
    color: #333;
    font-weight: 500;
    background-color: var(--orangebtn);
    position: relative;
    z-index: 150;
}
.header .cta-btn-mobile:hover {
    background-color: var(--bgcolor);
    color: var(--orange);
}
.header .cta-btn-mobile a {
    width: 60px;
    height: 60px;
    display: block;
}
.header .cta-btn-mobile .material-symbols-outlined {
    font-size: 38px;
}
.header .cta-btn-mobile p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.hamburger {
    background-color: transparent;
    border-color: transparent;
    position: absolute;
    top: 4px;
    right: 0;
    z-index: 150;
    cursor: pointer;
}
.hamburger span {
    width: 40px;
    height: 4px;
    display: block;
    background-color: var(--orange);
    border-radius: 2px;
    transition: ease .4s;
}
.hamburger span:nth-child(2) {
    margin: 8px 0;
}
.hamburger p {
    color: var(--orange);
    font-size: 14px;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(35deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-35deg);
}
.header .nav {
    width: 100vw;
    max-width: 1490px;
    height: auto;
    padding: 80px 0;
    border-radius: 0 0 var(--radius) var(--radius);
    position: absolute;
    top: -100vh;
    right: -2.5vw;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    transition: top 0.6s ease;
    z-index: 120;
}
.header .nav.active {
    top: 0;
}
.nav ul {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.nav ul li {
    color: #333;
    text-align: left;
    margin-top: 16px;
}
.nav ul li:first-child {
    margin-top: 40px;
}
.nav li a:hover {
    color: var(--orange);
    font-weight: 500;
}
@media screen and (min-width: 768px) {
    .logo .none, .header .cta-btn-pc {
        display: block;
    }
    .header .cta-btn-mobile {
        display: none;
    }
    .header .cta-btn {
        top: 8px;
        right: 80px;
        z-index: 150;
    }
    .header .cta-btn-pc {
        width: auto;
        min-width: 160px;
        height: auto;
        padding: 8px 24px;
        display: inline-block;
        border-radius: 40px;
        font-weight: 500;
        color: #333;
        background-color: var(--orangebtn);
        text-align: center;
    }
    .header .cta-btn-pc:hover {
        background-color: var(--bgcolor);
        color: var(--orange);
    }
    .nav {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        column-gap: 80px;
        flex-wrap: nowrap;
    }
    .nav ul {
        width: fit-content;
        margin: 0;
    }
}
@media screen and (min-width: 1490px) {
    .header .nav {
        width: 1490px;
        right: -20px;
    }
}
.contact {
    width: 100%;
    height: auto;
    background-image: url("../image/contact.webp");
    background-position: center bottom;
    color: #fff;
}
.contact .container {
    width: 100%;
    padding: 60px 0;
}
.contact .container a {
    max-width: 512px;
    height: 400px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
}
.contact .container a:hover {
    background-color: rgba(255, 247, 239, 0.8);
    color: #333;
}
.line-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
}
.line-arrow {
    position: relative;
}
.line-arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 0 12px;
    border-color: var(--orangebtn) transparent transparent transparent;
    position: absolute;
    top: 2px;
    left: -10px;
    bottom: 0;
    margin: auto;
}
.contact .item {
    flex: 1;
}
.contact .item .subheading {
    margin: 8px 0 40px;
}
.contact .item p {
    padding: 0 5%;
    text-align: left;
    margin-bottom: 40px;
}
.contact .cta-btn {
    width: auto;
    min-width: 160px;
    height: auto;
    padding: 12px 24px;
    display: inline-block;
    border-radius: 40px;
    background-color: var(--orangebtn);
    color: #000;
    font-weight: 500;
    text-align: center;
}
.footer {
    width: 100%;
    height: auto;
    position: relative;
    background-image: url("../image/bg01.png");
    background-position: top center;
    background-size: 1800px;
    background-repeat: no-repeat;
}
.footer-wrap {
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
    padding-top: 40px;
}
.footer .nav {
    width: 100%;
}
.footer .nav ul {
    margin: 0;
}
.footer .pagetop {
    width: fit-content;
    margin: 60px 0 60px auto;
    text-align: right;
    color: #333;
}
.footer .pagetop a:hover {
    color: var(--orange);
    font-weight: 500;
}
.footer .info {
    margin-top: 80px;
}
.footer .info img {
    width: 120px;
    margin: 0 0 16px 8px;
}
.footer .address {
    width: fit-content;
    margin: 24px 0 16px;
}
.footer .address a:hover {
    color: var(--orange);
    font-weight: 500;
}
.footer .address .gicon {
    align-items: flex-end;
}
.footer .tel {
    width: 230px;
    display: flex;
    gap: 4px;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.copyright {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--orangebtn);
    color: #000;
    text-align: center;
    margin-top: 16px;
}
@media screen and (min-width: 768px) {
    .footer .info img {
        width: 150px;
    }
    .footer .tel {
        width: 370px;
        gap: 8px;
    }
}
@media screen and (min-width: 1080px) {
    .footer .wrap {
        margin-bottom: 160px;
    }
    .footer .nav, .footer .sns {
        justify-content: flex-end;
        column-gap: 80px;
    }
    .footer .info {
        margin: 0;
        position: absolute;
        bottom: 40px;
    }
}