@charset "UTF-8";

/* base (reset)
---------------------------------------------------*/
body {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}
ul,
ol,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}
ol,
li {
    list-style: none;
}
img {
    border: none;
    line-height: 0;
    font-size: 0;
    vertical-align: middle;
    max-width: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* ---------- */
a {
    margin: 0;
    padding: 0;
    font-size: inherit;
    background: transparent;
}
th,
td {
    font-style: normal;
    font-weight: normal;
    font-size: inherit;
    empty-cells: show;
}
input,
select {
    vertical-align: middle;
}
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    border-radius: 0;
}
pre {
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: pre-wrap; /* CSS3 */
    word-wrap: break-word; /* IE 5.5+ */
}
figure {
    margin: 0;
}

/* Selected Text
---------------------------------------------------*/
::selection {
    background: #191919;
    color: #fff;
}

/* color
---------------------------------------------------*/
:root {
    --main-color: #333333;
    --primary-color: #06c688;
    --secondary-color: #3C91E6;
    --background-color: #fafafa;
    --white-color: #ffffff;
    --black-color: #000000;
    --gray-color: #808080;
    --silver-color: #c0c0c0;
    --red-color: #F45B69;
    --orange-color: #FFC914;
    --blue-color: #3C91E6;
    --green-color: #50d372;
    --snow-color: #fffafa;

    /*---*/
    --success-color: #06C656;
    --danger-color: #ff0000;
    --warning-color: #FFC914;
    --notice-color: #ff6e6e;
    --info-color: #5F5449;
    --light-color: #EBFCFB;
    --dark-color: #3C91E6;
    /*--*/
    --font-size-x: 36px;
    --font-size-l: 24px;
    --font-size-m: 20px;
    --font-size-n: 16px;
    --font-size-s: 12px;
    --font-size-ss: 10px;
    /*--*/
    --length-100: 100px;
    --length-90: 90px;
    --length-80: 80px;
    --length-70: 70px;
    --length-60: 60px;
    --length-50: 40px;
    --length-40: 40px;
    --length-30: 30px;
    --length-20: 20px;
    --length-10: 10px;
    --length-5: 5px;
}

/* 768px */
@media screen and (max-width: 768px) {
    :root {
        --font-size-x: 6.25vw;
        --font-size-l: 5.625vw;
        --font-size-m: 4.375vw;
        --font-size-n: 3.75vw;
        --font-size-s: 2.8125vw;
        --font-size-ss: 2.5vw;
        /*---*/
        --length-100: 15.625vw;
        --length-90: 14.0625vw;
        --length-80: 12.5vw;
        --length-70: 10.9375vw;
        --length-60: 9.375vw;
        --length-50: 7.8125vw;
        --length-40: 6.25vw;
        --length-30: 4.6875vw;
        --length-20: 3.125vw;
        --length-10: 1.5625vw;
        --length-5: 0.78125vw;
    }
}

/* BASE
---------------------------------------------------*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    overflow-y: scroll;
}
body {
    width: 100%;
    line-height: 1;
    color: #333;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: #fafafa;
    position: relative;
}
body.guard {
    -webkit-user-select: none;
    user-select: none;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.sp-no {
    display: block;
}
br.sp-no {
    display: inline;
}
.pc-no {
    display: none;
}
br.pc-no {
    display: none;
}
.en {
    font-family: 'Roboto', sans-serif;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(39, 57, 76, 0.6);
    border-radius: 10px;
    box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}

/* scrollbar */
.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track,
.scrollbar-thin::-webkit-scrollbar-thumb {
    border-radius: 0;
}
/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    body {
        font-size: 3.125vw;
        -webkit-text-size-adjust: 100%;
        -webkit-touch-callout: none; /* リンク長押しのポップアップを無効化 */
        -webkit-user-select: none; /* テキスト長押しの選択ボックスを無効化 */
    }
    .pc-no {
        display: block;
    }
    br.pc-no {
        display: inline;
    }
    .sp-no {
        display: none;
    }
    br.sp-no {
        display: none;
    }
}


