@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@800&family=Noto+Sans+JP:wght@700&display=swap');

:root {
    --text-color: #000;
    --theme-color: #258C33;
    --sub-color: #2F67C0;
    --sub-fontcolor: #fff;
    --btn-color: #fff;
    --btn-fontcolor: #258C33;
    --footer-bgcolor: #2F67C0;
    --color1: #3850ED;
    --color2: #00C27E;
    --color3: #FF18FF;
    --color4: #ff9900;
    --title-fontfamily: 'M PLUS Rounded 1c';
    --title-fontweight: 800;
    --title2-fontfamily: 'Noto Sans JP';
    --title2-fontweight: 700;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    scroll-snap-type: y proximity;
}

body, table {
    margin: 0;
    font-size: 18px;
    font-family: sans-serif;
    font-weight: 200;
    line-height: 2;
}

h1 a, h1 a:link, h1 a:visited, h1 a:hover, h1 a:active,
h2 a, h2 a:link, h2 a:visited, h2 a:hover, h2 a:active,
h3 a, h3 a:link, h3 a:visited, h3 a:hover, h3 a:active,
h4 a, h4 a:link, h4 a:visited, h4 a:hover, h4 a:active,
h5 a, h5 a:link, h5 a:visited, h5 a:hover, h5 a:active,
h6 a, h6 a:link, h6 a:visited, h6 a:hover, h6 a:active {
    color: inherit;
    text-decoration: inherit;
}

img {
    max-width: 100%;
}

embed, object {
    width: 100% !important;
    height: 80vh !important;
}

iframe {
    display: block;
    width: 100%;
}

iframe.gmap {
    height: 360px;
    border: 0;
}

input[type="text"], input[type="tel"], input[type="url"], input[type="number"], input[type="email"], textarea {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.block {
    display: block;
    margin: 0 auto;
}
.button {
    display: inline-block;
    max-width: 100%;
    min-width: 240px;
    padding: 0.5em 1.5em;
    text-align: center;
    background: var(--btn-fontcolor);
    color: var(--btn-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.6rem;
    text-decoration: none;
    font-size: inherit;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: var(--sub-color);
    color: var(--btn-color);
}

.button.mini {
    padding: 0.5em 1.5em;
    font-weight: bold;
}

input[type="text"], input[type="email"], textarea {
    display: block;
    width: 100%;
}

.invalid-field {
    background-color: #ffcccc;
}

@media (prefers-reduced-motion: reduce) {
    input[type="text"], input[type="email"], textarea {
        transition: none;
    }
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, textarea::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

input[type="text"]::placeholder, input[type="email"]::placeholder,
textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    select {
        transition: none;
    }
}

select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

select[multiple], select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}

select:disabled {
    background-color: #e9ecef;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
}

textarea {
    resize: vertical;
    height: calc(9em + 0.75rem + 2px);
    min-height: calc(1.5em + 0.75rem + 2px);
}

.snap-start {
    scroll-snap-align: start;
}

.snap-end {
    scroll-snap-align: end;
}

.block {
    display: block;
    margin: 0 auto;
}

#header, #nav-bar {
    width: 100%;
    height: 4rem;
}

#nav-bar {
    position: fixed;
    background-color: var(--sub-color);
    margin: 0;
    padding: 0 20px;
    z-index: 5;
}

#nav-bar .container {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

#nav-bar a {
    color: var(--sub-fontcolor);
    text-decoration: none;
}

#site-title {
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

#site-title a {
    font-size: 2.5rem;
}

#site-title a, .outline-rw {
    margin: 0;
    font-family: var(--title-fontfamily);
    font-weight: var(--title-fontweight);
    color: var(--theme-color);
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF, 0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.outline-r {
    margin: 0;
    font-family: var(--title-fontfamily);
    font-weight: var(--title-fontweight);
    color: #FFF;
    text-shadow: 2px 2px 0 var(--theme-color), -2px -2px 0 var(--theme-color),
        -2px 2px 0 var(--theme-color), 2px -2px 0 var(--theme-color),
        0px 2px 0 var(--theme-color), 0 -2px 0 var(--theme-color),
        -2px 0 0 var(--theme-color), 2px 0 0 var(--theme-color);
}

