@charset "UTF-8";
.inner {
  min-width: 1000px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0 80px;
  height: 100%;
}
@media screen and (max-width: 667px) {
  .inner {
    min-width: 0;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
  }
}
.mode-sp .inner {
  min-width: 0;
  padding: 0 20px;
  width: 100%;
  overflow: hidden;
}

/***********************************
/* ヘッダ
***********************************/
.logo_header {
  width: 90px;
  height: 84px;
  background: url(../img/logo_header.png) center center/cover no-repeat;
  display: block;
  position: fixed;
  top: 20px;
  left: 80px;
  z-index: 100;
}
@media screen and (max-width: 667px) {
  .logo_header {
    width: 60px;
    height: 56px;
    left: 20px;
  }
}
.mode-sp .logo_header {
  width: 60px;
  height: 56px;
  left: 20px;
}
.under .logo_header {
  background: url(../img/logo_header-under.png) center center/cover no-repeat;
}

.btn_drawer {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 40px;
  right: 20px;
  width: 35px;
  height: 30px;
  background: none;
}
.btn_drawer span {
  width: 100%;
  height: 1px;
  background: white;
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.under .btn_drawer span {
  background: #363636;
}
.btn_drawer span:first-of-type {
  top: 0;
}
.btn_drawer span:nth-of-type(2) {
  top: 6px;
}
.btn_drawer span:last-of-type {
  top: 12px;
}
.btn_drawer.open span {
  background: white;
}
.btn_drawer.open span:first-of-type {
  top: 6px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.btn_drawer.open span:nth-of-type(2) {
  display: none;
}
.btn_drawer.open span:last-of-type {
  top: 6px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 667px) {
  .btn_drawer {
    display: block;
  }
}
.mode-sp .btn_drawer {
  display: block;
}

.switch-sp {
  display: none;
}
@media screen and (max-width: 667px) {
  .switch-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: 30px;
    right: 80px;
    z-index: 998;
  }
}
.mode-sp .switch-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 30px;
  right: 80px;
  z-index: 998;
}
.switch-sp [class^=btn] {
  letter-spacing: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #cbcbcb;
  color: white;
  border: solid 1px #cbcbcb;
}
.switch-sp [class^=btn].on {
  background: #33B093;
  border: solid 1px #33B093;
}
.top .switch-sp [class^=btn] {
  background: none;
  border: solid 1px white;
  color: rgba(255, 255, 255, 0.6);
}
.top .switch-sp [class^=btn].on {
  background: white;
  border: solid 1px white;
  color: #33B093;
}
.switch-sp .switch_line {
  width: 1px;
  height: 20px;
  background: #363636;
  margin: 0 10px;
}
.top .switch-sp .switch_line {
  background: white;
}

.nav_drawer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #33B093;
  padding: 40px 40px 100px;
  overflow: scroll;
  display: none;
  z-index: 999;
}
.nav_drawer .nav_drawer_inner {
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.nav_drawer .nav_drawer_title {
  width: 100px;
  height: 8px;
  background: url(../img/drawer_title.png) center center/contain no-repeat;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.nav_drawer li {
  position: relative;
}
.nav_drawer li:not(:last-of-type) {
  margin-bottom: 40px;
}
.nav_drawer .drawer_menu {
  margin-top: 100px;
}
.nav_drawer .drawer_menu .drawer_menu_title {
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 700;
  width: 50%;
  position: relative;
}
.nav_drawer .drawer_menu .drawer_menu_title.acc:before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  background: white;
}
.nav_drawer .drawer_menu .drawer_menu_title.acc:after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7px);
  right: 7px;
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav_drawer .drawer_menu .drawer_menu_title.acc.open:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.nav_drawer .drawer_menu .drawer_menu_title .to_pub {
  color: #00437c;
}
.nav_drawer .drawer_cmenu {
  margin-top: 20px;
  border-left: solid 1px white;
  padding-left: 30px;
  display: none;
}
.nav_drawer .drawer_cmenu a {
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 700;
  display: block;
  position: relative;
}
.nav_drawer .drawer_cmenu a span {
  font-size: 10px;
  margin-left: 20px;
}
.nav_drawer .drawer_cmenu a:not(:last-of-type) {
  margin-bottom: 20px;
}
.nav_drawer .drawer_foot_nav {
  position: absolute;
  bottom: 20px;
}
.nav_drawer .drawer_foot_nav a {
  font-size: 12px;
  color: white;
  font-weight: 700;
}
.nav_drawer .drawer_foot_nav span {
  color: white;
  margin: 0 5px;
}

