@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400..700&display=swap');

:root {
  --black: #1b1b1b;
  --txt-color: #000b4d;
  --red: #d90000;
  --pink: #ff7cbb;
  --blue2: #41cbe3;
  --navy: #000b4d;
  --bg-blue: #ace2e9;
}

/* common
============================================ */
html:not(.scroll-default) {
  scroll-padding-top: 34px;
}
html:not(.scroll-default)::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
html:not(.scroll-default)::-webkit-scrollbar-thumb {
  background: var(--blue2);
  width: 8px;
  height: 25%;
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  width: 100%;
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, sans-serif;
  color: var(--txt-color);
  font-display: swap;
  position: relative;
}

a {
  color: var(--txt-color);
  transition: all .3s;
}
a:hover {
  color: var(--pink);
}
a img {
  transition: all .3s;
}
a:hover img {
  opacity: .7;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

.pc {
  display: none;
}
.jp {
  font-family: 'Noto Sans JP'!important;
  font-weight: 600!important;
}

.popup-info {
  margin: 15px auto;
  padding: 30px 20px;
  width: 100%;
  max-width: 500px;
  background: #FFF;
  position: relative;
}
.popup-info .wrap {
  /* overflow: scroll; */
}
.popup-info h1 {
  margin-bottom: 1em;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.popup-info p {
  font-size: .875rem;
}
.popup-info p span {
  text-align: right;
  display: block;
}

/* header
============================================ */
header {
  padding: 14px 5%;
  width: 100%;
  height: 78px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header #logo img {
  width: auto;
  height: 50px;
}
header .bnr {
  width: 130px;
  position: absolute;
  top: 19px;
  right: calc(5% + 50px);
  z-index: 2;
}
header nav {
  padding: 30px;
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(100vw);
  transition: all .4s ease-out;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  pointer-events: auto;
  z-index: 1;
}
header nav.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all .4s ease-out;
}
header nav > ul {
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
header nav > ul::-webkit-scrollbar {
  display:none;
}
header nav > ul > li {
  font-family: 'Bebas Neue';
  color: var(--txt-color);
  font-size: 1.125rem;
  text-align: center;
  line-height: 1;
}
header nav > ul > li.jp {
  font-size: .875rem;
}
header nav > ul > li > a {
  padding: .7em;
  display: block;
  text-decoration: none;
}
header nav > ul > li > a:hover {
  color: var(--txt-color);
}
header nav > ul > li br {
  display: none;
}
header nav li.nav_social {
  margin-top: auto;
}
header nav li.nav_social ul,
.news_social ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
}
header nav li.nav_social li,
.news_social li {
  padding: 12px;
  flex-shrink: 0;
}
header nav li.nav_social li a,
.news_social li a {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
header nav li.nav_social li a:hover,
.news_social li a:hover {
  background: var(--pink);
}
header nav li.nav_social li a:hover img,
.news_social li a:hover img {
  opacity: 1;
}
header nav li.nav_social li img,
.news_social li img {
  width: auto;
  max-width: 22px;
  max-height: 22px;
}
header #menu_btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 14px;
  right: calc(5% - 10px);
  pointer-events: auto;
  z-index: 2;
}
header #menu_btn.active {
  background: none;
}
header .menu-trigger,
header .menu-trigger::before,
header .menu-trigger::after {
  width: 30px;
  height: 2px;
  background-color: var(--txt-color);
  position: absolute;
  left: 10px;
  transition: all .2s ease-in;
}
header .menu-trigger {
  top: 24px;
}
header #menu_btn.active .menu-trigger {
  background-color: transparent;
}
header .menu-trigger:before {
  content: '';
  top: -9px;
  left: 0;
}
header #menu_btn.active .menu-trigger::before {
  background-color: var(--txt-color);
  top: 0;
  transform: rotate(-135deg);
}
header .menu-trigger::after {
  content: '';
  top: 9px;
  left: 0;
}
header #menu_btn.active .menu-trigger::after {
  background-color: var(--txt-color);
  top: 0;
  transform: rotate(135deg);
}
header #menu_open,
header #menu_close {
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
header #menu_close {
  display: none;
}

