@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Rubik:wght@800;900&display=swap');

/* layout */
html.is-fixed, html.is-fixed body {
  height: 100%;
  overflow: hidden;
}
@media (min-width: 1200px) {
  html.is-fixed, html.is-fixed body {
    height: auto;
    overflow: hidden;
  }
}
body {
  color: #373839;
  position: relative;
  height: -webkit-fill-available;
  overflow-x: hidden;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6%;
}
@media (min-width: 1200px) {
  .container {
    padding: 0 80px;
  }
}
/* common */
.sp_view {
  display: block;
}
.pc_view {
  display: none;
}
@media (min-width: 768px) {
  .sp_view {
    display: none;
  }
  .pc_view {
    display: block;
  }
}
.mb20 {
  margin-bottom: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
.bg_w {
  background: #fff;
}
.sub {
  font-size: calc(12px + 2 * (100vw - 320px)/680);
  color: red;
  text-align: center;
  line-height: 1.2;
  font-family: 'Avenir';
}
.note {
  display: inline-block;
  padding-top: 20px;
  font-size: calc(10px + 1 * (100vw - 320px)/680);
  line-height: 1.4;
}
.link {
  background: red;
  background-size: 200% 100%;
  border-radius: 60px;
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 0 8px;
  text-align: center;
  font-size: 1.4rem;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.link:hover {
  background-position: 100% 0;
}
.c-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.c-btn span {
  display: block;
  font-size: 1.2rem;
}
@media (min-width: 1200px) {
  .c-btn {
    margin: 0 auto;
    font-size: 1.6rem;
  }
  .c-btn span {
    display: inline-block;
  }
}
.top__heading {
  margin-bottom: 20px;
  font-size: calc(19px + 10 * (100vw - 320px)/680);
  font-weight: 900;
  text-align: center;
      color: #232580;
}
@media (min-width: 1200px) {
  .top__heading {
    margin-bottom: 80px;
  }
}
#page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: url("../img/img_ball.png");
  background-size: cover;
  border-radius: 50%;
  font-size: calc(14px + 2 * (100vw - 320px)/680);
  transition: all 0.3s;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
}
#page-top a:hover {
  opacity: .8;
}
@media (min-width: 1200px) {
  #page-top a {
    width: 80px;
    height: 80px;
  }
}
/* flex */
.flex__list {
  display: flex;
  flex-wrap: wrap;
}
.flex__list--two .flex__item {
  width: 100%;
}
.flex__list--three .flex__item {
  width: 100%;
}
.flex__item img {
  width: 100%;
}
@media (min-width: 1200px) {
  .flex__list--two .flex__item {
    width: calc(90% / 2);
  }
  .flex__list--three .flex__item {
    width: calc(90% / 3);
  }
}
/* scrolldown */
.scrolldown {
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: 999;
}
.scrolldown span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: #f7f8f9;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f7f8f9;
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50px;
  background: #f7f8f9;
}
/*===================================
header
====================================*/
header {
  position: absolute;
  z-index: 10000;
  width: 100%;
  top: 0;
  color: #fff;
  height: 50px;
  transition: background-color .5s, color .5s;
}
.header__inner {
  position: relative;
}
.header__layout {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
}
.header__logo a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__logo .logo {
  display: block;
  width: 42px;
  padding: 0 10px;
}
.header__text h1 {
  font-size: 1.0rem;
  font-weight: 900;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .header__layout {
    height: 70px;
  }
  .header__logo .logo {
    width: 60px;
  }
}
@media (min-width: 1200px) {
  header {
    height: 100px;
  }
  .header__layout {
    height: 100px;
  }
  .header__logo {
    padding-left: 1%;
  }
}
/*===================================
request
====================================*/
.request {
  padding: 10px;
  background: red;
  border-radius: 0 0 0 10px;
  position: fixed;
  transition: all 0.3s;
  z-index: 99999;
  top: 0;
  right: 0;
  writing-mode: vertical-rl;
  font-weight: 900;
  font-size: calc(14px + 4 * (100vw - 320px)/680);
  letter-spacing: .1em;
}
@media (min-width: 750px) {
  .request {
    padding: 30px 20px;
    border-radius: 0 0 0 20px;
  }
  .request:hover {
    opacity: .8;
  }
}
/*===================================
main-visual
====================================*/
.main-visual {
  position: relative;
}
.swiper-wrap {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .slide-img, .swiper-slide-duplicate-active .slide-img, .swiper-slide-prev .slide-img {
  animation: zoom-in 8s linear 0s 1 normal both;
}
.slide-text {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  font-size: calc(30px + 30 * (100vw - 320px)/680);
  font-weight: 900;
  line-height: 1.2;
  font-feature-settings: "palt";
  font-style: italic;
  letter-spacing: .1em;
  color: #fff;
  transform: translate(-50%, -50%);
  text-align: center;
}
.slide-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 1;
}
.slide-img img {
  object-fit: cover;
  height: 100vh;
  height: 100svh;
  width: 100vw;
}
/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}
/* スライド */
.infinite-slider .swiper-slide {
  height: 300px !important; /* 高さを指定 */
  width: auto !important;
  background: #000;
}
/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
  opacity: 0.6;
}
/*===================================
entry
====================================*/
.entry {
  background: #232580;
  background-position: top center;
  background-size: cover;
  padding-bottom: 10%;
}
.entry .entry__top {
  position: relative;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 8% 6% 6% 6%;
}
.entry__intro {
  margin-bottom: 8%;
  padding: 8% 0 24% 0;
  font-size: calc(18px + 32 * (100vw - 320px)/768);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  letter-spacing: .04em;
}
.entry__heading img {
  width: 55%;
  position: absolute;
    top: -15%;
left: 50%;
    transform: translateX(-50%);

}
@media (min-width: 768px) {
  .entry__intro {
    margin-bottom: 0%;
  }
  .entry__heading img {
    top: -26%;
  }
}
@media (min-width: 1025px) {
  .entry__heading img {
    top: -36%;
  }
}
.entry__date {
  margin: 6% auto;
  font-size: calc(12px + 16 * (100vw - 320px)/680);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  color: red;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .entry__date {
    margin: 10% auto 4% auto;
    width: 76%;
  }
}
.entry__date span {
  font-size: calc(24px + 30 * (100vw - 320px)/768);
  font-family: 'Avenir';
}
.entry__info dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: calc(13px + 1 * (100vw - 320px)/680);
  text-align: center;
  gap:20px;
}
.entry__info dt {
  width: 100%;
  padding: 10px;
  font-weight: 900;
  background: #232580;

  color: #fff;
  line-height: 1.2;
}
.entry__info dd {
  width: 100%;
  line-height: 1.2;
}
.entry__info dd:last-child{
  margin-bottom: 10px;
}
.entry__info dd span {
  font-size: calc(10px + 2 * (100vw - 320px)/680);
}
@media (min-width: 768px) {
  .entry__info dt {
    width: 20%;
  }
  .entry__info dd {
    width: 78%;
    text-align: left;
  }
}
.entry .entry__bottom {
  padding: 6%;
  border-radius: 0 0 20px 20px;
  justify-content: space-between;
  background: #f7f8f9;
}
.cta__heading {
  margin-bottom: 6px;
  font-size: calc(14px + 2 * (100vw - 320px)/680);
  font-weight: 900;
  text-align: center;
}
.entry .entry__bottom.flex__list {
  display: block;
}
.entry .entry__bottom .flex__item:not(:last-child) {
  margin-bottom: 20px;
}
.entry .c-btn {
  font-size: calc(14px + 8 * (100vw - 320px)/680);
  font-weight: 900;
  line-height: 1.2;
}
.entry .name {
  font-size: calc(10px + 4 * (100vw - 320px)/680);
  display: block;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .entry .entry__bottom {
    justify-content: space-between;
  }
  .entry .entry__bottom.flex__list {
    display: flex;
  }
  .entry .entry__bottom .flex__item {
    width: calc(98% / 2);
  }
  .entry .entry__bottom .flex__item:not(:last-child) {
    margin-bottom: 0;
  }
  .cta__heading {
  margin-bottom: 30px;
}
  .entry .cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .entry .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(20px + 20 * (100vw - 320px)/680);
    font-weight: 900;
    color: red;
    line-height: 1.0;
    font-family: 'Avenir';
  }
  .entry .name {
    color: red;
  }
}
/*===================================
about
====================================*/
.about {
  color: #fff;
  position: relative;
  background: url("../img/bg_01.jpg");
  background-size: cover;
  background-position: 65% top;
  background-repeat: no-repeat;
}
.parallax {
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -999;
}
@media (min-width: 1025px) {
  .about {
    background-position: center top;
  }
  .parallax {
  height: 150vh;
}
}
.about:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: -1;
}
.about__wrap {
  padding: 8% 0;
}
.about__text p {
    font-size: calc(14px + 1 * (100vw - 320px)/680);
  line-height: 1.8;
}
.about__heading {
  margin-bottom: 40px;
  font-size: calc(30px + 20 * (100vw - 320px)/680);
  font-weight: 900;
  text-align: left;
  line-height: 1.4;
  color: #fff;
}
@media (min-width: 1200px) {
.about__text p {
  line-height: 2.8;
}
}

