@charset "utf-8";

:root {
  --base: #252525;
  --primary: #6294CE;
  --primary-light: #E6F1FF;
  --secondary: #59CEDE;
  --pink: #E5454E;
  --orange: #F05A19;
  --gray: #666;
  --border: #999;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: var(--base);
  line-height: 1.5;
  scroll-behavior: smooth;
}

a:hover {
  opacity: .7;
}

/* ------utility------ */
.xs {
  display: none !important;
}

.sm {
  display: none !important;
}

.md {
  display: none !important;
}

.lg {
  display: none !important;
}

.md-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .xs {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .sm {
    display: block !important;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .md {
    display: block !important;
  }

  .md-lg {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .lg {
    display: block !important;
  }

  .md-lg {
    display: block !important;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline-block !important;
}

.d-inlineblock {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}


/* ------drawer------ */
/*!
 * jquery-drawer v3.2.2
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
header+* {
  margin-top: -60px;
}

.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .9);
}

.drawer-brand {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  text-decoration: none;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1.125rem;
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--base);
  font-weight: bold;
  position: relative;
}

.drawer-menu-item:hover {
  opacity: 1;
}

@media (max-width: 1023px) {
  .drawer-menu-item {
    border-bottom: 1px solid var(--border);
  }

  .drawer-menu-item:after {
    content: "";
    background: url(../img/icon_chevron-right-dark.svg);
    background-size: cover;
    opacity: .5;
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    width: 16px;
    height: 16px;
  }

  .drawer-menu-item-en {
    font-size: .75em;
    color: var(--primary);
    line-height: 1;
    margin-left: 2px;
  }
}

@media (min-width: 1024px) {
  .drawer-nav {
    background-color: transparent;
  }

  .drawer-menu-item {
    font-size: 1rem;
  }

  .drawer-menu-item-ja::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }

  .drawer-menu-item:hover .drawer-menu-item-ja::after {
    transform: scale(1, 1);
  }

  .drawer-menu-item-en {
    display: none;
  }
}

/*! overlay */

.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/

.drawer--right .drawer-nav {
  right: -100%;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 100%;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 2rem;
  padding: 0;
  padding-top: 18px;
  padding-right: .75rem;
  padding-bottom: 30px;
  padding-left: .75rem;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: var(--base);
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Navbar
\*!------------------------------------*/

.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */

.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
}

.drawer-navbar .drawer-brand {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-logo {
  width: 60px;
  aspect-ratio: 1;
  margin-right: .75rem;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .drawer-navbar {
    height: 3.75rem;
  }

  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }

  .drawer-navbar .drawer-logo {
    width: 100px;
  }

  .drawer-navbar .drawer-menu--right {
    float: right;
  }

  .drawer-navbar .drawer-menu li {
    float: left;
  }

  .drawer-navbar .drawer-menu-item {
    padding-top: 12px;
    padding-bottom: 6px;
    margin: 0 40px;
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .drawer-navbar .drawer-menu {
    padding: 0;
  }

  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 100%;
    border: 1px solid #ddd;
  }

  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: .75rem;
  }
}

/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/

.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu>li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: .75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: var(--base);
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */

.drawer-dropdown.open>.drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */

.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: opacity .2s ease, -webkit-transform .2s ease;
  transition: transform .2s ease, opacity .2s ease;
  transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */

.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .drawer-container {
    max-width: 100%;
  }
}

/* coming soon */
.drawer-menu-item.comingsoon {
  pointer-events: none;
}

.drawer-menu-item.comingsoon::before {
  content: "Coming soon...";
  font-size: 14px;
  position: absolute;
  top: calc(50% - 7px);
  right: 0;
  line-height: 1;
  color: var(--gray);
}

.drawer-menu-item.comingsoon::after {
  display: none;
}

@media (min-width: 1024px) {
  .drawer-menu-item.comingsoon::before {
    font-size: 12px;
    top: 96%;
  }
}


/* ------footer------ */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary);
  padding: 1.5rem;
  color: #fff;
}

.footer-sns {
  display: flex;
  gap: .75rem;
  margin-bottom: .5rem;
}

