@charset "UTF-8";

@media screen and (max-width: 1024px) {
	.container{
		padding-top: 120px;
	}
   header {
    background-color: white;
    height: 62px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    width: 100vw;
    box-sizing: border-box;
    position: fixed;
    z-index: 99999;
  }

  .logo {
    padding: 0;
    margin: 0;
    width: 110px;
  }

  .logo img {
    width: 110px;
    line-height: 62px;
  }
}


/* button reset */
button {
  padding: 0;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hamburger-btn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 12;
  transform: translateZ(10px);
  background-color: #036eb7;
  width: 60px;
  height: 62px;
  display: none;
  padding-top: 10px;
  transition: 0.2s;
}
.hamburger-btn.gray {
  background-color: #bebebe;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .hamburger-btn {
    display: flex;
    flex-direction: column;
  }
}
.hamburger-btn__bar {
  display: none;
}
@media screen and (max-width: 1024px) {
  .hamburger-btn__bar {
    display: block;
  }
}
.hamburger-btn__bar--top, .hamburger-btn__bar--middle, .hamburger-btn__bar--bottom {
  display: block;
  width: 26px;
  height: 2px;
  background-color: white;
}
.hamburger-btn__bar--top {
  transition: transform 0.3s;
  transform: translateY(-6px);
}
.hamburger-btn__bar--bottom {
  transition: transform 0.3s;
  transform: translateY(6px);
}
.hamburger-btn__musk {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff99;
}
.hamburger-btn__text {
  color: white;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  font-size: 10px;
  transform: scale(0.8);
  margin-top: 8px;
}

/* header-nav */
.slide-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  width: 40vw;
  min-width: 200px;
  height: 100vh;
  background-color: white;
  display: none;
  transition: transform 0.3s;
  transform: translateX(101%) translateZ(10px);
}
@media screen and (max-width: 1024px) {
  .slide-nav {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .slide-nav {
    width: 100vw;
  }
}
.slide-nav a {
  display: table;
}
.slide-nav__content {
  padding-top: 100px;
  padding-left: 30px;
}
.slide-nav__list {
  margin-bottom: 30px;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.slide-nav__list span {
  font-family: "Baskerville";
  font-style: italic;
  font-size: 10px;
}
.slide-nav__list:hover {
  color: #036eb7;
  opacity: 1;
}
.slide-nav__list--text {
  color: white;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.4rem;
  font-family: "Yusei Magic", sans-serif;
}

.cross.h-bar.hamburger-btn__bar--top {
  transform: translateY(2px) rotate(45deg);
  background-color: white;
}
.cross.h-bar.hamburger-btn__bar--middle {
  opacity: 0;
}
.cross.h-bar.hamburger-btn__bar--bottom {
  transform: translateY(-2px) rotate(-45deg);
  background-color: white;
}

.stop {
  overflow: hidden;
}

.slide-nav.slide {
  transition: transform 0.3s;
  transform: translateX(0);
}

.business__title {
  display: none;
}
@media screen and (max-width: 1024px) {
  .business__title {
    display: block;
    font-size: 22px;
    letter-spacing: 0.2em;
    text-align: center;
    font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  }
}
@media screen and (max-width: 1024px) {
  .business__title--image {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .brand-statement-pc {
    display: none;
  }
}

.brand-statement {
  display: none;
  text-align: center;
  background-image: url(./img/brand-statement-bg-img.jpg);
  background-size: cover;
  background-position: bottom center;
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .brand-statement {
    display: block;
  }
}
.brand-statement__mask {
  background-image: url(./img/brand-statement-bg.png);
  background-position: top center;
  background-size: cover;
  padding: 50px 20px 270px;
}
.brand-statement__title {
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  color: white;
  font-size: 26px;
  letter-spacing: 0.22em;
}
.brand-statement__text {
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: white;
  line-height: 3.33;
  margin-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 60px;
}

.brand-slogan__title {
  font-size: 22px;
  letter-spacing: 0.2em;
  color: white;
  font-family: "Garamond Premier Pro";
  font-weight: bolder;
  margin-top: 50px;
}
.brand-slogan__top {
  max-width: 195px;
  display: block;
  margin: 25px auto 0;
}
.brand-slogan__logo {
  max-width: 212px;
  display: block;
  margin: 20px auto 0;
}
.brand-slogan__sub-title {
  font-size: 22px;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  color: white;
  margin-top: 60px;
}
.brand-slogan__text {
  font-size: 12px;
  color: white;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  text-align: left;
  line-height: 2.9;
  letter-spacing: 0.16;
  max-width: 290px;
  margin: 40px auto 0;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.brand-visual__title {
  font-size: 22px;
  letter-spacing: 0.2em;
  color: white;
  font-family: "Garamond Premier Pro";
  font-weight: bolder;
  margin-top: 60px;
}
.brand-visual__wrap {
  border: 1px solid white;
  padding: 35px 30px;
}
.brand-visual__top {
  max-width: 125px;
}
.brand-visual__sub-title {
  font-family: "Garamond Premier Pro";
  color: white;
  font-size: 22px;
  letter-spacing: 0.12em;
  margin: 30px 0;
}
.brand-visual__text {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-align: left;
  color: white;
  line-height: 2.9;
}

.brand-policy__title {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 22px;
  letter-spacing: 0.2em;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  color: white;
}
.brand-policy__number {
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  color: white;
  font-size: 26px;
  margin-top: 35px;
}
.brand-policy__sub-title {
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  color: white;
  font-size: 20px;
  letter-spacing: 0.17em;
  margin-bottom: 25px;
}
.brand-policy__text {
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: white;
  max-width: 285px;
  text-align: left;
  margin: 0 auto;
}

.business__sub-title--icon {
  max-width: 72px;
}
.business__sub-title--top {
  text-align: center;
  font-size: 20px;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
  margin-top: 20px;
  letter-spacing: 0.2em;
  line-height: 1;
}
.business__sub-title--bottom {
  text-align: center;
  font-family: "Baskerville", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  font-style: italic;
  margin-top: 10px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .profile__text {
    max-width: 325px;
  }
}

@media screen and (max-width: 767px) {
  .house__text {
    max-width: 325px;
  }
}

@media screen and (max-width: 1024px) {
  .text-img {
    max-width: 154px;
  }
}
@media screen and (max-width: 1024px) {
  .text-img-2 {
    max-width: 128px;
  }
}
@media screen and (max-width: 1024px) {
  .text-img-3 {
    max-width: 286px;
  }
}
@media screen and (max-width: 1024px) {
  .text-img-4 {
    max-width: 102px;
  }
}
@media screen and (max-width: 1024px) {
  .text-img-5 {
    max-width: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .text-img-6 {
    max-width: 154px;
  }
}
@media screen and (max-width: 1024px) {
  .text-img-7 {
    max-width: 206px;
  }
}

@media screen and (max-width: 1024px) {
  .casewhite {
    max-width: calc(100vw - 30px);
  }
}

@media screen and (max-width: 1024px) {
  .backwhite {
    max-width: calc(100vw - 30px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  .backwhite p {
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .br-text-img {
    display: none;
  }
}

.br-text__top {
  font-size: 22px !important;
  letter-spacing: 0.2em !important;
  line-height: 1.6 !important;
  font-family: "A1 Mincho", A1明朝, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, MS明朝, serif;
}
.br-text__bottom {
  font-size: 12px !important;
  font-style: italic !important;
  font-family: "Baskerville", "Baskerville Old Face", Garamond, "Times New Roman", serif;
  line-height: 1 !important;
  margin-top: 15px !important;
}