@media (min-width: 1200px) {
  .about__heading {
    margin-bottom: 100px;
  }
}
.about .sub {
  text-align: left;
}
/*===================================
policy
====================================*/
.policy .flex__item {
  width: 100%;
  background: #232580;
}
@media (min-width: 768px) {
  .policy .flex__list {
    display: flex;
  }
  .policy .flex__item {
    width: calc(100% /2);
    flex-wrap: wrap;
  }
}
.policy .flex__item img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.policy .flex__list:first-child .flex__item:first-child,
.policy .flex__list:last-child .flex__item:last-child {
  position: relative;
  z-index: 1;
}
.policy .flex__list:first-child .flex__item:first-child:after,
.policy .flex__list:last-child .flex__item:last-child:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: 2;
}
.policy .flex__list:first-child .flex__item:last-child,
.policy .flex__list:last-child .flex__item:first-child {
  padding: 30px 20px 60px 20px;
}
@media (min-width: 1024px) {
  .policy .flex__list:first-child .flex__item:last-child,
  .policy .flex__list:last-child .flex__item:first-child {
    padding: 20px 60px 60px 60px;
  }
}
@media (max-width: 767px) {
.policy .flex__list:last-child .flex__item:first-child {
  order: 2;
}
.policy .flex__list:last-child .flex__item:last-child {
  order: 1;
}
  }
