@charset "UTF-8";

/* -------------------------------------------------------------------------- */
/* 共通部分
/* -------------------------------------------------------------------------- */

:root {
  /*--color-main: #146618;*/
  /* main color darkblue */
  --color-main: #00008d;
  --color-border-main: #00008d;
  /*--color-bg-main: #ccffcf;*/
  --color-bg-main: #cceeff;
  --color-border-gray: #666666;
  --color-gray: #E6E6E6;
  --color-black: #333333;
  --color-white: #ffffff;
  --color-coral: #e0524a;
  --color-pink: #DB3561;
  --color-green: #40996d;
  --color-active: #fafafa;
  --color-silver: #cccccc;
  --color-orange: #ff8200;
  /*--color-shadow: #0a330c;*/
  --color-shadow: #54548c;
  --color-orange-shadow: #cc6d1b;
  --color-gray-shadow: #d3d3d3;
  --color-title-shadow: #808080;
  --color-gray-footer: #999999;
  --color-readonly: #f9f9f9;
  --color-border-readonly: #aaaaaa;
}

body{
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: var(--color-black);
  font-size: 16px;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    font-weight: regular, bold;
  }
}

a {
  text-decoration: none;
  color: var(--color-black);
}
a:link { color: var(--color-black); }
a:visited { color: var(--color-black); }
a:hover { color: var(--color-black); }
a:active { color: var(--color-black); }

img {
  max-width: 100%;
}

p {
  font-size: 16px;
}

/* -------------------------------------------------------------------------- */
/* フォーム
/* -------------------------------------------------------------------------- */

input[type="text"],
input[type="password"],
input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  min-width: 120px;
}
textarea {
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  height: 15rem;
}
input[readonly] {
  background: var(--color-readonly) !important;
  border: 1px solid var(--color-border-readonly) !important;
}
textarea[readonly] {
  background: var(--color-readonly) !important;
  border: 1px solid var(--color-border-readonly) !important;
}
select {
  padding: 10px;
  position: relative;
  -moz-appearance: menulist !important;
  -webkit-appearance: menulist !important;
}

@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  textarea,
  select {
    max-width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* レイアウト
/* -------------------------------------------------------------------------- */

section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 50px;
  padding-top: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 768px) {
  .wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  section {
    padding-left: 3%;
    padding-right: 3%;
  }
}

.ml15 {
  margin-left: 15px;
}
.mr15 {
  margin-right: 15px;
}

/* -------------------------------------------------------------------------- */
/* ナビゲーション
/* -------------------------------------------------------------------------- */
.page-header {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  padding-bottom: 20px;
}
.header_p_f {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: var(--color-white);
}

@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
  }
}

/* -------------------------------------------------------------------------- */
/* ハンバーガーメニュー
/* -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::before,
::after {
  box-sizing: inherit;
}

button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/**************** ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  /*top: 32px;*/
  top: 10px;
  right: 16px;
  /* 最前面に */
  z-index: 10;
  /* ボタンの大きさ  */
  width: 48px;
  height: 48px;
}
.btn:hover {
  opacity: 0.5;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  /* バーガー線の位置基準として設定 */
  position: relative;
  /* 線の長さと高さ */
  width: 100%;
  height: 4px;
  /* バーガー線の色 */
  background-color: var(--color-black);
  transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  transition: .5s;
}

.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-16px);
}

.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(16px);
}

/***** メニューオープン時 *****/
.btn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: var(--color-black);
  transition: .2s;
}

.btn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(45deg);
}

.btn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-45deg);
}

/**************** メニューのスタイリング ****************/
.sp-container .main-nav {
  /* メニューを縦に */
  display: flex;
  flex-direction: column;
  position: fixed;
  /* メニューの位置マイナス指定で画面外に */
  right: -70%;
  width: 50%;
  height: 100vh;
  background-color: rgba(204, 238, 255, .9);
  color: var(--color-white);
  /*transition: .3s;*/
}

.sp-container .main-nav a {
  color: var(--color-black);
}
.sp-container .main-nav a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-shadow: 1px 1px 1px var(--color-gray-shadow);
}
/***** メニューオープン時位置0にして画面内に *****/
.main-nav.open {
  position: absolute;
  right: 0;
  top: 68px;
}

/* 768px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 769px) {
  .btn {
    display: none;
  }
  .sp-container .main-nav {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
  }
}

/* -------------------------------------------------------------------------- */
/* ログイン前・ログイン後の共通ナビゲーション
/* -------------------------------------------------------------------------- */

