@charset "utf-8";

/*フォントカラー*/
.font_orange {
  color: #ff8300 !important;
}

/*ボタン*/
.btn_log {
  display: block;
  padding: 15px 20px;
  text-align: center;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  background: #bcebff;
  border-radius: 0;
  border: 2px solid #000;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  position: relative;
}

span.btn {
  display: block;
  cursor: pointer;
}

.btn_log.logged {
  background: #d6d6d6;
  filter: none;
  color: #646464;
  border-color: #a3a3a3;
  pointer-events: none;
  padding: 15px 20px;
  text-align: center;
}

.btn_log:hover {
  background: #323232;
  color: #fff;
  opacity: 1;
}

.btn_log::before {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: 0.3s;
  font-family: "Material Icons Round";
  content: "arrow_forward_ios";
}

.btn_log:hover::before {
  right: 10px;
}

.btn_log.logged::before {
  content: none;
}

.btn.wid00{
  max-width: unset;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* =====main_nav===== */
#main_nav_cont {
  transition: 0.5s;
  position: fixed;
  left: 50%;
  top: 78px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  opacity: 0;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.main_aside#main_nav_cont.fixed .nav_sidebar {
  background-color: #fff;
  top: 0;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
}

#main_nav_cont.fixed {
  opacity: 1;
  pointer-events: unset;
}

#main_nav_cont .nav_sidebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

#main_nav_cont .nav_sidebar li {
  width: 50%;
}

#main_nav_cont .nav_sidebar li a {
  display: block;
  padding: 10px 15px;
  padding-right: 30px;
  color: #000;
  font-weight: 600;
  line-height: 1.2;
  background: #ffffffcc;
  height: 100%;
  font-size: 0.9em;
  position: relative;
  transition: 0.3s;
}

#main_nav_cont .nav_sidebar li a:before {
  display: block;
  position: absolute;
  right: 15px;
  top: 30%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: 0.3s;
  content: "arrow_forward_ios";
  transform: rotate(90deg);
}

#main_nav_cont .nav_sidebar li a:hover {
  background: #bcebff;
  opacity: 1;
}

/* mainエリア共通 */

#main h3 {
  /* margin-bottom: 30px; */
}

#main h3 span {
  color: #00afe9;
  font-size: 20px;
  margin-right: 10px;
}

#main h3 span:after {
  font-family: "Material Icons Round";
  content: "keyboard_double_arrow_right";
  vertical-align: -2.5px;
  margin-left: 5px;
}

#main .sub_ttl {
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  #main h3 span {
    font-size: 18px;
  }

  #main .sub_ttl {
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  #main h3 span {
    font-size: 15px;
  }

  #main .sub_ttl {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 15px;
  }

  #main_nav_cont .main_nav li a {
    font-size: 0.8em;
    padding: 8px 12px;
    padding-right: 25px;
  }

  #main_nav_cont .main_nav li a:before {
    right: 10px;
  }
}

#main > .container figure {
  border: 1px solid #d6d6d6;
}

@media screen and (max-width: 840px) {
}

/*about*/
#about {
}

#about .flex {
  display: flex;
  justify-content: space-between;
  background: #f2f2f2;
  padding: 15px;
  align-items: center;
  position: relative;
}

#about .flex:before {
  content: "";
  height: calc(100% - 30px);
  width: 1px;
  background: #8c8c8c;
  display: inline;
  position: absolute;
  top: 15px;
  left: 130px;
}

#about .flex p {
  width: 100px;
  text-align: center;
  font-weight: bold;
}

#about .flex ol {
  width: calc(100% - 150px);
}

/*#about .flex ol li+li {
    margin-top: 5px;
}*/

#about .flex ol li a {
  color: #009fd3;
  font-weight: bold;
}

#about .flex ol li a:after {
  display: inline-block;
  margin-left: 5px;
  font-family: "Material Icons Round";
  content: "arrow_forward_ios";
  transform: rotate(90deg);
  font-size: 0.8em;
}

@media screen and (max-width: 600px) {
  #about .flex {
    display: block;
  }

  #about .flex:before {
    display: none;
  }

  #about .flex p {
    width: 100%;
    order: -1;
    margin-bottom: 10px;
    font-size: 1.2em;
  }

  #about .flex ol {
    width: 100%;
    margin-top: 10px;
  }
}
