body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

.fadeIn {
    opacity: 0;
    transition: 2s;
}

.fadeIn.is-show {
    opacity: 1;
}

.flex {
    flex: auto;
}

/* ========== header =========== */

.header_inner{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:80px;
  background-color:#fff;
  z-index:1000;

  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
}

.header_inner img{
    height: 40px;
}

.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
}

.nav-overlay {
  z-index: 9998;
}

.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

.mv {
    width: 100%;
    height: 100dvh;
    overflow: hidden;

}

.mv-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.mv-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    display: block;
    filter: brightness(50%);
}


.mv-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.mv-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.mv-sub {
    font-size: 16px;
}



/* ========== ABOUT ========== */

.about {
    margin-top: 80px;
    margin-bottom: 0px;
    padding-bottom: 60px;
    text-align: center;
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 16px;
    margin-bottom: 30px;
}

.about-wave {
    width: 65%;
    max-width: none;
    display: block;
    margin: 0 auto 40px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.about-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.about-btn {
    display: inline-block;
    padding: 2px 0;
    margin-top: 24px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #333;
    font-size: 24px;
    transition: 0.3s;
}

.about-btn::after {
    content: "→";
    margin-left: 8px;
    transition: 0.3s;
}



/* ========== サービス ========== */

.line01 {
    background: #aae0f9;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 50px;
}

.line02 {
    background: #aae0f9;
    border-bottom-left-radius: 1000px 200px;
    border-bottom-right-radius: 1000px 200px;
    height: 50px;
}

#service {
    background-color: #aae0f9;
    width: 100%;
    padding-top: 55px;
}

.service-inner {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-main-title {
    font-size: 32px;
    margin-bottom: 50px;
    display: inline-block;
    display: block;
    text-align: center;
}

.service-item {
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-content {
    margin-top: 32px;
    padding-left: 24px;
    text-align: center;
}


.service-title {
    font-size: 20px;
    margin-bottom: 20px;
    display: inline-block;
    margin: 0 auto;
    border-bottom: 1.5px solid #000000;
    padding-bottom: 4px;
    font-weight: bold;
}

.service-content p {
    color: rgba(0, 0, 0, 0.9);
}


/* =========== 商品一覧ボックス ========== */

.product-box {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 50px 30px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.9);
}


.product-title {
    display: inline-block;
    position: relative;
    font-size: 22px;
    margin-bottom: 30px;
    color: #333;
    z-index: 1;
    padding: 0 10px;
}

.product-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    background: #95b9f2;
    z-index: -1;
    border-radius: 6px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.product-list li {
    text-align: center;
    font-size: 14px;
    color: #555;
}

.product-box::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -20px;
    width: 320px;
    height: 220px;
    background: url("../images/logo2.svg") no-repeat center / contain;
    opacity: 0.07;
    transform: rotate(-20deg);
    pointer-events: none;
}

.product-list li::before {
    content: "・";
}

.product-btn-wrap {
    text-align: center;
    margin-top: 30px;
}

.info {
    background: #ffffff;
    margin-top: 32px;
    padding: 90px 20px;
}

.info-inner {
    max-width: 1020px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 70px;
}

.info-card {
    text-decoration: none;
    color: #333;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.info-card:hover {
    transform: scale(1.2);
    transition: 0.5s;
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.info-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.contact-box {
    background: #fff;
    border: 1px solid #2a2a2a;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-lead {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-tel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-tel-icon {
    width: 32px;
    height: 32px;
    border: 1.3px solid #000000;
    background: #00bfff;
    display: grid;
    place-items: center;
    box-sizing: border-box;
}

.contact-tel-number {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #111;
    text-decoration: none;
}

.contact-time {
    font-size: 14px;
    color: #333;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4a4a4a;
    color: #fff;
    text-decoration: none;
    padding: 16px 26px;
    max-width: 240px;
    justify-content: center;
    transition: 0.25s;
}

.contact-btn:hover {
    opacity: 0.85;
    transform: scale(1.1);
    transition: 0.5s;
}

.contact-btn-arrow {
    font-size: 16px;
    margin-left: 10px;
    transition: 0.25s;
}

.contact-btn:hover .contact-btn-arrow {
    transform: translateX(6px);
}

@media (max-width: 999px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }

    .contact-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }
    
    .contact-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-tel {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 8px 0;
    }
    .contact-time {
        text-align: center;
        margin-bottom: 8px;
    }

    .contact-right {
        width: auto;
    }

    .contact-btn {
        width: auto;
        min-width: 260px;
        margin: 16px 40px;
    }

    .contact-tel-number {
        white-space: nowrap;
    }
}

.info-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-text{
    margin-bottom: 40px;
}

.contact-tel-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
}

.contact-btn-icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
}

.contact-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========== FOOTER ========== */

