@charset "UTF-8";

/*------------------------------------------------------------------------
.bg
------------------------------------------------------------------------*/
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.bg-image__image {
  width: 100%;
}



/*------------------------------------------------------------------------
.pagetitle
------------------------------------------------------------------------*/
.pagetitle {
  position: relative;
  padding-top: 180px;
  @media screen and (max-width: 736px) {
    padding-top: 150px;
  }
}

.pagetitle__inner {
  width: var(--site-width);
  margin: 0 auto;
  padding-bottom: 49px;
  @media screen and (max-width: 736px) {
    width: 100%;
    padding-bottom: 24px;
  }
}

.pagetitle__txt {
  color: #fff;
  font-size: 8rem;
  font-weight: bold;
  text-shadow: 0 0 32px rgba(0,0,0,0.1);
  @media screen and (max-width: 736px) {
    margin-bottom: 12px;
    padding: 0 16px;
    font-size: clamp(4.5rem, var(--vw, 1vw) * 80/768 * 100, 8rem);
  }
}

.pagetitle__ul {
  width: 270px;
  margin-left: auto;
  @media screen and (max-width: 736px) {
    width: 100%;
    padding: 0 24px;
  }
}

.pagetitle__li {
  margin-bottom: 12px;
  @media screen and (max-width: 736px) {
    margin-bottom: 6px;
  }
}

.pagetitle__link {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
  &::before {
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 12px;
    background-image: url(/static/img/icon/icon_arrow5.svg);
  }
}



/*------------------------------------------------------------------------
.philosophy
------------------------------------------------------------------------*/
.philosophy {
  width: 956px;
  margin: 0 auto;
  padding: 40px;
  background-color: #fff;
  @media screen and (max-width: 736px) {
    width: calc( 100% - 48px );
    padding: 20px 24px;
  }
}

.philosophy__title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  @media screen and (max-width: 736px) {
    font-size: clamp(2.8rem, var(--vw, 1vw) * 28/768 * 100, 4rem);
  }
}

.philosophy__subtitle-wrapper {
  margin-bottom: 32px;
  text-align: center;
  @media screen and (max-width: 736px) {
    margin-bottom: min(var(--vw, 1vw) * 32/768 * 100, 32px);
  }
}

.philosophy__subtitle {
  padding: 0 32px;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  background-color: var(--purple);
  @media screen and (max-width: 736px) {
    padding: 6px 12px;
    font-size: clamp(2.2rem, var(--vw, 1vw) * 40/768 * 100, 4rem);
    line-height: 1.3;
  }
}

.philosophy__txt {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.2;
  letter-spacing: 2px;
  margin-bottom: 36px;
  @media screen and (max-width: 736px) {
    margin-bottom: min(var(--vw, 1vw) * 36/768 * 100, 36px);
    font-size: clamp(1.5rem, var(--vw, 1vw) * 16/768 * 100, 1.6rem);
    text-align: justify;
    line-height: 1.8;
  }
}



/*------------------------------------------------------------------------
.column
------------------------------------------------------------------------*/
.column {
  background-color: #DBDBDB;
}

.column__inner {
  width: var(--site-width);
  margin: 0 auto;
  padding: 0 16px;
  @media screen and (max-width: 736px) {
    width: 100%;
  }
}

.column__head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #000;
  @media screen and (max-width: 736px) {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}

.column__midashi {
  font-weight: bold;
  font-size: 3.2rem;
  @media screen and (max-width: 736px) {
    font-size: clamp(2.2rem, var(--vw, 1vw) * 32/768 * 100, 3.2rem);
  }
}

.column__midashi-en {
  font-weight: 2rem;
  color: #777;
  font-weight: bold;
  @media screen and (max-width: 736px) {
    font-size: clamp(1.7rem, var(--vw, 1vw) * 20/768 * 100, 2rem);
  }
}

.column__body {}

.column__flex {
  display: flex;
  gap: 12px;
  @media screen and (max-width: 736px) {
    display: block;
  }
}

.column__txt {
  line-height: 2.1;
  letter-spacing: 2.5px;
  @media screen and (max-width: 736px) {
    line-height: 2;
  }
}

.column__img {
  width: 100%;
  @media screen and (max-width: 736px) {
  }
}

.column__box {
  margin-bottom: 56px;
  &:last-child {
    margin-bottom: 0;
  }
}