/* link
---------------------------------------------------*/
a {
    text-decoration: none;
}
a:link,
a:visited,
a:active {
    color: var(--main-color);
}
a:hover {
    color: var(--secondary-color);
}
a,
.hover {
    -moz-transition: opacity 0.5s;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.hover:hover {
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
a.u {
    text-decoration: underline;
}

/* clearfix
---------------------------------------------------*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix {
    min-height: 1px;
    zoom: 1;
}
* html .clearfix {
    height: auto;
    overflow: hidden;
}

/* INPUT
---------------------------------------------------*/
input, button, select, textarea {
    font-family: inherit;
    font-size: 1em;
    color: inherit;
    margin: 0;
}
input, button {
    border: 0;
    line-height: normal;
    vertical-align: inherit;
    *vertical-align: middle;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    cursor: pointer;
    -webkit-appearance: button;
    *overflow: visible;
    border: 0;
    outline: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea,
select {
    overflow: hidden;
    outline: none;
}

input:focus {
    outline: 0 none black;
}

/* ------ */
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    width: 100%;
    line-height: 1.0em;
    color: var(--main-color);
    background-color: var(--snow-color);
    border: 1px solid var(--silver-color);
    border-radius: 0.3em;
    vertical-align: middle;
    padding: 0.5em;
}
input[type="color"] {
    width: 10%;
}

input[type="date"],
input[type="datetime-local"] {
    width: auto;
}

textarea {
    height: 10em;
    line-height: 1.4em;
    color: var(--main-color);
    overflow: auto;
}

select {
    width: 100%;
    color: var(--main-color);
    background-color: var(--snow-color);
    border: 1px solid var(--silver-color);
    border-radius: 0.3em;
    vertical-align: middle;
    padding: 0.715em 0.5em;
    line-height: 1.0em;
}

input:read-only {
    border: 0;
    background-color: transparent;
}

input[type="checkbox"]:focus,
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="datetime"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="radio"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus,
textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 2px 1px var(--secondary-color);
    outline: 2px solid transparent;
}

.w100 {width: 100% !important;}
.w80 {width: 80% !important;}
.w60 {width: 60% !important;}
.w50 {width: 50% !important;}
.w40 {width: 40% !important;}
.w30 {width: 30% !important;}
.w20 {width: 20% !important;}
.w300px {width: 300px !important;}
.w200px {width: 200px !important;}
.w100px {width: 100px !important;}
.w80px {width: 80px !important;}
.w60px {width: 60px !important;}
.w40px {width: 40px !important;}
.w30px {width: 30px !important;}
.w20px {width: 20px !important;}
.mw300px {min-width: 300px !important;}
.mw200px {min-width: 200px !important;}
.mw100px {min-width: 100px !important;}
.mw80px {min-width: 80px !important;}
.mw60px {min-width: 60px !important;}
.mw40px {min-width: 40px !important;}
.mw30px {min-width: 30px !important;}
.mw20px {min-width: 20px !important;}

/** placeholder **/
.placeholder {color: #999;}
:placeholder-shown {color: #999;}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {color: #999;}
/* Firefox 18- */
:-moz-placeholder {color: #999;}
/* Firefox 19+ */
::-moz-placeholder {color: #999;}
/* IE 10+ */
:-ms-input-placeholder {color: #999 !important;}

/** cancel-button **/
input[type="search"] {
    -webkit-appearance: searchfield;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: searchfield-cancel-button;
}

input.disabled {
    background-color: #f5f5f5;
}

/* birth */
.birth select {
    width: 25%;
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    input[type="text"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    input[type="url"],
    textarea {
        font-size: 16px;
        -webkit-appearance: none;
    }
    select {
        font-size: 16px;
        -webkit-appearance: none;
    }
    .placeholder,
    :placeholder-shown,
    ::-webkit-input-placeholder,
    :-moz-placeholder,
    ::-moz-placeholder,
    :-ms-input-placeholder {
        font-size: 3.125vw;
    }

    .w300px {width: 46.6875vw !important;}
    .w200px {width: 31.25vw !important;}
    .w100px {width: 15.625vw !important;}
    .w80px {width: 12.5vw !important;}
    .w60px {width: 9.375vw !important;}
    .w40px {width: 6.25vw !important;}
    .w30px {width: 4.6875vw !important;}
    .w20px {width: 3.125vw !important;}
    .mw300px {min-width: 46.6875vw !important;}
    .mw200px {min-width: 31.25vw !important;}
    .mw100px {min-width: 15.625vw !important;}
    .mw80px {min-width: 12.5vw !important;}
    .mw60px {min-width: 9.375vw !important;}
    .mw40px {min-width: 6.25vw !important;}
    .mw30px {min-width: 4.6875vw !important;}
    .mw20px {min-width: 3.125vw !important;}
}


/* toggle-button
---------------------------------------------------*/
.toggle-button {
    position: relative;
    width: 3em;
    text-align: center;
}
.toggle-button input[type="checkbox"] {
    display: none;
}
.toggle-button label {
    display: block;
    height: calc(1.5em + 2px);
    border: 1px solid #999;
    background-color: #999;
    border-radius: 3.4em;
    cursor: pointer;
    /*box-shadow: 1px 1px 3px 0 #888 inset;*/
}
.toggle-button input[type="checkbox"]:checked +label {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.toggle-button .toggle-button-circle {
    position: absolute;
    top: 50%;
    left: 0.1em;
    transform: translate(0, -50%);
    width: 1.4em;
    height: 1.4em;
    background-color: var(--white-color);
    border-radius: 50%;
    transition: 0.2s;
    pointer-events: none;
}
.toggle-button input[type="checkbox"]:checked ~ .toggle-button-circle {
    left: calc(100% - 1.5em);
}


/* svg
---------------------------------------------------*/
svg {
    fill: #000;
}

/* wrapper
---------------------------------------------------*/
#wrapper {
    position: relative;
}

/* contents-wrap */
.contents-wrap {
    position: relative;
    width: 96%;
    max-width: 800px;
    margin: 0 auto;
}
/* section-block */
.section-block {
    padding-top: var(--length-40);
    padding-bottom: var(--length-40);
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    .contents-wrap {
        width: 93.75vw;
    }
}

/* Header
---------------------------------------------------*/
#Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    margin: 0 auto;
    z-index: 99;
}
#Header .logo {
    line-height: 1.6em;
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-m);
    font-weight: 700;
    background-color: var(--primary-color);
    padding: 0.4em 1em;
}
#g-navi {
    border-bottom: 1px solid var(--silver-color);
}
#g-navi .list-menu {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
#g-navi .list-menu li {
    position: relative;
    width: calc(100% / 4);
    text-align: center;
}
#g-navi .list-menu li a {
    display: block;
    text-align: center;
    padding: var(--length-10);
}
#g-navi .list-menu li svg {
    width: var(--length-40);
    fill: var(--gray-color);
}
#g-navi .list-menu li.current svg,
#g-navi .list-menu li a:hover svg {
    fill: var(--primary-color);
}
#g-navi .list-menu li .name {
    color: var(--gray-color);
    font-size: var(--font-size-s);
    margin-top: 0.5em;
}
#g-navi .list-menu li.current .name,
#g-navi .list-menu li a:hover .name {
    color: var(--primary-color);
}
#g-navi .list-menu li.notification::after {
    position: absolute;
    content: '';
    top: var(--length-10);
    right: 20%;
    width: var(--length-10);
    height: var(--length-10);
    background-color: var(--red-color);
    border-radius: 50%;
}

/* main-wrapper
---------------------------------------------------*/
#main-wrapper {
    position: relative;
}

/* modal-contents
---------------------------------------------------*/
#modal-contents {
    width: 100%;
    background-color: #fafafa;
    padding: var(--length-20);
    margin: 0 auto;
}

/* Footer
---------------------------------------------------*/
#Footer {
    padding: var(--length-20) 0;
}
#Footer .copy {
    text-align: center;
    font-size: var(--font-size-s);
}

