@charset "UTF-8";

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

main {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  main {
   width: 100%;
  }
}

button,
a {
  cursor: pointer;
}

button:hover,
a:hover {
  cursor: pointer;
}

p {
  font-size: 3.7333333333vw;
}
@media (min-width: 768px) {
  p {
    font-size: 14px;
  }
}

small {
  font-size: 80%;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

/*---------------------------------*/
/* header */
/*---------------------------------*/
header {
  height: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  box-sizing: border-box;

  opacity: 0;
  animation: headerLogoFadeIn 0.8s ease forwards;
  animation-delay: 1.5s;
}

header div {
	padding: 0 40px;
}

header img {
  height: auto;
  max-height: 50px;
  width: auto;
  display: block;
}

.header__logo--smbc {
  border-right: 1px solid #e6e6e6;
}

@media screen and (max-width: 767px) {
	header {
		flex-direction: column;
		height: auto;
	}
	
	header div {
		width: 100%;
		padding: 8px 12px 12px;
		display: flex;
		justify-content: center;
	}
	
	.header__logo--smbc {
	  border-right: none;
	  border-bottom: 1px solid #e6e6e6;
	}
}

@keyframes headerLogoFadeIn {
  to {
    opacity: 1;
  }
}

/*---------------------------------*/
/* footer */
/*---------------------------------*/
.l-footer {
  background: #242527;
  color: #fff;
  padding: 24px 0;
  text-align: center;
  font-size: 2.6666666667vw;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .l-footer {
    font-size: 13px;
  }
}

.l-footer-item01 {
  justify-content: center;
}

.l-footer-item02 {
    justify-content: center;
    padding-top: 16px;
}

.c-linkIcon {
  font-size: 2.9333333333vw;
  display: flex;
  align-items: center;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .c-linkIcon {
      font-size: 14px;
  }
}

.l-footer-copyright {
    padding-top: 24px;
}

/*---------------------------------*/
/* Scroll Animation */
/*---------------------------------*/
.js-scrollAnimation {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.js-scrollAnimation.-show {
  opacity: 1;
  transform: translateY(0px);
}

/*.js-scrollAnimation.from-left {*/
/*  opacity: 0;*/
/*  transform: translateX(-40px);*/
/*  transition: all 0.6s ease;*/
/*}*/

/*.js-scrollAnimation.from-left.-show {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*.js-scrollAnimation.from-right {*/
/*  transform: translateX(40px);*/
/*}*/
/*.js-scrollAnimation.from-right.-show {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*---------------------------------*/
/* Accordion */
/*---------------------------------*/
.js-accordion:hover {
  cursor: pointer;
}