.policy .flex__item {
  font-size: calc(28px + 14 * (100vw - 320px)/768);
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  z-index: -2;
}
.policy .flex__item span {
  display: block;
  margin-bottom: 20px;
  font-weight: normal;
}
@media (min-width: 1024px) {
  .policy .flex__item span {
  margin-bottom: 40px;
  }
}
/*===================================
activity
====================================*/
.activity {
  position: relative;
  padding: 8% 0;
  background: #fff;
  background-size: cover;
}
.activity .flex__list {
  justify-content: space-between;
  gap: 22px 0px;
}
.activity .flex__item {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #c7c8c9;
      border-radius: 10px;

  line-height: 1.4;
  color: #373839;
}
.activity .flex__item img{
  display: block;
  width: 40px;
  margin: 0 auto;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
.activity .flex__list {
  gap: 40px 0px;
}
  .activity .flex__item {
    width: calc(94% / 3);
  }
}
.activity__heading {
  margin-bottom: 30px;
  border-radius: 7px 7px 0 0;
  font-size: calc(19px + 1 * (100vw - 320px)/680);
  font-weight: 900;
  color: #232580;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
.activity__heading {
  margin-bottom: 40px;
}
}
.activity__text {
  font-size: calc(13px + 1 * (100vw - 320px)/680);
  line-height: 1.8;
  text-align: center;
}
.fukidashi {
  width: 100%;
  margin: 0 auto 5% auto;
  position: relative;
  padding: 10px;
  background: #232580;
  border-radius: 10px;
  font-size: calc(14px + 10 * (100vw - 320px)/680);
  font-weight: 900;
  text-align: center;
  color: #fff;
}
.fukidashi:before {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: #232580 transparent;
  border-width: 10px 10px 0 10px;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}