/* fixed
---------------------------------------------------*/
.fixed {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1;
}
.fixed:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}


/* common
---------------------------------------------------*/
.page-title-block {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: var(--length-60);
    background-color: var(--white-color);
    border-bottom: 1px solid var(--silver-color);
}
/* navi */
.page-title-block .navi {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: var(--length-60);
    height: var(--length-60);
}
.page-title-block .navi svg {
    width: var(--length-30);
    fill: var(--gray-color);
}
/* icons */
.page-title-block .icons {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-right: var(--length-20);
}
.page-title-block .icons .icon {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: var(--length-60);
    height: var(--length-60);
}
.page-title-block .icons .icon svg {
    width: var(--length-30);
    fill: var(--gray-color);
}
/* favorite */
.page-title-block .icons .icon [data-favorite="off"] svg {
    fill: var(--red-color);
}

.ttl-page {
    line-height: 1.6em;
    text-align: center;
    color: var(--gray-color);
    font-size: var(--font-size-m);
    font-weight: bold;
    /**/
    max-width: calc(100% - 300px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ttl-section {
    color: var(--primary-color);
    font-size: var(--font-size-m);
    border-bottom: 0.2em solid var(--primary-color);
    padding-bottom: 0.5em;
    margin: 0.5em auto 1em;
}
.ttl-block {
    color: var(--white-color);
    font-size: var(--font-size-m);
    background-color: var(--primary-color);
    padding: 0.5em;
    margin: 0.5em auto 1em;
}
.ttl-content {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: var(--main-color);
    font-size: var(--font-size-n);
    font-weight: bold;
    margin: 0.5em auto 1em;
}
.ttl-content svg {
    width: var(--length-30);
    fill: var(--white-color);
    background-color: var(--main-color);
    border-radius: 50%;
    padding: var(--length-5);
    margin-right: var(--length-10);
}
.ttl-content.tra svg {
    fill: var(--main-color);
    background-color: transparent;
    border-radius: 0;
}

.ttl-popup {
    line-height: 1.4em;
    text-align: center;
    font-size: var(--font-size-m);
    font-weight: bold;
    margin-bottom: var(--length-20);
}
.ttl-popup + .icon {
    text-align: center;
    margin-bottom: var(--length-40);
}
.ttl-popup + .icon svg {
    width: var(--length-20);
}


/* alert
.alert {
    position: relative;
    padding: 0.5em 1em;
    margin-bottom: 1em;
    border: 1px solid transparent;
    border-radius: 0.2em;
}
.alert-primary {
    color: #035477;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #c00b1a;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}
.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}
.alert-link {
    font-weight: 700;
} */

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

ul.disc li {
    line-height: 1.4em;
    list-style-type: disc;
    margin-left: 1.5em;
}
ul.decimal li {
    line-height: 1.4em;
    list-style-type: decimal;
    margin-left: 1.5em;
}
ul.indent li {
    line-height: 1.4em;
    padding-left: 1.5em;
    text-indent: -1.25em;
}


/* color */
.color-primary {
    color: var(--primary-color);
}
.color-secondary {
    color: var(--secondary-color);
}
.color-red {
    color: var(--red-color);
}
.error {
    color: var(--red-color) !important;
    font-size: 0.8em;
    margin-top: 0.5em;
}
.small {
    font-size: 0.8em;
}
.msg {
    line-height: 1.6em;
}
.bold {
    font-weight: bold;
}

/* text-block */
.text-block p,
.text-block li {
    line-height: 1.6em;
    font-size: var(--font-size-n);
}
.text-block p:not(:last-of-type) {
    margin-bottom: 1em;
}
.text-block p.notice {
    font-size: var(--font-size-m);
    font-weight: bold;
}

.mgt100 {margin-top: var(--length-100) !important;}
.mgt80 {margin-top: var(--length-80) !important;}
.mgt60 {margin-top: var(--length-60) !important;}
.mgt40 {margin-top: var(--length-40) !important;}
.mgt20 {margin-top: var(--length-20) !important;}
.mgt10 {margin-top: var(--length-10) !important;}
.mgb100 {margin-bottom: var(--length-100) !important;}
.mgb80 {margin-bottom: var(--length-80) !important;}
.mgb60 {margin-bottom: var(--length-60) !important;}
.mgb40 {margin-bottom: var(--length-40) !important;}
.mgb20 {margin-bottom: var(--length-20) !important;}
.mgb10 {margin-bottom: var(--length-10) !important;}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    .ttl-page {
        max-width: 56.25vw;
    }

}


/* BUTTON
---------------------------------------------------*/
.btn-area {
    text-align: center;
}
.btn-area.right {
    text-align: right;
}

.btn-wrap-col {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.btn-wrap-col > * {
    margin-right: var(--length-10);
}

.btn-wrap-col > *:last-of-type {
    margin-right: 0;
}

/* btn-submit */
.btn-submit a,
.btn-submit button,
.btn-submit input[type="submit"] {
    display: inline-block;
    width: 90%;
    max-width: 300px;
    line-height: 1;
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-m);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    padding: 0.8em;
    letter-spacing: 0.04em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}
.btn-submit a.disabled,
.btn-submit button.disabled,
.btn-submit input[type="submit"].disabled,
.btn-submit a.disabled:hover,
.btn-submit button.disabled:hover,
.btn-submit input[type="submit"].disabled:hover {
    color: var(--gray-color);
    background-color: var(--silver-color);
    border-color: var(--silver-color);
    cursor: default;
    pointer-events: none;
}
.btn-submit a:hover,
.btn-submit button:hover,
.btn-submit input[type="submit"]:hover {
    color: var(--primary-color);
    background-color: var(--white-color);
}

/* .back */
.btn-submit.back a,
.btn-submit.back button,
.btn-submit.back input[type="submit"] {
    color: var(--main-color);
    background-color: var(--silver-color);
    border-color: var(--gray-color);
}
.btn-submit.back a:hover,
.btn-submit.back button:hover,
.btn-submit.back input[type="submit"]:hover {
    color: var(--gray-color);
    background-color: var(--white-color);
}

/* .red */
.btn-submit.red a,
.btn-submit.red button,
.btn-submit.red input[type="submit"] {
    color: var(--white-color);
    background-color: var(--red-color);
    border-color: var(--red-color);
}
.btn-submit.red a:hover,
.btn-submit.red button:hover,
.btn-submit.red input[type="submit"]:hover {
    color: var(--red-color);
    background-color: var(--white-color);
}

/* btn-submit reset */
.btn-submit input[type="reset"] {
    display: inline-block;
    width: 90%;
    max-width: 300px;
    line-height: 1;
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-m);
    background-color: var(--gray-color);
    border: 1px solid var(--gray-color);
    border-radius: 2em;
    padding: 0.8em;
    letter-spacing: 0.04em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}
