@charset "UTF-8";
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  background: url(../img/common/bg.jpg);
  margin: 0px;
  padding: 0px;
  position: relative;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #wrap {
    /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap {
    /*sp*/
    overflow: hidden;
  }
}

.sp_nav {
  display: none;
  position: fixed;
  top: 10px;
  right: -70px;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50px 0px 0px 50px;
  background-image: url(../img/common/sp_nav.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: 60% center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 640px) {
  .sp_nav {
    /*sp*/
    display: block;
    right: 0px;
  }
}

.open {
  transform: translateX(-250px);
}

.overlay {
  content: "";
  display: block;
  width: 100%;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0;
}

.overlay.on {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/*---------------------------
header
----------------------------*/
header {
  background: #006391;
  /*anime*/
  transition: 0.3s;
  -webkit-transition: 0.3s;
  top: -100px;
}
@media screen and (max-width: 640px) {
  header {
    /*sp*/
    width: 250px;
    height: 100%;
    position: fixed;
    right: -250px;
    top: 0;
    z-index: 3;
  }
}
header .row .logo {
  width: 25%;
  text-align: left;
  font-size: 1.2em;
  font-weight: normal;
  padding-left: 3.5%;
}
@media screen and (max-width: 640px) {
  header .row .logo {
    /*sp*/
    width: 100%;
    height: 90px;
    line-height: 90px;
    padding-left: 20px;
  }
}
header .row .logo a {
  text-decoration: none;
  color: #fff;
}
header .row .menu {
  width: 75%;
  /*---------------------------
  nav
  -----------------------------*/
}
@media screen and (max-width: 640px) {
  header .row .menu {
    /*sp*/
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  header .row .menu nav {
    /*769px~1000px(inner1000pxの場合)*/
    width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  header .row .menu nav {
    /*tablet*/
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  header .row .menu nav {
    /*sp*/
    width: 100%;
  }
}
header .row .menu nav ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding: 0px;
  margin: 0px;
  text-align: center;
  letter-spacing: -1.0em;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul {
    /*sp*/
    padding: 0px;
  }
}
header .row .menu nav ul li {
  width: 140px;
  list-style: none;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  letter-spacing: normal;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul li {
    /*sp*/
    width: 100%;
    border-bottom: 1px dotted #fff;
  }
}
header .row .menu nav ul li a {
  text-decoration: none;
  font-size: 1.0em;
  text-align: center;
  display: block;
  color: #fff;
  height: 80px;
  line-height: 80px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul li a {
    /*sp*/
    display: block;
    padding: 1.0rem;
    height: auto;
    line-height: 1.0rem;
  }
}
header .row .menu nav ul li a:visited {
  color: #fff;
}
header .row .menu nav ul li a:hover {
  background: #fff;
  color: #006391;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul li a:hover {
    /*sp*/
    border-radius: 0px;
  }
}
header .row .menu nav ul li a.on {
  background: #0081BD;
  color: #fff;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul li a.on {
    /*sp*/
    border-radius: 0px;
  }
}
header .row .menu nav ul li:last-child {
  width: 80px;
  height: 80px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul li:last-child {
    /*sp*/
    width: 100%;
    height: auto;
  }
}
header .row .menu nav ul li:last-child a {
  background-image: url(../img/common/nav_icon_mail.png);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center;
  background-color: #003D59;
  padding: 1.0em;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.2s;
  -webkit-transition: 0.2s;
}
@media screen and (max-width: 640px) {
  header .row .menu nav ul li:last-child a {
    /*sp*/
    background-image: none;
    text-indent: 0;
    overflow: visible;
    line-height: 1.0rem;
  }
}
header .row .menu nav ul li:last-child a:hover {
  background-color: #0081BD;
  background-size: 35%;
}

/*---------------------------
footer
---------------------------*/
footer {
  width: 100%;
  margin: 0px;
  text-align: center;
  padding: 40px 0px;
}
@media screen and (max-width: 640px) {
  footer {
    /*sp*/
    padding: 1.0rem 0px;
  }
}
footer .inner {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 640px) {
  footer .inner {
    /*sp*/
    width: 90%;
    float: none;
  }
}
footer .inner .logo {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
footer .inner .logo img {
  margin-bottom: 15px;
}
footer .inner .text {
  display: inline-block;
}
footer .inner .text p {
  font-size: 1.0em;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 640px) {
  footer .inner .text p {
    /*sp*/
    font-size: 0.8em;
  }
}
footer .inner .copy {
  clear: both;
  font-size: 0.6em;
  padding-top: 20px;
}

/*----------------------
main
------------------------*/
main {
  width: 100%;
  display: block;
  padding: 4.0em 0;
}
main.index, main.np {
  padding: 0;
}

/*----------------------
aside
------------------------*/
aside {
  width: 100%;
}
aside #contact {
  background-image: url(../img/index/contact_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (max-width: 640px) {
  aside #contact {
    /*sp*/
    background-attachment: inherit;
    background-size: 100% auto;
  }
}
aside #contact .layer {
  background-image: url(../img/index/contact_musk.png);
  padding-top: 9.0em;
}
@media screen and (max-width: 640px) {
  aside #contact .layer {
    /*sp*/
    padding-top: 3.0rem;
  }
}
aside #contact .inner {
  padding-top: 6.0em;
}
@media screen and (max-width: 640px) {
  aside #contact .inner {
    /*sp*/
    padding-bottom: 3.0rem;
  }
}
aside #contact .inner > span {
  color: #fff;
  display: block;
}
aside #contact .inner > span:nth-of-type(1) {
  font-size: 2.0em;
  margin-bottom: 1.0em;
}
@media screen and (max-width: 640px) {
  aside #contact .inner > span:nth-of-type(1) {
    /*sp*/
    font-size: 1.0rem;
  }
}
aside #contact .inner > span:nth-of-type(2) {
  font-size: 3.0em;
  font-weight: bold;
  margin-bottom: 4.0em;
  letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
  aside #contact .inner > span:nth-of-type(2) {
    /*sp*/
    font-size: 1.0rem;
  }
}
aside #contact .bottom {
  background: #0081BD;
  position: relative;
  padding-top: 160px;
}
@media screen and (max-width: 640px) {
  aside #contact .bottom {
    /*sp*/
    padding-top: 60px;
  }
}
aside #contact .bottom img {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 640px) {
  aside #contact .bottom img {
    /*sp*/
    width: 60%;
  }
}
aside #contact .bottom .inner {
  max-width: 900px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  aside #contact .bottom .inner {
    /*sp*/
    width: 90%;
  }
}
aside #contact .bottom .inner .col {
  width: 48%;
}
@media screen and (max-width: 640px) {
  aside #contact .bottom .inner .col {
    /*sp*/
    width: 100%;
  }
}
aside #contact .bottom .inner .col:nth-of-type(1) {
  background: url(../img/common/icon_tel.png);
  background-repeat: no-repeat;
  background-position: left center;
  color: #fff;
  font-size: 3.4em;
  font-weight: bold;
  line-height: 2.0em;
  padding-left: 1.5em;
  text-align: left;
}
@media screen and (max-width: 640px) {
  aside #contact .bottom .inner .col:nth-of-type(1) {
    /*sp*/
    margin-bottom: 1.0rem;
    font-size: 2.0rem;
    background-size: 11%;
    background-position: 5% center;
    text-align: center;
  }
}
aside #contact .bottom .inner .col:nth-of-type(2) a {
  background: #333;
  background-image: url(../img/common/icon_mail.png);
  background-repeat: no-repeat;
  background-position: 10px center;
  color: #fff;
  padding: 0.6em 2.0em 0.6em 4.0em;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.6em;
}
aside #contact .bottom .inner .col:nth-of-type(2) a:hover {
  background-color: #fff;
  color: #0081BD;
}
@media screen and (max-width: 640px) {
  aside #contact .bottom .inner .col:nth-of-type(2) a {
    /*sp*/
    font-size: 1.2rem;
  }
}
aside #contact .address {
  background: #0081BD;
  padding: 3.0em 0;
  color: #fff;
}
@media screen and (max-width: 640px) {
  aside #contact .address {
    /*sp*/
    padding: 1.5rem 0;
  }
}
aside #contact .address span {
  display: block;
}
@media screen and (max-width: 640px) {
  aside #contact .address span {
    /*sp*/
    font-size: 0.8rem;
  }
}
aside #contact .address span:nth-of-type(1) {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 1.0em;
  letter-spacing: 2px;
}
@media screen and (max-width: 640px) {
  aside #contact .address span:nth-of-type(1) {
    /*sp*/
    font-size: 1.0rem;
    margin-bottom: 0.5rem;
  }
}

