/*-----------------------
color
------------------------*/
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #wrap {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 767px) {
  #wrap {
    overflow-x: hidden;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  padding: 0;
  font-size: 10px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  header {
    position: relative;
    z-index: 1001;
  }
}
@media screen and (max-width: 767px) {
  header {
    position: relative;
    z-index: 10000;
  }
}
header .inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 10px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  header .inner {
    grid-template-columns: 20% 1fr;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    grid-template-columns: 80% 1fr;
  }
}
header .inner .logo h1 {
  display: inline-block;
  background: #fff;
  width: 100%;
  padding: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 {
    padding: 1rem;
  }
}
header .inner .logo h1 a {
  display: block;
  height: 60px;
  text-decoration: none;
  display: grid;
  justify-items: center;
  align-items: center;

}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  header .inner .logo h1 a {
    height: 60px;
    justify-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 a {
    height: 40px;
    justify-items: flex-start;
  }
}
header .inner .logo h1 a img {
  max-width: 100%;
  max-height: 40px;
}
header .inner .logo.bg_color h1 {
  background-color: #526984;
}

header .inner .menu {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  header .inner .menu {
    padding: 1rem;
    margin-bottom: 0px;
  }
}
header .inner .menu .sp_nav {
  display: none;
  width: 40px;
  height: 40px;
  content: "";
  background-image: url(../img/common/sp_menu.svg);
  background-repeat: no-repeat;
  background-position: left center;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  header .inner .menu .sp_nav {
    display: block;
  }
}
header .inner .menu .sp_nav.close {
  background-image: url(../img/common/sp_menu_close.svg);
}

/*---------------------------
nav
-----------------------------*/
nav {
  padding-top: 2rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  nav {
    width: 100%;
    height: calc(100% - 70px);
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    background-color: #526984;
    z-index: 1000;
    padding: 0;
  }
}
nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0px;
}
@media screen and (max-width: 767px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
nav ul li {
  list-style: none;
  display: block;
  padding: 0px;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  nav ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
}
nav ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 2rem;
  text-align: center;
  display: block;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  nav ul li a {
    padding: 0.3rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  nav ul li a {
    color: #fff;
    padding: 1.3rem 1.5rem;
    padding-left: 3.5rem;
    text-align: left;
    background-image: url(../img/common/icon_arrow.svg);
    background-repeat: no-repeat;
    background-position: top 50% left 5%;
    background-size: 5%;
  }
}
nav ul li a::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  right: 0;
  width: 60%;
  height: 1px;
  background: #526984;
  display: none;
  margin: auto;
}
@media screen and (max-width: 767px) {
  nav ul li a::after {
    width: 100%;
  }
}
nav ul li a:hover {
  color: #526984;
}
@media screen and (max-width: 767px) {
  nav ul li a:hover {
    color: #fff !important;
  }
}
nav ul li a:hover::after {
  display: block;
}
nav ul li a.current {
  color: #526984;
}
@media screen and (max-width: 767px) {
  nav ul li a.current {
    color: #fff !important;
  }
}
nav ul li a.current::after {
  display: block;
}
nav ul li.contact a {
  background: #526984;
  background-image: url(../img/common/icon_mail_white.webp);
  background-position: top 50% left 10%;
  background-repeat: no-repeat;
  padding: 0.5rem 2rem;
  padding-left: 4rem;
  color: #fff;
  margin-left: 20px;
}
nav ul li.contact a::after {
  display: none;
}
@media screen and (max-width: 767px) {
  nav ul li.contact {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 90%;
    border: none;
  }
  nav ul li.contact a {
    padding: 1rem 1rem;
    border-radius: 10px;
    border: 1px solid #fff;
    margin-left: 0;
    text-align: center;
  }
}

