﻿@charset "UTF-8";
/**********************************************************************************************/
/* ヘッダー */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px -1px 2px inset gray; }
  .header .title {
    height: 3rem; }
    .header .title a {
      height: 100%; }
      .header .title a img {
        height: 100%; }
  .header .openbtn-dummy {
    width: 50px;
    height: 50px; }
  .header .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 99; }
    .header .openbtn + .left-openbtn {
      position: absolute;
      top: 0;
      left: 0; }
    .header .openbtn + .right-openbtn {
      position: absolute;
      top: 0;
      right: 0; }
  .header .hamburger-menu-btn {
    /*ボタン内側*/
    /*activeクラスが付与されると線が回転して×に*/ }
    .header .hamburger-menu-btn span {
      display: inline-block;
      transition: all 0.4s;
      /*アニメーションの設定*/
      position: absolute;
      height: 3px;
      width: 45%;
      left: 14px;
      border-radius: 2px;
      background: #fff;
      background-color: var(--footer-content-color); }
      .header .hamburger-menu-btn span:nth-of-type(1) {
        top: 15px; }
      .header .hamburger-menu-btn span:nth-of-type(2) {
        top: 23px; }
      .header .hamburger-menu-btn span:nth-of-type(3) {
        top: 31px; }
    .header .hamburger-menu-btn.active span {
      background-color: white; }
      .header .hamburger-menu-btn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%; }
      .header .hamburger-menu-btn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/ }
      .header .hamburger-menu-btn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%; }
  .header .setting-menu-btn {
    color: var(--footer-content-color);
    transition: 0.5s;
    transform: rotate(0deg);
    /*activeクラスが付与されると線が回転して×に*/ }
    .header .setting-menu-btn span {
      width: fit-content;
      height: fit-content;
      transform: scale(1.2);
      font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 14; }
    .header .setting-menu-btn.active {
      color: #fff;
      transition: 0.5s;
      transform: rotate(-180deg); }

/* フッター */
.footer {
  width: 100%;
  position: absolute;
  bottom: 0px;
  box-shadow: 0px 1px 2px inset gray;
  padding-top: 1.5px;
  background-color: white; }
  .footer .float-footer {
    position: absolute;
    right: 4px;
    bottom: 60px;
    color: gray;
    font-size: .6rem; }
  .footer .tab-link-highlight {
    display: none;
    height: 2px;
    width: calc(100% / var(--footer-content-count));
    border-radius: 5px;
    transform: translate3d(0px, 0px, 0px);
    /* 1つ目 */
    background-color: var(--footer-content-color);
    transform: 100px;
    transition: transform 0.5s; }
  .footer .footer-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    align-content: center;
    overflow: hidden; }
    .footer .footer-inner .tab-content {
      width: 100%;
      display: flex;
      justify-content: center; }
      .footer .footer-inner .tab-content .material-symbols-outlined {
        margin: auto; }
      .footer .footer-inner .tab-content a.tab-link {
        width: 100%;
        text-align: center;
        padding: 4px 0 4px 0;
        text-decoration: none;
        font-weight: bold;
        color: var(--footer-content-base-color); }
        .footer .footer-inner .tab-content a.tab-link span {
          display: block; }
        .footer .footer-inner .tab-content a.tab-link.active {
          color: var(--footer-content-color); }

/* モーダル */
/**********************************************************************************************/
:root {
  --side-modal-top-height: 50px;
  --side-modal-bottom-height: 50px;
  --side-modal-middle-height: calc(100% - var(--side-modal-top-height) - var(--side-modal-bottom-height));
  --side-modal-frame-text-color: black;
  --side-modal-text-color: white; }

/**********************************************************************************************/
.modal-content {
  border-radius: 10px;
  margin: 10px; }

.base-modal {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 0;
  left: 0; }
  .base-modal.active {
    height: 100%;
    width: 100%;
    z-index: 90; }

.my-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: .2rem; }

