@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap'); */

/* 全体 */
body{
    background-color:white ;
  
}
p#user-name{
  color: black;
  font-size: 30px;
  font-family: 'Permanent Marker', cursive;

}

.task-title{
  font-size: 20px;
  font-family: sans-serif;
  font-weight: bold;
}
.title{
  border-bottom: 3px solid #00a1e9;
  font-family: 'Permanent Marker', cursive;
  text-align: center;

}
h2.first {
  text-align: center;
  background-color: #00a1e9;
  color: white;
  margin-top: 50px;
}
h2.second {
  text-align: center;
  margin-top: 200px;
  background-color: #00a1e9;
  color: white;
}
label{
  font-size: 30px;
}

.date-input{
  width:280px;
  font-size: 25px;
}

button.add {
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #00a1e9;
    color: white;
    border: 3px solid #00a1e9;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer; 
}

button.add:hover{
color: #00a1e9;
background-color: #fff;
border: 3px solid #00a1e9;
}

.copyright{
    color: black;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 40px 0;
    position: static;
    margin-top: 300px;
}
/* 時計 */
div#clock {
  font-size: 30px !important;
  font-weight: bold;
  margin-top: 30px !important;
  color: #333;
  font-family: 'Caveat', cursive;
  text-align: center;
}

h2.first, h2.second, h2.data {
  background-color: #00a1e9;
  border-left: 10px solid #E0A106;
}
/* 入力フォーム */

textarea.input-large {
    width: 90%;
    max-width: 600px;
    height: auto;
    padding: 50px;
    font-size: 16px;
    box-sizing: border-box;
    text-align: left;
    /* vertical-align: top; */
    background: floralwhite;
    resize: vertical; /* ←縦方向のサイズ変更だけ許可（任意） */
    display: block;     /* ← 必須 */
    margin: 0 auto;     /* ← 中央寄せ */
}

h2.data{
  text-align: center;
  font-size: 30px;
  background-color: #00a1e9;
  color: white;
  margin-top: 60px;
}
ul{
  text-align: center;
  list-style: none;
  padding: 0;
}

p{
  text-align: center;
}
/* ハンバーガーメニュー共通 */
/* ========================= */
.hamburger {
    display: none; /* PCでは非表示 */
    width: 30px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    height: 4px;
    margin: 5px 0;
    background: #333;
    border-radius: 2px;
}


/* 共通メニュー */
.menu {
    display: flex;
    list-style: none;
    /* gap: 25px; */
    padding: 10px;
    margin: 70px;
}

.menu a {
  
    /* background: #ffffff; */
    /* border-bottom: 3px solid #e6001a; */
    padding: 10px 12px;
    text-decoration: none;
    font-size: 5px;
    font-weight: bold;
    color: #00a1e9;
    position: relative;
    /* text-align: center; */
}


.menu a:hover {
    color: #00a1e9;
}

form {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;    /* 横方向の中央寄せ */
    justify-content: center;/* 必要なら全体の中央（縦） */
    width: 100%;
}
.menu a:hover::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #00a1e9;
}

.submit-btn{
    font-size: 13px;
    margin-left: 30px;
    margin-top: 10px;
    border-radius: 39px;
    padding: 7px;
    color: #fff;
    background-color: #00a1e9;
    border: 3px solid #00a1e9;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.submit-btn:hover{
  color: #00a1e9;
  background-color: #fff;
  border: 3px solid #00a1e0;

}

.start-timer.active{
  color:red;
  font-weight: bold;
  margin-left: 20px;
}

.start-timer.complete{
  color:blue;
  font-weight: bold;
  margin-left: 20px;
}

