/*---------------------------
body
----------------------------*/
@media (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
@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;
  }
}

/*---------------------------
header
----------------------------*/
header .inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  justify-items: flex-start;
  align-items: flex-start;
  max-width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  header .inner {
    grid-template-columns: 55% 1fr;
  }
}
header .inner .logo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  header .inner .logo {
    padding: 0.7rem;
  }
}
header .inner .logo > span {
  display: block;
  width: 50px;
}
@media screen and (max-width: 767px) {
  header .inner .logo > span {
    width: 80px;
  }
}
header .inner .logo h1 {
  text-align: left;
}
header .inner .logo h1 a {
  text-decoration: none;
}
header .inner .logo h1 a span {
  font-size: 8px;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 a span {
    font-size: 6px;
    margin-bottom: 3px;
  }
}
header .inner .logo h1 a img {
  max-width: 160px;
  height: auto;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 a img {
    width: 110px;
  }
}
header .inner .menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  header .inner .menu {
    height: 100%;
  }
}
header .inner .menu nav {
  width: 70%;
}
@media screen and (max-width: 767px) {
  header .inner .menu nav {
    width: 100%;
  }
}
header .inner .menu .contact_menu {
  width: 280px;
  display: grid;
  grid-template-columns: 163px 1fr;
  grid-gap: 10px;
  justify-items: center;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  header .inner .menu .contact_menu {
    display: none;
  }
}
header .inner .menu .contact_menu a {
  display: block;
  width: 100%;
  height: 68px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem;
}
header .inner .menu .contact_menu a:nth-of-type(1) {
  background-color: #295ECE;
}
header .inner .menu .contact_menu a:nth-of-type(2) {
  background-color: #00B900;
}
header .inner .menu .sp_nav {
  display: none;
}
@media screen and (max-width: 767px) {
  header .inner .menu .sp_nav {
    display: flex;
    height: 100%;
  }
}
header .inner .menu .sp_nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3px;
  list-style: none;
}
header .inner .menu .sp_nav ul li {
  width: 33%;
  height: 100%;
}
header .inner .menu .sp_nav ul li a,
header .inner .menu .sp_nav ul li span {
  display: block;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  height: 100%;
  background-size: auto 80%;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 767px) and (max-width: 320px) {
  header .inner .menu .sp_nav ul li a,
  header .inner .menu .sp_nav ul li span { /*sp 320*/
    background-size: 80% auto;
  }
}
header .inner .menu .sp_nav ul li:nth-of-type(1) a {
  background-color: #295ECE;
  background-image: url(../img/common/sp_btn_tel.webp);
}
header .inner .menu .sp_nav ul li:nth-of-type(2) a {
  background-color: #00B900;
  background-image: url(../img/common/sp_btn_mail.webp);
}
header .inner .menu .sp_nav ul li:nth-of-type(3) span {
  display: block;
  background-color: #295ECE;
  background-image: url(../img/common/sp_menu.webp);
  background-size: auto 65%;
}
header.open {
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}
header.open .inner {
  background-color: #fff;
}

.sp_menu {
  display: none;
}

/*---------------------------
nav
-----------------------------*/
@media screen and (max-width: 767px) {
  nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #295ECE;
    padding-top: 15vw;
  }
}
nav ul {
  height: 68px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  nav ul {
    display: block;
    height: auto;
  }
}
nav ul li a {
  display: block;
  text-decoration: none;
  padding: 0.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  nav ul li a {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding: 1.5rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  nav ul li a:link, nav ul li a:visited {
    color: #fff;
  }
}
nav ul li a:hover {
  background-color: #295ECE;
  color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  nav ul li a:hover {
    border-radius: 0;
  }
}
nav ul li a.current {
  background-color: #295ECE;
  color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  nav ul li a.current {
    border-radius: 0;
  }
}

/*---------------------------
footer
---------------------------*/
footer {
  width: 100%;
}
footer .inner {
  max-width: 100%;
}
footer .inner .copy {
  font-size: 0.6rem;
  padding: 20px;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  footer .inner .copy {
    padding-bottom: 4rem;
  }
}

.sp_footer {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 1002;
  }
}
.sp_footer ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2px;
  justify-items: flex-start;
  align-items: flex-start;
  list-style: none;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 52px;
}
.sp_footer ul li {
  width: 100%;
  height: 50px;
}
.sp_footer ul li a {
  display: block;
  background-repeat: no-repeat;
  background-size: auto 90%;
  background-position: center center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sp_footer ul li a {
    background-size: 80% auto;
  }
}
.sp_footer ul li:nth-of-type(1) a {
  background-image: url(../img/common/sp_floting_tel.webp);
  background-color: #295ECE;
}
.sp_footer ul li:nth-of-type(2) a {
  background-image: url(../img/common/sp_floting_mail.webp);
  background-color: #00B900;
}

/*----------------------
main
------------------------*/
main {
  width: 100%;
  display: block;
}

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

* {
  box-sizing: border-box;
}

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

.pagetop {
  background-image: url(../img/common/pagetop.webp);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center center;
  display: block;
  width: 60px;
  height: 60px;
  background-color: #333;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1003;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 50px;
    height: 50px;
  }
}

.content_title {
  width: 100%;
  background-image: url(../img/common/content_title_bg.webp);
  text-align: center;
}
.content_title .inner {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  .content_title .inner { /*sp*/
    padding: 30px 0px;
  }
}
.content_title .inner h1 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 10px;
}
@media screen and (max-width: 640px) {
  .content_title .inner h1 { /*sp*/
    font-size: 1.1rem;
    text-align: center;
  }
}
.content_title .inner .snav {
  padding-top: 1rem;
}
.content_title .inner .snav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px 10px;
}
@media screen and (max-width: 767px) {
  .content_title .inner .snav ul {
    flex-wrap: wrap;
    gap: 5px;
  }
}
.content_title .inner .snav ul li {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .content_title .inner .snav ul li {
    width: 48%;
  }
}
.content_title .inner .snav ul li a {
  display: block;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 100px;
  text-decoration: none;
  color: #295ECE;
  border: 2px solid #295ECE;
}
@media screen and (max-width: 767px) {
  .content_title .inner .snav ul li a {
    padding: 0.2rem;
  }
}

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;
}

.contact_box .inner {
  max-width: 480px;
  margin: auto;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .contact_box .inner {
    padding: 1.5rem 5%;
  }
}
.contact_box .inner p {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact_box .inner p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.contact_box .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  justify-items: center;
  align-items: center;
}
.contact_box.bg_blue {
  background-color: #295ECE;
  color: #fff;
}
.contact_box.bg_blue .inner {
  max-width: 540px;
}
.contact_box.bg_blue .inner p {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .contact_box.bg_blue .inner p {
    font-size: 0.9rem;
  }
}
.contact_box.bg_blue .inner p span {
  color: #FFFF00;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contact_box.bg_blue .inner p span {
    display: block;
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.contact_box.bg_blue .inner .row {
  max-width: 480px;
  margin: auto;
}/*# sourceMappingURL=style.css.map */