.footer-sns li {
  display: block;
}

.footer-sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  padding: .75rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-menu li {
  width: 50%;
}

.footer-menu-item {
  font-size: .875rem;
}

.footer-menu-item-chevron {
  width: .5rem;
  aspect-ratio: 1;
  margin-left: .25rem;
  opacity: .7;
}

.footer-logo {
  margin-bottom: .5rem;
}

.footer-logo img {
  width: 60px;
  aspect-ratio: 1;
}

.footer-copyright {
  font-size: .75rem;
}

@media (min-width: 1024px) {
  .footer-menu li {
    width: auto;
    line-height: 1;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-menu li:not(:last-of-type) {
    border-right: 1px solid #fff;
  }

  .footer-menu-item-chevron {
    display: none;
  }
}


/* ------common------ */
/* button */
.btn {
  display: flex;
  align-items: center;
  line-height: 1;
  width: max-content;
  border-width: 0;
}

.btn.btn-primary {
  justify-content: center;
  background-color: var(--primary);
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: .75rem;
  min-width: 150px;
  max-width: 100%;
}

.btn.btn-primary-outline {
  justify-content: center;
  background-color: #fff;
  color: var(--primary);
  border-radius: 100px;
  outline: 1px solid var(--primary);
  font-weight: 500;
  font-size: 1rem;
  padding: .75rem;
  min-width: 150px;
  max-width: 100%;
}

.btn-primary:hover,
.btn-primary-outline:hover {
  opacity: .7;
  cursor: pointer;
}

.btn.btn-catch {
  justify-content: space-between;
  background-color: var(--primary);
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: .75rem 1.5rem;
  position: relative;
  max-width: 100%;
  min-width: 200px;
}

.btn-catch:hover {
  opacity: 1;
}

.btn-catch-chevron {
  margin-left: 1.5rem;
  width: 1rem;
  animation: btn-catch-chevron ease-out 1.5s infinite;
}

.btn-catch:hover .btn-catch-chevron {
  animation: none;
}

@keyframes btn-catch-chevron {
  0% {
    transform: translateX(calc(100% - 28px));
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  90% {
    opacity: 1
  }

  100% {
    transform: translateX(calc(100% - 12px));
  }
}

@media (min-width: 1024px) {
  .btn.btn-catch {
    font-size: 1.125rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-width: 240px;
  }
}

.btn:disabled {
  background-color: var(--border);
  border-color: var(--border);
  color: #fff;
  pointer-events: none;
}


/* form */
::placeholder {
  color: var(--gray);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 8px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
}

/* .form-error {
  color: red;
  font-size: 14px;
  margin-top: 4px;
} */

.form-privacy {
  margin-bottom: 16px;
}

.form-privacy-text {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border);
  padding: 8px;
  font-size: 14px;
  height: 120px;
  overflow-y: auto;
  margin-bottom: 8px;
}

.form-action {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.form-action .btn {
  margin-bottom: 16px;
  width: 50%;
}

@media (min-width: 1200px) {
  .form-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-label {
    width: 240px;
    text-align: right;
    margin-right: 40px;
    margin-bottom: 0;
    padding-top: 10px;
  }

  .form-input,
  .form-select,
  .form-textarea,
  .form-privacy {
    width: 400px;
  }

  .form-display {
    width: 400px;
    padding-top: 10px;
    font-size: 14px;
  }

  /* .form-error {
    width: 100%;
    padding-left: 280px;
  } */

  .form-action {
    margin-top: 24px;
    margin-left: 280px;
    width: 400px;
  }

  /* .form-zan {
    width: 100%;
    padding-left: 420px;
    font-size: 14px;
  } */
}

/* contact form 7 調整 */
.confirm_area,
.thanks_area {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  padding-top: 4px;
}

.wpcf7 form .wpcf7-response-output {
  /* border-radius: 4px;
  background-color: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; */
  display: none;
}

.form-privacy .wpcf7-list-item {
  margin-left: 0;
}


/* ------404------ */
.page-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 300px 24px;
  background-color: var(--primary-light);
}

.page-404 h1 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.page-404 .btn {
  margin-top: 40px;
}