.footer {
    padding: 0;
    color: #111;
    background: none;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ========== FOOTER NAV =========== */

.footer-nav {
    border-top: 1px solid rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    padding: 18px 0;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    position: relative;
    line-height: 1;
    padding: 0;
    font-size: 12px;
}

.footer-nav-list a,
.footer-nav-list a:visited {
    color: #111;
    text-decoration: none;
}


.footer-nav-list li+li::before {
    content: "";
    position: absolute;
    left: calc(-56px / 2);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1.2em;
    background: rgba(0, 0, 0, 0.45);
}


.footer-main {
    padding: 40px 20px 24px;
    background:
        radial-gradient(circle at 20% 1%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(90deg, #1aa7d8 0%, #7ec6e8 100%);
}


.footer-brand {
    display: block;
    margin-bottom: 20px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 8px;
}

.footer-company {
    font-weight: 700;
    font-size: 16px;
}


.footer-info {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    text-align: left;
}

.footer-info p {
    margin: 0;
}

.footer-copy {
    background:
        linear-gradient(90deg, #1aa7d8 0%, #7ec6e8 100%);
    margin: 0;
    padding: 24px 0 0;
    text-align: center;
}



/* ========== company ========== */

.greeting {
    margin-top: 128px;
}

.greetingname {
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: large;
}

.greeting h1 {
    margin-top: 30px;
    margin-bottom: 32px;
    background-image: url("../images/blue-circle.svg");
    background-size: cover;
    background-position: center;
    padding: 24px;
}

.greeting p {
    padding: 24px;
    margin-bottom: 32px;
    font-size: 18px;
}

.company-info {
    display: block;
    margin: 0 auto;
}

.company-info h2 {
    margin-bottom: 32px;
    background-image: url("../images/blue-circle.svg");
    background-size: cover;
    background-position: center;
    padding: 24px;
}

.company-info dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    text-align: left;
    margin-bottom: 5rem;
}

.company-info dt {
    border-bottom: 1px solid #ccc;
    padding: 16px;
    font-weight: bold;
    color: #00bfff;
    font-size: 16px;
    padding-top: 30px;
}

.company-info dd {
    width: 70%;
    margin: 0;
    padding: 2em 2em 2em 55px;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    /*line-height: 2.7rem;*/
    line-height: 1.8;
    font-size: 16px;
}

.timeline {
    list-style: none;
    padding-left: 32px;
}

.timelinediv h2 {
    margin-bottom: 24px;
}

.timeline>li {
    margin-bottom: 60px;
    border-bottom: #ccc solid 1px;
}

.timeline p {
    font-size: 20px;
}

@media (min-width : 999px) {
    .timeline>li {
        overflow: hidden;
        margin: 0;
        position: relative;
    }

    .timeline-date {
        width: 110px;
        float: left;
        margin-top: 20px;
    }

    .timeline-content {
        width: 75%;
        float: left;
        border-left: 3px #7ec6e8 solid;
        padding-left: 30px;
        padding-bottom: 32px;
    }

    .timeline-content:before {
        content: '';
        width: 12px;
        height: 12px;
        background: #1aa7d8;
        position: absolute;
        left: 106px;
        top: 24px;
        border-radius: 100%;
    }
}


.timeline_mv {
    display: none;
}

iframe {
    display: block;
    max-width: 100dvw;
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: 32px;
}

/* ========== store ========== */

.store_title {
    margin-top: 88px;
    margin-bottom: 32px;
    background-image: url("../images/blue-circle.svg");
    background-size: cover;
    background-position: center;
    padding: 24px;
}

.wrap_amazon {
    margin: 36px auto;
    align-items: center;
    padding: 0.5em 1em;
    color: #00bfff;
    font-weight: bold;
}

.wrap_amazon p {
    font-size: 40px;
    display: block;
    text-align: center;
}


.wrap_amazon img {
    max-width: 100%;
    scale: calc(.9);
}

.wrap_rakuten {
    margin: 0 auto;
    align-items: center;
    padding: 0.5em 1em;
    color: #00bfff;
    font-weight: bold;
}

.wrap_rakuten p {
    font-size: 38px;
    display: block;
    text-align: center;
}

.wrap_rakuten img {
    max-width: 100%;
    scale: calc(.9);
}

.wrap_yahoo {
    margin: 0 auto;
    align-items: center;
    padding: 0.5em 1em;
    color: #00bfff;
    font-weight: bold;
}

.wrap_yahoo p {
    font-size: 38px;
    display: block;
    text-align: center;
}

.wrap_yahoo img {
    max-width: 100%;
    scale: calc(.9);
}



/* =========== policy ========== */
.policy_inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 24px;
    line-height: 1.6;
}

.policy_inner h1 {
    margin-top: 6px;
    background-image: url("../images/blue-circle.svg");
    background-size: cover;
    background-position: center;
    padding: 24px;
    margin-bottom: 32px;
    margin-top: 64px;
}


.policy_inner h2 {
    margin-top: 40px;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: #000000 solid 2px;
}

.policy_inner ol {
    margin-top: 16px;
    padding-left: 20px;
}

.policy_inner li {
    margin-bottom: 8px;
}

.policy_inner .policy_name {
    text-align: right;
}