@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 4.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/
/* ログインフォーム */

.loginForm {
    width: 100%;
    max-width: 500px;
    margin: 60px auto 40px;
    background: #FFF;
    padding: 30px 30px 10px;
    border-radius: 3px;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 1px 1px 0 rgb(0 0 0 / 11%);
    display: flex;
    flex-direction: column;
}
.loginForm img {
    display: block;
    width: 260px;
    margin: 10px auto 20px;
}
.formUsername {
    margin-bottom: 20px;
}
.formPassword {
    margin-bottom: 30px;
}
.formUsername input, .formPassword input {
    background: #FFF;
    border: solid 1px #aaa;
}
.loginForm button {
    width: 100%;
    display: block;
    background: #f79101;
    line-height: 50px;
    border: none;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    overflow: hidden;
	position: relative;
}
.loginForm button:hover {
	opacity: 0.95;
}
.loginForm button:before{
content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient( 
130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
    -webkit-transition: 0.5s;
    transition: 0.6s;
}
.loginForm button:hover:before {
    left: 100%;
}
button#submitButton.is-inactive {
    background: #ddd;
	pointer-events: none;
}

.contactAgree {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
	margin-bottom: 10px;
}

input[type=checkbox] {
    display: none;
}
.checkagree {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 32px;
    position: relative;
    width: auto;
}
.checkagree::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    content: '';
    display: block;
    height: 18px;
    left: 5px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    width: 18px;
}
.checkagree::after {
    border-right: 6px solid #f79101;
    border-bottom: 3px solid #f79101;
    content: '';
    display: block;
    height: 20px;
    left: 7px;
    margin-top: -18px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    width: 9px;
}
input[type=checkbox]:checked + .checkagree::before {
    border-color: #666;
}
input[type=checkbox]:checked + .checkagree::after {
    opacity: 1;
    transform: rotate(45deg) scale3d(1,1,1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-container .img {
    background: #f1f1f1;
    margin-bottom: 15px;
}
.modal-container p {
    margin-bottom: 10px;
}
.modal-container p:last-child {
    margin-bottom: 0;
}
.modal-content {
    background: #FFF;
    overflow-y: auto;
    padding: 20px 25px;
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 400px;
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 5px;
}
.modal-close {
    color: #FF0000;
    text-decoration: none;
    font-size: 2rem;
    line-height: 1;
    padding: 0 8px;
}
.contactAgree p {
    display: inline-block;
    font-size: 0.8rem;
    position: relative;
	margin: 0;
}

.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}
.modal-title {
  color: #FFF;
}
@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* フォーム下の新規登録 */
.memberResist {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.memberResist p {
    margin: 0;
}

/* WELCOME */
.welcomePage {
    width: 100%;
    max-width: 560px;
    margin: 60px auto;
    background: #FFF;
    padding: 20px 30px 30px;
    border-radius: 3px;
    box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 1px 1px 0 rgb(0 0 0 / 11%);
    display: flex;
    flex-direction: column;
}
.welcomePage p {
    margin: 0;
    line-height: 1.6;
}
.welcomePage img {
    margin-bottom: 20px;
}
p.welcomeMemberName {
    margin-bottom: 15px;
}
p.welcomeMemberName span {
    font-size: 1.5rem;
    letter-spacing: 0.04rem;
    font-weight: 600;
    margin-right: 3px;
}