@charset "UTF-8";
/**
 * Base Font Size
 */
.instagram {
  padding: 60px 0;
}
.instagram .inTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.instagram .inTitle .subTitle {
  color: #333;
  text-align: center;
  font-feature-settings: "halt" on;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 575px) {
  .instagram .inTitle .subTitle {
    font-size: 0.875rem;
  }
}
.instagram .inTitle .titleText {
  color: #333;
  text-align: center;
  font-family: "Open Sans", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 575px) {
  .instagram .inTitle .titleText {
    font-size: 1.75rem;
  }
}
.instagram .inContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin: 0 auto;
  max-width: 917px;
}
@media screen and (max-width: 1024px) {
  .instagram .inContainer {
    grid-gap: 8px;
    padding: 0 16px;
  }
}
.instagram .inContainer .inBox {
  overflow: hidden;
  max-width: 295px;
}
.instagram .inContainer .inBox .inLink img {
  transition: transform 0.3s;
}
.instagram .inContainer .inBox .inLink:hover img {
  transform: scale(1.1);
  transition: transform 0.3s;
}
.instagram .inLinkMore {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 917px;
}
@media screen and (max-width: 1024px) {
  .instagram .inLinkMore {
    padding: 0 16px;
  }
}
.instagram .inLinkMore .inLinkBtn {
  margin-top: 30px;
  text-decoration: none;
}
.instagram .inLinkMore .inLinkBtn .inLinkBtnText {
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s;
}
.instagram .inLinkMore .inLinkBtn .inLinkBtnIcon {
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #333333;
  width: 60px;
  height: 60px;
  margin-left: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.instagram .inLinkMore .inLinkBtn .inLinkBtnIcon::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateX(-25%) rotate(45deg);
  transition: all 0.3s;
}
.instagram .inLinkMore .inLinkBtn:hover .inLinkBtnIcon {
  background-color: #333333;
  border: 1px solid #333333;
  transition: all 0.3s;
}
.instagram .inLinkMore .inLinkBtn:hover .inLinkBtnIcon::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

/**
 * Animation
 */