/*---------------------------
footer
---------------------------*/
footer {
  width: 100%;
  margin: 0px;
  text-align: center;
  padding: 3rem 0px;
  background-color: #4C4C4C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 2rem 0px;
  }
}
footer .inner {
  display: grid;
  grid-template-columns: 1fr 13%;
  grid-gap: 30px;
}
@media screen and (max-width: 767px) {
  footer .inner {
    grid-template-columns: 1fr;
  }
}
footer .inner .snav {
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .inner .snav {
    display: none;
  }
}
footer .inner .snav ul {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #999;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  footer .inner .snav ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
footer .inner .snav ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  padding-left: 2rem;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: auto 80%;
}
@media screen and (max-width: 767px) {
  footer .inner .snav ul li a {
    font-size: 0.6rem;
  }
}
footer .inner .snav .cr {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  footer .inner .snav .cr {
    text-align: center;
  }
}
footer .inner .logo {
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .inner .logo {
    text-align: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
}
footer .inner .logo p {
  margin-bottom: 0rem;
  font-size: 0.65rem;
}
footer .inner .logo img {
  width: 70px;
  /* width: 100%; */
  height: auto;
}
@media screen and (max-width: 767px) {
  footer .inner .logo img {
    /* width: 30%; */
    width: 70px;
    text-align: left;
    margin-bottom: 4px;
  }
}

/*----------------------
main
------------------------*/
main {
  text-align: left;
  background-image: url(../img/common/content_bg.webp);
}

/*----------------------
aside
------------------------*/
aside {
  width: 100%;
  /* background-image: url(../img/common/contact_bg.webp); */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  aside {
    padding: 2rem 0;
  }
}
aside .inner {
  color: #526984;
}
aside .inner h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;

  text-shadow    :
     2px  2px 0px #ffffff,
    -2px  2px 0px #ffffff,
     2px -2px 0px #ffffff,
    -2px -2px 0px #ffffff,
     2px  0px 0px #ffffff,
     0px  2px 0px #ffffff,
    -2px  0px 0px #ffffff,
     0px -2px 0px #ffffff;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  aside .inner h2 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  aside .inner h2 {
    font-size: 1rem;
  }
}
aside .inner h2 br {
  display: none;
}
@media screen and (max-width: 767px) {
  aside .inner h2 br {
    display: block;
  }
}
aside .inner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: bold;

  text-shadow    :
     2px  2px 0px #ffffff,
    -2px  2px 0px #ffffff,
     2px -2px 0px #ffffff,
    -2px -2px 0px #ffffff,
     2px  0px 0px #ffffff,
     0px  2px 0px #ffffff,
    -2px  0px 0px #ffffff,
     0px -2px 0px #ffffff;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  aside .inner p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  aside .inner p {
    font-size: 0.8rem;
  }
}
aside .inner p br {
  display: none;
}
@media screen and (max-width: 767px) {
  aside .inner p br {
    display: block;
  }
}
aside .inner a {
  display: inline-block;
  width: 50%;
  padding: 1.5rem 1rem;
  line-height: 1;
  color: #fff;
  border-radius: 100px;
  border-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background-color: #526984;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 4px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  aside .inner a {
    font-size: 1.1rem;
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  aside .inner a {
    font-size: 1rem;
    width: 90%;
    padding: 1rem;
  }
}
aside .inner a:hover {
  background-color: #85a3c6;
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  * .inner {
    max-width: 94%;
  }
}
@media screen and (max-width: 767px) {
  * .inner {
    max-width: 90%;
  }
}

* {
  box-sizing: border-box;
}

.pagetop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-image: url(../img/common/pagetop_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #4C4C4C;
  border-radius: 5px;
  border: 1px solid #999;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.content_title {
  width: 100%;
  background-size: cover;
  background-color: #526984;
  text-align: center;
}
.content_title .inner {
  padding: 3rem 0px;
}
.content_title .inner h1 {
  color: #fff;
  font-size: 1.6rem;
  /* font-weight: bold; */
  text-shadow    :
  #37474F 3px 0px 3px, #37474F -3px 0px 3px,
  #37474F 0px -3px 3px, #37474F -3px 0px 3px,
  #37474F 3px 3px 3px, #37474F -3px 3px 3px,
  #37474F 3px -3px 3px, #37474F -3px -3px 3px,
  #37474F 1px 3px 3px, #37474F -1px 3px 3px,
  #37474F 1px -3px 3px, #37474F -1px -3px 3px,
  #37474F 3px 1px 3px, #37474F -3px 1px 3px,
  #37474F 3px -1px 3px, #37474F -3px -1px 3px,
  #37474F 1px 1px 3px, #37474F -1px 1px 3px,
  #37474F 1px -1px 3px, #37474F -1px -1px 3px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .content_title .inner h1 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .content_title .inner h1 {
    font-size: 1rem;
  }
}
.content_title.contact {
  /* background-image: url(../img/common/contact_bg_gray.webp); */
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: left center; */
}
.content_title.contact .inner h1 {
  font-size: 1rem;
}
.content_title.contact .inner h1 span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.bc {
  padding: 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 3rem;
}
.bc a {
  position: relative;
  margin-right: 20px;
}
.bc a::after {
  content: ">";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  right: -20px;
}
.bc a:nth-of-type(1) {
  padding-left: 40px;
  background-image: url(../img/common/icon_home.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 0;
}