.main-nav {
  display: flex;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 5px;
  list-style: none;
}
.main-nav li {
  margin-left: 30px;
  margin-top: 20px;
}
.main-nav a {
  color: var(--color-black);
}

.sp-container {
  display: none;
}
.sp-container .main-nav a {
  font-size: 1.5rem;
}

/* ホバー　アンダーライン */
.main-nav a:hover {
  color: var(--color-main);
  text-decoration: underline;
  text-shadow: 1px 1px 1px var(--color-gray-shadow);
}

@media (max-width: 768px) {
  .pc-container {
    display: none !important;
  }
  .sp-container {
    display: block;
  }
}

/* -------------------------------------------------------------------------- */
/* ヘッダー
/* -------------------------------------------------------------------------- */
h1 {
  position: relative;
  color: var(--color-black);
  text-shadow: 0 0 2px var(--color-white);
  top: 10px;
  font-size: 2rem;
}
/*h1:before {
  content: "";
  position: absolute;
  background: #9de5ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}*/
@media (max-width: 768px) {
  h1 {
    text-align: center;
    font-size: 1.2em;
    top: 0%;
  }
}

#page-title {
  background-image: url(../images/main-view.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  min-height: 250px;
  opacity: 0.8;
}

#page-title h2 {
  position: absolute;
  top: 55%;
  /*margin-left: 10%;*/
  color: var(--color-black);
  line-height: 1.5;
  text-shadow: 1px 2px 3px var(--color-title-shadow);
  font-weight: bold;
  /*margin-bottom: 80px;*/
  text-align: left;
  font-size: 30px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 60px 0 60px;
}

@media (max-width: 768px) {
  #page-title h2 {
    margin-left: 0%;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.5rem !important;
    width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* フッター
/* -------------------------------------------------------------------------- */
footer {
  min-height: 135px;
  text-align: center;
  margin: 0 auto;
  margin-top: 120px;
  background-color: var(--color-gray);
}
footer .footer_info {
  padding: 30px 0 30px 0;
}
.footer_info a,
.footer_info a:link,
.footer_info a:visited,
.footer_info a:active {
  color: var(--color-main);
  text-decoration: underline;
}
.footer_info a:hover {
  text-shadow: 1px 1px 1px var(--color-gray-shadow);
}

footer .footer_tel {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.5;
}
footer .footer_require {
  position: relative;
  padding: 0.5em 1.5em;
  border-top: solid 2px var(--color-gray-footer);
  border-bottom: solid 2px var(--color-gray-footer);
  min-width: 300px;
  max-width: 700px;
  text-align: left;
  margin: 0 auto;
  font-size: 12px;
}
.footer_require:before, .footer_require:after{
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: var(--color-gray-footer);
}
.footer_require:before {left: 10px;}
.footer_require:after {right: 10px;}

footer .copyright {
  padding: 30px 0 50px 0;
}

footer .sp-container .copyright {
  padding: 20px 0 30px 0;
  font-size: 12px;
}

/* -------------------------------------------------------------------------- */
/* 各種テーブル用
/* -------------------------------------------------------------------------- */

.tbl-basic {
  border-collapse: separate;
  border-spacing: 0px 5px;
  width: 80%;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 30px;
}
.tbl-basic th {
  padding: 10px;
  width: 400px;
}
.tbl-basic td {
  margin: 5px;
  padding: 10px;
  width: 900px;
}

@media screen and (max-width: 768px) {
  .tbl-basic {
    width: 80%;
  }
  .tbl-basic th,
  .tbl-basic td {
    border-bottom: none;
    display: block;
    width: 100%;
    text-align: center;
  }
}

.tbl-request {
  border-collapse: separate;
  border-spacing: 0px 5px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}
.tbl-request td {
  margin: 5px;
  padding: 10px;
  border: 1px solid #F5F5F5;
  vertical-align: top;
}
.tbl-request th {
  margin: 5px;
  padding: 10px;
  width: 200px;
  background-color: #f0f8ff;
}
.th_01 {
  display: none;
}
@media screen and (max-width: 768px) {
  .tbl-request {
    width: 90%;
  }
  .tbl-request th {
    border-bottom: none;
    display: block;
    width: 100%;
    text-align: left;
  }
  .tbl-request td {
    display: block;
    width: 100%;
    text-align: left;
  }
  /* 見出し変更 */
  .tbl-request thead {
    display: none;
  }
  .th_01 {
    display: block;
  }
}

.tbl-center {
  margin: 0 auto !important;
  text-align: center !important;
  width: 80%;
}
.tbl-search {
  margin: 0 auto !important;
  width: 80%;
}
.tbl-search th {
  text-align: center !important;
}
.tbl-search td {
  text-align: left !important;
}
.tbl-searchbtn {
  border-top: 0px !important;
  border-right: 0px !important;
  border-bottom: 0px !important;
  width:10%;
}

/* -------------------------------------------------------------------------- */
/* ボタンスタイル
/* -------------------------------------------------------------------------- */
.aqua_btn {
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 5px;
  padding: 10px 30px !important;
  font-size: 18px !important;
  font-weight: bold;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2), 0 -4px 7px -2px var(--color-shadow) inset;
  border: 0px;
}
.aqua_btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
.orange_btn {
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 5px;
  padding: 10px 30px !important;
  font-size: 18px !important;
  font-weight: bold;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2), 0 -4px 7px -2px var(--color-orange-shadow) inset;
  border: 0px;
}
.orange_btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
.gray_btn {
  color: var(--color-border-gray);
  background-color: var(--color-gray);
  border-radius: 5px;
  padding: 10px 30px !important;
  font-size: 18px !important;
  font-weight: bold;
  box-shadow: 0 2px 2px rgba(0,0,0,0.2), 0 -4px 7px -2px var(--color-gray-shadow) inset;
  border: 0px;
}