#login-btn{
  margin-top: 60px;
  font-size: 20px;
}
.logout-container{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.logout {
  display: inline-block;
  margin-top: 60px;
    color:white;
    background-color: #00a1e9;
    border: 3px solid #00a1e9;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.logout:hover {
    background-color:white;
    color: #00a1e9;
}
.submit-btn2 {
  display: inline-block;
  margin-top: 60px;
    color:white;
    background-color: #00a1e9;
    border: 3px solid #00a1e9;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.submit-btn2:hover {
    background-color:white;
    color: #00a1e9;
}


/* ========================= */
/* ▼ PC向け ▼ */
/* ========================= */
@media screen and (min-width: 768px) {
    body {
        /* max-width: 900px; */
        margin: 0 auto;
        font-size: 16px;
    }

    .menu {
      display: flex !important;
      flex-direction: row;
      gap: 25px;
      padding: 10px 0;
      list-style: none;
      margin: 0px;
      justify-content: center;
    }
    .menu li a{
      font-family: 'Londrina Shadow', cursive;
      font-size: 30px;
      padding: 8px 12px;
      border: 2px solid #00a1e9;
      background-color: #00a1e9;
      color: #fff;
      padding-top: 0px;
    }
    .menu li a:hover{
      border: 2px solid #00a1e9;
      background-color: #fff;
      color: #00a1e9;
          transition: 0.3s;
    }

    .hamburger{
      display: none;
    }
}


/* ========================= */
/* ▼ スマホ向け ▼ */
/* ========================= */
@media screen and (max-width: 767px) {

    body {
        padding: 0 ;
        font-size: 14px;
    }

    .copyright{
    color: black;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-align: center;
    /* padding: 200px 16px 18px; */
    position: absolute;
bottom: 0; left: 0; right: 0
}
    /* .content-wrapper{
      padding:0 10px;
    } */

    /* ハンバーガー表示 */
    .hamburger {
        display: block;
    }

      .site-footer {
        background-size: cover; /* スマホでも全画面に広げる */
        padding: 30px 0;
    }

    /* メニューはスマホでは非表示スタート */
    .menu {
        display: none;
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
        background: #fff;
        border-top: 1px solid #ddd;
        /* text-decoration: underline darkgreen; */
    }

    /* 開いた時だけ表示 */
    .menu.open {
        display: flex;
    }
  .menu a {
        font-size: 25px;
        padding: 12px;
        width: 100%;
        position: relative;  /* これを忘れずに */
  
    }

    /* .menu a::after {
        bottom: 0;
        left: 50%;
        width: 40%;
        height: 3px;
        /* transform: translateX(-50%); */
    /* } */
     
    .menu a:hover{
      color: blue;
      transition: 0.3s;
    }

    .copyright{
    color: black;
    font-size: 13px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 40px 0;
    position: static;
}
}

.bg_pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: -1;
}
.Paper_v2 {
  background-image:
    repeating-linear-gradient(to bottom,
      transparent 25px,
      rgba(0, 0, 0, 0.04) 26px,  rgba(0, 0, 0, 0.04) 26px,
      transparent 27px,  transparent 51px, 
      rgba(0, 0, 0, 0.04) 52px,  rgba(0, 0, 0, 0.04) 52px,
      transparent 53px,  transparent 77px, 
      rgba(0, 0, 0, 0.04) 78px,  rgba(0, 0, 0, 0.04) 78px,
      transparent 79px,  transparent 103px, 
      rgba(0, 0, 0, 0.04) 104px,  rgba(0, 0, 0, 0.04) 104px,
      transparent 105px,  transparent 129px, 
      rgba(0, 0, 0, 0.04) 130px,  rgba(0, 0, 0, 0.04) 130px),
  
    repeating-linear-gradient(to right,
      transparent 25px,
      rgba(0, 0, 0, 0.04) 26px,  rgba(0, 0, 0, 0.04) 26px,
      transparent 27px,  transparent 51px, 
      rgba(0, 0, 0, 0.04) 52px,  rgba(0, 0, 0, 0.04) 52px,
      transparent 53px,  transparent 77px, 
      rgba(0, 0, 0, 0.04) 78px,  rgba(0, 0, 0, 0.04) 78px,
      transparent 79px,  transparent 103px, 
      rgba(0, 0, 0, 0.04) 104px,  rgba(0, 0, 0, 0.04) 104px,
      transparent 105px,  transparent 129px, 
      rgba(0, 0, 0, 0.04) 130px,  rgba(0, 0, 0, 0.04) 130px);
}