@media (min-width: 1024px) {
  .fukidashi {
    width: 70%;
    margin: 0 auto 2% auto;
  }
}
.ground{
  padding: 8% 0 0 0;
  background: #f7f8f9;
}
.ground .ground__lead{
  margin-bottom: 30px;
  font-size: calc(13px + 1 * (100vw - 320px)/680);
  text-align: center;
}
@media (min-width: 1024px) {
.ground .ground__lead{
  margin-bottom: 60px;
}
}
.ground .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.ground .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
.ground .gmap {
  padding-bottom: 30%;
}
}
.ground__img{
    height: 200px;
  position: relative;
  background: url("../img/bg_02.jpg");
  background-size: cover;
  display: flex;
    align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
.ground__img{
    height: 400px;
}
}
.ground__text{
      font-size: calc(20px + 20 * (100vw - 320px)/680);
font-weight: 900;
  color: #fff;
  

  z-index: 999;
}
.ground .ground__img:after{
      content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
  
}
/*===================================
qa__list
====================================*/
.qa {
  padding: 8% 0;
  background: #fff;
  font-size: calc(14px + 1 * (100vw - 320px)/680);
}
.qa .top__heading {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .qa .top__heading {
    margin-bottom: 80px;
  }
  .qa__list {
    padding: 100px 0;
  }
}
.qa__wrap .qa__list {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}
.qa__wrap .qa__list:first-child {
  padding-top: 0;
}
.qa__wrap .qa__list:last-child {
  padding-bottom: 0;
}
.qa__wrap .qa__list dt{
      color: #232580;
}
.qa__wrap .qa__list dt, .qa__wrap .qa__list dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
}
.qa__wrap .qa__list:last-child dd {
  margin: 0;
}
.qa__wrap .qa__list dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: 900;
  width: 100%;
}
.qa__wrap .qa__list dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}
.qa__wrap .qa__list:last-of-type {
  border-bottom: none;
}
.qa__wrap .qa__list dt::before {
  content: "Q";
  width: 40px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #232580;
  border-radius: 5px;
  font-weight: 900;
}
.qa__wrap .qa__list dd::before {
  content: "A";
  width: 40px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: red;
  border-radius: 5px;
  font-weight: 900;
}
/*===================================
footer
====================================*/
.footer {
  background: #232580;
  text-align: center;
  color: #fff;
}
.footer__wrap {
  padding: 4% 0;
}
.footer .flex__list {
  justify-content: space-between;
}
.footer .flex__item {
  width: calc(90% / 2);
  justify-content: flex-start;
}
.footer .flex__item:first-child {
  border-right: 1px solid #1a2543;
}
.footer__logo {
  padding: 20px 0;
  font-size: calc(20px + 4 * (100vw - 320px)/680);
  font-weight: 900;
}
.footer__logo img {
  width: 50px;
  display: inline-block;
  margin-right: 15px;
}
.footer__sns img {
  width: 32px;
  display: block;
  margin-right: 15px;
}
.footer__sns a {
  display: flex;
  align-items: center;
  font-size: 2.0rem;
}
.footer__copy {
  display: block;
  font-size: calc(10px + 0 * (100vw - 320px)/680);
}