#site-title span, .belonging {
    display: inline-block;
    border-radius: 0.8em;
    background: var(--theme-color);
    border: 2px solid #fff;
    color: #fff;
    font-family: var(--title2-fontfamily);
    font-weight: var(--title2-fontweight);
    margin-left: 0.6rem;
    padding: 0.2em 0.3em 0.3em;
    vertical-align: middle;
}

.outline-w {
    font-family: var(--title2-fontfamily);
    font-weight: var(--title2-fontweight);
    color: var(--theme-color);
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF, 0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.outline {
    font-family: var(--title2-fontfamily);
    font-weight: var(--title2-fontweight);
    color: #fff;
    text-shadow: 2px 2px 0 var(--theme-color), -2px -2px 0 var(--theme-color),
        -2px 2px 0 var(--theme-color), 2px -2px 0 var(--theme-color),
        0px 2px 0 var(--theme-color), 0 -2px 0 var(--theme-color),
        -2px 0 0 var(--theme-color), 2px 0 0 var(--theme-color);
}

.header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    line-height: 1;
}

.header-nav-list li.link a {
    display: block;
    font-weight: bold;
    padding: 0.5rem 1.8rem 0.5rem 2.2rem;
    background: left center / 1.5rem auto no-repeat url("../../images/brush.svg");
}

.header-nav-list li.link a:hover {
    background-size: contain;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-align: center;
}

.icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1px;
    color: transparent !important;
}

.fb {
    background: center center / contain no-repeat url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-facebook' viewBox='0 0 16 16'%3e%3cpath d='M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z'/%3e%3c/svg%3e");
}

.twitter {
    background: center center / contain no-repeat url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-twitter' viewBox='0 0 16 16'%3e%3cpath d='M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z'/%3e%3c/svg%3e");
}

.header-nav-list li.sns {
    margin-left: 1rem;
}

.header-nav-list li.sns:first-child {
    margin-left: 0;
}

#menu-open-button, #menu-close-button {
    display: none;
}

@media screen and (max-width: 1000px) {
    html {
        scroll-padding-top: 3.2rem;
    }

    #header, #nav-bar, #nav-bar .container {
        height: 3.2rem;
    }

    #site-title a {
        font-size: 2rem;
    }

    #menu-open-button, #menu-close-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        cursor: pointer;
        display: inline-block;
        margin: 0;
        padding: 0;
    }

    #menu-open-button {
        margin-right: -20px;
    }

    #menu-open-button span, #menu-close-button span {
        display: none;
    }

    #menu-open-button:before {
        display: block;
        content: "";
        width: 48px;
        height: 48px;
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.5%2012a.5.5%200%200%201%20.5-.5h10a.5.5%200%200%201%200%201H3a.5.5%200%200%201-.5-.5zm0-4a.5.5%200%200%201%20.5-.5h10a.5.5%200%200%201%200%201H3a.5.5%200%200%201-.5-.5zm0-4a.5.5%200%200%201%20.5-.5h10a.5.5%200%200%201%200%201H3a.5.5%200%200%201-.5-.5z%22%2F%3E%3C%2Fsvg%3E");
        background-size: contain;
    }

    #menu-close-button:before {
        display: block;
        content: "";
        width: 32px;
        height: 32px;
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23cccccc%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M13.854%202.146a.5.5%200%200%201%200%20.708l-11%2011a.5.5%200%200%201-.708-.708l11-11a.5.5%200%200%201%20.708%200Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.146%202.146a.5.5%200%200%200%200%20.708l11%2011a.5.5%200%200%200%20.708-.708l-11-11a.5.5%200%200%200-.708%200Z%22%2F%3E%3C%2Fsvg%3E");
        background-size: contain;
    }

    #header-nav-bg {
        position: fixed;
        top: 0;
        left: 0;
        box-sizing: border-box;
        width: 100vw;
        height: 100vh;
        background-color: rgba(32, 32, 32, 0);
        display: block;
        padding: 20px;
        transition: background-color 0.2s linear;
        display: none;
        z-index: 20;
        overflow-y: auto;
    }

    #header-nav-bg.show {
        background-color: rgba(32, 32, 32, 0.3);
    }

    #header-nav-bg.appear {
        display: block;
    }

    #nav-menu-close-area {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        cursor: pointer;
    }

    #header-nav {
        background: #fff;
        color: #999;
        margin: 0 auto;
        width: 100%;
        max-width: 1100px;
        border-radius: 5px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
        cursor: auto;
        transform: translateY(-120vh);
        opacity: 0;
        transition: all 0.5s ease-out;
        z-index: 30;
    }

    #header-nav-bg.show #header-nav {
        opacity: 1;
        transform: translateY(0);
    }

    #nav-header {
        text-align: right;
        padding: 8px 4px 4px 4px;
        border-bottom: 1px solid #eee;
    }

    .header-nav-list {
        display: block;
    }

    .header-nav-list li a {
        display: block;
    }

    #nav-bar .header-nav-list li a {
        color: #aaa;
    }

    #nav-bar .header-nav-list li.link a {
        display: block;
        font-weight: normal;
        padding: 1.3rem 3rem 1.3rem 4rem;
        background: left 1.1rem center / 1.5rem auto no-repeat url("../../images/brush.svg");
    }

    #nav-bar .header-nav-list li.link a:hover {
        color: #000;
        background: left 1rem center / 2rem auto no-repeat url("../../images/brush.svg");
        background-color: #eee;
    }

    .header-nav-list li.sns a {
        width: 100%;
        height: 3rem;
        background-size: 1.8rem auto;
        background-color: #ddd;
    }

    .header-nav-list li.sns a:hover {
        background-color: #ccc;
    }

    .header-nav-list li.sns {
        margin: 0;
    }

    .header-nav-list li:last-child a {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .header-nav-list li.contact a>span {
        width: 100%;
    }

    .nav-list {
        display: block;
    }

    .nav-list li {
        margin: 1rem auto;
    }
}