/* content
============================================ */
main {
  padding-top: 78px;
  overflow: hidden;
}
.sec_deco {
  margin: 0 auto;
  width: 115vw;
  max-width: 862px;
  transform: translateX(-8.5vw);
  position: absolute;
  top: -20vw;
  left: 0;
}

body:not(#top) .content,
.white_wrap {
  padding-bottom: 60px;
  position: relative;
}
body:not(#top) .content {
  padding-top: 45px;
}
.content > section:not(:first-of-type) {
  margin-top: 40px;
}

/* form */
form dl {
  margin: 0 auto;
  max-width: 900px;
}
form dl:not(:first-of-type) {
  margin-top: 1.5em;
}
form dt {
  margin-bottom: .5em;
  font-weight: 700;
}
form dt .require {
  margin-top: -.2em;
  margin-left: .5em;
  padding: .2em .5em;
  color: #fff;
  font-size: .75rem;
  line-height: 1;
  vertical-align: middle;
  background: var(--red);
  border-radius: 2px;
  display: inline-block;
}
form input,
form select,
form textarea {
  padding: .5em;
  width: 100%;
  line-height: 1;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--pink);
  outline: none;
}
form textarea {
  line-height: 1.5;
}
form dd {
  line-height: 1.5;
}
form button {
  margin: 40px auto;
  padding: 1em 2em;
  width: 70%;
  max-width: 260px;
  color: #fff;
  background: var(--pink);
  border: none;
  border-radius: 2em;
  display: block;
  position: relative;
  transition: all .3s;
  cursor: pointer;
}
form button:hover {opacity: .7;}
form button.contact_back {
  width: auto;
  font-size: .875rem;
  background-color: #aaa;
}

.parsley-error {
  background-color: #fff0f0;
  border-color: var(--red);
}
.parsley-errors-list {
  margin-top: .5em;
  color: var(--red);
  font-size: .75rem;
}
.parsley-errors-list li::before {content: '※';}

/* footer
============================================ */
footer {
  padding: 30px 5% 10px;
  background: var(--pink);
}
footer .foot_social {
  margin: 0 auto 15px;
}
footer .foot_social ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
footer .foot_social li {
  margin: 5px;
  flex-shrink: 0;
}
footer .foot_social li a {
  padding: 15px;
  width: 29px;
  height: 29px;
  background: transparent;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  box-sizing: content-box;
}
footer .foot_social li img {
  width: auto;
  max-width: 29px;
  max-height: 29px;
  z-index: 1;
}
footer .foot_social li a:hover img {
  opacity: 1;
}
footer .foot_social li.insta a::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/insta_gradient.png) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  display: block;
  position: absolute;
  opacity: 0;
  transition: all .3s;
}
footer .foot_social li.insta a:hover::before {
  opacity: 1;
}
footer .foot_social li.tiktok a::before {
  content: '';
  width: 32px;
  height: 32px;
  background: url(../img/ico_tiktok2.svg) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  opacity: 0;
  transition: all .3s;
}
footer .foot_social li.tiktok a:hover {
  background: #000;
}
footer .foot_social li.tiktok a:hover::before {
  opacity: 1;
}
footer .foot_social li.youtube a:hover {
  background: #ff0000;
}
footer .foot_social li.line a:hover {
  background: #06c755;
}
footer small {
  margin: 0 auto;
  color: #fff;
  font-size: .625rem;
  text-align: center;
  display: block;
}


@media (max-width: 320px) {
  header #logo img {
    margin-top: 3px;
    height: 44px;
  }
  header .bnr {
    width: 100px;
    top: 24px;
    right: calc(5% + 45px);
  }
}


