@charset "UTF-8";
/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, 50px);
}

.fadeIn-down {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, -80px);
}

.fadeIn-left {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(-50px, 0);
}

.fadeIn-right {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(50px, 0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

.list-scroll > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.list-scroll > *.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------- */
/* layout                                                        */
/* ------------------------------------------------------------- */
.pc {
  display: block !important;
}
@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}

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

html {
  overflow-x: hidden;
  scroll-padding-top: 80px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  --color-black: #1c1c1c;
  --color-white: #ffffff;
  --color-gray: #6e6e6e;
  --color-primary: #7f1a28;
  --bg-pink: #fff5f5;
}
html.lock {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1.5;
  outline: none;
  background-color: #fff !important;
  overflow-x: hidden;
}
@media screen and (max-width: 640px) {
  body {
    min-width: auto;
  }
}

main {
  padding-top: 70px;
}
@media screen and (max-width: 640px) {
  main {
    padding-top: 54px;
  }
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.en-font {
  font-family: "Poltawski Nowy", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.common-padding {
  padding: 90px 0;
}
@media screen and (max-width: 640px) {
  .common-padding {
    padding: 50px 0;
  }
}

.inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}
.inner-1000 {
  width: min(90%, 1000px);
  margin: 0 auto;
}

.u-border {
  text-decoration: underline;
}

.b-radius {
  border-radius: 10px;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.relative {
  position: relative;
  z-index: 1;
}

ul.basic-list li {
  text-indent: -1em;
  padding-left: 1em;
}
ul.basic-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: var(--color-primary);
  margin-right: 10px;
}

ol.alpfa {
  counter-reset: cnt2;
}
ol.alpfa > li {
  padding-left: 1.6em;
  text-indent: -1.6em;
  counter-increment: cnt2;
}
ol.alpfa > li::before {
  content: counter(cnt2, lower-alpha) ".";
  margin-right: 5px;
}

.bg-pink {
  background-color: var(--bg-pink);
}

.bg-gray {
  background-color: #f6f6f6;
}

/*-----------------フォントウェイト--------------------*/
.f-regular {
  font-weight: 400;
}

.f-medium {
  font-weight: 500;
}

.f-bold {
  font-weight: 700;
}

/*-----------------フォント色--------------------*/
.f-white {
  color: #fff !important;
}

.f-red {
  color: #ff0000;
}

/*-----------------マージン--------------------*/
.m-center {
  display: block;
  margin: 0 auto;
}

.m-left-auto {
  display: block;
  margin-left: auto;
}

.m-right-auto {
  display: block;
  margin-right: auto;
}

/*-----------------画像--------------------*/
img.fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

img.fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

img {
  vertical-align: top;
  max-width: 100%;
}

img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.right {
  justify-content: flex-end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.sp-between {
  justify-content: space-between;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.flex.flex-column {
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px) {
  .reverse {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex.v-center {
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
  gap: 1.5em;
}

.d-flex-t-block {
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 640px) {
  .d-flex-t-block {
    flex-direction: column;
  }
}

/*-----------------Link--------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover, a:active {
  opacity: 0.7;
}
@media screen and (max-width: 640px) {
  a:hover, a:active {
    opacity: 1;
  }
}

a.line-link {
  color: #e60012;
  text-decoration: underline;
}

/*----------------text---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

.txt-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
}

/*----------------spacing---------------------*/
.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.gap-100 {
  gap: 100px;
}

.p-block-10 {
  padding: 10px 0 !important;
}

.p-block-20 {
  padding: 20px 0 !important;
}

.p-block-30 {
  padding: 30px 0 !important;
}

.p-block-40 {
  padding: 40px 0 !important;
}

.p-block-50 {
  padding: 50px 0 !important;
}

.p-block-100 {
  padding: 100px 0 !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.m-block-10 {
  margin: 10px 0 !important;
}

.m-block-20 {
  margin: 20px 0 !important;
}

.m-block-30 {
  margin: 30px 0 !important;
}

.m-block-40 {
  margin: 40px 0 !important;
}

.m-block-50 {
  margin: 50px 0 !important;
}

.m-block-100 {
  margin: 100px 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.cta {
  padding: 70px 0;
  background: url("../img/common/cta_bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 640px) {
  .cta {
    padding: 50px 0;
  }
}
.cta__txt {
  color: var(--color-white);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .cta__txt {
    text-align: left;
    font-size: 18px;
    margin-bottom: 32px;
  }
  .cta__txt br {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
}
@media screen and (max-width: 640px) {
  .header__inner {
    padding-left: 16px;
  }
}
.header__logo {
  width: 60px;
}
.header__hamburger-btn {
  position: relative;
  z-index: 10000;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  border: 0;
  width: 70px;
  height: 70px;
  background-color: var(--color-primary);
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .header__hamburger-btn {
    width: 54px;
    height: 54px;
  }
}
.header__hamburger-btn:hover {
  background-color: #944c55;
}
.header__hamburger-btn span:nth-child(1), .header__hamburger-btn span:nth-child(2), .header__hamburger-btn span:nth-child(3) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
}
.header__hamburger-btn span:nth-child(1), .header__hamburger-btn span:nth-child(2) {
  display: block;
  width: 50%;
  height: 3px;
  background-color: var(--color-white);
}
@media screen and (max-width: 640px) {
  .header__hamburger-btn span:nth-child(1), .header__hamburger-btn span:nth-child(2) {
    height: 2px;
  }
}
.header__hamburger-btn span:nth-child(1) {
  top: 30%;
}
.header__hamburger-btn span:nth-child(2) {
  top: 48%;
}
.header__hamburger-btn span:nth-child(3) {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  top: 62%;
}
@media screen and (max-width: 640px) {
  .header__hamburger-btn span:nth-child(3) {
    font-size: 3vw;
  }
}
.header__hamburger-btn.is-open span:nth-child(1) {
  top: 40%;
  transform: translateX(-50%) rotate(405deg);
}
.header__hamburger-btn.is-open span:nth-child(2) {
  top: 40%;
  transform: translateX(-50%) rotate(-405deg);
}
.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  color: var(--color-white);
  display: block;
  width: min(400px, 100%);
  height: 100vh;
  background-color: var(--color-primary);
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
.header__menu.is-open {
  transform: translateX(0%);
}
.header__nav {
  padding: 90px 20px 0;
}
.header__item:not(:last-child) a {
  border-bottom: solid 1px var(--color-white);
}
.header__link {
  display: block;
  padding: 16px 0;
  position: relative;
}
.header__link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background: url("../img/common/btn_arw_white.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.header .btn {
  border: solid 1px var(--color-white);
  margin: 30px 0 0;
}
.header .btn::after {
  background-color: var(--color-black);
}

.footer__top-area {
  padding: 30px 0 28px;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.footer__txt-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 56px;
}
.footer__stg-txt {
  font-size: 16px;
}
.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 20px;
  font-size: 15px;
}
.footer__list li {
  position: relative;
  padding-right: 1.1em;
}
.footer__list li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: var(--color-primary);
}
.footer__logo {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .footer__logo {
    width: 80px;
    height: 80px;
  }
}
.footer__btm-area {
  padding: 24px 0;
  color: var(--color-white);
  background-color: var(--color-black);
}
@media screen and (max-width: 640px) {
  .footer__btm-area {
    padding: 16px 0;
  }
}
.footer__copy {
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .footer__copy {
    font-size: 2.2vw;
  }
}

.btn {
  color: var(--color-primary);
  display: block;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  padding-right: 40px;
  width: min(300px, 100%);
  border: solid 1px var(--color-primary);
  background-color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 16px;
  }
}
.btn::after {
  content: "";
  display: block;
  width: 52px;
  height: 105%;
  background: var(--color-primary) url("../img/common/btn_arw_white.svg") no-repeat center/50% 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn.red {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.btn.red::after {
  background: var(--color-white) url("../img/common/btn_arw_red.svg") no-repeat center/50% 50%;
}

.common-ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .common-ttl {
    margin-bottom: 32px;
  }
}
.common-ttl__en-txt {
  font-size: 20px;
  color: var(--color-primary);
}
@media screen and (max-width: 640px) {
  .common-ttl__en-txt {
    font-size: 16px;
  }
}
.common-ttl__en-txt::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: var(--color-primary);
  margin-top: 2px;
}
.common-ttl__txt {
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .common-ttl__txt {
    font-size: 24px;
  }
}
/*# sourceMappingURL=common.css.map */