.box {
    scroll-snap-align: start;
    width: 100%;
    min-height: calc(100vh - 4rem);
    padding: 4rem 20px;
    margin: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.box header {
    margin: 0 0 3em 0;
}

.box header h1 {
    margin: 0;
    font-size: 6rem;
    line-height: 1.3;
    text-align: center;
    font-family: var(--title-fontfamily);
    font-weight: var(--title-fontweight);
    color: var(--theme-color);
}

.box header h1 ruby rt {
    font-size: 0.36em;
    line-height: 1.3;
}

.box header h1 span.belonging {
    font-size: 0.3em;
    margin-left: 0
}

.box header h1 span.sub {
    display: block;
    font-size: 0.6em;
}

.box header p {
    margin: 0;
    font-size: 1.5rem;
    text-align: center;
    line-height: 3rem;
}

.box header p strong {
    font-size: 1.5em;
    color: #ffff00;
}

.box.flex {
    min-height: 0;
}

@media screen and (max-width: 960px) {
    .box {
        min-height: calc(100vh - 3.2rem);
    }

    .box header p {
        font-size: 1rem;
        line-height: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .box {
        padding: 2rem 20px;
    }

    .box header h1 {
        font-size: 4rem;
    }
}

.box-container {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.7s 0.5s ease-out, opacity 0.7s 0.5s ease-out;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    font-weight: normal;
    text-align: justify;
}

@media screen and (min-width: 1100px) {
    .box-container {
        width: 1000px;
    }
}

@media screen and (min-width: 1180px) {
    .box-container {
        width: 1140px;
    }
}

.box-container.unshown {
    transform: translateY(64px);
    opacity: 0;
}

.box a {
    color: var(--theme-color);
    text-decoration: none;
}

.box a:hover {
    color: var(--sub-color);
    text-decoration: none;
}

#top-box {
    background-image: url("../../images/kusamizu_brush_smile.png"), url("../../images/kamo.jpg");
    background-position: bottom -10vh right calc(43vw - 600px), center;
    background-size: auto min(100vh, 100vw, 1500px), cover;
    display: block;
    font-size: 4rem;
}

#top-box .box-body {
    line-height: 1.5;
    margin: 0;
}

