@charset "UTF-8";
body {
  background-color: #fff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

@media (min-width: 751px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* －－－－－－－－－－－header－－－－－－－－－－－ */
@media (max-width: 1105px) {
  .header {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .header__container {
    /* ナビゲーションメニュー */
  }
  .header__container__wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    background-color: #fff;
    /* ハンバーガーボタン-通常 */
    /* ハンバーガーボタン-active時の動作 */
  }
  .header__container__wrapper h1 {
    padding: 0;
  }
  .header__container__wrapper h1 a {
    text-decoration: none;
    color: #333;
  }
  .header__container__wrapper h1 img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .header__container__wrapper__hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    height: 35px;
    cursor: pointer;
    /* ハンバーガーボタン-通常-end */
  }
  .header__container__wrapper__hamburger .bar1,
  .header__container__wrapper__hamburger .bar2,
  .header__container__wrapper__hamburger .bar3 {
    width: 30px;
    height: 2px;
    background-color: #333;
    margin-bottom: 8px;
    transition: all 0.4s;
  }
  .header__container__wrapper__hamburger .bar3 {
    margin-bottom: 5px;
  }
  .header__container__wrapper__hamburger .MENU {
    opacity: 1;
    font-size: 0.8rem;
    line-height: 0.8rem;
    position: absolute;
    bottom: 0;
    transition: all 0.4s;
    color: #009e9f;
  }
  .header__container__wrapper__hamburger .CLOSE {
    opacity: 0;
    font-size: 0.8rem;
    line-height: 0.8rem;
    position: absolute;
    bottom: 0;
    transition: all 0.4s;
    color: #009e9f;
  }
  .header__container__wrapper__hamburger.active .bar1,
  .header__container__wrapper__hamburger.active .bar3 {
    width: 30px;
    height: 2px;
    background-color: #333;
    position: absolute;
    margin: 0 auto;
  }
  .header__container__wrapper__hamburger.active .bar1 {
    transform: rotate(45deg);
    top: 30%;
  }
  .header__container__wrapper__hamburger.active .bar2 {
    opacity: 0;
  }
  .header__container__wrapper__hamburger.active .bar3 {
    transform: rotate(-45deg);
    top: 30%;
  }
  .header__container__wrapper__hamburger.active .MENU {
    opacity: 0;
  }
  .header__container__wrapper__hamburger.active .CLOSE {
    opacity: 1;
  }
  .header__container__nav {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    transform: translateX(-150%);
    transition: all 0.4s;
    z-index: 10;
  }
  .header__container__nav__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 50px 0 0;
    flex-wrap: wrap;
    margin-left: 30px;
  }
  .header__container__nav__list__items a {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
  }
  .header__container__nav__list__items__sns a {
    margin-right: 20px;
  }
  .header__container__nav__list__items__sns a:last-child {
    margin: 0;
  }
  .header__container__nav__list__items__sns a img {
    width: 20px;
  }
  .header__container__nav.active {
    transform: translateX(0);
    /* ハンバーガーボタン-end */
  }
  .header__container__black-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .header__container__black-bg.active {
    display: block;
    animation: fadein 0.3s ease-out forwards;
  }
}
@media (max-width: 1105px) and (min-width: 751px) {
  .header__container__black-bg {
    display: none;
  }
}
@media (max-width: 1105px) {
  @keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
@media (min-width: 1106px) {
  .header {
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  .header__container {
    background-color: #fff;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px min(9.7222222222vw, 140px);
  }
  .header__container__wrapper h1 a {
    font-size: 2.5rem;
    color: #333;
    text-decoration: none;
  }
  .header__container__wrapper__hamburger {
    display: none;
  }
  .header__container__nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header__container__nav__list__items {
    margin-right: 50px;
  }
  .header__container__nav__list__items:last-child {
    margin: 0;
  }
  .header__container__nav__list__items a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  .header__container__nav__list__items a::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    background: #ffe46e;
    position: absolute;
    bottom: -6px;
    left: 0;
    transform: scale(0, 1);
    transition: 0.3s;
  }
  .header__container__nav__list__items a:hover {
    color: #ffe46e;
  }
  .header__container__nav__list__items a:hover::after {
    transform: scale(1, 1);
  }
  .header__container__nav__list__items__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .header__container__black-bg {
    display: none;
  }
}
/* －－－－－－－－－－－header-end－－－－－－－－－－－ */
:root {
  --wrap-width: 100vw;
}

/* －－－－－－－－－－－TOPセクション－－－－－－－－－－－ */
.section-top__image {
  position: relative;
  background-image: url("../images/images/top-image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: min(106.6666666667vw, 800px);
}
.section-top__image h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 100%;
  padding: 0 20px;
}

@media (min-width: 958px) {
  .section-top__image {
    height: 70vh;
    background-size: 100% 100%;
  }
  .section-top__image h2 {
    font-size: 7rem;
    letter-spacing: 0.3em;
  }
}
/* －－－－－－－－－－－TOPセクション-end－－－－－－－－－－－ */
/* －－－－－－－－－－－マネーシューズの強み－－－－－－－－－－－ */
.section-strengths__container,
.section-company__container {
  padding: 120px 24px 0;
}
.section-strengths__container h2,
.section-company__container h2 {
  position: relative;
  font-size: 3rem;
  line-height: 3rem;
  background-image: linear-gradient(to right, rgb(255, 228, 110), rgb(255, 228, 110));
  background-position: center bottom;
  background-size: 100% 24%;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.section-strengths__container h2::before,
.section-company__container h2::before {
  content: "MONEY SHOES";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  font-size: 4rem;
  line-height: 4rem;
  z-index: -1;
  color: #f5f5f5;
}
.section-strengths__container__lead,
.section-company__container__lead {
  text-align: justify;
}
.section-strengths__container__lead p,
.section-company__container__lead p {
  font-size: 1.8rem;
  line-height: 2.7rem;
  margin-bottom: 30px;
}
.section-strengths__container__lead img,
.section-company__container__lead img {
  width: max(20vw, 100px);
  margin: 0 auto;
}

@media (min-width: 751px) {
  .section-strengths__container {
    padding: 250px min(8.3333333333vw, 140px) 0;
  }
  .section-strengths__container h2 {
    font-size: 6rem;
    line-height: 6rem;
    text-align: left;
    margin-bottom: 80px;
  }
  .section-strengths__container h2::before {
    font-size: 140px;
    text-align: center;
    top: -120px;
    line-height: 12rem;
  }
  .section-strengths__container__lead {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-strengths__container__lead p {
    width: 60%;
  }
  .section-strengths__container__lead img {
    max-width: 220px;
    margin: 0;
  }
}
/* －－－－－－－－－－－マネーシューズの強み-end－－－－－－－－－－－ */
.section-service__container {
  padding: 120px 24px 0;
}
.section-service__container h2 {
  position: relative;
  font-size: 3rem;
  line-height: 3rem;
  background-image: linear-gradient(to right, rgb(255, 228, 110), rgb(255, 228, 110));
  background-position: center bottom;
  background-size: 100% 24%;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.section-service__container h2::before {
  content: "SERVICE";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  font-size: 4rem;
  line-height: 4rem;
  z-index: -1;
  color: #f5f5f5;
}
.section-service__container__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.section-service__container__list__items {
  padding: 30px 24px;
  border-radius: 10px;
  background-color: #fff4c4;
}
.section-service__container__list__items img {
  width: 90%;
  margin: 0 auto 30px;
}
.section-service__container__list__items__wrapper h3 {
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 20px;
}
.section-service__container__list__items__wrapper .nth {
  line-height: 4rem;
}
.section-service__container__list__items__wrapper p {
  text-align: left;
  line-height: 2.4rem;
}

@media (min-width: 751px) {
  .section-service__container {
    padding: 250px min(8.3333333333vw, 140px) 0;
  }
  .section-service__container h2 {
    font-size: 6rem;
    line-height: 6rem;
    text-align: left;
    margin-bottom: 80px;
  }
  .section-service__container h2::before {
    font-size: 140px;
    text-align: left;
    top: -120px;
    line-height: 12rem;
    margin-left: 40px;
  }
  .section-service__container__list {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.section-company__container {
  padding: 120px 24px 0;
}
.section-company__container h2::before {
  content: "COMPANY";
}
.section-company__container__lead {
  margin-bottom: 80px;
}
.section-company__container__lead img {
  width: max(28vw, 150px);
}
.section-company__container dl {
  margin-bottom: 30px;
}
.section-company__container dl .items dt {
  background-color: #cae8ea;
  padding: 30px 0;
  font-size: 1.8rem;
  font-weight: 600;
}
.section-company__container dl .items dd {
  background-color: #e8feff;
  padding: 30px 20px;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
}
.section-company__container dl .items dd img {
  display: block;
  width: 100%;
}
.section-company__container dl .items .border-radius-ue {
  border-radius: 10px 10px 0 0;
}
.section-company__container dl .items .border-radius-shita {
  border-radius: 0 0 10px 10px;
}
.section-company__container__map iframe {
  width: 100%;
  display: block;
  height: max(22.6666666667vw, 170px);
  border-radius: 10px;
}

@media (min-width: 751px) {
  .section-company__container {
    padding: 250px min(8.3333333333vw, 140px) 0;
  }
  .section-company__container h2 {
    font-size: 6rem;
    line-height: 6rem;
    text-align: left;
    margin-bottom: 80px;
  }
  .section-company__container h2::before {
    font-size: 140px;
    text-align: left;
    top: -120px;
    line-height: 12rem;
    margin-left: 40px;
  }
  .section-company__container__lead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
  }
  .section-company__container__lead p {
    width: 60%;
  }
  .section-company__container__lead img {
    max-width: 220px;
    margin: 0;
  }
  .section-company__container dl .items {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
  .section-company__container dl .items dt {
    padding: 30px 20px;
    min-width: 180px;
  }
  .section-company__container dl .items dd {
    width: 100%;
    padding: 30px 40px 30px 50px;
    text-align: left;
  }
  .section-company__container dl .items dd img {
    max-width: 300px;
  }
  .section-company__container dl .items .border-radius-shita,
  .section-company__container dl .items .border-radius-ue {
    border-radius: 0;
  }
  .section-company__container dl .items .border-radius-ue {
    border-radius: 10px 0 0 0;
  }
  .section-company__container dl .items .border-radius-pc-ue {
    border-radius: 0 10px 0 0;
  }
  .section-company__container dl .items .border-radius-shita {
    border-radius: 0 0 10px 0;
  }
  .section-company__container dl .items .border-radius-left-pc {
    border-radius: 0 0 0 10px;
  }
  .section-company__container__map iframe {
    height: min(40.2777777778vw, 580px);
  }
}
.section-contact__container {
  padding: 120px 24px;
}
.section-contact__container h2 {
  position: relative;
  font-size: 3rem;
  line-height: 3rem;
  background-image: linear-gradient(to right, rgb(255, 228, 110), rgb(255, 228, 110));
  background-position: center bottom;
  background-size: 100% 24%;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.section-contact__container h2::before {
  content: "CONTACT";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  font-size: 4rem;
  line-height: 4rem;
  z-index: -1;
  color: #f5f5f5;
}
.section-contact__container__lead {
  margin-bottom: 30px;
}
.section-contact__container__lead p {
  font-size: 1.8rem;
  line-height: 2.7rem;
}
.section-contact__container__line-area a {
  margin-bottom: 30px;
}
.section-contact__container__line-area a img {
  width: 230px;
  margin: 0 auto 30px;
}
.section-contact__container__line-area img {
  width: 230px;
  margin: 0 auto;
}

@media (min-width: 751px) {
  .section-contact__container {
    padding: 250px min(8.3333333333vw, 140px) 0;
  }
  .section-contact__container h2 {
    font-size: 6rem;
    line-height: 6rem;
    text-align: left;
    margin-bottom: 80px;
  }
  .section-contact__container h2::before {
    font-size: 140px;
    text-align: left;
    top: -120px;
    line-height: 12rem;
    margin-left: 40px;
  }
  .section-contact__container__line-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-bottom: 150px;
  }
  .section-contact__container__line-area a {
    margin: 0;
  }
  .section-contact__container__line-area a img {
    margin: 0;
  }
  .section-contact__container__line-area img {
    margin: 0;
  }
}
/* －－－－－－－－－－－footer－－－－－－－－－－－ */
.footer {
  margin: 0 auto;
  background-color: #cae8ea;
  /* footer */
}
.footer__container {
  padding: 30px 24px;
}
.footer__container p {
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
}
.footer__container small {
  color: #333;
  font-size: 1.3rem;
}

/* －－－－－－－－－－－footer-end－－－－－－－－－－－ */
/* アニメーション関連 */
.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  visibility: visible;
  animation-duration: 2s;
  animation-iteration-count: 1000;
  animation-name: pulse;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.9);
  }
}