@charset "UTF-8";
/*!
Theme Name: lm
Theme URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lm
Tags: 
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
    - Variables
    - Reset Margin Padding
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# Utilities
	- Accessibility
	- Alignments
--------------------------------------------------------------*/

/** 変数定義 */
:root {
    --body-background: #fff;
    --body-font-family: 'Noto Serif JP', serif;
    --inner-width: 90%;
    --inner-max-width-px: 1280px;
    --inner-content-width: min(var(--inner-width), var(--inner-max-width-px));

    --admin-bar-height: 0px;
}
body.admin-bar {
    --admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar {
        --admin-bar-height: 46px;
    }
}
#wpadminbar {
    position: fixed;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;

    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--body-font-family);
}

body {
    background: var(--body-background);
}

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

a {
    text-decoration-line: none;
}

ul {
    list-style: none;
}

.lHeader {
    width: 100%;
    height: 100px;

    .lHeader__inner {
        display: flex;
        justify-content: space-between;
        height: 100%;
    }

    .lHeader__space {
        flex-grow: 1;
    }

    .lHeader__logo {
        height: 100px;
        display: flex;
        align-items: center;
    }

    .lHeader__logo img {
        object-fit: contain;
        width: auto;
        height: 100%;
        max-height: 70px;
    }

    .lHeader__navigationMenu {
        /** 基本スタイル */
        display: flex;
        /** アニメーションに関するスタイル */
    }

    .lHeader__navigationMenu .menu-item a {
        color: #333333;
        height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-inline: 1rem;
    }

    .lHeader__navigationMenu .menu-item.tel a {
        background: #f8f8f8;
        color: #333333;
    }

    .lHeader__navigationMenu .menu-item.tel a::before {
        font-family: 'Material Symbols Outlined';
        content: '\e325';
        font-variation-settings:
            'FILL' 1,
            'wght' 300,
            'GRAD' 0,
            'opsz' 24;
        font-size: 24px;
        line-height: 1;
    }

    .lHeader__navigationMenu .menu-item.contact a {
        background: #333333;
        color: #ffffff;
    }

    .lHeader__navigationMenu .menu-item.contact a::before {
        font-family: 'Material Symbols Outlined';
        content: '\e158';
        font-variation-settings:
            'FILL' 1,
            'wght' 300,
            'GRAD' 0,
            'opsz' 24;
        font-size: 24px;
        line-height: 1;
    }

    .lHeader__navigationMenu .menu-item a::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #333333;
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .lHeader__navigationMenu .menu-item a:hover::after {
        transform: scaleX(1);
    }

    .lHeader__navigationMenu .menu-item.contact a::after {
        background: #ffffff;
    }
}

/** Tablet/SP用ヘッダー、グローバルナビゲーション */
.lTabletHeader,
.lTabletNavigation {
    display: none;
}

/* Tablet */
@media print, screen and (max-width: 1023px) {
    .lTabletHeader,
    .lTabletNavigation {
        display: block;
    }
    /** lHeaderと共通部分 */
    .lTabletHeader {
        width: 100%;
        height: 100px;
    }
    .lTabletHeader__inner {
        display: flex;
        justify-content: space-between;
        height: 100%;
    }
    .lTabletHeader__logo {
        height: 100px;
        display: flex;
        align-items: center;
    }
    .lTabletHeader__logo img {
        object-fit: contain;
        width: auto;
        height: 100%;
        max-height: 70px;
    }
    /** Tablet/SP用ヘッダー */
    .lTabletHeader__hamburger {
        display: flex;
        align-items: center;
        padding-inline: 1rem;
    }
    .lTabletHeader__hamburgerIcon {
        font-size: 40px;
        cursor: pointer;
    }
    .lTabletNavigation {
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f0f0fdb;
    }
    .lTabletNavigation__header {
        height: 100px;
        color: #fff;
        display: flex;
        justify-content: end;
        padding: 1rem;
        display: flex;
        align-items: center;
        padding-inline: 1rem;
    }
    .lTabletNavigation__headerCloseIcon {
        font-size: 40px;
        cursor: pointer;
    }
    .lTabletNavigation__navigationMenu {
        display: block;
        padding: 0;
    }
    .lTabletNavigation__navigationMenu .menu-item {
        padding: 1rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 1rem;
    }
    .lTabletNavigation__navigationMenu .menu-item a {
        color: #e0e0e0;
        font-size: 1.5rem;
    }
    .lTabletNavigation__navigationMenu .menu-item.tel::before {
        font-family: 'Material Symbols Outlined';
        color: #ffffff;
        content: '\e325';
        font-variation-settings:
            'FILL' 1,
            'wght' 300,
            'GRAD' 0,
            'opsz' 24;
        font-size: 24px;
        line-height: 1;
    }
    .lTabletNavigation__navigationMenu .menu-item.contact::before {
        background: #333333;
        color: #ffffff;
        font-family: 'Material Symbols Outlined';
        content: '\e158';
        font-variation-settings:
            'FILL' 1,
            'wght' 300,
            'GRAD' 0,
            'opsz' 24;
        font-size: 24px;
        line-height: 1;
    }
    .lTabletNavigation__navigationMenu .menu-item a::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #e0e0e0;
        transform: scaleX(0);
        transition: transform 0.3s;
    }
    .lTabletNavigation__navigationMenu .menu-item a:hover::after {
        transform: scaleX(1);
    }
    .lTabletNavigation.isOpen {
        visibility: visible;
        opacity: 1;
    }
}

/** ログイン中のスタイル調整 */
body.admin-bar .lTabletNavigation {
    top: 46px;
}

.lInner {
    width: var(--inner-content-width);
    margin-left: auto;
    margin-right: auto;
}

.lInner.lInner--extendToRight {
    margin-left: calc((100% - var(--inner-content-width)) / 2);
    margin-right: 0;
    width: calc(var(--inner-content-width) + var(--inner-margin-one-side));
}

/* PC */
@media print, screen and (min-width: 1024px) {
    .lInner.lInner--pcExtendToRight {
        margin-left: calc((100% - var(--inner-content-width)) / 2);
        margin-right: 0;
        width: calc(var(--inner-content-width) + var(--inner-margin-one-side));
    }
}

/* 画面の高さを最低100vhに調整 */
.lArticle {
    flex-grow: 1;
}
body.admin-bar {
    min-height: calc(100vh - var(--admin-bar-height));
}

/* WP機能調整
--------------------------------------------- */
/* Accessibility */
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Galleries */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/* Alignments */
.alignleft {
    /*rtl:ignore*/
    float: left;
    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    /*rtl:ignore*/
    float: right;
    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 1.5em; */
}

.uDisplayNone {
    display: none;
}

/* Tablet */
@media print, screen and (max-width: 1023px) {
    .uTabNone {
        display: none;
    }
    .uTabBlock {
        display: block;
    }
}