#top-box .box-body p {
    margin: 0;
}

@media screen and (max-width: 1000px) {
    #top-box {
        font-size: 3rem;
        background-position: bottom -10vh left 40vw, center;
    }
}

@media screen and (max-width: 600px) {
    #top-box {
        font-size: 2rem;
        background-position: bottom 0 left 40vw, center;
    }
}

@media screen and (max-height: 640px) {
    #top-box {
        font-size: 2rem;
        background-position: bottom -20vh right -3vw, center;
    }
}

@media screen and (max-width: 360px) {
    #top-box {
        font-size: 1.5rem;
        background-position: bottom 0 left 40vw, center;
    }
}

#profile {
    background-image: url("../../images/kusamizu.png"), linear-gradient(#ccc, #eee);
    background-position: bottom 0 right calc(50vw - 600px), center;
    background-size: auto min(64vh, 60vw, 1200px), cover;
}

#profile .box-body {
    padding-right: 45%;
}

@media screen and (max-width: 1000px) {
    #profile {
        background-position: bottom 0 right 1rem, center;
    }

    #profile .box-body {
        padding-right: 50%;
    }
}

@media screen and (max-width: 640px) {
    #profile {
        background-position: bottom 0 center, center;
        background-size: auto 52vh, cover;
    }

    #profile .box-body {
        padding-right: 0;
        padding-bottom: 50vh;
    }
}

@media screen and (max-width: 480px) {
    #profile header h1 {
        font-size: 2rem;
    }
}

#policy {
    background-image: url("../../images/kuni_cosmos.jpg");
}

#policy header h1 {
    font-size: 4rem;
    margin-bottom: 0.5em;
}

#policy header h1 span:first-child {
    font-size: 0.5em;
    display: block;
    margin-bottom: 0.5rem;
}

.policy-list {
    list-style: none;
    margin: 3rem 0;
    padding: 0;
}

.policy-list li {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.5rem;
    color: var(--color1);
}

.policy-list li:before {
    content: "";
    display: block;
    width: 10rem;
    height: 10rem;
    margin-right: 0.5rem;
    background: center / cover no-repeat url("../../images/brushup.png");
    background-color: var(--color1);
    flex: 1 0 10rem;
}

.policy-list li h2 {
    margin: 0 0 1rem 0;
    line-height: 1.3;
    vertical-align: bottom;
}

.policy-list li h2 span.number {
    display: inline-block;
    line-height: 1;
    padding: 0.5rem 1rem;
    font-size: 0.75em;
    border-radius: 1.3rem;
    color: #fff;
    margin-bottom: 0.2rem;
    ;
    background-color: var(--color1);
    vertical-align: 0.3rem;
    ;
    box-shadow: 2px 2px 0 #FF0, -2px -2px 0 #FF0,
        -2px 2px 0 #FF0, 2px -2px 0 #FF0,
        0px 2px 0 #FF0, 0 -2px 0 #FF0,
        -2px 0 0 #FF0, 2px 0 0 #FF0;
}

.policy-list li h2 span.title {
    text-shadow: 2px 2px 0 #FF0, -2px -2px 0 #FF0,
        -2px 2px 0 #FF0, 2px -2px 0 #FF0,
        0px 2px 0 #FF0, 0 -2px 0 #FF0,
        -2px 0 0 #FF0, 2px 0 0 #FF0;
}

.policy-list li p {
    margin: 0;
    line-height: 1.5;
}

.policy-list li:nth-child(2):before, .policy-list li:nth-child(2) h2 span.number {
    background-color: var(--color2);
}

.policy-list li:nth-child(3):before, .policy-list li:nth-child(3) h2 span.number {
    background-color: var(--color3);
}

.policy-list li:nth-child(4):before, .policy-list li:nth-child(4) h2 span.number {
    background-color: var(--color4);
}

.policy-list li:nth-child(2) {
    color: var(--color2);
}

.policy-list li:nth-child(3) {
    color: var(--color3);
}

.policy-list li:nth-child(4) {
    color: var(--color4);
}

