@charset "utf-8";

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

:root {
  --pc-layout-width: 485px;
  --z-index-hamburger: 10000;
  --z-index-drawer: 1000;
  --z-index-header: 100;
  --z-index-floating-item: 10;
  --base-font: "BIZ UDPGothic", sans-serif;
  --font-en: "Oswald", sans-serif;
  --base-text-color: #171717;
  --color-white: #FFF;
  --color-primary: #E4007F;
  --color-secondary: #00AFEC;
  --color-navy: #1D2088;
  --bg-color-black: #000;
  --bg-color-blue: #91D3E7;
  --bg-color-orange: #FC6900;
  --base-border-radius: 16px;
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


body {
    -webkit-font-feature-settings: "palt"1;
    font-feature-settings: "palt"1;
    -webkit-font-kerning: auto;
    font-kerning: auto;
    font-size: 1.6rem;
    line-height: 1.625;
    background-color: #000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    z-index: 1000; /* コンテンツより前に出す */
}


header h1{
    padding-left: 24px;
}

main {
    padding-top: 80px;
    min-height: calc(100vh - 100px); /* 画面高さから100px引く */
    background-image: url(img_2026/back.jpg);
    background-position: center center; /* 中央配置 */
    background-repeat: no-repeat;       /* 繰り返さない */
    background-size: cover;             /* コンテナに合わせて拡大縮小 */
    width: 100%;
}

main #content .inner {
    display: flex;
    justify-content: center; /* 横中央 */
    align-items: center;     /* 縦中央 */
    height: calc(100vh - 180px);            /* 親（#content）の高さに合わせる */
    min-height: 280px;
    padding: 0px 20px;
}

main #content .inner img {
height: calc(100% - 117px);
    width: auto;
}

footer{}

footer .inner{
    padding-bottom: 52px;
}

footer .inner .link_bt {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

 .link_bt a {
    width: 448px;
    height: 48px;
    flex-shrink: 0;
    color: var(--white, #FFF);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    border-radius: 16px;
    border: 2px solid var(--white, #FFF);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: background 0.3s;
}
 .link_bt a:hover {
    background: #E4007F;
}
 .link_bt a img {
position: absolute;
right: 10px;
}

footer .inner .footer_logo {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}


footer .inner .copy_text{
    display: flex;
    justify-content: center;
    margin-top: 24px;
    color: var(--white, #FFF);
text-align: center;
font-family: "BIZ UDPGothic";
font-size: 10px;
font-style: normal;
font-weight: 700;
line-height: 170%; /* 17px */
}

 .sp_b {
    display: none;
}

@media screen and (max-width: 520px) {
 .pc_b {
    display: none;
}
 .sp_b {
    display: block;
}



.link_bt a {
        width: 90%;
        height: auto;
        padding: 10px;
        font-size: 0.8em;
                margin: auto;
    }
    main {
    background-image: url(img_2026/back_sp.jpg);
    }

.link_bt {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
}

footer {
    margin-bottom: 5rem;
}

}