@charset "UTF-8";
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp_s.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset
----------------------------------------------------------------- */

html, body {
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
    min-width: 0;
}
* {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
main {
    display: block;
}
p,
table,
figure {
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
}
ul,
ol,
dl {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
}
hr {
    height: 0;
    margin: 0;
    border-top-width: 1px;
    box-sizing: content-box;
    clear: both;
    color: inherit;
    overflow: visible;
}
a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}

/* Base
   ----------------------------------------------------------------- */

.tec16-mainframe-header_bread-list {
    display: none !important;
}

:root {
    --color-main: #952424;
    --color-accent: #371f1f;
    --color-base: #e4e2e2;
    --color-white: #ffffff;
    --color-white-rgb: 255 255 255;
    --color-black: #222222;
    --color-black-rgb: 34 34 34;
}
html {
    font-size: clamp(0.875rem, 0.786rem + 0.45vw, 1rem);
    font-family: YakuHanJPs, "Noto Sans JP", Meiryo, sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
p {
    line-height: 1.75;
}
.view_pc {
    display: none;
}
.view_sp {
    display: block;
}
@media only screen and (min-width: 640px) {
    .view_pc {
        display: block;
    }
    .view_sp {
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    html {
        font-size: clamp(0.875rem, 0.461rem + 0.86vw, 1rem);
    }
}
@media only screen and (min-width: 1000px) {
    html {
        font-size: 16px;
    }
}



/* ==========================================================================
   Layout
   ========================================================================== */

/* wrapper
   ----------------------------------------------------------------- */

.l-wrapper {
    width: 100%;
}

/* header
   ----------------------------------------------------------------- */

.l-header {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-main);
}
.l-header__logo {
    width: 10rem;
    height: auto;
}

/* navigation
   ----------------------------------------------------------------- */

.l-navigation {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-base);
    overflow-x: auto;
    white-space: nowrap;
}

/* main
   ----------------------------------------------------------------- */

.l-main {
    width: 100%;
    padding: 0 1rem;
}


/* footer
   ----------------------------------------------------------------- */

.l-footer {
    padding: 1rem;
    background-color: var(--color-main);
}


/* footer
   ----------------------------------------------------------------- */

.l-pageTop {
    display: none;
	width: 3.75rem;
	height: 3.75rem;
	background-color: var(--color-main);
	border-radius: 100%;
	overflow: hidden;
	position: fixed;
	right: 1em;
	bottom: 1em;
}
.l-pageTop a {
	display: block;
}

/* container
   ----------------------------------------------------------------- */

.l-container {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto;
}

/* article
   ----------------------------------------------------------------- */

.l-article-content .txt {
    margin: 2rem 0;
}
.l-article-footer {
    margin-top: 4rem;
}



/* ==========================================================================
   Component
   ========================================================================== */

/* .c-btn
   ----------------------------------------------------------------- */

.c-btn {
    display: block;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--color-main);
    border-radius: 3px;
    box-shadow: 0 5px 0 #771d1d;
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    transition: opacity 0.2s;
}
.c-btn:hover {
    opacity: 0.5;
}

/* .c-hr
   ----------------------------------------------------------------- */

.c-hr {
    margin: 4rem 0;
    border-top: 1px solid rgb(var(--color-black-rgb) / 0.25);
}

/* .c-breadcrumb
   ----------------------------------------------------------------- */

.c-breadcrumb__item {
    display: inline-block;
    font-size: 0.875rem;
    position: relative;
}
.c-breadcrumb__item:not(:first-child) {
    margin-left: 0.5rem;
    padding-left: 1.25rem;
}
.c-breadcrumb__item:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 1px;
    margin-right: 0.25rem;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-left: 0;
    color: rgb(var(--color-black-rgb) / 0.25);
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.c-breadcrumb__item:last-child {
    margin-right: 1rem;
}
.c-breadcrumb__item > a {
    color: var(--color-main);
    transition: opacity 0.2s;
}
.c-breadcrumb__item > a:hover {
    opacity: 0.5;
}

/* .c-footer-copyright
   ----------------------------------------------------------------- */

.c-footer-copyright {
    color: var(--color-white);
    font-size: 0.875rem;
    text-align: center;
}

/* .c-home-header
   ----------------------------------------------------------------- */