/* btn-control */
.btn-control a,
.btn-control button,
.btn-control input[type="submit"] {
    display: inline-block;
    line-height: 1;
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 1em;
    padding: 0.4em 1.5em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.btn-control a:hover,
.btn-control button:hover,
.btn-control input[type="submit"]:hover {
    color: var(--primary-color);
    background-color: var(--white-color);
}

.btn-control.disabled a,
.btn-control a.disabled,
.btn-control button.disabled,
.btn-control input[type="submit"].disabled,
.btn-control .disabled a:hover,
.btn-control a.disabled:hover,
.btn-control button.disabled:hover,
.btn-control input[type="submit"].disabled:hover {
    color: var(--gray-color);
    background-color: var(--silver-color);
    border-color: var(--silver-color);
    cursor: default;
    pointer-events: none;
}

.btn-control.orange a,
.btn-control.edit a,
.btn-control.edit button,
.btn-control.edit input[type="submit"] {
    color: #fff;
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}
.btn-control.orange a:hover,
.btn-control.edit a:hover,
.btn-control.edit button:hover,
.btn-control.edit input[type="submit"]:hover {
    color: var(--orange-color);
    background-color: var(--white-color);
}
.btn-control.blue a,
.btn-control.view a,
.btn-control.view button,
.btn-control.view input[type="submit"] {
    color: #fff;
    background-color: var(--blue-color);
    border-color: var(--blue-color);
}
.btn-control.blue a:hover,
.btn-control.view a:hover,
.btn-control.view button:hover,
.btn-control.view input[type="submit"]:hover {
    color: var(--blue-color);
    background-color: var(--white-color);
}
.btn-control.green a,
.btn-control.mail a,
.btn-control.mail button,
.btn-control.mail input[type="submit"] {
    color: #fff;
    background-color: var(--green-color);
    border-color: var(--green-color);
}
.btn-control.green a:hover,
.btn-control.mail a:hover,
.btn-control.mail button:hover,
.btn-control.mail input[type="submit"]:hover {
    color: var(--green-color);
    background-color: var(--white-color);
}
.btn-control.red a,
.btn-control.delete a,
.btn-control.delete button,
.btn-control.delete input[type="submit"] {
    color: var(--white-color);
    background-color: var(--red-color);
    border-color: var(--red-color);
}
.btn-control.red a:hover,
.btn-control.delete a:hover,
.btn-control.delete button:hover,
.btn-control.delete input[type="submit"]:hover {
    color: var(--red-color);
    background-color: var(--white-color);
}

/* btn-link */
.btn-link a {
    display: inline-block;
    width: 90%;
    max-width: 300px;
    line-height: 1;
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-m);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    padding: 0.8em;
    letter-spacing: 0.04em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.btn-link a:hover {
    color: var(--primary-color);
    background-color: var(--white-color);
}
/* .red */
.btn-link.red a {
    color: var(--white-color);
    background-color: var(--red-color);
    border-color: var(--red-color);
}
.btn-link.red a:hover {
    color: var(--red-color);
    background-color: var(--white-color);
}
/* .blue */
.btn-link.blue a {
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.btn-link.blue a:hover {
    color: var(--secondary-color);
    background-color: var(--white-color);
}
/* .gray */
.btn-link.gray a {
    color: var(--white-color);
    background-color: var(--gray-color);
    border-color: var(--gray-color);
}
.btn-link.gray a:hover {
    color: var(--gray-color);
    background-color: var(--white-color);
}
/* .orange */
.btn-link.orange a {
    color: var(--main-color);
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}
.btn-link.orange a:hover {
    color: var(--orange-color);
    background-color: var(--white-color);
}
/* .orange */
.btn-link.sqr a {
    border-radius: 0.2em;
    padding: 0.4em 0.8em;
}
/* .orange */
.btn-link.sqr a {
    border-radius: 0.2em;
    padding: 0.4em 0.8em;
}

/* btn-choice */
.btn-choice a,
.btn-choice .wrap {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
    color: var(--main-color);
    font-size: var(--font-size-m);
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 0.8em;
    letter-spacing: 0.04em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.btn-choice a:hover,
.btn-choice .wrap:hover{
    background-color: var(--snow-color);
}
/* .red */
.btn-choice.red a,
.btn-choice.red .wrap {
    color: var(--red-color);
}
/* .blue */
.btn-choice.blue a,
.btn-choice.blue .wrap {
    color: var(--blue-color);
}
/* .green */
.btn-choice.green a,
.btn-choice.green .wrap {
    color: var(--green-color);
}
/* svg */
.btn-choice a svg,
.btn-choice .wrap svg {
    display: block;
    fill: var(--primary-color);
    width: var(--length-40);
    margin: var(--length-10) auto 0;
}
.btn-choice.red a svg,
.btn-choice.red .wrap svg {
    fill: var(--red-color);
}
.btn-choice.blue a svg,
.btn-choice.blue .wrap svg {
    fill: var(--blue-color);
}
.btn-choice.green a svg,
.btn-choice.green .wrap svg {
    fill: var(--green-color);
}


/* btn-search */
.btn-search {
    top: auto;
    left: auto;
    bottom: var(--length-20);
    right: var(--length-20);
    width: var(--length-80);
    height: var(--length-80);
    border: 2px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
}
.btn-search a {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: var(--primary-color);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.btn-search a svg {
    width: var(--length-20);
    fill: var(--white-color);
}
.btn-search a .caption {
    width: 100%;
    color: var(--white-color);
    font-size: var(--font-size-ss);
    margin-top: 0.2em;
}


/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    /* btn-submit */
    .btn-submit a,
    .btn-submit button,
    .btn-submit input[type="submit"] {
        max-width: 56.25vw;
    }
    /* btn-link */
    .btn-link a {
        max-width: 56.25vw;
    }
}


/* table-block
---------------------------------------------------*/
.table-block {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    margin-bottom: var(--length-40);
}
.table-block::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.table-block::-webkit-scrollbar-track {
    border-radius: 6px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .1);
}
.table-block::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 50, .5);
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    .table-block::-webkit-scrollbar {
        width: 0.9375vw;
    }
    .table-block::-webkit-scrollbar-track {
        border-radius: 0.9375vw;
        box-shadow: inset 0 0 0.625vw rgba(0, 0, 0, .1);
    }
    .table-block::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 50, .5);
        border-radius: 0.9375vw;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
    }
}


