@charset "UTF-8";
/* aタグ設定
------------------------------------- */
a:hover, .alpha {
  opacity: 0.75;
}

a {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

ul {
  list-style: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
img {
  max-width: 100%;
}

#wrapper {
  position: relative;
}
#wrapper::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
}

.inner {
  max-width: 1020px;
  padding: 50px 20px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 50px 10px;
  }
}

main > section {
  padding-top: 130px;
}
main > section:first-of-type {
  padding-top: 40px;
}

.title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}
.title span {
  font-size: 4.2rem;
  margin-right: 0.2em;
  position: relative;
  z-index: 1;
}
.title span::after {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffff00;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  z-index: -1;
}

p {
  font-size: 1.6rem;
  line-height: 1.66;
  font-weight: 500;
}

.underline {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.underline::after {
  content: "";
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #ffff00;
  z-index: -1;
}

.lead {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.circle {
  display: inline-block;
  position: relative;
  margin: 0 12px;
  z-index: 1;
}
.circle::after {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ffff00;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.list {
  margin: 40px 0 -20px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .list {
    flex-direction: column;
  }
}

.item {
  width: calc(50% - 10px);
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .item {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .item {
    display: block;
    width: 100%;
  }
}
.item:nth-of-type(2n) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .item:nth-of-type(2n) {
    margin-left: 0;
  }
}
.item .item_img {
  width: 230px;
  margin-right: 10px;
  align-self: center;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 999px) {
  .item .item_img {
    margin: 0 auto 10px;
    min-height: 199px;
  }
}
@media screen and (max-width: 768px) {
  .item .item_img {
    min-height: auto;
  }
}
.item p {
  text-align: justify;
}

h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.btn {
  margin: 30px 0 0;
  text-align: center;
}
.btn_link {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #000;
  background-color: #000;
  position: relative;
}
.btn_link::after {
  content: "";
  border-top: 8px solid transparent;
  border-left: 10px solid #fff;
  border-bottom: 8px solid transparent;
  display: inline-block;
  margin-left: 20px;
  transition-duration: 0.3s;
}
.btn_link:hover {
  opacity: 1;
  color: #000;
  background-color: #fff;
}
.btn_link:hover::after {
  border-left: 10px solid #000;
}

.about_box {
  margin: 40px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .about_box {
    display: block;
  }
}
.about_box > div {
  border: 2px solid #fd7e00;
  font-size: 20px;
}
.about_box > div:not(:first-of-type) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .about_box > div:not(:first-of-type) {
    margin-left: 0;
    margin-top: 10px;
  }
}
.about_box > div a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 100%;
  text-decoration: none;
  color: #000;
  padding: 10px;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .about_box > div a {
    width: 100%;
    min-height: 75px;
  }
}
.about_box > div a:hover {
  background-color: #fd7e00;
  color: #fff;
  opacity: 1;
}
.about_box_top span {
  font-size: 24px;
  font-weight: bold;
  display: block;
}

.intro .icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #1f2f54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.intro .icon img {
  width: 25px;
  margin-right: 0;
}
.intro .icon img.icon_walking {
  width: 20px;
}

.possibility .icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #fd7e00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.possibility .icon img {
  width: 25px;
  margin-right: 0;
}
.possibility .icon img.icon_walking {
  width: 20px;
}

.merit h3 {
  color: #1f2f54;
}
.merit .inner > div:not(:first-of-type) {
  margin-top: 60px;
}
.merit_bottom {
  display: inline-block;
  font-size: 24px;
  color: #1f2f54;
  margin-top: 10px;
  padding: 5px 10px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.merit_bottom::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ffc9d2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.merit_bottom.orange::after {
  background-color: #fedcbd;
}
.merit_bottom.yellow::after {
  background-color: #ffff00;
}

.ex .inner > div:not(:first-of-type) {
  margin-top: 60px;
}
.ex h3 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ex h3 {
    display: block;
  }
}
.ex h3 span {
  display: block;
  font-size: 20px;
  padding: 10px;
  margin-right: 35px;
  position: relative;
  width: 400px;
  max-width: 100%;
  z-index: 5;
}
.ex h3 span.blue {
  color: #0000ff;
}
.ex h3 span.pink {
  color: #ff00ff;
}
.ex h3 span.green {
  color: #ffff00;
}
@media screen and (max-width: 768px) {
  .ex h3 span {
    margin-bottom: 5px;
  }
}
.ex h3 span::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
  z-index: -1;
}
.ex h3 span::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  left: 389px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .ex h3 span::before {
    display: none;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  padding: 40px 0 20px;
  color: #fff;
}

.toTop {
  opacity: 0;
  transform: translate(0, 50px);
  transition: transform 1s cubic-bezier(0.5, 1, 0.89, 1), opacity 1s cubic-bezier(0.5, 1, 0.89, 1);
}

.lowpage header {
  margin-bottom: 60px;
}

.lowpage .header_inner {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lowpage .header_inner {
    padding: 10px;
  }
}

.lowpage .header_logo {
  display: block;
  width: 100px;
}

.lowpage header ul {
  display: flex;
  align-items: center;
}

.lowpage header li {
  list-style: none;
}
.lowpage header li:not(:first-of-type) {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .lowpage header li:not(:first-of-type) {
    margin-left: 10px;
  }
}

.lowpage header li a {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.lowpage header li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.sp_btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
  background-color: transparent;
}
.sp_btn::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  transition-duration: 0.5s;
}
.sp_btn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  transition-duration: 0.5s;
}
.sp_btn.on::before {
  top: 50%;
  transform: rotate(45deg);
  background-color: #fff;
}
.sp_btn.on::after {
  top: 50%;
  transform: rotate(-45deg);
  background-color: #fff;
}

.sp_menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  z-index: 50;
}
.sp_menu_inner {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px;
}
.sp_menu li:not(:first-of-type) {
  margin-top: 20px;
}
.sp_menu li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}/*# sourceMappingURL=base.css.map */