@media (max-width: 768px) {
  .aqua_btn {
    padding: 10px;
    font-size: 12px;
  }
  .orange_btn {
    padding: 10px;
    font-size: 12px;
  }
  .gray_btn {
    padding: 10px;
    font-size: 12px;
  }
}

/* -------------------------------------------------------------------------- */
/* ボックスレイアウト
/* -------------------------------------------------------------------------- */

/* 左寄せボックス */
.leftbox {
  text-align: left;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .leftbox {
    margin: 0 auto !important;
    width: 100% !important;
  }
}
/* 右寄せボックス */
.rightbox {
  text-align: right;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .rightbox {
    margin: 0 auto !important;
    width: 100% !important;
  }
}

/* 中央寄せボックス */
.centerbox {
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

/* -------------------------------------------------------------------------- */
/* [共通] 見出し
/* -------------------------------------------------------------------------- */

/* タイトル部分 */
.main-title {
  text-align: center;
}
/* 見出し */
.main-title h3 {
  font-size: 20px;
}

/* 必須や重要ポイントカラー */
.requireRed {
  color: var(--color-pink);
}

/* -------------------------------------------------------------------------- */
/* プログレスバー
/* -------------------------------------------------------------------------- */
.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.3%;
  color: #999999;
  font-weight: bold;
  counter-increment: steps;
}
.progressbar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 20px auto;
  content: '';
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  content: counter(steps);
}
.progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #F5F5F5;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active,
.progressbar li.complete{
  color: #0070BD;
}
.progressbar li.active:before,
.progressbar li.complete:before {
  background-color: #0070BD;
  color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
  background-color: #0070BD;
}

/* -------------------------------------------------------------------------- */
/* [居住者]仮登録申請
/* -------------------------------------------------------------------------- */
/* 注意がきボックス */
.sample_box3_1 {
  position: relative;
  padding: 1em 1.5em;
  margin: 0 auto;
  border: solid 3px #0070BD;/*線*/
  border-radius: 8px;/*角の丸み*/
  color: #000000;/*文字色*/
  width: 80%;
  margin-top: 80px;
  margin-bottom: 40px;
}
.sample_box3_1 .sample_box_title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 10px;
  line-height: 1;
  font-size: 1.2em;/*タイトル文字サイズ*/
  background: #ffffff;/*タイトル文字背景色*/
  color: #0070BD;/*タイトル文字色*/
  font-weight: bold;
}

/* 注意書きボックス内のメッセージとリンク */
.stepmsg {
  margin: 0 auto;
  padding: 10px;
  text-align: center;
}
.stepmsg a,
.stepmsg a:link,
.stepmsg a:visited,
.stepmsg a:active {
  font-weight: 400;
  color: var(--color-main);
  font-size: 24px;
  text-decoration: underline;
  padding-right: 20px;
}
.stepmsg a:hover {
  text-shadow: 1px 1px 1px var(--color-gray-shadow);
}