/* .table
---------------------------------------------------*/
.table {
    width: 100%;
    background-color: var(--white-color);
    border-collapse: collapse;
    border-top: solid 1px var(--silver-color);
}

.table th {
    text-align: left;
    font-weight: normal;
    border-bottom: solid 1px var(--silver-color);
    white-space: nowrap
}

.table td {
    border-bottom: solid 1px var(--silver-color);
    white-space: nowrap
}


/* tbl-input
---------------------------------------------------*/
.tbl-input {
    margin: 0 auto var(--length-40);
}
.tbl-input th {
    width: 30%;
    font-size: var(--font-size-n);
    font-weight: 700;
    padding: 1em;
}
.tbl-input th span {
    color: var(--white-color);
    font-size: var(--font-size-s);
    font-weight: normal;
    background-color: var(--red-color);
    border-radius: 0.3em;
    padding: 0.1em 0.4em;
    margin-left: 0.5em;
}
.tbl-input th span.any {
    background-color: var(--green-color);
}
.tbl-input td {
    width: 70%;
    padding: 1em;
}
.tbl-input td ul.cols {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.tbl-input td ul.cols li {
    position: relative;
    margin-right: 1em;
}
.tbl-input td ul.cols li:last-of-type {
    margin-right: 0;
}
.tbl-input td ul.cols.col2 li {
    width: 40%;
}
.tbl-input td ul.cols.col3 li {
    width: 30%;
}
.tbl-input td ul.cols.hyphen li {
    margin-right: 2em;
}
.tbl-input td ul.cols.hyphen li::after {
    position: absolute;
    content: '';
    top: 50%;
    right: -1.5em;
    width: 1em;
    height: 1px;
    background-color: var(--main-color);
}
.tbl-input td ul.cols.hyphen li:last-of-type::after {
    display: none;
}
.tbl-input td ul.cols.interval li {
    margin-right: 2em;
}
.tbl-input td ul.cols.interval li::after {
    position: absolute;
    content: '～';
    top: 50%;
    right: -1.25em;
    transform: translate(0, -50%);
    width: 1em;
    font-size: var(--font-size-n);
}
.tbl-input td ul.cols.interval li:last-of-type::after {
    display: none;
}
.tbl-input td ul.cols.interval.prefix li {
    margin-right: 3em;
}.tbl-input td ul.cols.interval.prefix li::after {
     right: -2.25em;
 }
.tbl-input td ul.chk-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    line-height: 1.6em;
}
.tbl-input td ul.chk-list li {
    margin-right: 1em;
}
.tbl-input td ul.chk-list li:last-of-type {
    margin-right: 0;
}
.tbl-input td .datetime {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.tbl-input td .datetime > input[type="date"] {
    width: 30%;
}

.tbl-input td .datetime > div {
    margin-left: 1em;
}

.tbl-input td ul.list-unstyled {
    line-height: 1.6em;
}

/* vertical */
.tbl-input.vertical,
.tbl-input.vertical tr,
.tbl-input.vertical th,
.tbl-input.vertical td,
.tbl-input.vertical tbody {
    display: block;
    width: 100%;
}
.tbl-input.vertical th {
    border-bottom-width: 0;
    padding: 1em 1em 0.5em;
}
.tbl-input.vertical td {
    padding: 0.5em 1em 1em;
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    .tbl-input,
    .tbl-input tr,
    .tbl-input th,
    .tbl-input td,
    .tbl-input tbody {
        display: block;
        width: 100%;
    }

    .tbl-input {
        margin: 0 auto 6.25vw;
    }

    .tbl-input th,
    .tbl-input td {
        text-align: left;
        border: 0;
        border-bottom: solid 1px #ccc;
    }
    .tbl-input td {
        padding: 1em 1em;
    }

    .tbl-input.horizontal {
        display: table;
        width: 100%;
    }
    .tbl-input.horizontal tr {
        display: table-row;
        width: auto;
    }
    .tbl-input.horizontal tbody {
        display: table-row-group;
        width: auto;
    }
    .tbl-input.horizontal th {
        display: table-cell;
        width: 30%;
    }
    .tbl-input.horizontal td {
        display: table-cell;
        width: 70%;
    }
}


/* list-photo
---------------------------------------------------*/
ul.list-photo {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
ul.list-photo li {
    width: 48%;
    margin-bottom: var(--length-40);
}
ul.list-photo li:nth-last-child(-n+2) {
    margin-bottom: 0;
}
ul.list-photo li a {
    display: block;
    width: 100%;
    height: 100%;
}
ul.list-photo li .figure {
    width: 100%;
    border-radius: var(--length-10);
    margin-bottom: var(--length-10);
    overflow: hidden;
}
ul.list-photo li .figure img {
    width: 100%;
}
ul.list-photo li .profile {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
ul.list-photo li .profile .mark {
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-right: 1em;
}
ul.list-photo li .profile .age {
    font-weight: bold;
    margin-right: 1em;
}


/* list-partners
---------------------------------------------------*/
ul.list-partners {
    width: 100%;
}
ul.list-partners li {
    position: relative;
    border-bottom: 1px solid var(--silver-color);
}
ul.list-partners li.notification::after {
    position: absolute;
    content: '';
    top: 10%;
    right: 0;
    width: var(--length-20);
    height: var(--length-20);
    background-color: var(--red-color);
    border-radius: 50%;
    opacity: 0.8;
}
ul.list-partners li a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    padding: var(--length-10) var(--length-5);
}
ul.list-partners li .figure {
    width: var(--length-80);
    height: var(--length-80);
    border-radius: 50%;
    margin-right: var(--length-20);
    overflow: hidden;
}
ul.list-partners li .figure img {
    width: 100%;
}
ul.list-partners li .profile {
    width: calc(100% - var(--length-100));
}
ul.list-partners li .profile .name {
    color: var(--primary-color);
    font-size: var(--font-size-n);
    font-weight: bold;
    margin-bottom: 0.8em;
}
ul.list-partners li .profile .message {
    width: 100%;
    font-size: var(--font-size-n);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0.8em;
}
ul.list-partners li .profile .time {
    font-size: var(--font-size-s);
}


/* list-links
---------------------------------------------------*/
ul.list-links {
    width: 100%;
}
ul.list-links li {
    border-bottom: 1px solid var(--silver-color);
}
ul.list-links li a {
    position: relative;
    display: block;
    width: 100%;
    font-size: var(--font-size-n);
    padding: var(--length-20) var(--length-10);
}
ul.list-links li a svg {
    position: absolute;
    top: 50%;
    right: var(--length-10);
    transform: translate(0, -50%);
    width: var(--length-10);
    fill: var(--gray-color);
}


/* list-profiles
---------------------------------------------------*/
ul.list-profiles {
    width: 100%;
}
ul.list-profiles li {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 1px solid var(--silver-color);
}
ul.list-profiles li p {
    max-width: 50%;
    font-size: var(--font-size-n);
    padding: var(--length-20) var(--length-10);
}

/* overlay
---------------------------------------------------*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
}

/* popup
---------------------------------------------------*/
.popup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.popup-wrapper-inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 96%;
    max-width: 1000px;
    max-height: 96vh;
    z-index: 99999;
    padding-top: var(--length-10);
    padding-bottom: var(--length-10);
    overflow-y: auto;
}
.popup-wrapper-inner.pos-center {
    top: 50%;
    transform: translate(-50%, -50%);
}
.popup-wrapper-inner.pos-bottom {
    top: auto;
    bottom: 0;
}
.popup-wrapper-inner.pos-top {
    top: 15.625vw;
}

/* popup-section-block */
.popup-section-block {
    background-color: var(--background-color);
    border-radius: var(--length-20);
    padding-top: var(--length-40);
    padding-bottom: var(--length-40);
    overflow: hidden;
}
.popup-section-block.no-padding {
    padding-top: 0;
    padding-bottom: 0;
}
.popup-section-block + .popup-section-block {
    margin-top: var(--length-20);
}

/* list-buttons */
ul.list-buttons li:not(:last-of-type) {
    border-bottom: 1px solid var(--silver-color);
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    .popup-wrapper .contents-wrap {
        width: 87.5vw;
    }
}

/*---------------------------------------------------
##### TALK ##########################################
---------------------------------------------------*/

/* select-button
---------------------------------------------------*/
.select-button-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: var(--length-20);
}
.select-button-wrap .select-button {
    width: 48%;
}
.select-button-wrap .select-button a {
    width: 100%;
}
.select-button-wrap .select-button:not(.active) a {
    color: var(--main-color);
    background-color: var(--white-color);
}
.select-button-wrap .select-button:not(.active) a:hover {
    color: var(--red-color);
}


