@charset "UTF-8";
/* ===============================================
全体スタイル
=============================================== */
html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  color: #4C4948;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

.tac {
  text-align: center;
}

img {
  width: 100%;
  vertical-align: top;
}

.spNone {
  display: block;
}
@media (max-width: 767px) {
  .spNone {
    display: none;
  }
}

.pcNone {
  display: none;
}
@media (max-width: 767px) {
  .pcNone {
    display: block;
  }
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/* --- アニメーション --- */
.poyopoyo {
  animation: poyopoyo 1.5s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
/* ===============================================
header
=============================================== */
header {
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 65px;
  padding: 0 30px;
  background: #4A6CB2;
}
@media (max-width: 767px) {
  header {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#hnavi {
  display: flex;
  margin-left: auto;
  padding-left: 3%;
}

.drawer-open {
  overflow: auto !important;
}

.drawer-hamburger {
  top: 70px;
  right: 0 !important;
  width: 30px;
  padding: 10px 30px 20px 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  height: 3px;
}

.drawer-nav {
  top: 65px;
  width: 15em;
  padding-top: 50px;
  background-color: rgba(255, 255, 255, 0.8);
}

.drawer--right .drawer-nav {
  right: -15em;
}

#gnavi a {
  display: block;
  margin-top: 1em;
  padding: 0 20px;
  color: #4C4948;
  text-decoration: none;
}

/* ===============================================
contents
=============================================== */
main {
  padding-top: 65px;
}
@media (max-width: 767px) {
  main {
    padding: 4rem 2rem 0rem;
  }
}
main .content {
  max-width: 815px;
  margin: 0 auto;
}
main .content ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-top: 3rem;
}
main .content ul li {
  width: 47.5%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: #4A6CB2;
  border-radius: 50px;
  padding: 1rem;
  cursor: pointer;
}
main .content ul li a {
  display: block;
  color: #fff;
}

h2 {
  padding: 5rem;
  font-size: 2rem;
  color: #4A6CB2;
}
@media (max-width: 767px) {
  h2 {
    padding: 4rem 0rem 2rem;
  }
}

h3 {
  font-size: 1.6rem;
  padding: 0.2em 20px; /*文字の上下 左右の余白*/
  line-height: 1.6em;
  background: #f4f4f4; /*背景色*/
  border-left: solid 5px #4A6CB2; /*左線*/
}

.accordion-container {
  margin: 50px auto;
}
@media (max-width: 767px) {
  .accordion-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.accordion-title {
  cursor: pointer;
  padding: 20px 0px 20px 20px;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #bfbfbf;
}
@media (max-width: 767px) {
  .accordion-title {
    line-height: 1.4em;
    padding: 20px 50px 20px 10px;
  }
}

.accordion-title:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #4A6CB2;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .accordion-title:before {
    right: 15px;
  }
}

.accordion-title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #4A6CB2;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .accordion-title:after {
    right: 15px;
  }
}

.accordion-title.open:before {
  transform: rotate(180deg);
}

.accordion-title.open:after {
  opacity: 0;
}

.accordion-text {
  display: none;
  padding: 20px 50px 20px 20px;
  background: #fff8e5;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  .accordion-text {
    padding: 20px 10px 20px 10px;
  }
}

/* ==================================================
footer
================================================== */
footer {
  text-align: center;
  padding: 25px 30px;
  background: #4A6CB2;
}
footer address {
  max-width: 815px;
  margin: 0 auto;
}
footer address p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer address p:first-child {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #FFFFFF;
}
footer address p:last-child {
  margin-left: 10px;
}
@media (max-width: 767px) {
  footer address p {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  footer address .mgt {
    margin-top: 0.5rem;
  }
}/*# sourceMappingURL=shared.css.map */