@media (min-width: 601px) {
  header nav > ul > li {
    font-size: 2rem;
  }
  header nav > ul > li.jp {
    font-size: 1.625rem;
  }

  body:not(#top) .content {
    padding-top: 80px;
  }
  .content > section:not(:first-of-type) {
    margin-top: 100px;
  }

  /* form */
  form dt {
    margin-bottom: .7em;
  }
  form dl:not(:first-of-type) {
    margin-top: 1.7em;
  }
  form input,
  form select,
  form textarea {
    padding: .7em;
  }

  /* footer
  ============================================ */
  footer {
    padding-top: 60px;
    padding-bottom: 15px;
  }
  footer .foot_social {
    margin-bottom: 40px;
  }
  footer small {
    font-size: .75rem;
  }
}


@media (min-width: 1033px) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }

  .sp {
    display: none;
  }
  .pc {
    display: initial;
  }

  /* content
  ============================================ */
  body:not(#top) .content,
  .white_wrap {
    padding-bottom: 120px;
  }
  body:not(#top) .content {
    padding-top: 100px;
  }
  .content > section:not(:first-of-type) {
    margin-top: 140px;
  }
}


@media (min-width:1366px) {
  html {
    scroll-padding-top: 74px;
  }

  /* header
  ============================================ */
  header {
    padding: 20px;
    height: 118px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  header #logo {
    flex-shrink: 0;
  }
  header #logo img {
    height: 78px;
  }
  header .bnr {
    top: 39px;
    right: 20px;
  }
  header > div:not(#menu_btn) {
    -webkit-box-flex: 1;
    flex: 1;
  }
  header nav {
    margin-left: 1em;
    padding: 0;
    width: auto;
    height: auto;
    background: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
  header nav > ul {
    padding: 2px 0;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    overflow: auto;
  }
  header nav > ul > li {
    font-size: 1rem;
    line-height: 1.2;
    flex-shrink: 0;
  }
  header nav > ul > li:not(:first-of-type) {
    margin-left: .5em;
  }
  header nav > ul > li.jp {
    margin-top: -.2em;
    font-size: .8rem;
  }
  header nav > ul > li > a {
    padding: .5em;
    color: var(--txt-color);
  }
  header nav > ul > li > a::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--blue);
    position: relative;
    bottom: -.2em;
    display: block;
    transition: all 280ms ease-in-out;
  }
  header nav > ul > li > a:hover {
    color: var(--txt-color);
    opacity: 1;
  }
  header nav > ul > li > a:hover::after {
    width: 100%;
    transition: width 350ms ease-in-out;
  }
  header nav > ul > li.jp > a::after {
    bottom: -.6em;
  }
  header nav > ul > li br {
    display: block;
  }
  header #menu_btn {
    display: none;
  }

  /* content
  ============================================ */
  main {
    padding-top: 118px;
  }
}


@media (min-width:1440px) {
  /* header
  ============================================ */
  header nav > ul > li {
    font-size: 1.125rem;
  }
}


@media (min-width:1536px) {
  /* header
  ============================================ */
  header {
    padding-left: 40px;
    padding-right: 40px;
  }
  header nav > ul > li br {
    display: none;
  }
  header .bnr {
    width: 160px;
    top: 34px;
    right: 40px;
  }
}

@media (min-width:1600px) {
  /* header
  ============================================ */
  header .bnr {
    width: 200px;
    top: 28px;  
  }
  header nav {
    margin-left: 2em;
  }
}


@media (min-width:1730px) {
  /* header
  ============================================ */
  header nav {
    margin-left: 3em;
  }
  header nav > ul > li {
    font-size: 1.25rem;
  }
  header nav > ul > li.jp {
    font-size: .9rem;
  }
  header nav > ul > li:not(:first-of-type) {
    margin-left: .7em;
  }
}


@media (min-width:1830px) {
  header nav {
    margin-left: 5em;
  }
  header nav > ul > li:not(:first-of-type) {
    margin-left: 1em;
  }
}


@media (min-width:2240px), (min-width:1280px) and (-webkit-min-device-pixel-ratio:2), (min-width:1280px) and (min-resolution: 2dppx) {
}


/* fadein */
.fadein {
  transform: translateY(30px);
  opacity: 0;
  transition: all .8s;
}
.fadein.is-show {
  transform: none;
  opacity: 1;
}