/*---------------------------------------------------
##### TALK DETAIL ###################################
---------------------------------------------------*/

/* current-selected-room
---------------------------------------------------*/
.current-selected-room {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto;
    position: relative;
    max-width: 1000px;
    height: 60vh;
    background-color: var(--background-color);
    margin: 0 auto;
}

/* timeline-container
---------------------------------------------------*/
.timeline-container {
    position: relative;
    height: 100%;
    overflow: hidden auto;
}
.timeline-container .timeline {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    overflow: hidden auto;
}
/* scrollbar */
.timeline-container .timeline::-webkit-scrollbar {
    width: 4px;
}
.timeline-container .timeline::-webkit-scrollbar-track,
.timeline-container .timeline::-webkit-scrollbar-thumb {
    border-radius: 0;
}
.timeline-message {
    position: relative;
    transition: all 0.1s linear 0s;
}
.timeline-message-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: var(--length-10) var(--length-20);
}
.timeline-message-inner .icon-user {
    flex-shrink: 0;
    width: var(--length-60);
    height: var(--length-60);
    margin-right: var(--length-10);
}
.timeline-message-inner .icon-user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* message-body */
.timeline-message-inner .message-body {
    max-width: calc(100% - var(--length-60));
}
/* post-time */
.timeline-message-inner .message-body .post-time {
    margin-bottom: 0.5em;
}
.timeline-message-inner .message-body .post-time p {
    line-height: 1.4em;
    color: var(--gray-color);
}
/* balloon*/
.timeline-message-inner .message-body .balloon {
    position: relative;
    max-width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--silver-color);
    border-radius: var(--length-10);
    padding: 1em;
}
.timeline-message-inner .message-body .balloon p {
    line-height: 1.4em;
    font-size: var(--font-size-n);
    word-wrap: break-word;
}
.timeline-message-inner .message-body-title {
    font-weight: 700;
    color: var(--primary-color);
    border-left: 0.2em solid var(--primary-color);
    padding-left: 0.5em;
    margin-bottom: 0.5em;
}

