@charset "utf-8";
/*---------------------------------------------------------------------
Common Style
common.css
-----------------------------------------------------------------------
Copyright 2025 (c) linkpath Allrights Reserved.
Coding: Hinako Hayashi
Last Update: 2025.06.12
---------------------------------------------------------------------*/
@media screen and (max-width: 959px) {}
@media screen and (max-width: 482px) {}
/*===========================================================
    root
===========================================================*/
:root {
    --color-main: rgb(110, 81, 0);
    --color-sub: rgb(213, 209, 172);
    --color-black: rgb(0, 0, 0);
    --color-white: rgb(255, 255, 255);
    --color-grey: rgb(92, 92, 92);
    --color-lightgrey: rgb(199, 199, 199);
    --color-darkgrey: rgb(77, 77, 77);
    --color-beige: rgb(237, 237, 233);

    --color-main__transparent: rgba(110, 81, 0, 0.3);
    --color-sub__transparent: rgb(213, 209, 172, 0.5);
    --color-white__transparent: rgba(255, 255, 255, 0.4);
    --color-lightgrey__transparent: rgba(199, 199, 199, 0.2);
    --color-black__transparent: rgba(0, 0, 0, 0.4);
    --color-beige__transparent: rgba(237, 237, 233, 0.6);


    /*border-radius*/
    --box-radius: 2em;
    --box-radius__s: 1em;
    --box-radius__l: 4em;
    --section-radius: 0.5em;
}
@media screen and (max-width: 959px) {
    :root {
        /*border-radius*/
        --box-radius: 1em;
        --box-radius__s: 0.75em;
        --box-radius__l: 2em;
    }
}

/*===========================================================
    common
===========================================================*/
html ,body ,.wrap {
    margin: 0;
    padding: 0;
    width: 100vw;
    width: 100dvw;
}
html ,body {
    scroll-behavior: smooth;
}

/*===========================================================
    body
===========================================================*/
body {
    font-family: "Josefin Sans", "Noto Sans JP";
    font-style: normal;
    color: var(--color-grey);
    overflow-x: hidden;
    height: 100vh;
    height: 100dvh;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5em;
}
/* スクロール禁止 */
body.no-scroll {
	overflow: hidden;
}

a {
    color: var(--color-grey);
    display: block;
    transition: all 0.3s;
}

img,
picture {
    width: 100%;
    display: block;
}

/*===========================================================
    font
===========================================================*/
.noto {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
}
.josefin {
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
}

/*===========================================================
    base
===========================================================*/
/* width */
.width-1350 {
    max-width: 1350px;
    width: 90%;
    margin: 0 auto;
}

/*background*/
.back-main { background: var(--color-main);}
.back-sub { background: var(--color-sub);}
.back-black { background: var(--color-black);}
.back-white { background: var(--color-white);}
.back-grey { background: var(--color-grey);}
.back-lightgrey { background: var(--color-lightgrey);}
.back-darkgrey { background: var(--color-darkgrey);}
.back-beige { background: var(--color-beige);}

.back-sub__transparent { background: var(--color-sub__transparent);}
.back-white__transparent { background: var(--color-white__transparent);}

/* border */
.border-main { border: solid 1.5px var(--color-main);}
.border-grey { border: solid 1.5px var(--color-grey);}

/*color*/
.text-main { color: var(--color-main);}
.text-sub { color: var(--color-sub);}
.text-black { color: var(--color-black);}
.text-white { color: var(--color-white);}
.text-grey { color: var(--color-grey);}
.text-lightgrey { color: var(--color-lightgrey);}
.text-darkgrey { color: var(--color-darkgrey);}
.text-beige { color: var(--color-beige);}

.text-main__transparent { color: var(--color-main__transparent);}

/* font weight */
.weight-300 { font-weight: 300;}
.weight-400 { font-weight: 400;}
.weight-500 { font-weight: 500;}
.weight-600 { font-weight: 600;}
.weight-700 { font-weight: 700;}
.weight-800 { font-weight: 800;}
.weight-900 { font-weight: 900;}

/*svg fill*/
svg path.main { fill: var(--color-main);}
svg path.sub { fill: var(--color-sub);}
svg path.black { fill: var(--color-black);}
svg path.white { fill: var(--color-white);}
svg path.grey { fill: var(--color-grey);}
svg path.lightgrey { fill: var(--color-lightgrey);}
svg path.darkgrey { fill: var(--color-darkgrey);}
svg path.beige { fill: var(--color-beige);}