.gnav {
  height: 60px;
  padding: 0 20px;
  background: rgba(51, 176, 147, 0.2);
  border-radius: 50px;
  position: fixed;
  top: 30px;
  right: 80px;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  .gnav {
    right: auto;
    left: 1000px;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (max-width: 667px) {
  .gnav {
    display: none;
  }
}
.mode-sp .gnav {
  display: none;
}
.under .gnav {
  background: rgba(255, 255, 255, 0.7);
}
.gnav .gnav_menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.gnav .gnav_menu > li {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 30px;
}
.gnav .gnav_menu > li:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: calc(50% - 3px);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.gnav .gnav_menu > li:not(.switch):hover > a {
  color: rgba(51, 176, 147, 0.4);
}
.gnav .gnav_menu > li:not(.switch):hover:after {
  opacity: 1;
}
.under .gnav .gnav_menu > li:not(.switch):hover:after {
  background: #28bb99;
}
.gnav .gnav_menu > li:not(.switch):hover .cnav {
  display: block;
}
.gnav .gnav_menu > li > a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgb(255, 255, 255);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  cursor: pointer;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gnav .gnav_menu > li > a.to_pub {
  color: #00437c;
}
.under .gnav .gnav_menu > li > a {
  color: #363636;
}
.under .gnav .gnav_menu > li > a.to_pub {
  color: #00437c;
}
.gnav .gnav_menu .switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gnav .gnav_menu .switch [class^=btn] {
  letter-spacing: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #cbcbcb;
  color: white;
  border: solid 1px #cbcbcb;
}
.gnav .gnav_menu .switch [class^=btn].on {
  background: #33B093;
  border: solid 1px #33B093;
}
.top .gnav .gnav_menu .switch [class^=btn] {
  background: none;
  border: solid 1px white;
  color: rgba(255, 255, 255, 0.6);
}
.top .gnav .gnav_menu .switch [class^=btn].on {
  background: white;
  border: solid 1px white;
  color: #33B093;
}
.gnav .gnav_menu .switch .switch_line {
  width: 1px;
  height: 20px;
  background: #363636;
  margin: 0 10px;
}
.top .gnav .gnav_menu .switch .switch_line {
  background: white;
}

.cnav {
  width: 100vw;
  position: fixed;
  top: 90px;
  left: 0;
  background: #28bb99;
  display: none;
}
.cnav .inner {
  width: 1000px;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cnav .cnav_block-left {
  margin-right: 100px;
}
.cnav .cnav_title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.15em;
}
.cnav .cnav_title-ja {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
}
.cnav .cnav_menu:not(:last-of-type) {
  margin-right: 40px;
}
.cnav .cnav_menu li:not(:last-of-type) {
  margin-bottom: 20px;
}
.cnav .cnav_menu a {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.15em;
}
.cnav .cnav_menu a span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 10px;
}

/***********************************
/* フッタ
***********************************/
.footer {
  height: 100px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 667px) {
  .footer {
    height: 80px;
  }
}
.mode-sp .footer {
  height: 80px;
}
.under .footer {
  position: static;
  background: #F6F6F6;
}
.footer .inner {
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 667px) {
  .footer .inner {
    padding: 20px 20px;
  }
}
.mode-sp .footer .inner {
  padding: 20px 20px;
}
.footer .inner .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 667px) {
  .footer .inner .left {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top .footer .inner .left {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.mode-sp .footer .inner .left {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top .mode-sp .footer .inner .left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer .wp_logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media screen and (max-width: 667px) {
  .footer .wp_logo {
    width: 60px;
    height: 60px;
  }
}
.mode-sp .footer .wp_logo {
  width: 60px;
  height: 60px;
}
.footer .wp_logo:hover {
  opacity: 0.7;
}
.footer .wp_logo img {
  width: 100%;
}
.footer .copy {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .footer .copy {
    font-size: 10px;
  }
}
.mode-sp .footer .copy {
  font-size: 10px;
}
.footer .copy span {
  font-weight: 100;
}
.under .footer .copy {
  color: #363636;
}
.footer .footer_nav {
  margin-top: 10px;
}
@media screen and (max-width: 667px) {
  .footer .footer_nav {
    display: none;
  }
}
.mode-sp .footer .footer_nav {
  display: none;
}
.footer .footer_nav a {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #fff;
  display: inline-block;
  position: relative;
}
.under .footer .footer_nav a {
  color: #363636;
}
.footer .footer_nav a:hover {
  text-decoration: underline;
}
.footer .footer_nav a:not(:last-of-type) {
  padding-right: 40px;
}
.footer .footer_nav a:not(:last-of-type):after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: white;
  position: absolute;
  top: 0;
  right: 20px;
}
.under .footer .footer_nav a:not(:last-of-type):after {
  background: #363636;
}
.footer .footer_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 667px) {
  .footer .footer_btns {
    display: none;
  }
}
.mode-sp .footer .footer_btns {
  display: none;
}
.footer .footer_btns a {
  width: 146px;
  padding: 10px 0;
  border: solid 2px white;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: white;
  text-align: center;
  display: block;
}
.under .footer .footer_btns a {
  border: solid 2px #363636;
  color: #363636;
}
.footer .footer_btns a:not(:last-of-type) {
  margin-right: 20px;
}
.footer .footer_btns a strong {
  font-weight: 700;
  font-size: 16px;
}/*# sourceMappingURL=layout.css.map */