/* own message */
.own .timeline-message-inner {
    flex-direction: row-reverse;
}
.own .timeline-message-inner .message-body .balloon {
    background-color: var(--snow-color);
}
.own .timeline-message-inner .message-body .post-time {
    text-align: right;
}

/* attached*/
.timeline-message-inner .message-body .attached {
    position: relative;
    max-width: 500px;
    text-align: center;
    background-color: var(--white-color);
    border: 1px solid var(--silver-color);
    border-radius: var(--length-10);
    padding: var(--length-20);
    margin-top: var(--length-10);
    overflow: hidden;
}
.timeline-message-inner .message-body .attached a {
    display: block;
}
.timeline-message-inner .message-body .attached img {
    width: 100%;
}
.timeline-message-inner .message-body .blur {
    -ms-filter: blur(15px);
    filter: blur(15px);
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    /* attached*/
    .timeline-message-inner .message-body .attached {
        max-width: 75vw;
    }
}

/* input-container
---------------------------------------------------*/
.input-container {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 100%;
    background-color: var(--white-color);
    padding: var(--length-10);
    z-index: 1;
}

/* input-file-uploader */
.input-container .input-file-uploader {
    margin-right: var(--length-10);
}
.input-file-uploader label {
    display: inline-block;
    padding: 0;
    cursor: pointer;
}
.input-file-uploader label svg {
    width: var(--length-60);
    fill: var(--red-color);
}
.input-file-uploader label input {
    display: none;
}
/**/
.input-file-uploader.landscape {
    text-align: center;
}
.input-file-uploader.landscape label {
    display: inline-block;
    width: 90%;
    max-width: 300px;
    line-height: 1;
    text-align: center;
    color: var(--white-color);
    font-size: var(--font-size-m);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    padding: 0.8em;
    cursor: pointer;
    letter-spacing: 0.04em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.input-file-uploader.landscape label svg {
    width: var(--length-30);
    fill: var(--white-color);
    vertical-align: middle;
}
.input-file-uploader.landscape label svg {
    vertical-align: middle;
}
.input-file-uploader.landscape label input {
    display: none;
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    .input-file-uploader.landscape label {
        max-width: 56.25vw;
    }
}

/* input-textarea */
.input-container .input-textarea {
    width: calc(100% - var(--length-50));
}
.input-container .input-textarea-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.input-container .input-textarea .input-textarea {
    margin-right: var(--length-10);
}
.input-container .input-textarea .input-textarea textarea {
    resize: none;
    height: 2.6em;
    min-height: 1em;
    max-height: 8em;
}
.input-container .input-textarea .btn-control input[type="submit"] {
    padding: 0.7em 1.5em;
}


/*---------------------------------------------------
##### MY PAGE #######################################
---------------------------------------------------*/

/* user-information
---------------------------------------------------*/
.user-information {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.user-information .user-photo {
    width: 30%;
}
.user-information .user-photo .figure {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.user-information .user-photo .figure img {
    width: 100%;
}
.user-information .user-status {
    width: 66%;
}
.user-information .user-status .user-id {
    color: var(--gray-color);
    font-size: var(--font-size-n);
    font-weight: bold;
    margin-bottom: var(--length-20);
}
.user-information .user-status .user-point-block {
    color: var(--gray-color);
    background-color: var(--white-color);
    padding: var(--length-20);
}
.user-information .user-status .user-point-block .point {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: var(--length-20);
}
.user-information .user-status .user-point-block .point .icon {
    width: var(--length-40);
    margin-right: var(--length-10);
}
.user-information .user-status .user-point-block .point .icon svg {
    width: var(--length-40);
    fill: var(--gray-color);
}
.user-information .user-status .user-point-block .point .num {
    font-weight: bold;
}
.user-information .user-status .user-point-block .point .num span {
    color: var(--red-color);
    font-size: var(--font-size-l);
    margin-right: var(--length-10);
}
.user-information .user-status .user-point-block .point .num sub {
    font-size: var(--font-size-n);
}

/* mypage-menus
---------------------------------------------------*/
.mypage-menus {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: var(--length-40);
    border: 1px solid var(--silver-color);
}
.mypage-menus .menu {
    width: 50%;
    background-color: var(--white-color);
}
.mypage-menus .menu:nth-child(odd) {
    border-right: 1px solid var(--silver-color);
}
.mypage-menus .menu:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid var(--silver-color);
}
.mypage-menus .menu a {
    display: block;
    width: 100%;
    height: 100%;
    padding: var(--length-20);
}
.mypage-menus .menu .figure {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: var(--length-80);
    text-align: center;
    margin-bottom: var(--length-20);
}
.mypage-menus .menu .figure svg {
    width: var(--length-60);
    fill: var(--gray-color);
}
.mypage-menus .menu p {
    text-align: center;
    color: var(--gray-color);
    font-size: var(--font-size-n);
}


/*---------------------------------------------------
##### PHOTO EDIT ####################################
---------------------------------------------------*/

/* user-photo
---------------------------------------------------*/
.user-photo {
    margin-bottom: var(--length-40);
}
.user-photo .figure {
    width: 50%;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}
.user-photo .figure img {
    width: 100%;
}

/* user-sub-photos
---------------------------------------------------*/
.user-sub-photos {
}
.user-sub-photos .sub-photo-wrap {
    display: -webkit-flex;
    display: flex;
    margin-bottom: var(--length-20);
}
.user-sub-photos .sub-photo-wrap .sub-photo {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: var(--length-80);
    height: var(--length-80);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
}
.user-sub-photos .sub-photo-wrap .sub-photo:not(:last-of-type) {
    margin-right: var(--length-20);
}
.user-sub-photos .sub-photo-wrap .sub-photo img {
    width: 100%;
}
.user-sub-photos .sub-photo-wrap .sub-photo.add {
    background-color: var(--primary-color);
}
.user-sub-photos .sub-photo-wrap .sub-photo.add label {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    width: var(--length-80);
    height: var(--length-80);

}
.user-sub-photos .sub-photo-wrap .sub-photo.add svg {
    width: var(--length-40);
    fill: var(--white-color);
}


/*---------------------------------------------------
##### PARTNER PROFILE ###############################
---------------------------------------------------*/

/* partner-photos
---------------------------------------------------*/
.partner-photos {
    width: 100%;
    margin-bottom: var(--length-40);
}
.partner-photos .inner {
    width: 100%;
}
.partner-photos .figure {
    position: relative;
}
.partner-photos .figure img {
    width: 100%;
}
.partner-photos .main-photo-wrap {
    width: 100%;
    margin-bottom: var(--length-20);
}
.partner-photos .main-photo-wrap .figure {
    width: 100%;
}
.partner-photos .main-photo-wrap .figure .profile {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    padding: 0.5em 1em;
}
.partner-photos .main-photo-wrap .figure .profile span {
    color: var(--white-color);
    font-size: var(--font-size-n);
}
.partner-photos .main-photo-wrap .figure .profile span:not(:last-of-type) {
    margin-right: 1em;
}
.partner-photos .thumbnails {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
}
.partner-photos .thumbnails .figure {
    width: 15%;
    margin-left: 3%;
}
.partner-photos .thumbnails .figure img {
    width: 100%;
    border: 2px solid transparent;
    border-radius: var(--length-5);
    overflow: hidden;
}
.partner-photos .thumbnails .figure img.selected {
    border-color: var(--primary-color);
}

/* partner-profile
---------------------------------------------------*/
.partner-profile {
    padding-bottom: var(--length-100);
}
.partner-profile .btn-link {
    top: auto;
    bottom: var(--length-40);
    width: 100%;
    text-align: center;
}

/*---------------------------------------------------
##### POINT PURCHASE ################################
---------------------------------------------------*/

/* point-information
---------------------------------------------------*/
.point-information {
    margin-bottom: var(--length-40);
}
.point-information .user-point-block {
    color: var(--gray-color);
    background-color: var(--white-color);
    padding: var(--length-20);
}
.point-information .user-point-block .point {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.point-information .user-point-block .point .icon {
    width: var(--length-40);
    margin-right: var(--length-10);
}
.point-information .user-point-block .point .icon svg {
    width: var(--length-40);
    fill: var(--gray-color);
}
.point-information .user-point-block .point .num {
    font-weight: bold;
}
.point-information .user-point-block .point .num span {
    color: var(--red-color);
    font-size: var(--font-size-l);
    margin-right: var(--length-10);
}
.point-information .user-point-block .point .num sub {
    font-size: var(--font-size-n);
}

/* list-payment-method */
.list-payment-method .payment-method {
    text-align: center;
}
.list-payment-method .payment-method:not(:last-of-type) {
    margin-bottom: var(--length-20);
}
.list-payment-method .payment-method img {
    width: 100%;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
}

/* list-purchase-point */
.list-purchase-point .purchase-point {
}
.list-purchase-point .purchase-point:not(:last-of-type) {
    margin-bottom: var(--length-20);
}
.list-purchase-point .purchase-point .point-box {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    border-radius: var(--length-10);
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
    overflow: hidden;
}
.list-purchase-point .purchase-point .point-box .point,
.list-purchase-point .purchase-point .point-box .purchase {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: var(--length-100);
    text-align: center;
}
.list-purchase-point .purchase-point .point-box .point {
    width: 40%;
    color: var(--white-color);
    background-color: var(--secondary-color);
}
.list-purchase-point .purchase-point .point-box .purchase {
    width: 60%;
    color: var(--main-color);
    background-color: var(--white-color);
}
.list-purchase-point .purchase-point .point-box .point p,
.list-purchase-point .purchase-point .point-box .purchase p {
    font-size: var(--font-size-l);
    font-weight: bold;
}
.list-purchase-point .purchase-point .point-box .purchase p .note {
    display: block;
    color: var(--red-color);
    font-size: var(--font-size-s);
    font-weight: normal;
    margin-top: 0.5em;
}
.list-purchase-confirm {
    width: 100%;
}
.list-purchase-confirm li {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 1px solid var(--silver-color);
}
.list-purchase-confirm li p {
    max-width: 50%;
    font-size: var(--font-size-n);
    padding: var(--length-20) var(--length-10);
}
.list-purchase-confirm li p.value {
    font-size: var(--font-size-l);
    font-weight: bold;
}

/*---------------------------------------------------
##### MYPAGE NEWS ###################################
---------------------------------------------------*/

.news-block {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding-bottom: var(--length-20);
    border-bottom: 1px solid var(--silver-color);
}
.news-block:not(:first-of-type) {
    padding-top: var(--length-20);
}
.news-block .icon-user {
    flex-shrink: 0;
    width: var(--length-60);
    height: var(--length-60);
    margin-right: var(--length-20);
}
.news-block .icon-user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* message-body */
.news-block .message-body {
    max-width: calc(100% - var(--length-60));
}
.news-block .message-body p,
.news-block .message-body li {
    line-height: 1.6em;
    font-size: var(--font-size-n);
}
.news-block .message-body ul:not(:last-of-type),
.news-block .message-body p:not(:last-of-type) {
    margin-bottom: 1em;
}

/* post-time */
.news-block .message-body .post-time {
    margin-bottom: var(--length-20);
}
.news-block .message-body .post-time p {
    line-height: 1.4em;
    color: var(--gray-color);
}


/*---------------------------------------------------
##### ログイン前 TOP ##################################
---------------------------------------------------*/

/* mv
---------------------------------------------------*/
#mv {
    position: relative;
    max-width: 800px;
    letter-spacing: 0.1em;
    margin: 0 auto;
}
#mv .inner {
    position: relative;
}
#mv .inner .figures,
#mv .inner .figures .figure,
#mv .inner .figures .figure img {
    width: 100%;
}
#mv .inner .logo {
    position: absolute;
    top: 380px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 42.75%;
}
#mv .inner .logo img {
    width: 100%;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}

/* 768px */
@media screen and (min-width: 1px) and (max-width: 768px) {
    #mv .inner .logo {
        top: 73.4375vw;
        width: 53.125vw;
    }
}