@keyframes slide-down-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  1% {
    transform: translateY(-100%);
    opacity: 0;
  }
  70% {
    transform: translateY(12px);
    opacity: 1;
  }
  85% {
    transform: translateY(-4px);
    opacity: 1;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes shrink-to-extension {
  0% {
    transform: translateX(-50%) skewX(-30deg) scaleX(0) scaleY(0);
  }
  20% {
    transform: translateX(-50%) skewX(-30deg) scaleX(0.2) scaleY(1);
  }
  99% {
    transform: translateX(-50%) skewX(-30deg) scaleX(1) scaleY(1);
  }
  100% {
    transform: translateX(-50%) skewX(0deg) scaleX(1) scaleY(1);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hopping {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes card-rotate {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes shrink-bounce {
  0% {
    transform: scale(1); /* 元のサイズ */
  }
  50% {
    transform: scale(0.9); /* 少し縮む */
  }
  70% {
    transform: scale(1.1); /* 少し大きくなる */
  }
  100% {
    transform: scale(1); /* 元のサイズに戻る */
  }
}
@keyframes shiny {
  0% {
    transform: rotate(-48deg) translateY(-160%);
  }
  100% {
    transform: rotate(-48deg) translateY(160%);
  }
}
@keyframes outline-hover {
  0% {
    outline-style: solid;
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(255, 255, 255, 0);
  }
  10% {
    outline-style: solid;
    outline-color: rgba(255, 255, 255, 0.75);
  }
  50% {
    outline-style: solid;
    outline-width: 10px;
    outline-offset: 1px;
    outline-color: rgba(255, 255, 255, 0);
  }
  100% {
    outline-style: solid;
    outline-width: 10px;
    outline-offset: 1px;
    outline-color: rgba(255, 255, 255, 0);
  }
}
@keyframes toggle-fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes mask-zoom {
  0% {
    mask-size: 50%;
  }
  10% {
    mask-size: 40%;
  }
  100% {
    mask-size: 300%;
  }
}
@keyframes zoom-bound {
  0% {
    transform: scale(0.8);
  }
  90% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/**
 * Main Visual
 */
.mainVisual {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mainVisual .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mainVisual .cover .animationStage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 5;
  animation: fade-out 1s ease 6.2s 1 normal both;
}
.mainVisual .cover .animationStage .coverImageBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mainVisual .cover .animationStage .coverImageBox.uhLogo {
  z-index: 1;
  transform: translateY(0%);
  animation: slide-down-in 1s ease-in-out 0s 1 normal both;
}
.mainVisual .cover .animationStage .coverImageBox.thirtiesLogo {
  width: 400vw;
  left: 50%;
  z-index: 2;
  background-color: #E6001B;
  transform: translateX(-50%) skewX(0deg) scaleX(1) scaleY(1);
  transform-origin: center;
  animation: shrink-to-extension 2s ease 2s 1 normal both;
}
.mainVisual .cover .animationStage .coverImageBox.thirtiesLogo .coverImage {
  animation: fade-in 1s ease 4s 1 normal backwards, fade-out 0.2s ease 5.9s 1 normal forwards;
}
.mainVisual .cover .animationStage .coverImageBox .coverImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 124px;
}
.mainVisual .cover .linkText {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: url(/assets/home/img/h_mv_text.svg), linear-gradient(180deg, rgba(170, 170, 170, 0) 33.5%, rgba(68, 68, 68, 0.57) 100%);
  background-repeat: no-repeat;
  background-size: auto 81px, contain;
  background-position: center right 31px, center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .mainVisual .cover .linkText {
    height: 100px;
    background-size: auto 60px, contain;
  }
}
@media screen and (max-width: 575px) {
  .mainVisual .cover .linkText {
    height: 70px;
    background-size: 80% auto, contain;
    background-position: center;
  }
}
.mainVisual .mvSlider {
  position: relative;
  z-index: 1;
}
.mainVisual .mvSlider .slideImage {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 120px - 70px);
}
@media screen and (max-width: 519px) {
  .mainVisual .mvSlider .slideImage {
    height: 133.3333333333vw;
  }
}
.mainVisual .mvSlider .slideImage.slide1 {
  background-image: url(/assets/home/img/h_mv_image_01_pc.png);
  background-position: bottom;
}
@media screen and (max-width: 575px) {
  .mainVisual .mvSlider .slideImage.slide1 {
    background-image: url(/assets/home/img/h_mv_image_01_sp.png);
  }
}
.mainVisual .mvSlider .slideImage.slide2 {
  background-image: url(/assets/home/img/h_mv_image_02_pc.png?d=20260428);
}
@media screen and (max-width: 575px) {
  .mainVisual .mvSlider .slideImage.slide2 {
    background-image: url(/assets/home/img/h_mv_image_02_sp.png?d=20260428);
  }
}
.mainVisual .mvSlider .slideImage.slide3 {
  background-image: url(/assets/home/img/h_mv_image_03_pc.png?d=20260428);
}
@media screen and (max-width: 575px) {
  .mainVisual .mvSlider .slideImage.slide3 {
    background-image: url(/assets/home/img/h_mv_image_03_sp.png?d=20260428);
  }
}
.mainVisual .mvSlider .slideImage.slide4 {
  background-image: url(/assets/home/img/h_mv_image_04_pc.png?d=20260428);
}
@media screen and (max-width: 575px) {
  .mainVisual .mvSlider .slideImage.slide4 {
    background-image: url(/assets/home/img/h_mv_image_04_sp.png?d=20260428);
  }
}
.mainVisual .mvSlider .slideImage.slide5 {
  background-image: url(/assets/home/img/h_mv_image_05_pc.png?d=20260428);
}
@media screen and (max-width: 575px) {
  .mainVisual .mvSlider .slideImage.slide5 {
    background-image: url(/assets/home/img/h_mv_image_05_sp.png?d=20260428);
  }
}

/**
 * Pick Up
 */
.pickUp {
  width: 100%;
  background-color: #F6F6F6;
}
.pickUp .swiper-container {
  padding: 24px 0;
}
.pickUp .swiper-container .swiper-wrapper {
  transition-timing-function: linear;
}
.pickUp .swiper-container .swiper-wrapper .swiper-slide a {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 575px) {
  .pickUp .swiper-container .swiper-wrapper .swiper-slide a {
    border-radius: 10px;
  }
}
.pickUp .swiper-container .swiper-wrapper .swiper-slide a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: border 0.3s ease 0.2s;
  box-sizing: border-box;
  border: 0 solid transparent;
  border-radius: 20px;
}
@media screen and (max-width: 575px) {
  .pickUp .swiper-container .swiper-wrapper .swiper-slide a::after {
    border-radius: 10px;
  }
}
.pickUp .swiper-container .swiper-wrapper .swiper-slide:hover a {
  animation: shrink-bounce 0.3s ease 0s 1 normal both;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.pickUp .swiper-container .swiper-wrapper .swiper-slide:hover a::after {
  border: 10px solid #fff;
}

/**
 * Our Philosophy
 */
.ourPhilosophy .sectionTitle .subText {
  color: #E6181C;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}
.ourPhilosophy .sectionTitle .titleText {
  font-weight: bold;
  font-size: 3rem;
  display: block;
}
.ourPhilosophy .mixUpOrder_1 {
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_1 {
    display: block;
    margin-top: 16px;
  }
}
.ourPhilosophy .mixUpOrder_1::before {
  content: "";
  display: block;
  width: 55.5555555556vw;
  padding-top: 37.0138888889vw;
  background-image: url(/assets/home/img/op_image_01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_1::before {
    width: 95.8333333333%;
    padding-top: 61.328125%;
    background-image: url(/assets/home/img/op_image_02.png);
    margin: 0 auto 16px;
    background-size: cover;
    border-radius: 20px;
  }
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_1::before {
    width: 91.1111111111%;
    padding-top: 58.3333333333%;
    border-radius: 10px;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_1 .textBox {
    margin: 0 16px;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .text {
  font-size: 1.125rem;
  font-weight: 500;
  max-width: 400px;
  margin-bottom: 36px;
}
@media screen and (max-width: 1024px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .text {
    font-size: 0.875rem;
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .text {
    margin-bottom: 24px;
    padding: 0;
    font-size: 1rem;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .linkBox {
    width: 100%;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid #333333;
  padding: 24px 64px;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn {
    padding: 18px 24px;
    width: 100%;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn .linkBtnText {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn .linkBtnText {
    font-size: 1rem;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn .linkBtnText br {
  display: none;
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn .linkBtnText br {
    display: block;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateX(10px) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn::after {
    position: absolute;
    right: 50px;
  }
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn:hover {
  color: #ffffff;
  background-color: #333333;
  transition: all 0.3s;
}
.ourPhilosophy .mixUpOrder_1 .textBox .linkBox .linkBtn:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateX(12px) rotate(45deg);
}
.ourPhilosophy .mixUpOrder_2 {
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_2 {
    display: block;
    margin-bottom: 16px;
  }
}
.ourPhilosophy .mixUpOrder_2::after {
  content: "";
  display: block;
  width: 37.5vw;
  padding-top: 25vw;
  background-image: url(/assets/home/img/op_image_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-40px);
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_2::after {
    width: 97.9166666667%;
    padding-top: 76.3020833333vw;
    background-image: url(/assets/home/img/op_image_01.png);
    transform: translateY(0);
    background-size: auto 100%;
    background-position: right center;
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_2::after {
    width: 95.5555555556%;
    padding-top: 76.3888888889%;
    border-radius: 0 10px 10px 0;
  }
}
.ourPhilosophy .mixUpOrder_2 .textBox {
  margin-right: 2.7777777778%;
  margin-left: 11.1111111111%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_2 .textBox {
    display: block;
    margin: 0 16px;
  }
}
.ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle {
  width: 37.5vw;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle {
    width: 100%;
    max-width: 100%;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle .subText {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle .subText {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle .titleText {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .ourPhilosophy .mixUpOrder_2 .textBox .sectionTitle .titleText {
    font-size: 1.5rem;
  }
}

/**
 * Cases
 */
.cases {
  background-color: #F6F6F6;
}
.cases .swiper-container {
  margin-bottom: 4rem;
  padding: 20px 0;
  margin-top: -20px;
}
@media screen and (max-width: 575px) {
  .cases .swiper-container {
    padding: 10vw 0 6vw;
    margin-top: -6vw;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .cases .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1.18);
  }
}
.cases .swiper-container .swiper-wrapper .swiper-slide a {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  position: relative;
}
@media screen and (max-width: 575px) {
  .cases .swiper-container .swiper-wrapper .swiper-slide a {
    border-radius: 10px;
  }
}
.cases .swiper-container .swiper-wrapper .swiper-slide a img {
  transition: transform 0.3s ease;
  transform-origin: bottom;
}
.cases .swiper-container .swiper-wrapper .swiper-slide:hover a {
  animation: hopping 0.4s ease 0s 1 normal both;
}
.cases .swiper-container .swiper-wrapper .swiper-slide:hover a img {
  transform: scale(1.09);
}
.cases .swiper-button-next,
.cases .swiper-button-prev {
  background-image: none;
  background-color: #ffffff;
  width: 4.4444444444vw;
  height: 4.4444444444vw;
  border-radius: 64px;
  border: 1px solid #333333;
}
@media screen and (max-width: 575px) {
  .cases .swiper-button-next,
  .cases .swiper-button-prev {
    width: 11.1304347826vw;
    height: 11.1304347826vw;
  }
}
.cases .swiper-button-next::after,
.cases .swiper-button-prev::after {
  font-size: 1.125rem;
  color: #333333;
}
.cases .linkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .cases .linkBox {
    width: 100%;
  }
}
.cases .linkBox .linkBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid #333333;
  padding: 24px 64px;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 575px) {
  .cases .linkBox .linkBtn {
    padding: 18px 24px;
    width: 100%;
  }
}
.cases .linkBox .linkBtn .linkBtnText {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .cases .linkBox .linkBtn .linkBtnText {
    font-size: 1rem;
  }
}
.cases .linkBox .linkBtn .linkBtnText br {
  display: none;
}
@media screen and (max-width: 575px) {
  .cases .linkBox .linkBtn .linkBtnText br {
    display: block;
  }
}
.cases .linkBox .linkBtn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateX(10px) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .cases .linkBox .linkBtn::after {
    position: absolute;
    right: 50px;
  }
}
.cases .linkBox .linkBtn:hover {
  color: #ffffff;
  background-color: #333333;
  transition: all 0.3s;
}
.cases .linkBox .linkBtn:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateX(12px) rotate(45deg);
}

/**
 * Plans
 */
.conceptPlan .planList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 32px;
  margin: 0 17.7777777778vw 4em;
}
@media screen and (max-width: 768px) {
  .conceptPlan .planList {
    margin: 0 16px 32px;
    grid-gap: 16px;
  }
}
.conceptPlan .planList .planBox .planLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333333;
  text-decoration: none;
}
.conceptPlan .planList .planBox .planLink .planImg {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  .conceptPlan .planList .planBox .planLink .planImg {
    border-radius: 10px;
    margin-bottom: calc(1rem - 8px);
  }
}
.conceptPlan .planList .planBox .planLink .planImg img {
  transition: transform 0.3s;
}
.conceptPlan .planList .planBox .planLink:hover .planImg img {
  transform: scale(1.1);
  transition: transform 0.3s;
}
.conceptPlan .planList .planBox .planLink .planTitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .conceptPlan .planList .planBox .planLink .planTitle {
    font-size: 0.75rem;
  }
}
.conceptPlan .planList .planBox .planLink .planText {
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .conceptPlan .planList .planBox .planLink .planText {
    font-size: 0.8125rem;
    letter-spacing: -0.02em;
    font-feature-settings: "halt" on;
  }
}
.conceptPlan .linkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .conceptPlan .linkBox {
    width: 100%;
  }
}
.conceptPlan .linkBox .linkBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid #333333;
  padding: 24px 64px;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 575px) {
  .conceptPlan .linkBox .linkBtn {
    padding: 18px 24px;
    width: 100%;
  }
}
.conceptPlan .linkBox .linkBtn .linkBtnText {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .conceptPlan .linkBox .linkBtn .linkBtnText {
    font-size: 1rem;
  }
}
.conceptPlan .linkBox .linkBtn .linkBtnText br {
  display: none;
}
@media screen and (max-width: 575px) {
  .conceptPlan .linkBox .linkBtn .linkBtnText br {
    display: block;
  }
}
.conceptPlan .linkBox .linkBtn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateX(10px) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .conceptPlan .linkBox .linkBtn::after {
    position: absolute;
    right: 50px;
  }
}
.conceptPlan .linkBox .linkBtn:hover {
  color: #ffffff;
  background-color: #333333;
  transition: all 0.3s;
}
.conceptPlan .linkBox .linkBtn:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateX(12px) rotate(45deg);
}

/**
 * Numbers
 */
.numbers {
  background-color: #F6F6F6;
}
.numbers .linkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .numbers .linkBox {
    width: 100%;
  }
}
.numbers .linkBox .linkBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid #333333;
  padding: 24px 64px;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 575px) {
  .numbers .linkBox .linkBtn {
    padding: 18px 24px;
    width: 100%;
  }
}
.numbers .linkBox .linkBtn .linkBtnText {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .numbers .linkBox .linkBtn .linkBtnText {
    font-size: 1rem;
  }
}
.numbers .linkBox .linkBtn .linkBtnText br {
  display: none;
}
@media screen and (max-width: 575px) {
  .numbers .linkBox .linkBtn .linkBtnText br {
    display: block;
  }
}
.numbers .linkBox .linkBtn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateX(10px) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .numbers .linkBox .linkBtn::after {
    position: absolute;
    right: 50px;
  }
}
.numbers .linkBox .linkBtn:hover {
  color: #ffffff;
  background-color: #333333;
  transition: all 0.3s;
}
.numbers .linkBox .linkBtn:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateX(12px) rotate(45deg);
}
@media screen and (max-width: 575px) {
  .numbers {
    padding: 40px 16px;
  }
}
.numbers .numbersImage {
  margin: 0 2.0833333333vw;
}
@media screen and (max-width: 575px) {
  .numbers .numbersImage {
    margin: 0 auto 6.9565217391vw;
  }
}
@media screen and (max-width: 768px) {
  .numbers .numbersImage {
    margin: 0 auto 5.2083333333vw;
  }
}
.numbers .information {
  margin: 0 2.0833333333vw;
}
@media screen and (max-width: 575px) {
  .numbers .information {
    margin: 0 auto;
  }
}
.numbers .information .sectionTitle {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 575px) {
  .numbers .information .sectionTitle {
    margin-bottom: 6.9565217391vw;
  }
}
@media screen and (max-width: 768px) {
  .numbers .information .sectionTitle {
    margin-bottom: 5.2083333333vw;
  }
}
.numbers .information .sectionTitle .subText {
  color: #E6181C;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  .numbers .information .sectionTitle .subText {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  .numbers .information .sectionTitle .subText {
    font-size: 0.875rem;
  }
}
.numbers .information .sectionTitle .titleText {
  font-weight: bold;
  font-size: 3rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .numbers .information .sectionTitle .titleText {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .numbers .information .sectionTitle .titleText {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .numbers .noSp {
    display: none;
  }
}
@media (min-width: 769px) {
  .numbers .noPc {
    display: none;
  }
}

/**
 * Catalog
 */
.catalog {
  background-color: #F6F6F6;
}
.catalog .linkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .catalog .linkBox {
    width: 100%;
  }
}
.catalog .linkBox .linkBtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333333;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid #333333;
  padding: 24px 64px;
  text-decoration: none;
  transition: all 0.3s;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 575px) {
  .catalog .linkBox .linkBtn {
    padding: 18px 24px;
    width: 100%;
  }
}
.catalog .linkBox .linkBtn .linkBtnText {
  font-size: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .catalog .linkBox .linkBtn .linkBtnText {
    font-size: 1rem;
  }
}
.catalog .linkBox .linkBtn .linkBtnText br {
  display: none;
}
@media screen and (max-width: 575px) {
  .catalog .linkBox .linkBtn .linkBtnText br {
    display: block;
  }
}
.catalog .linkBox .linkBtn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: translateX(10px) rotate(45deg);
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .catalog .linkBox .linkBtn::after {
    position: absolute;
    right: 50px;
  }
}
.catalog .linkBox .linkBtn:hover {
  color: #ffffff;
  background-color: #333333;
  transition: all 0.3s;
}
.catalog .linkBox .linkBtn:hover::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateX(12px) rotate(45deg);
}
@media screen and (max-width: 575px) {
  .catalog {
    padding: 40px 16px;
  }
}
.catalog .catalogImage {
  margin: 0 2.0833333333vw;
}
@media screen and (max-width: 575px) {
  .catalog .catalogImage {
    margin: 0 auto 3.90625vw;
  }
}
.catalog .information {
  margin: 0 2.0833333333vw;
}
@media screen and (max-width: 575px) {
  .catalog .information {
    margin: 0 auto;
  }
}
.catalog .information .catalogTitle {
  color: #333333;
  text-align: center;
  font-feature-settings: "halt" on;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  .catalog .information .catalogTitle {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .catalog .information .catalogTitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .catalog .noSp {
    display: none;
  }
}
@media (min-width: 769px) {
  .catalog .noPc {
    display: none;
  }
}

/**
 * Youtube
 */
.youtube {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
}

/*# sourceMappingURL=h_contents_style.css.map */
