@charset "UTF-8";
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  box-sizing: border-box;
  height: 100%;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 70%;
  color: #555;
  background-color: #fff;
  line-height: 2em;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  height: 100%;
  word-break: break-all;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.black {
  color: #555;
}

.main_color {
  color: #ab93a1;
}

.main_color_line {
  background-color: #ab93a1;
  color: #ffffff;
}

a {
  text-decoration: unset;
  color: #ab93a1;
}
a:hover {
  color: #9d6e89;
}

ul {
  list-style-type: none;
  text-align: center;
  padding-left: 0;
}
ul li {
  display: inline-block;
  list-style: none;
  vertical-align: top;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.flex {
  display: flex;
}

.main_text_color {
  color: #ab93a1;
}

.text_em1-3 {
  font-size: 1.3em;
}

.text_em1-5 {
  font-size: 1.4em;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.text_center {
  text-align: center;
}

.auto {
  margin: 0 auto;
}

.width50 {
  width: 50%;
}

.mt30 {
  margin-top: 30px;
}

.mt60 {
  margin-top: 60px;
}

.pr4 {
  padding-right: 4px;
}

.pl10 {
  padding-left: 10px;
}

.pl80 {
  padding-left: 80px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 60px;
}

.mlr20 {
  margin-left: 40px;
  margin-right: 40px;
}

.font_xs {
  font-size: x-small;
}

.content_logo {
  width: 100%;
  text-align: center;
  margin: 60px 0;
}
.content_logo img {
  width: 300px;
}

.content_logo_text {
  width: 100%;
  text-align: center;
  margin: 60px 0 30px 0;
}
.content_logo_text img {
  width: 300px;
}

h1 {
  font-size: 2em;
  letter-spacing: 0.7em;
  color: #ab93a1;
  margin: 0;
}

h2 {
  font-size: 1.5em;
  letter-spacing: 0.5em;
  margin: 0;
}

.btn,
a.btn,
button.btn {
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 168px;
}
.btn:first-child,
a.btn:first-child,
button.btn:first-child {
  margin-right: 10px;
}

.btn-border {
  border: 1px solid #ab93a1;
  border-radius: 0;
  background: #fff;
}
.btn-border:hover {
  color: #fff;
  background: #9d6e89;
}

.color_btn {
  border: 1px solid #ab93a1;
  background-color: #ab93a1;
  color: #ffffff;
}
.color_btn:hover {
  color: #fff;
  background: #9d6e89;
}

.main_text {
  font-size: 2.5em;
  line-height: 1.5em;
  color: #ab93a1;
  letter-spacing: 0.3em;
}

.sub_text {
  font-size: 1.1em;
  line-height: 2.5em;
  letter-spacing: 0.2em;
}

.header {
  margin: 0 auto;
  max-width: 960px;
  min-width: 320px;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  z-index: 9999;
  font-weight: 700;
  padding-left: 14px;
}
.logo img {
  width: 100px;
  top: 6px;
  position: absolute;
}

.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
}

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #555;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 24px;
}
.hamburger-menu__bar:last-child {
  top: 32px;
}

.hamburger-menu--open .hamburger-menu__bar {
  background: #ffffff;
  z-index: 9900;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  top: 16px;
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

.navigation {
  display: none;
  background: #ab93a1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.navigation__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 50px;
}

.navigation__list-item {
  display: flex;
  position: relative;
  right: -80%;
  width: 200px;
}

.navigation__link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 14px 0;
  transition: 0.5s;
  width: 100%;
}

.no_img {
  width: 40px;
  top: -8px;
  left: 20px;
}

footer {
  position: sticky;
  top: 100vh;
  width: 100%;
}
footer ul {
  padding-left: 0;
}
footer ul li {
  margin: 10px 20px;
  color: #ab93a1;
}
footer .sns {
  margin: 40px 0 20px 0px;
}
footer .sns img {
  width: 30px;
}
footer .copy_right {
  background-color: #ab93a1;
  color: #ffffff;
  text-align: center;
  height: 40px;
  line-height: 3.8em;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
}
.pagetop img {
  width: 50px;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.js_modalWrap.active {
  animation: modalOpen 0.3s ease forwards;
}

.js_modalWrap.active2 {
  animation: modalClose 0.3s ease forwards;
}

.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 640px;
  max-width: 100%;
  background-color: #fff;
  max-height: 800px;
  padding: 40px;
}

.js_modalCont {
  max-height: 670px;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}

.js_modalCont::-webkit-scrollbar {
  display: none;
}

.js_modalCont > * + * {
  margin-top: 10px;
}

.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
}

.js_modalContInner .main_color_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
}

.js_modalClose {
  display: block;
  position: absolute;
  top: 4px;
  right: 10.5px;
  width: 17px;
  height: 15px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}

.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: #ffffff;
  position: absolute;
  top: -3px;
  right: 9px;
  width: 1px;
  height: 21px;
}

.js_modalClose::before {
  transform: rotate(45deg);
}

.js_modalClose::after {
  transform: rotate(-45deg);
}

@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}
.accordion_box {
  padding: 0 0 50px;
  position: relative;
}

.accordion_box .accordion {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion_box .accordion > li.none {
  display: none;
}

.accordion_box .trigger {
  display: none;
  margin: 40px auto 0 auto;
}

.sp_txt-limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.brand_left_image {
  position: absolute;
  top: 0;
  left: 0;
}
.brand_left_image img {
  width: 20px;
}

@media (max-width: 768px) {
  .js_modalContInner {
    max-height: 400px;
    width: 320px;
    padding: 20px;
  }
  .js_modalCont {
    margin-top: 10px;
    max-height: 350px;
  }
  .js_modalClose {
    top: 4px;
  }
  .js_modalClose::before,
  .js_modalClose::after {
    background-color: #fff;
  }
  .flex {
    display: block;
  }
  .navigation__list-item {
    left: 64%;
  }
  .sp_text {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .content_logo {
    margin: 30px 0;
  }
  .content_logo img {
    width: 300px;
  }
  .top_link {
    text-align: center;
  }
  .top_link img {
    width: 100px;
  }
  .btn,
  a.btn,
  button.btn {
    line-height: 1;
    padding: 10px 5px;
    width: 120px;
  }
  .btn:first-child,
  a.btn:first-child,
  button.btn:first-child {
    margin-right: 10px;
  }
  .sp_txt-limit {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .pagetop {
    bottom: 74px;
  }
  .main_text {
    font-size: 1.7em;
  }
  .sub_text {
    letter-spacing: 0;
  }
  .brand_left_image {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */