@charset "UTF-8";
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;font-size:100%}legend{color:#000}main{display:block}
:root {
    --color-black: #1d1d1d;
    --color-black-light: #7D8192;
    --color-blue : #2F8AF3;
    --color-blue2 : #0f56b3;
    --color-yellow : #FCCD00;
    --bg-color-blue2 : #e2edfc;
    --color-green : #1f8b24;
    --color-green2 : #5BBD8E;
    --bg-color-green : #e2f8e3;
    --color-red : #da100b;
    --bg-color-red : #fde7e7;
    --color-gray : #999;
    --bd-color-gray : #d3d3d3;
    --bg-color-gray : #ECF3FE;
    --box-shadow : 0 1px 1px rgba(0,0,0,.12);
}
html {
    color: var(--color-black);
    font-size: 18px;
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    letter-spacing: 0.015em;
    outline: none;
    user-select: none;
}
body.process {
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.inner {
    padding: 0 10px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.arrow::before ,
.arrow::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    background: var(--color-blue);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%) rotate(45deg);
}
.arrow::after {
    background: #fff;
    transform: translate(-4px,-50%) rotate(45deg);
}
.arrowReverse::before ,
.arrowReverse::after {
    right: auto;
    left: 20px;
    transform: translate(0,-50%) rotate(-45deg);
}
.arrowReverse::after {
    transform: translate(4px,-50%) rotate(-45deg);
}
.hv1 ,
.hv2 {
    transition: .1s;
}
.hv1:hover {
    opacity: .75;
}
.hv2:hover {
    color: rgba(0,0,0,.5);
}
/*  */
#login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#login .inner {
    max-width: 480px;
}
#login form {
    background: #fff;
}
#login header {
    text-align: center;
    padding: 40px 0 0;
}
#login section {
    padding: 25px 20px 20px;
    box-shadow: var(--box-shadow);
    position: relative;
}
#login img {
    width: 40px;
    position: relative;
    top: 2px;
}
#login footer {
    background: var(--bg-color-gray);
    padding: 20px;
}
/*  */
#header {
    padding: 15px 20px 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#header .logo img {
    width: 23px;
    position: relative;
    top: 1px;
}
#header .name {
    font-weight: bold;
}
/*  */
#msg {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation-name: close;
	animation-duration: 1s;
	animation-delay: 3s;
	animation-fill-mode: forwards;
}
@keyframes close {
	0% {
        bottom: 0;
	}
	100% {
        bottom: 100%;
	}
}
#msg.er {
    background: var(--bg-color-red);
    color: var(--color-red);
}
#msg.save ,
#msg.cancel ,
#msg.reserve ,
#msg.learned {
    background: var(--bg-color-green);
    color: var(--color-green);
}
#msg p {
    font-weight: bold;
    font-size: 16px;
}
/*  */
#info {
    background: var(--bg-color-gray);
    text-align: center;
    padding: 20px 0;
    box-shadow: inset var(--box-shadow);
}
#info .wrap {
    background: #fff;
    display: flex;
    box-shadow: var(--box-shadow);
}
#info .wrap > * {
    padding: 10px 20px;
    font-size: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
#info h2 {
    background: var(--color-yellow);
    min-width : 150px;
    justify-content: center;
    color: rgba(0,0,0,.75);
}
#info p {
    opacity: .7;
}
/*  */
#process {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 138, 242,.6);
    z-index: 100;
}
body.process #process {
    display: flex;
}
#process .loader {
    background: rgba(47, 138, 242,.75);
    border-top: 20px solid rgba(255, 255, 255, 0.2);
    border-right: 20px solid rgba(255, 255, 255, 0.2);
    border-bottom: 20px solid rgba(255, 255, 255, 0.2);
    border-left: 20px solid #ffffff;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear;
    z-index: 100;
}
#process .loader,
#process .loader::after {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*  */
#footer {
    padding: 40px 0;
}
#footer nav ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
}
#footer nav a {
    border: 1px solid var(--bd-color-gray);
    display: block;
    position: relative;
    font-weight: bold;
    padding: 20px;
    font-size: 16px;
}
/*  */
main {
    padding: 40px 0;
    background: var(--color-blue);
}
/*  */
#list > ul > li {
    background: #fff;
    margin: 20px 0 0;
}
#list > ul > li:first-of-type {
    margin: 0;
}
#list input {
    display: none;
}
#list label {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    cursor: pointer;
}
#list img {
    width: 50px;
    margin: 0 20px 0 0;
    opacity: .85;
}
#list h2 {
    font-weight: bold;
}
#list label::before {
    display: none;
    content: '';
    background: #E6E9EE;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    position: absolute;
    right: 20px;
}
/* レッスン 講習一覧 */
.list {
    display: none;
    /* display: block; */
}
#list input:checked + label + .list {
    display: block;
}
.list a {
    display: block;
    padding: 20px 50px 20px 20px;
    border-top: 1px solid var(--bd-color-gray);
    position: relative;
}
.list h3 {
    font-size: 16px;
}
.ok::after {
    content: '';
    display: block;
    width: 10px;
    height: 5px;
    position: absolute;
    top: 50%;
    margin: -2px 0 0;
    right: 17px;
    transform: translate(0,-50%) rotate(-45deg);
    border-bottom: 3px solid #0DA05F;
    border-left: 3px solid #0DA05F;
}
/*  */
#single .info {
    background: #5BBD8F;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 8px 20px;
}
#single header {
    background: #fff;
    padding: 20px;
    position: relative;
}
#single header span {
    color : var(--color-gray);
    font-size: 12px;
    margin: 0 0 .5em;
    display: block;
}
#single header h1 {
    font-weight: bold;
    font-size: 20px;
    margin-left: -2px;
}
#single header p {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #5BBD8F;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    padding: 5px 10px;
}
#single .video {
    background: #000;
    padding-bottom: 62%;
    position: relative;
    border: 10px solid #000;
}
#single .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}
#single .note {
    background: #fff;
    padding: 20px;
    box-shadow: var(--box-shadow);
    position: relative;
}
#single .note p {
    margin: 1em 0;
    line-height: 1.8;
}
#single .note a {
    color: var(--color-blue);
    font-weight: bold;
    text-decoration: underline;
    margin: 0 3px;
}
#single .note a:hover {
    text-decoration: none;
}
#single .note code {
    background: #EBF3FE;
    color: #444 !important;
    padding: 3px 5px;
    margin: 0 3px;
    border-radius: 3px;
}
#single .eval {
    background: var(--bg-color-gray);
    padding: 20px;
}
#single .eval ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
}
#single .eval span ,
#single .eval a {
    cursor: pointer;
    display: block;
    background: #fff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

#single nav {
    background: #fff;
    margin: 40px 0 0 0;
    box-shadow: var(--box-shadow);
}
#single nav ul {
    display: flex;
}
#single nav li {
    width: 41%;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}
#single nav li:nth-of-type(2) {
    width: 18%;
    border-left: 1px solid var(--bd-color-gray);
    border-right: 1px solid var(--bd-color-gray);
}
#single nav a {
    display: block;
    padding: 20px 0;
    font-size: 14px;
    font-weight: bold;
}
/*  */
.inner > div#edit:nth-of-type(2){
    margin: 40px 0 0;
}
#edit ul {
    background: #fff;
    padding: 20px;
}
#edit li:not(:first-of-type) {
    margin: 1em 0 0;
}
#edit p {
    font-size: 12px;
    color: #777;
    margin: 5px 0;
}
#edit footer {
    background: var(--bg-color-gray);
    padding: 20px;
    box-shadow: inset var(--box-shadow);
}
/*  */
#reserve header {
    background: #fff;
    padding: 20px;
}
#reserve header h1 {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
/*  */
#reserve .cancel {
    margin-top: 20px;
}
#reserve .cancel .content {
    background: #fff;
    padding: 20px;
    text-align: center;
}
#reserve .cancel p.date {
    font-weight: bold;
    font-size: 24px;
    line-height: 2;
    border: 5px solid var(--color-yellow);
    padding: 20px;
}
#reserve .cancel footer {
    background: var(--bg-color-gray);
    padding: 20px;
    box-shadow: inset var(--box-shadow);
}
/*  */
#reserve .day {
    background: #fff;
    margin: 20px 0 0;
}
#reserve .day h2 {
    font-weight: bold;
    text-align: center;
    padding: 20px;
    background: #fff;
}
#reserve .day h2 .sat {
    color: #2F8AF3;
}
#reserve .day h2 .sun {
    color: #F00;
}
#reserve div.holiday {
    text-align: center;
    font-weight: bold;
    padding: 20px 0;
    border-top: 1px solid var(--bd-color-gray);
}
#reserve div.time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background: var(--bg-color-gray);
    border-top: 1px solid var(--bd-color-gray);
}
#reserve span {
    background: #fff;
    padding: 20px 0;
    width: 40%;
    text-align: center;
    cursor: pointer;
}
#reserve .ng span {
    color: #c5c5c5;
    cursor: auto;
    background: #F5F8FA;
}
#reserve time {
    width: 20%;
    text-align: center;
}
#reserve .ng time {
    color: #c5c5c5;
}
/*  */
#guide header {
    background: #fff;
    font-weight: bold;
    padding: 20px;
}
#guide header h1 {
    font-weight: bold;
    font-size: 20px;
}
#guide section {
    border-top: 1px solid var(--bd-color-gray);
    padding: 20px;
    background: #fff;
}
#guide section h2 {
    font-weight: bold;
    margin: 2em 0 0;
}
#guide section p {
    margin: 1em 0;
}
/*  */
input[type="text"] ,
input[type="submit"] ,
button ,
select ,
textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: inherit;
    font-size: inherit
}
::placeholder {
    color: #bbb;
    font-weight: bold;
}
textarea {
    resize: none;
}
textarea#note {
    height: 20em;
}
textarea::-webkit-scrollbar {
    display:none;
}
input[type="text"] ,
textarea {
    border: 4px solid var(--bg-color-gray);
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    vertical-align: bottom;
}
input:focus {
    background: #fff;
}    
select {
    width: 100%;
    padding: 12px 30px 12px 10px;
    border: 4px solid var(--bg-color-gray);
    box-sizing: border-box;
}
.select {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.select::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-blue);
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 0;
    margin: -2px 0 0;
}
button {
    background: #fff;
    font-weight: bold;
    text-align: center;
    display: block;
    width: 100%;
    padding: 15px 0;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}
span.er {
    color: var(--color-red);
    margin: 0 0 5px;
    font-size: 16px;
    display: block;
    font-weight: bold;
}
