@charset "UTF-8";

html,
body {
    margin: 0;
    padding: 0;
    font-family:
        "Yu Gothic",
        "游ゴシック体",
        "Hiragino Kaku Gothic ProN",
        "ヒラギノ角ゴ ProN",
        Meiryo,
        sans-serif;
   scroll-behavior: smooth;
}

ul {
    list-style-type:none;
    margin:0;
    padding:0;
}

dl ,
dt ,
dd {
    margin:0;
    padding:0;
}

img {
	max-width:100%;
	height:auto;
	margin:0;
	padding:0;
}

h1 ,
h2 ,
h3 {
	margin:0;
	padding:0;
}

.mintyou {
    font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "MS PMincho",
    "MS Mincho",
    serif;
}

a:hover {
    opacity:0.7;
}
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

/* -----------------------------------------------------
    WordPress RESET
----------------------------------------------------- */
div.wp-block-column,
div.wp-block-columns,
div.is-layout-flex,
div.is-layout-constrained,
div.is-layout-flow {
    margin: 0;
    padding: 0;
    gap: 0;
}

div.wp-block-column figure,
div.wp-block-columns figure,
div.is-layout-flex figure,
div.is-layout-constrained figure,
div.is-layout-flow figure {
    margin: 0;
    padding: 0;
}

div.wp-block-columns {
    width: 92%;
    margin: 0 auto;
}

:root {
    --phone-width: 430px;
    --header-height: 4rem;
    --menu-top: 4rem; /* ロゴ下までの高さに合わせる */
    --footer-height: 102px;
}

* {
    box-sizing: border-box;
}

html {
    scrollbar-gutter: stable;
}
html,
body {
    margin: 0;
    min-height: 100%;
    font-family: sans-serif;
}

body {
    overflow-x: hidden;
    background: #111;
}

body.scroll_off {
    overflow: hidden;
}

/* =========================
   背景
========================= */
.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg::before {
    content: "";
    position: absolute;
    inset: -4rem;
    background: url("../img/lprs/bg.webp") center / cover;
    /* filter: blur(0.8rem);
    transform: scale(1.08); */
}

.bg::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.3); */
}

/* =========================
   左右UI
========================= */
.side_left {
    position: fixed;
    top: 50%;
    left: calc((100vw - var(--phone-width)) / 4);
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    width:calc((100vw - var(--phone-width)) / 2);
    text-align:center;
}
.side_left img {
    width:65%;
    max-width:500px;
    margin:0 auto;
}
.side_right {
    position: fixed;
    top: 50%;
    right: calc((100vw - var(--phone-width)) / 4);
    transform: translate(50%, -50%);
    z-index: 2;
    width:calc((100vw - var(--phone-width)) / 2);
    text-align:center;
}
.side_right_inner {
    display:inline-block;
    margin:0 auto;
    padding:0 1rem;
    text-align:left;
}
.side_right ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.side_right li {
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 500;
    line-height:1em;

    padding-left: 1em;   /* 1文字分の余白 */
    text-indent: -1em;   /* 1文字分だけ戻す */
}

.side_right li::before {
    content: '〉';
    color: #fff;
    line-height:1em;
}

.side_right a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

#side_right_insta {
    width:2rem;
    height:auto;
    margin-right:auto;
}


/* =========================
   スマホ・狭い画面
========================= */
@media (max-width: 56.25rem) {
    .side_left,
    .side_right {
        display: none;
    }
}

/* =========================
   中央スマホUI
========================= */
.wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--phone-width);
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    /* padding-bottom: var(--footer-height); */
    overflow: hidden;
    isolation: isolate;
}

.logo_clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 400;
}
.site_header {
    position: relative;
    z-index: 300;
    top: 0;
    height: var(--header-height);
    background: #fff;
	text-align:center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;

}

.site_header_inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0rem;
	text-align:center;
    width:100%;
}
.site_header_inner::before {
    content:'';
    width:25%;
}
.site_header_inner::after {
    content:'';
    width:25%;
}

.site_logo {
    font-weight: bold;
    letter-spacing: 0.1em;
text-align:center;
margin:0 auto;
    width:50%;


}
.site_logo img {
width:90%;
/* max-width:200px; */
height:auto;
margin:0 auto;
vertical-align:bottom;
}


.himuka_logo {
    position: absolute;
    left: -1%;
    top: 3.5rem;
    width: 25%;
    aspect-ratio: 1 / 1;
    transform: translate(0%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 50%;
}

.himuka_logo img {
    width: 80%;
    height: auto;
    display: block;
}

/* =========================
   コンテンツ
========================= */
main img {
    vertical-align:bottom;
}

.inner {
    width:90%;
    margin:0 auto;
}