.side-modal {
  height: 100%;
  width: calc(100% * 0.7);
  max-width: 20rem;
  position: absolute;
  top: 0;
  background-color: var(--side-modal-base-color);
  transition: transform 0.5s;
  transform: translateX(-100%);
  z-index: 95; }
  .side-modal .nav-link {
    color: var(--side-modal-frame-text-color); }
  .side-modal.active {
    transition: transform 0.5s;
    transform: translateX(0%); }
  .side-modal .side-modal-top {
    background-color: var(--side-modal-frame-color);
    height: var(--side-modal-top-height);
    padding: 5px; }
    .side-modal .side-modal-top.left {
      display: flex;
      justify-content: end; }
    .side-modal .side-modal-top .nav-link {
      color: var(--side-modal-text-color); }
  .side-modal .side-modal-middle {
    height: var(--side-modal-middle-height); }
  .side-modal .side-modal-bottom {
    background-color: var(--side-modal-frame-color);
    height: var(--side-modal-bottom-height);
    padding: 5px; }
    .side-modal .side-modal-bottom.left {
      justify-content: space-between; }
      .side-modal .side-modal-bottom.left div {
        display: flex; }
    .side-modal .side-modal-bottom .nav-link {
      color: var(--side-modal-text-color); }
    .side-modal .side-modal-bottom .logout-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      margin: 1px;
      background-color: white; }
      .side-modal .side-modal-bottom .logout-btn .material-symbols-outlined {
        font-family: 'Material Symbols Outlined'; }
      .side-modal .side-modal-bottom .logout-btn .material-symbols-outlined {
        padding: 4px 0 0 3px; }
      .side-modal .side-modal-bottom .logout-btn a {
        color: var(--material-symbol-color); }
  .side-modal ul li.nav-item {
    background-color: white; }
    .side-modal ul li.nav-item div, .side-modal ul li.nav-item a {
      padding: .5rem .5rem;
      border: 1px solid lightgrey;
      background-color: white;
      vertical-align: middle;
      display: flex;
      align-items: center;
      /* 垂直方向の中央寄せ */ }
    .side-modal ul li.nav-item .material-symbols-outlined {
      font-size: 1.1rem; }

.left-modal {
  left: 0;
  transform: translateX(-100%); }
  .left-modal.active {
    transition: transform 0.5s;
    transform: translateX(0%); }

.right-modal {
  right: 0;
  transition: 0.5s;
  transform: translate(100%, -100%) scale(0);
  overflow-y: hidden;
  background-color: whitesmoke;
  opacity: 0; }
  .right-modal.active {
    transition: 0.5s;
    transform: translate(0%, 0%) scale(1);
    background-color: var(--side-modal-base-color);
    opacity: 1; }
  .right-modal .material-symbols-outlined {
    font-size: 16px;
    font-family: 'Material Symbols Outlined'; }

.modal-create-page .inner-page-top {
  justify-content: center; }

.modal-create-page .form-outter-group {
  overflow-y: unset;
  padding: 35px 0 35px 0; }

.modal-create-page .button-group {
  padding: 5px 40px 5px 40px; }
  .modal-create-page .button-group button {
    width: 100%; }

/**********************************************************************************************/
:root {
  --body-width: 100vw;
  --header-height: 50px;
  --footer-height: 58px;
  --footer-height-pd: 4px;
  --footer-content-count: 3;
  --footer-content-width: calc(var(--body-width) / var(--footer-content-count));
  --footer-content-color: #007aff;
  --footer-content-base-color: rgba(0, 0, 0, 0.54);
  --side-modal-base-color: gray;
  --side-modal-frame-color: dimgray;
  --modal-width: calc(100% * 0.7);
  --search-prop-area-height: 126px;
  --search-prop-area-bottun-group-height: 76.8px;
  --bs-body-line-height: 1.4; }

/**********************************************************************************************/
.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2); }

/**********************************************************************************************/
html {
  height: 100%;
  overflow: hidden; }
  html body {
    height: 100%;
    width: 100%;
    overflow: hidden; }
    html body main {
      height: 100%;
      overflow: hidden; }
      html body main .body-content {
        height: calc(100% - var(--header-height) - var(--footer-height)); }
        html body main .body-content .body-content-inner {
          height: 100%; }
          html body main .body-content .body-content-inner .body-panel {
            height: 100%; }
            html body main .body-content .body-content-inner .body-panel .page {
              overflow-y: hidden; }
          html body main .body-content .body-content-inner > div {
            display: none; }

/*
* {
    outline: 2px solid blue;
  }
*/
/**********************************************************************************************/
@media (min-width: 768px) {
  html {
    font-size: 16px; } }