.c-home-header {
    display: grid;
    gap: 2rem;
}
.c-home-header__logo {
    text-align: center;
}
.c-home-header__ttl {
    display: grid;
    justify-content: center;
    gap: 0.75em;
    font-size: clamp(1.125rem, 0.5rem + 3.13vw, 2rem);
    font-weight: bold;
    text-align: center;
}
.c-home-header__sub {
    color: var(--color-main);
    font-family: "Shippori Mincho B1", serif;
    font-size: 0.875em;
}
.c-home-header__main {
    padding: 0.5em 1em;
    border: 2px solid var(--color-black);
    border-radius: 100vh;
}
@media only screen and (min-width: 768px) {
    .c-home-header {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .c-home-header__ttl {
        justify-content: flex-start;
    }
    .c-home-header__sub {
        font-size: 1em;
    }
}

/* .c-home-lede
   ----------------------------------------------------------------- */

.c-home-lede {
    margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
    .c-home-lede {
        text-align: center;
    }
}

/* .c-section-ttl
   ----------------------------------------------------------------- */
   
.c-section-ttl {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}
.c-section-ttl__en {
    display: inline-block;
    margin-bottom: 0.5em;
    padding-bottom: 0.25em;
    border-bottom: 2px solid currentColor;
    color: var(--color-main);
    font-family: "Pacifico", cursive;
}
.c-section-ttl__ja {
    display: block;
    font-size: 0.75em;
    font-weight: bold;
}

/* .c-post-list
   ----------------------------------------------------------------- */

.c-post-list {
    display: grid;
    gap: 1rem;
}
.c-post-list__item {
    display: block;
    border: 2px solid currentColor;
    border-radius: 0.5rem;
    transition: opacity 0.2s;
    overflow: hidden;
}
.c-post-list__item:hover {
    opacity: 0.5;
}
.c-post-list__img {
    aspect-ratio: 8 / 5;
}
.c-post-list__img > img {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.c-post-list__txt {
    flex-grow: 1;
    padding: 2rem;
}
.c-post-list__txt .txt span {
    display: inline-block;
}
.c-post-list__txt .date {
    margin-top: 1rem;
    color: rgb(var(--color-black-rgb) / 0.5);
    font-size: 0.875rem;
    text-align: right;
}
.c-post-list__txt .date::before {
    content: "#";
    margin-right: 0.25rem;
}
@media only screen and (min-width: 640px) {
    .c-post-list__item {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .c-post-list__txt {
        display: flex;
        flex-direction: column;
    }
    .c-post-list__txt .txt {
        flex-grow: 1;
    }
}

/* .c-post-list
   ----------------------------------------------------------------- */

.c-post-list--past {
    display: grid;
    gap: 1rem;
}
.c-post-list--past .c-post-list__item {
    display: flex;
    flex-direction: column;
}
@media only screen and (min-width: 640px) {
    .c-post-list--past {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* .c-post-ttl
   ----------------------------------------------------------------- */

.c-post-ttl {
    margin-bottom: 1rem;
    color: var(--color-main);
    font-size: 1.5rem;
    line-height: 1.75;
}
.c-post-ttl__en {
    font-family: "Pacifico", cursive;
}
.c-post-ttl__ja {
    font-weight: bold;
}
.c-post-ttl__en::after {
    content: "/";
    margin: 0 0.5em;
}
@media only screen and (min-width: 640px) {
    .c-post-ttl {
        font-size: clamp(1.125rem, 0.458rem + 1.67vw, 1.5rem);
    }
}
@media only screen and (min-width: 1000px) {
    .c-post-ttl {
        font-size: 1.5rem;
    }
}

/* .c-article
   ----------------------------------------------------------------- */

.c-article-ttl {
    margin: 4rem 0 2rem;
    padding: 0.5em 1em;
    border: 2px solid currentColor;
    border-radius: 100vh;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.75;
}
.c-article-img__wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.c-article-img figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.75;
}
@media only screen and (min-width: 640px) {
    .c-article-img__wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* .c-item-info
   ----------------------------------------------------------------- */

.c-item-info {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    background-color: #f8f6e7;
    border-radius: 3px;
}
.c-item-info:not(:first-child) {
    margin-top: 1rem;
}
.c-item-info__img {
    border-radius: 3px;
    overflow: hidden;
}
.c-item-info__lede {
    margin-bottom: 1rem;
}
.c-item-info__ttl {
    color: var(--color-main);
    font-size: 1.125rem;
    font-weight: bold;
}
.c-item-info__price {
    margin-top: 0;
    text-align: right;
}
.c-item-info__price::before {
    content: "……";
    margin-right: 0.5rem;
}
.c-item-info__note {
    margin-top: 1rem;
    color: rgb(var(--color-black-rgb) / 0.75);
    font-size: 0.875rem;
}
.c-item-info__note::before {
    content: "■";
    margin-right: 0.5rem;
}
@media only screen and (min-width: 640px) {
    .c-item-info {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ==========================================================================
   Project
   ========================================================================== */

/* .p-article-header
   ----------------------------------------------------------------- */

.p-article-header__lede {
    margin-top: 2rem;
    color: rgb(var(--color-black-rgb) / 0.5);
    font-size: clamp(1.25rem, 0.803rem + 2.23vw, 1.75rem);
    font-weight: bold;
}
.p-article-header__txt {
    margin: 2rem 0
}