@charset "UTF-8";
body {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  position: relative;
  background-color: #dcf6ff;
}

.fa-circle-chevron-right {
  margin-left: 0.25em;
}

.fa-asterisk {
  color: red;
  font-weight: 600;
  margin-left: 1em;
}

.container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.c_box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1em;
}
.c_box .c_25 {
  width: 24%;
}
.c_box .c_35 {
  width: 34%;
}
.c_box .c_50 {
  width: 49%;
}
.c_box .c_65 {
  width: 64%;
}
.c_box .c_75 {
  width: 74%;
}
.c_box .c_100 {
  width: 98%;
}

ul li {
  margin-bottom: 0.25em;
}

table {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  border-collapse: collapse;
}
table tr {
  border-bottom: 1px solid #ccc;
  line-height: 3em;
}
table th {
  padding-right: 2em;
}
table td p {
  padding: 0.5em 0;
  line-height: 1.5em;
}

/*====================================================
 ページトップに戻る
 ====================================================*/
.pagetop {
  position: fixed;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: rgb(31, 84, 137);
  right: 10px;
  bottom: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border: none;
  z-index: 9999;
  transition: all 0.5s;
}
.pagetop span {
  display: block;
  color: white;
  position: absolute;
  inset: 0;
  top: 50px;
  font-size: 0.8em;
}

.fa-angle-up {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 4em;
  position: relative;
  bottom: 7px;
  height: 1em;
  transition: color 0.5s, font-size 0.5s;
}

/*==================================
 ハンバーガーメニュー
 ==================================*/
.humburger_menu {
  overflow: hidden;
}

.menu_btn {
  height: 80px;
  width: 80px;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  background-color: rgb(51, 23, 2);
  border: 4px solid #fff;
  border-radius: 20px;
  transition: background-color 0.5s;
}

.menu_btn:hover {
  cursor: pointer;
  background-color: rgb(148, 92, 50);
  transition: background-color 0.5s;
}

/*三本線*/
.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
  content: "";
  display: block;
  height: 5px;
  width: 50px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu_btn span {
  top: 25px;
  left: 11px;
}

.menu_btn p {
  color: white;
  position: absolute;
  top: 42px;
  left: 11px;
  font-size: 1.2em;
}

.menu_btn span:before {
  bottom: 14px;
  transform: rotate(0);
  /*アニメーション*/
  transition: all 0.5s;
}

.menu_btn span:after {
  top: 14px;
  transform: rotate(0);
  /*アニメーション*/
  transition: all 0.5s;
}

/*チェックボックスを非表示にする*/
#menu_btn_check {
  display: none;
}

/*元に戻る*/
.menu_btn span {
  background-color: rgb(255, 255, 255);
  transition: all 0.1s;
}

/*開いているときはボタンが×になる*/
.menu_btn.active span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 0.5s;
}

.menu_btn.active span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 0.5s;
}

/*===============
  メニュー部分
  ===============*/
.menu_content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  /*メニューの初期配置*/
  left: 100%;
  z-index: 9998;
  background-color: rgba(51, 23, 2, 0.8);
  transition: all 0.5s;
  padding-top: 100px;
  overflow-y: scroll;
}

.sub_menu {
  font-size: 1.2em;
  line-height: 2.5em;
  margin: 2em;
  max-width: 300px;
  width: 100%;
  cursor: pointer;
}
.sub_menu a {
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 1s;
  pointer-events: none;
}
.sub_menu ul {
  margin: 0;
}
.sub_menu li {
  position: relative;
  font-size: 1.2em;
  padding-bottom: 0.2em;
  transition: all 1s;
}

.fa-house,
.fa-building,
.fa-file,
.fa-map-location-dot,
.fa-user-tie {
  width: 30px;
  text-align: center;
}

/*==================================
 footer
 ==================================*/
footer {
  background-color: #dcf6ff;
  border-top: 20px solid #fff;
}
footer .container {
  max-width: 1400px;
  padding: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
footer .container .huku {
  max-width: -moz-max-content;
  max-width: max-content;
}
footer h1,
footer p {
  color: #063e74;
}
footer h1 {
  margin-bottom: 0.5em;
}
footer p {
  font-weight: 600;
}
footer .copyright {
  background-color: #62aaf9;
  color: #fff;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

/*==================================
 各見出し（汎用）共通
 ==================================*/
.contents_def h3 {
  position: relative;
  border-left: 6px solid #063e74;
  border-bottom: 1px solid #063e74;
  padding-left: 0.25em;
  width: 100%;
}

/*==================================
 各見出し（鳥）共通
 ==================================*/
.contents1 {
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.contents1 h3 {
  color: #063e74;
  position: relative;
}
.contents1 h3:before {
  content: "";
  width: 80px;
  height: 47px;
  position: absolute;
  background-image: url("../img/m_icon1.png");
  background-repeat: no-repeat;
  top: -10px;
  left: -90px;
}

.contents2 {
  justify-content: center;
  align-items: center;
}
.contents2 h3 {
  color: rgb(231, 100, 96);
  position: relative;
}
.contents2 h3:before {
  content: "";
  width: 80px;
  height: 84px;
  position: absolute;
  background-image: url("../img/m_icon2.png");
  background-repeat: no-repeat;
  top: -10px;
  left: -65px;
}

.contents3 {
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-top: 60px;
}
.contents3 h3 {
  color: #e68a34;
  position: relative;
}
.contents3 h3:before {
  content: "";
  width: 107px;
  height: 74px;
  position: absolute;
  background-image: url("../img/m_icon3.png");
  background-repeat: no-repeat;
  top: -45px;
  left: -75px;
}

.contents4 {
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-top: 60px;
}
.contents4 h3 {
  color: #8cbb01;
  position: relative;
}
.contents4 h3:before {
  content: "";
  width: 87px;
  height: 87px;
  position: absolute;
  background-image: url("../img/m_icon4.png");
  background-repeat: no-repeat;
  top: -45px;
  left: -70px;
}

.search {
  width: 100%;
  text-align: center;
}/*# sourceMappingURL=style.css.map */