.pagetop {
  background: url(../img/common/pagetop_bg.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  display: block;
}
@media screen and (max-width: 640px) {
  .pagetop {
    /*sp*/
    right: 0;
    bottom: 0px;
    width: 50px;
    height: 50px;
  }
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 1000px;
  margin: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  * .inner {
    /*769px~1000px(inner1000pxの場合)*/
    max-width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  * .inner {
    /*tablet*/
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  * .inner {
    /*sp*/
    max-width: 100%;
  }
}
* .inner.content {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  * .inner.content {
    /*sp*/
    padding: 30px 0px;
    max-width: 94%;
  }
}

* {
  box-sizing: border-box;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.content_title {
  width: 100%;
  background-color: #0081BD;
  background-size: cover;
  text-align: center;
}
.content_title .inner {
  padding: 40px 0px;
}
@media screen and (max-width: 640px) {
  .content_title .inner {
    /*sp*/
    padding: 30px 0px;
  }
}
.content_title .inner h2 {
  color: #fff;
  font-size: 1.2em;
  letter-spacing: 10px;
}
@media screen and (max-width: 640px) {
  .content_title .inner h2 {
    /*sp*/
    font-size: 1.3em;
    text-align: center;
  }
}

h3 {
  text-align: left;
}
h3.bar {
  font-size: 1.4em;
  font-weight: 500;
  color: #AC6BA8;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #AC6BA8;
}

.snav {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 6.0em;
}
.snav ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  list-style: none;
}
@media screen and (max-width: 640px) {
  .snav ul {
    /*sp*/
    border-top: 1px solid #0081BD;
  }
}
.snav ul li {
  width: 25%;
  border-right: 1px solid #0081BD;
}
@media screen and (max-width: 640px) {
  .snav ul li {
    /*sp*/
    width: 50%;
    border-bottom: 1px solid #0081BD;
  }
}
.snav ul li:first-child {
  border-left: 1px solid #0081BD;
}
.snav ul li a {
  display: block;
  padding: 1.0em;
  color: #0081BD;
  font-size: 1.2em;
  text-decoration: none;
}
@media screen and (max-width: 640px) {
  .snav ul li a {
    /*sp*/
    padding: 0.5rem;
  }
}

/*アニメーション*/
.anime {
  transition: 1s;
  -webkit-transition: 1s;
}

/*-----------------
タブ切り替え
------------------*/
.tab {
  margin: 5px 0px;
}
.tab li:nth-of-type(1).current {
  background-color: #7BA613;
  color: #fff;
}
.tab li:nth-of-type(1).current .selecting {
  display: block !important;
}
.tab li:nth-of-type(2).current {
  background-color: #FAA32D;
  color: #fff;
}
.tab li:nth-of-type(2).current .selecting {
  display: block !important;
}

.box.tab-contents {
  display: none;
}

.box.current {
  display: block;
}
