@charset "UTF-8";
/******************* リセット ********************/
* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}
html{ 
    scroll-behavior: smooth;    
}
body{
    word-break: break-word;
    overflow-wrap: break-word;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
ul{ list-style: none; }

/******************* テーマ ********************/
/* パブリック変数 */
:root{
    --lightBlue: #4ccbed;
    --oldWhite: #f7fafc;
    --loginText: #5c6468;
    --loginFont: "Noto Sans JP", Roboto, "メイリオ", Meiryo, sans-serif;
}
/* ベーステーマ */
.t-login{
    margin:0 auto;
    width:100%;
    min-height: 100vh;
    font-size:16px;
    color: var(--loginText);
    text-align:center;
    background: var(--bgColor ,#fff);
    font-family: var(--loginFont);
}
.t-login img{
    max-width: 100%;
    vertical-align: top;
}
.t-login a{ color: #428bca; }
.t-login a:hover{ text-decoration: none; }
/* 背景色 */
.bg-startingBlue{ --bgColor: linear-gradient(to bottom, #ffffff 20%, #e8f0f9 80%); }

/* html{ background-color: #e8f0f9; } */

/******************* ヘッダー ********************/
/* ヘッダー */
.l-loginHeader,
.l-loginHeader2{
    width: 100%;
    padding-top: 20px;
    text-align: center;
}
/* Crayonロゴ */
.loginCrayonLogo,
.loginCrayonLogo2{ width: 130px; }

/* キャッチコピー */
.loginTitle{
    width: 96%;
    margin-inline: 2%;
    font-size: clamp(20px, 7vw, 40px);
    font-weight: 500;
    line-height: 2em;
    position: absolute;
    top: 20%;
}
/* かたまりで改行する */
.loginTitle > span{ display: inline-block; }

/* PCモード */
@media screen and (min-width: 750px){
    /* ロゴの位置を下げる */
    .l-loginHeader{
        padding-top: 150px;
        margin-bottom: 60px;
    }
    /* ロゴをでかくする */
    .loginCrayonLogo{ width: 180px; }

    /* キャッチコピーの絶対配置をやめる */
    .loginTitle{
        position: static;
        margin-bottom: 100px;
    }
}

/* スマホ横向きモード */
@media screen and (max-height: 640px) {
    /* ロゴの位置を戻す */
    .l-loginHeader{
        padding-top: 20px;
        margin-bottom: 40px;
    }
    /* ロゴのサイズを小さくする */
    .loginCrayonLogo{
        width: 100px;
    }
    /* タイトルの absolute を解除し、スクロール可能に */
    .loginTitle{
        position: static;
        margin-bottom: 40px;
    } 
}

/******************* ログインボタン ********************/
/* 画面下のボタンのレイアウト */
.l-buttomBtn{
    width: 90%;
    margin-inline: 5%;
    position: absolute;
    bottom: 0;
}
/* ボタン */
.loginBtn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: 44px;
    margin-inline: auto;
    border: none;
    border-radius: 22px;
    background-color: var(--oldWhite);
    box-shadow: 2px 2px 6px #0000004d, inset 0 1px #fff;
    color: var(--loginText);
    font-weight: bold;
    font-size: 14px;
    font-family: var(--loginFont);
    cursor: pointer; 
}
.loginBtn:hover,
.loginBtn:focus{
    box-shadow: 0px 0px 2px 1px var(--lightBlue);
}
.loginBtn:active{
    background-color: #f2f6fb;
    box-shadow: inset 0 1px 4px #0000004d;
}
/* ボタンの中の画像（Google） */
.loginBtn_Img{ margin: 12px; }

/* ボタンの中のメールの画像 */
.loginBtn_Img2{
    margin: 12px;
    fill:none;
    stroke:#fff;
    stroke-miterlimit:10;
    stroke-width:2px;
}
/* ボタンのセカンドカラー */
.loginBtn_2ndColor{
    background-color: var(--loginText);
    color: #fff;
    box-shadow: 2px 2px 6px #0000004d, inset 0 1px #6f7d83;
}
.loginBtn_2ndColor:active{
    background-color: #4e5559;
    box-shadow: inset 0 1px 4px #0000004d;
}
/* ボタンの中の文字 */
.IconBtn_Text,
.loginBtn_Text{
    line-height: 1;
    margin-bottom: 2px;
}
/* アイコンがある時、位置を調整 */
.IconBtn_Text{
    margin-right: 14px;
}

/* PCモード */
@media screen and (min-width: 750px){
    .l-buttomBtn{ position: static; }
    .loginBtn{ background-color: #fff; }
    .loginBtn_2ndColor{ background-color: var(--loginText); }
}
/* スマホ横向きモード */
@media screen and (max-height: 640px) {
    .l-buttomBtn{ position: static; }
}

/* 装飾文字 */
.l-loginBtn_Title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto 20px;
    width: 100%;
    max-width: 300px;
}
/* テキスト */
.loginBtn_Title{ padding: 0 10px; }

/* 左右の棒 */
.l-loginBtn_Title::before,
.l-loginBtn_Title::after{
    content: "";
    height: 2px;
    border-top: solid 1px #cae2ea;
    border-bottom: solid 1px #fff;
    flex-grow: 1;
    box-sizing: border-box;
    margin-top: 2px;
}
/* カスタマイズ */
.l-loginBtn_Title.lbt_Custom::before,
.l-loginBtn_Title.lbt_Custom::after{
    width: 30px;
    flex-grow: 0;
    border-top-color: #ccc;
}

/******************* ２ページ目 ********************/
/* タイトルのレイアウト */
.l-loginTitle2{
    display: inline-block; 
    margin: 0 2% 0 4%;
    text-align: center;
}
/* タイトル文字 */
.l-loginTitle2 > div{
    text-align: left;
    font-size: clamp(20px, 5.5vw, 24px);
    font-weight: 500;
    line-height: 1.8em;
}
/* PCモード */
@media screen and (min-width: 750px){
    /* 文字を横並びにする */
    .l-loginTitle2 > div{ display: inline-block; }
}

/* 規約の枠 */
.l-guideLine{
    display: inline-block;
    width: 100%;
    max-width: 280px;
    padding: 16px 16px 2px;
    text-align: left;
    border: solid 1px #cae2ea;
    border-radius: 10px;
}
/* リンクタイトル */
.guideLink{ margin-bottom: 8px; }
/* 説明文 */
.guideText{
    margin: 0 0 20px 16px;
    font-size: 14px;
}

/* ボタン下の文字 */
.loginCome{
    display: inline-block;
    max-width: 280px;
    margin-inline: 4%;
    font-size: 14px;
    text-align: left;
    line-height: 24px;
}

/******************* イレギュラーページ ********************/

/* エラーメッセージのレイアウト */
.l-loginErrorTitle{
    background-color: #fff0f1;
    color: #4d4d4d;
    padding: 16px 6%;
}
/* エラーメッセージ */
.loginErrorTitle{
    display: inline-block;
    margin-inline: auto;
    text-align: left;
    font-size: clamp(16px, 6vw, 24px);
    font-weight: 500;
    line-height: 1.8em;
}
/* PCモード */
@media screen and (min-width: 750px){
    /* 文字を横並びにする */
    .loginErrorTitle > div{ display: inline-block; }
}
/* ただの文字のレイアウト */
.l-loginErrorText{ padding: 0 6%; }

/* ただの文字 */
.loginErrorText{
    display: inline-block;
    margin-inline: auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
    max-width: 300px;
}
/* ただの文字、文字が少なくて改行されない時 */
.loginErrorText2{
    margin-inline: auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
    max-width: 300px;
}
/* ラインの中に文字 */
.l-guideLine2{
    display: inline-block;
    width: 100%;
    max-width: 300px;
    padding: 8px 12px 12px;
    text-align: left;
    border: solid 1px #cae2ea;
    border-radius: 10px;
}

/* エラーメッセージ */
.loginErrorMessage{
    max-width: 300px;
    margin-inline: auto;
    text-align: left;
    color: #f44336;
}
.loginErrorList{
    margin-left: 1em;
}
.loginErrorList:first-letter{
    margin-left: -1em;
}

/* ************** ログイン画面 ****************** */

/* ログインタイトル */
.l-loginTitle4{
    font-size: clamp(20px, 5.5vw, 24px);
    font-weight: 500;
    line-height: 1.8em;
}
/* ログインフォーム */
.l-loginInput{
    max-width: 300px;
    margin-inline: auto;
}
/* 入力フォームの項目名 */
.loginInput_Text{
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: 8px;
}
/* 入力フォーム */
.loginInput{
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: 44px;
    padding-inline: 12px;
    border: solid 1px #bfc4cb;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    color: var(--loginText);
}
.loginInput:hover{
    border-color: #93979d;
}
.loginInput:focus{
    box-shadow: 0px 0px 2px var(--lightBlue);
    border-color: #4ccbed;
}
/* プレースフォルダー */
input[type="text"]::placeholder {
      color: #aaa;
      font-size: 0.9em;
      font-style: italic;
      opacity: 1;/* Firefoxで薄くなる現象を防ぐ */
}
/* フォーカスされた時のプレースホルダーの色を透明にする */
input[type="text"]:focus::placeholder {
  color: transparent;
}

/* ボタンのサードカラー */
.loginBtn_3ndColor{
    background-color: #428bca;
    color: #fff;
    box-shadow: 2px 2px 6px #0000004d;
}
.loginBtn_3ndColor:hover{
    background-color: #337cbb;
}
.loginBtn_3ndColor:active{
    background-color: #337cbb;
    box-shadow: inset 0 1px 4px #0000004d;
}

/* ボタンのフォースカラー(Googleログイン用) */
.loginBtn_4ndColor{
    background-color: #fff;
    box-shadow: none;
    border: solid 1px #ccc;
}
.loginBtn_4ndColor:hover{
    border-color: #93979d;
    box-shadow: none;
}



/* ***************** 画面下のボタン ******************* */
/* 画面下に固定 */
.l-underButton{
    position: fixed;
    bottom: 0; right: 0;
    width: 100%; height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    column-gap: 20px;
    background: linear-gradient(to top, rgb(50 62 65 / 40%), 30%, rgb(193 215 228 / 0%));
    z-index: 99;
    pointer-events: none;
}
/* ボタンの基本形 */
.underButton{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ecf4f8;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 50%), inset 1px 1px 1px #fff;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}
/* マウスオーバー */
.underButton:hover{ filter: brightness(1.05); }
/* 押した時 */
.underButton:active{ transform: scale(0.95); }

/* 丸いボタン */
.type_Maru50{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
}
/* svgを灰色にする */
.fillGray{ fill: #697484; }

/* ***************** アラートメッセージ ******************* */
/* Google連携失敗 */
.l-notLogin{
    background-color: #ffd9dd;
    position: absolute;
    top: 0px;
    width: 100%;
    text-align: center;
    padding-inline: 5% 4%;
    /* アニメーション */
    animation: slideDown 0.5s ease-out forwards;
}
@keyframes slideDown {
    0% { transform: translateY(-100%);}
    100% { transform: translateY(0);}
}

.notLogin{
    display: flex;
    align-items: center;
    max-width: 750px;
    margin-inline: auto;
    padding: 16px 0;
}
.notLogin_Text{
    display: inline-block;
    text-align: left;
    flex-grow: 1;
    color: #444;
}
.notLogin_X{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 8px;
    border: solid 1px #efaea9;
    border-radius: 20px;
    flex-shrink: 0;
}
.notLogin_X > svg{
    fill: #efaea9;
}

/******************* モジュール（使うものだけ） ********************/
.relative{ position: relative; }
.mb-10{margin-bottom:10px;}
.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}
.mb-60{margin-bottom:60px;}
.mb-80{margin-bottom:80px;}
.mb-4{margin-bottom:4px;}
.mb-8{margin-bottom:8px;}
.mb-16{margin-bottom:16px;}
.mb-24{margin-bottom:24px;}

.mwm5{ width: 90%; margin-inline: 5%; }

.space_50{ width:20px; height: 50px; }
.space_120{ width:20px; height: 120px; }

.bg-white{background-color: #fff;}
.bg-loginBlue{background-color: #428bca;}

.s-hidden{display:none;}



/******************* 汎用モジュール ********************/

.flex{display: flex;}

.radius50,
a.radius50{ border-radius: 50px; }

.text_L{text-align: left;}
.text_R{text-align: right;}
.text_C{text-align: center;}

.bold{font-weight: bold;}
.bold_500{font-weight: 500}
.bold_0{font-weight: normal;}

.fontSize_42{ font-size: clamp(24px, 7vw, 42px); line-height: 1.5; }
.fontSize_32{ font-size: clamp(20px, 6vw, 32px); line-height: 1.5; }
.fontSize_18{ font-size: clamp(16px, 3.2vw, 18px); line-height: 1.5;}
.fontSize_20-30{ font-size: clamp(20px, 8vw, 30px); line-height: 1.5em; }
.fontSize_14-20{ font-size: clamp(14px, 5.5vw, 20px); line-height: 1.5em;}
.fontSize_12-15{font-size: clamp(12px, 2vw, 15px); line-height: 1.6em;}

.line_H16{ line-height: 1.6; }
.line_H18{ line-height: 1.8; }
.line_H20{ line-height: 2.0; }
.line_H22{ line-height: 2.2; }
.line_H24{ line-height: 2.4; }

/* メインビジュアル用の文字 */
.fontSizeH24{ font-size: clamp(14px, 5vw, 24px); line-height: 1.5em; }
.fontSizeH32{ font-size: clamp(16px, 5.5vw, 32px); line-height: 1.5em; }
.fontSizeH40{ font-size: clamp(20px, 7vw, 40px); line-height: 1.5em; }
.fontSizeH48{ font-size: clamp(28px, 7.5vw, 48px); line-height: 1.4em; }
.fontSizeH64{ font-size: clamp(30px, 8.5vw, 64px); line-height: 1.4em; }


/* ロゴサイズで使用 */
.maxHeight100{max-height:100px;}
.maxHeight90{max-height:90px;}
.maxHeight80{max-height:80px;}
.maxHeight70{max-height:70px;}

.max1250{max-width: 1250px;}
.max1000,
.max_W1000{max-width:1000px;}
.max850,
.max_W850{max-width:850px;}
.max_W710{max-width:710px;}


.h_100ps{height:100%;}

.padding_T50{padding-top: 50px;}
.padding_T80{padding-top: 80px;}
.padding_T100{padding-top: 100px;}

.padding_L40{padding-left: 40px;}

/* 左右余白シリーズ */
.margin_RL2ps{margin-right: 2%; margin-left: 2%;}
.margin_RL3ps{margin-right: 3%; margin-left: 3%;}
.margin_RL4ps{margin-right: 4%; margin-left: 4%;}
.margin_RL5ps{margin-right: 5%; margin-left: 5%;}
.margin_RL6ps{margin-right: 6%; margin-left: 6%;}

.padding_RL6ps{padding-right:6%; padding-left:6%;}


/* 下余白シリーズ */
.margin_B10{ margin-bottom: 10px; }
.margin_B20{ margin-bottom: 20px; }
.margin_B30{ margin-bottom: 30px; }
.margin_B40{ margin-bottom: 40px; }
.margin_B50{ margin-bottom: 50px; }
.margin_B60{ margin-bottom: 60px; }
.margin_B70{ margin-bottom: 70px; }
.margin_B80{ margin-bottom: 80px; }
.margin_B90{ margin-bottom: 90px; }
.margin_B100{ margin-bottom: 100px; }

/* 余白シリーズ */
.space_10{ width:20px; height: 10px; }
.space_20{ width:20px; height: 20px; }
.space_30{ width:20px; height: 30px; }
.space_40{ width:20px; height: 40px; }
.space_50{ width:20px; height: 50px; }
.space_60{ width:20px; height: 60px; }
.space_70{ width:20px; height: 70px; }
.space_80{ width:20px; height: 80px; }
.space_90{ width:20px; height: 90px; }
.space_100{ width:20px; height: 100px; }

.bg-white{background-color: #fff;}
.c-white{color:#fff;}
.c-black{color:#000;}

.hidden{ display: none; }
/* PCの時だけ非表示にするクラス */
@media screen and (min-width: 1200px){
    .s-pcHidden{ display: none; }
}
.block{ display: block; }