/* 顔認証画像・本人確認書類の画像プレビュー */
img .preview {
  width: 300px;
  height: auto;
}

/* -------------------------------------------------------------------------- */
/* [顔認証登録者]仮登録申請一覧
/* -------------------------------------------------------------------------- */

.detail_link {
  padding: 10px;
}
.detail_link a,
.detail_link a:link,
.detail_link a:visited,
.detail_link a:active {
  font-weight: 400;
  color: var(--color-main);
  font-size: 24px;
  text-decoration: underline;
  padding-right: 20px;
}
.detail_link a:hover {
  text-shadow: 1px 1px 1px var(--color-gray-shadow);
}

/* -------------------------------------------------------------------------- */
/* ぱんくずリスト
/* -------------------------------------------------------------------------- */
.bc_container {
  position: relative;
  top: 15px;
  padding: 0 60px 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.bc_container > nav {
  position: absolute;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}
.breadcrumb li > a {
  color: var(--color-main);
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* トップページ　お知らせ
/* -------------------------------------------------------------------------- */
.news-text {
  width: 100%;
  height: auto;
  padding: 0 30px;
  margin: 0 auto;
}
.news-text p {
  margin: 10px;
}
.news-text a:hover {
  text-decoration: underline;
}
.heading02 {
  position: relative;
  font-size: 26px;
  text-align: center;
  border-bottom: 5px solid var(--color-gray);
  margin-bottom: 50px;
}
.heading02::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background-color: var(--color-main);
}
.heading02 span {
  color: var(--color-main);
  font-size: 26px;
}
.baseline {
  border-bottom: 2px solid var(--color-border-main);
}
.info-area {
  border-top: 2px solid var(--color-border-main);
  border-bottom: 2px solid var(--color-border-main);
  padding: 30px 0;
}
.info-date {
  text-align: center;
  color: var(--color-main);
  font-weight: bold;
  vertical-align: baseline;
  margin-bottom: 30px;
}
.info-title {
  text-align: center;
  font-size: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border-main);
  margin-bottom: 30px;
}
.info-text p {
  margin-bottom: 20px;
}
.info-text a:hover {
  text-decoration: underline;
}
/* 戻るボタン */
.link-back {
  text-align: right;
  position: relative;
  font-weight: 600;
  padding: 10px 20px 10px 0;
}
.link-back .fa-fast-backward {
  color: var(--color-white);
  margin-left: 15px;
}
.link-back .fa-fast-backward::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--color-main);
  z-index: -1;
}
.link-back-btn:hover {
  opacity: 0.6;
  transition: .3s;
}

/* -------------------------------------------------------------------------- */
/* マンション管理者用 テーブルレイアウト
/* -------------------------------------------------------------------------- */
.tbl-admin {
  border-collapse: separate;
  border-spacing: 0px 0px;
  margin-bottom: 50px;
  margin-top:10px;
  width: 100%;
}
.tbl-admin th {
  border: 1px solid var(--color-silver);
  padding: 10px !important;
}
.tbl-admin td {
  border: 1px solid var(--color-silver);
  padding: 10px !important;
}
.infolist-title {
  text-align: center;
  width: 150px
}
.tbl-admin td a {
  text-decoration: underline;
}
.tbl-admin th {
  background-color: #EFEFEF !important;
  color: var(--color-black) !important;
}
.tbl-admin tr:first-child th {
  border-top: 5px solid var(--color-border-main);
}

/* 中央寄せ (文字・ボタン) */
.button-center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .scroll {
    overflow-x: auto;
  }
}

/* -------------------------------------------------------------------------- */
/* ページネーションスタイル
/* -------------------------------------------------------------------------- */
.pagination-container {
  content: "";
  clear: both;
  display: block;
  margin-top: 15px;
  padding-top: 40px;
  border-top: 1px dashed var(--color-silver);
  width: 100%;
  text-align: center;
}
.pagination-container ul {
  width: 100%;
  display: flex;
  justify-content: center;
  list-style: none;
}
.pagination-container li + li{ margin-left: -1px; }
.pagination-container a {
  padding: 10px 20px;
  display: block;
  color: var(--color-black);
  border: 1px solid var(--color-silver);
  text-decoration: none;
  background: var(--color-white);
}
.pagination-container .navi-active a {
  font-weight: bold;
  background: var(--color-active);
}
.pagination-container a:hover {
  color: var(--color-white);
  background: var(--color-main);
}