.column__box-midashi {
  display: flex;
  align-items: center;
  height: 55px;
  padding-left: 21px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background-color: #490E4B;
  @media screen and (max-width: 736px) {
    height: auto;
    padding: 8px 12px;
    line-height: 1.4;
    font-size: clamp(1.7rem, var(--vw, 1vw) * 24/768 * 100, 2.4rem);
  }
}

.column__box-blocks {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 32px;
  background-color: #fff;
  @media screen and (max-width: 736px) {
    padding: 8px;
  }
  &:last-child {
  }
}

.column__box-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 118px;
  border: 1px solid #490E4B;
  @media screen and (max-width: 736px) {
    height: auto;
    padding: 12px 12px;
  }
  &:last-child {
    @media screen and (max-width: 736px) {
      margin-bottom: 0;
    }
  }
}

.column__box-txt1 {
  height: 34px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #490E4B;
  line-height: 1.2;
  text-align: center;
  @media screen and (max-width: 736px) {
    height: auto;
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
}

.column__box-txt2 {
  font-size: 2rem;
  font-weight: bold;
  color: #490E4B;
  @media screen and (max-width: 736px) {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
  }
}



/*------------------------------------------------------------------------
.content1
------------------------------------------------------------------------*/
.content1 {
  position: relative;
  margin-top: -250px;
  padding-top: 340px;
  z-index: -1;
  @media screen and (max-width: 736px) {
    /*
    margin-top: -250%;
    padding-top: 265%;
    */
  }
  .column__img {
    margin-top: 24px;
    @media screen and (max-width: 736px) {
    }
  }
}



/*------------------------------------------------------------------------
.content2
------------------------------------------------------------------------*/
.content2 {
  padding-top: 120px;
  @media screen and (max-width: 736px) {
    padding-top: min(var(--vw, 1vw) * 120/768 * 100, 120px);
  }
  .column__img {
    width: 1152px;
    @media screen and (max-width: 736px) {
      width: 100%;
      margin-bottom: 16px;
    }
  }
}



/*------------------------------------------------------------------------
.content3
------------------------------------------------------------------------*/
.content3 {
  padding-top: 120px;
  padding-bottom: 20px;
  @media screen and (max-width: 736px) {
    padding-top: min(var(--vw, 1vw) * 120/768 * 100, 120px);
  }
}

.content3__block-link {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 48px;
  margin-top: 20px;
  margin-bottom: 56px;
  padding-left: 24px;
  color: #fff;
  font-size: 1.8rem;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(51, 51, 51, 1) 100%);
  &::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(/static/img/icon/icon_target_blank_white.svg);
  }
}

.content3__blocks {
  @media screen and (min-width: 737px) {
    display: grid;
    grid-template-columns: 379px 379px 379px;
    gap: 7.5px;
    margin-bottom: 12px;
  }
}

.content3__block {
  @media screen and (max-width: 736px) {
    margin-bottom: min(var(--vw, 1vw) * 110/768 * 100, 110px);
  }
  picture {
    background-color: #E2E2E2;
  }
}

.content3__block-img {
  width: 100%;
  @media screen and (max-width: 736px) {
  }
}

.content3__block-name {
  height: 32px;
  display: flex;
  align-items: center;
  color: #fff;
  padding-left: 12px;
  margin-bottom: 4px;
  font-size: 1.8rem;
  background-color: #490E4B;
  @media screen and (max-width: 736px) {
    margin-top: 8px;
  }
}

.content3__block-txt1 {
  font-weight: bold;
}

.content3__block-txt2 {
  font-size: 1.2rem;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(var(--vw, 1vw) * 70/768 * 100, 70px);
  bottom: 10px !important;
  .swiper-pagination-bullet {
    margin: 0 10px !important;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--purple);
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  top: auto;
  bottom: 10px;
  align-items: center;
  justify-content: center;
  width: min(var(--vw, 1vw) * 70/768 * 100, 70px);
  height: min(var(--vw, 1vw) * 70/768 * 100, 70px);
  border-radius: 50%;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(var(--vw, 1vw) * 19/768 * 100, 19px) min(var(--vw, 1vw) * 19/768 * 100, 19px);
  &::after {
    display: none;
  }
  @media screen and (min-width: 737px) {
    display: none;
  }
}

.swiper-button-prev {
  left: 20%;
  background-image: url(/static/img/icon/icon_prev.svg);
}

.swiper-button-next {
  right: 20%;
  background-image: url(/static/img/icon/icon_next.svg);
}