@media screen and (max-width: 960px) {
    #policy header h1 {
        font-size: 3rem;
    }

    #policy header p {
        text-align: justify;
    }

    #policy header p br {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    #policy header h1 {
        font-size: 2rem;
    }

    .policy-list li {
        display: block;
        font-size: 1rem;
    }

    .policy-list li:before {
        margin: 0 auto 1rem;
    }

    .policy-list li h2 {
        display: block;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 360px) {
    #policy header h1 {
        font-size: 1.5rem;
    }
}

.sns-tl {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

.sns-tl>div {
    width: 50%;
    padding: 0 15px;
}

.fb-tl {
    text-align: center;
}

.sns-tl iframe, .fb-page, .fb-page iframe, {
    max-height: 640px !important;
    max-width: min(100%, 500px);
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .sns-tl {
        display: block;
    }

    .sns-tl>div {
        width: 100%;
        padding: 15px 0;
    }
}

@media screen and (max-width: 360px) {
    #actions header h1 {
        font-size: 3rem;
    }
}

#voices {
    background: #efc;
}

.voice {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
    margin: 2rem 0;
}

.voice > dt {
    width: 240px;
    padding-left: 40px;
    text-align: center;
    line-height: 1.5;
    flex: 1 0 240px;
}

.voice .name {
    font-size: 2rem;
}

.voice .photo {
    margin-bottom: 0.5rem;
}

.voice img {
    width: 180px;
}

.voice > dd {
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    margin: 0 0 5rem 0;
    padding: 1.5rem;
    position: relative;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
}

.voice.no-image > dd {
    margin: 0;
}

.voice > dd:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 15px);
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #fff;
    border-right: none;
}

.voice > dd > p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--theme-color);
}

.more {
    display: none;
    opacity: 0;
}

.more {
    display: none;
    transform: translateY(64px);
    opacity: 0;
    transition: transform 0.7s 0.5s ease-out, opacity 0.7s 0.5s ease-out;
}

.more.visible {
    display: block;
}

.more.fade-in {
    transform: translateY(0);
    opacity: 1;
}

@media screen and (max-width: 640px) {
    .voice {
        flex-direction: column-reverse;
        margin: 2rem 0;
    }

    .voice > dt {
        width: 200px;
        padding-left: 0;
        padding-top: 30px;
        flex: 0 1 auto;
    }

    .voice > dd {
        margin: 0;
    }

    .voice > dd:before {
        left: calc(50% - 15px);
        top: 100%;
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        border-top: 20px solid #fff;
        border-bottom: none;
    }
}

#footer {
    background-color: var(--footer-bgcolor);
    font-size: 0.9rem;
    font-weight: normal;
}

#footer .container {
    max-width: 1240px;
    padding: 2rem 20px;
    margin: 0 auto;
    background: bottom -30px right 40px / auto 300px no-repeat url("../../images/kusamizu_brush_s.png");
    text-align: left;
}

#footer p {
    line-height: 1.5;
    margin: 0;
}

#footer p.description {
    font-size: 1.5rem;
    font-family: var(--title2-fontfamily);
    font-weight: var(--title2-fontweight);
    font-weight: 100;
}

#footer p.copyright {
    border-top: var(--sub-fontcolor) 1px solid;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

#footer,
#footer a,
#footer a:link,
#footer a:visited,
#footer a:hover,
#footer a:active {
    color: var(--sub-fontcolor);
    text-decoration: none;
}

#footer p.logo {
    font-family: var(--title-fontfamily);
    font-weight: var(--title-fontweight);
    font-size: 2rem;
    line-height: 1.2;
    margin: 1rem 0;
}

@media screen and (max-width: 960px) {
    #footer .container {
        text-align: center;
        padding-bottom: 100px;
    }

    #footer p.description {
        font-size: 1rem;
    }
}

@media screen and (max-width: 800px) {
    #footer .container {
        padding-bottom: 180px;
        background-position: bottom -30px right -20px;
        background-size: auto 200px;
    }
}

@media screen and (max-width: 480px) {
    #footer p.logo {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 360px) {
    #site-title a {
        font-size: 1.5rem;
    }
}
