/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

@font-face {
  font-family: "Niveau Grotesk";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NiveauGroteskRegular/NiveauGroteskRegular.woff") format("woff"), url("../fonts/NiveauGroteskRegular/NiveauGroteskRegular.eot") format("eot");
  font-display: swap;
}
html {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Niveau Grotesk", sans-serif;
  color: #222;
}
@media (max-width: 900px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 13px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.l-drawer_bg {
  position: fixed;
  z-index: -100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.8;
  visibility: hidden;
}

.is-drawerActive {
  position: fixed;
}

.is-drawerActive .l-drawer_bg {
  z-index: 5;
  visibility: visible;
}

.l-header {
  display: flex;
  padding-left: 19.4%;
}
@media (max-width: 767px) {
  .l-header {
    padding-left: 10%;
  }
}
@media (max-width: 600px) {
  .l-header {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-header_social {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 3.3%;
  padding-right: 15px;
}
@media (max-width: 600px) {
  .l-header_social {
    padding-top: 10%;
  }
}
.l-header_hamButton {
  position: relative;
  z-index: 10;
  display: inline-block;
  margin-bottom: 27px;
  width: 21px;
  height: 15px;
  outline: none;
}
.l-header_line {
  position: absolute;
  transform: translateY(-50%);
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #000;
  transition: all 0.3s ease-in-out;
}
.l-header_line-first {
  top: 0;
}
.l-header_line-second {
  top: 50%;
}
.l-header_line-third {
  top: 100%;
}
.l-header_btn {
  display: block;
  border: 1px solid #222;
  border-radius: 50%;
}
.l-header_btn-insta {
  margin-bottom: 13px;
  padding: 6px 7.4px 6.4px 7.4px;
}
.l-header_btn-twitter {
  margin-bottom: 13px;
  padding: 7px 4px 5.4px 5.4px;
}
.l-header_btn-company {
  margin-bottom: 13px;
  padding: 6px 7.4px 6.4px 7.4px;
}
.l-header_company {
  padding-top: 67px;
  padding-left: 1.5%;
  border-left: 1px solid #707070;
  text-align: center;
}
@media (max-width: 1024px) {
  .l-header_company {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .l-header_company {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .l-header_company {
    width: 70%;
    padding-bottom: 5%;
  }
}
.l-header_logo {
  display: inline;
}
.l-header_info {
  display: block;
  padding-left: 17px;
  text-align: center;
  color: #969696;
}
@media (max-width: 900px) {
  .l-header_info {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .l-header_info {
    font-size: 1.5rem;
  }
}
.l-header_info:last-of-type {
  margin-top: 5.5%;
  padding-left: 22px;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .l-header_info:last-of-type {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .l-header_info:last-of-type {
    margin-top: 0;
  }
}
.l-header_content {
  margin-left: 2.1%;
  flex-grow: 1;
}
@media (max-width: 600px) {
  .l-header_content {
    margin-left: 0;
  }
}
.l-header_fv {
  width: 100%;
}
.l-header_nav {
  padding-right: 15px;
}
.l-header_list {
  display: flex;
  flex-wrap: wrap;
  width: 62.4%;
  max-width: 910px;
  min-width: 375px;
  justify-content: space-between;
  padding-top: 2.6%;
  font-size: 14px;
}
@media (max-width: 767px) {
  .l-header_list {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .l-header_list {
    justify-content: space-between;
    padding: 5% 10px 0;
    width: 100%;
    min-width: auto;
    font-size: 1.2rem;
  }
}
.l-header_item {
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .l-header_item {
    margin-right: 2%;
    width: 26%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .l-header_item {
    width: 45%;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .l-header_item:first-child {
    margin-bottom: 2px;
  }
}
@media (max-width: 600px) {
  .l-header_item:nth-of-type(5) {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .l-header_item:nth-of-type(6) {
    margin-bottom: 0;
  }
}
.l-header_flexBreak {
  display: none;
}
@media (max-width: 767px) {
  .l-header_flexBreak {
    display: block;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .l-header_flexBreak {
    display: none;
  }
}
.l-header_link {
  display: block;
}
.l-header_hamMenu {
  position: fixed;
  z-index: 10;
  right: 0;
  width: 35%;
  min-width: 220px;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.3s;
  background: #fff;
  overflow: scroll;
}
.l-header_hamLogo {
  margin: 0 auto;
  width: 80%;
}
.l-header_hamItem {
  border-top: 1px solid #000;
  font-size: 1.5rem;
  text-align: center;
}
.l-header_hamItem:last-of-type {
  border-bottom: 1px solid #000;
}
.l-header_hamLink {
  display: block;
  padding: 13px 0;
}

.l-header_hamButton[aria-expanded=true] .l-header_line {
  background: #fff;
}
.l-header_hamButton[aria-expanded=true] .l-header_line-first {
  top: 50%;
  transform: rotate(-45deg);
}
.l-header_hamButton[aria-expanded=true] .l-header_line-second {
  background-color: transparent;
}
.l-header_hamButton[aria-expanded=true] .l-header_line-third {
  top: 50%;
  transform: rotate(45deg);
}

.l-footer {
  padding: 2.4% 0 2.1% 45.4%;
  font-size: 12px;
  font-variant: small-caps;
  letter-spacing: 0.21em;
  color: #fff;
  background: linear-gradient(to right, #8f79b6, #79c7e8);
}
@media (max-width: 1024px) {
  .l-footer {
    padding-left: 0;
    text-align: center;
  }
}
.l-footer_ls {
  letter-spacing: 0.27em;
}

.c-line {
  display: block;
  width: 38px;
  height: 3px;
}
.c-line-gradient {
  background: linear-gradient(to right, #8f79b6, #79c7e8);
}
.c-line-white {
  background: #fff;
}

.c-btn {
  position: relative;
  display: table;
  border: 1px solid #707070;
}
.c-btn::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: 1px solid #222;
  border-right: 1px solid #222;
}
@media (max-width: 600px) {
  .c-btn::before {
    width: 5px;
    height: 5px;
  }
}

.c-enTtl {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
}
@media (max-width: 480px) {
  .c-enTtl {
    font-size: 2rem;
  }
}

.c-jaTtl {
  letter-spacing: 0.2em;
}

.p-about {
  margin-top: -57px;
  padding: 0 5.2%;
}
@media (max-width: 600px) {
  .p-about {
    margin-top: -110px;
  }
}
.p-about_inner {
  display: flex;
  align-items: flex-start;
  padding: calc(10.2% + 45px) 5.2% 0;
  margin: 0 auto;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
@media (max-width: 767px) {
  .p-about_inner {
    display: block;
  }
}
@media (max-width: 600px) {
  .p-about_inner {
    padding-top: calc(8% + 110px);
  }
}
.p-about_imgBox {
  margin-right: 8.3%;
  padding: 31px 28px 31px 29px;
  width: 44.4%;
  border: 1px solid #707070;
}
@media (max-width: 900px) {
  .p-about_imgBox {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .p-about_imgBox {
    margin: 0 auto 8.1%;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .p-about_imgBox {
    width: 100%;
  }
}
.p-about_img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-about_img {
    height: 250px;
  }
}
.p-about_content {
  padding-top: 19px;
  width: 47.3%;
}
@media (max-width: 767px) {
  .p-about_content {
    margin: 0 auto;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .p-about_content {
    width: 100%;
  }
}
.p-about_enTtl {
  margin-bottom: 12px;
  color: #cfcfcf;
}
.p-about_line {
  margin: 7% 0;
}
.p-about_desc {
  font-size: 1.06rem;
  line-height: 2.2;
}
.p-about_desc:last-of-type {
  margin-top: 5.9%;
}
.p-about_btn {
  margin: 16% auto 5%;
  padding: 23px 16px 25px 0;
  width: 350px;
  text-align: center;
  font-size: 1.06rem;
}
.p-about_link {
  text-align: center;
}
@media (max-width: 1024px) {
  .p-about_btn {
    width: 300px;
  }
}
@media (max-width: 900px) {
  .p-about_btn {
    padding: 13px 16px 15px 0;
  }
}
@media (max-width: 767px) {
  .p-about_btn {
    padding: 23px 16px 25px 0;
  }
}
@media (max-width: 480px) {
  .p-about_btn {
    padding: 13px 16px 15px 0;
    width: 200px;
  }
}
.p-about_btn::before {
  top: 29px;
  right: 53px;
}
@media (max-width: 1024px) {
  .p-about_btn::before {
    right: 36px;
  }
}
@media (max-width: 900px) {
  .p-about_btn::before {
    top: 19px;
  }
}
@media (max-width: 767px) {
  .p-about_btn::before {
    top: 28px;
  }
}
@media (max-width: 480px) {
  .p-about_btn::before {
    top: 18px;
    right: 14px;
  }
}

.p-system {
  padding: 0 5.2%;
}
.p-system_inner {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  padding: 9.8% 5.2% 9.7%;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
@media (max-width: 767px) {
  .p-system_inner {
    flex-direction: column-reverse;
  }
}
.p-system_content {
  margin-right: 8.4%;
  width: 47.2%;
}
@media (max-width: 767px) {
  .p-system_content {
    margin: 0 auto;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .p-system_content {
    width: 100%;
  }
}
.p-system_enTtl {
  margin-bottom: 1.1rem;
  color: #cfcfcf;
}
.p-system_line {
  margin: 7% 0;
}
.p-system_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-system_heading {
  padding: 4.7% 0;
  width: calc(100% - 87px);
  font-size: 1.06rem;
  border-bottom: 1px solid #000;
}
.p-system_heading:last-of-type {
  border-bottom: 0;
}
.p-system_desc {
  padding: 4.7% 0;
  width: 87px;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
}
.p-system_desc:last-of-type {
  border-bottom: 0;
}
.p-system_imgBox {
  margin-top: 8px;
  padding: 29px 28px 30px 29px;
  width: 44.4%;
  border: 1px solid #707070;
}
@media (max-width: 900px) {
  .p-system_imgBox {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .p-system_imgBox {
    margin: 0 auto 8.1%;
    width: 80%;
  }
}
@media (max-width: 600px) {
  .p-system_imgBox {
    width: 100%;
  }
}
.p-system_img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-system_img {
    height: 250px;
  }
}

.p-info {
  padding: 0 5.2%;
  background: linear-gradient(to right, #8f79b6, #79c7e8);
}
.p-info_inner {
  margin: 0 auto;
  padding: 4.5% 5.2% 12%;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
.p-info_enTtl {
  margin: 18px;
  text-align: center;
  color: #fff;
}
.p-info_jaTtl {
  display: block;
  text-align: center;
  color: #fff;
}
.p-info_line {
  margin: 7.1% auto 0;
}
.p-info_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 11.4%;
  padding: 47px 40px 48px;
  background: #fff;
}
@media (max-width: 900px) {
  .p-info_list {
    padding: 25px;
  }
}
@media (max-width: 600px) {
  .p-info_list {
    padding: 15px;
  }
}
.p-info_heading {
  position: relative;
  margin-bottom: 32px;
  width: 114px;
  color: #707070;
}
@media (max-width: 900px) {
  .p-info_heading {
    width: 100px;
  }
}
@media (max-width: 600px) {
  .p-info_heading {
    width: 80px;
  }
}
.p-info_heading:last-of-type {
  margin-bottom: 0;
}
.p-info_heading::before {
  content: "";
  position: absolute;
  top: 7%;
  right: 13px;
  margin-bottom: 32px;
  width: 12px;
  height: 1px;
  transform: rotate(-66deg) translate(-50%, -50%);
  background: #000;
}
@media (max-width: 900px) {
  .p-info_heading::before {
    right: 7px;
  }
}
@media (max-width: 600px) {
  .p-info_heading::before {
    right: 2px;
  }
}
.p-info_desc {
  margin-bottom: 32px;
  width: calc(100% - 114px);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .p-info_desc {
    width: calc(100% - 100px);
  }
}
@media (max-width: 600px) {
  .p-info_desc {
    width: calc(100% - 80px);
  }
}
.p-info_desc:last-of-type {
  margin-bottom: 0;
}

.p-grayBg {
  overflow: hidden;
  background: #f2f2f2;
}

.p-media {
  padding: 0 5.2%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%);
}
.p-media_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding: 9% 5.2% 16.8%;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
@media (max-width: 600px) {
  .p-media_inner {
    display: block;
    padding: 9% 0 16.8%;
  }
}
.p-media_box {
  width: 41.6%;
}
@media (max-width: 900px) {
  .p-media_box {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .p-media_box {
    margin: 0 auto;
    width: 85%;
  }
}
@media (max-width: 600px) {
  .p-media_box:last-of-type {
    margin-top: 100px;
  }
}
.p-media_ttl {
  margin-bottom: 44px;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 0.2em;
}
.p-media_adjustBox {
  position: relative;
  width: 100%;
  height: 450px;
}
.p-media_adjustBox::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.p-schedule {
  position: relative;
  padding: 0 5.2%;
  transform: translateY(-45px);
}
.p-schedule_bg {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 210%;
  height: 105.5%;
  transform: skew(2.7deg, 2.7deg) translate(-50%, 45px);
  background: #fff;
}
.p-schedule_inner {
  position: relative;
  z-index: 20;
  margin: 0 auto;
  padding: 100px 5.2% 9.3%;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
.p-schedule_enTtl {
  margin-bottom: 7px;
  color: #cfcfcf;
  text-align: center;
}
.p-schedule_jaTtl {
  display: block;
  text-align: center;
}
.p-schedule_line {
  margin: 7% auto;
  background: linear-gradient(to right, #8f79b6, #79c7e8);
}
.p-schedule_img {
  margin: 13.8% auto 0;
}
.p-schedule_txt {
  text-align: center;
  margin-top: 30px;
}

.p-triangle {
  position: absolute;
  z-index: 20;
}
.p-triangle-top {
  top: 0;
  left: 50%;
  width: 24%;
}
.p-triangle-top::before {
  padding-top: 9.4%;
}
.p-triangle-bottom {
  right: 0;
  bottom: 0;
  width: 26.7%;
}
.p-triangle-bottom::before {
  padding-top: 10.4%;
}
.p-triangle::before {
  content: "";
  display: block;
}
.p-triangle_content {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.p-triangle_content-top {
  background: linear-gradient(92deg, #85c5d1 0%, #937fb5 100%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.p-triangle_content-bottom {
  background: linear-gradient(270deg, #9683b6 0%, #bfc2bd 83.02%, #84c5d2 100%);
  clip-path: polygon(100% 100%, 0 100%, 0 100%, 100% 0);
}

.p-access {
  position: relative;
  z-index: 100;
  margin-top: -166px;
  padding: 0 5.2%;
  clip-path: polygon(100% 100%, 0 100%, 0 0, 100% 9%);
}
.p-access_inner {
  margin: 0 auto;
  padding: calc(190px + 4.7%) 5.2% 8.6%;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
@media (max-width: 600px) {
  .p-access_inner {
    padding: calc(190px + 4.7%) 0 8.6%;
  }
}
.p-access_enTtl {
  margin-bottom: 9px;
  text-align: center;
  color: #707070;
}
.p-access_jaTtl {
  display: block;
  text-align: center;
}
.p-access_line {
  margin: 7% auto;
  background: linear-gradient(to right, #8f79b6, #79c7e8);
}
.p-access_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 11.7% auto 0;
}
@media (max-width: 600px) {
  .p-access_flex {
    display: block;
  }
}
.p-access_img {
  width: 44.5%;
}
@media (max-width: 600px) {
  .p-access_img {
    margin: 0 auto 50px;
    width: 60%;
  }
}
@media (max-width: 480px) {
  .p-access_img {
    width: 85%;
  }
}
.p-access_route {
  width: 44.4%;
}
@media (max-width: 600px) {
  .p-access_route {
    margin: 0 auto;
    width: 60%;
  }
}
@media (max-width: 480px) {
  .p-access_route {
    width: 85%;
  }
}
.p-access_mapWrapper {
  position: relative;
  width: 100%;
}
.p-access_mapWrapper::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}
.p-access_map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-access_desc {
  margin-top: 6.3%;
  font-size: 1.06rem;
  line-height: 2.1;
}
.p-access_desc:last-of-type {
  margin-top: 9.8%;
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.p-access_ls {
  letter-spacing: 0.13em;
}

.p-contact {
  padding: 0 5.2% 2px;
}
.p-contact_inner {
  margin: 0 auto;
  padding: 8.6% 5.2% 7.7%;
  max-width: 1260px;
  border-right: 1px solid #cfcfcf;
}
.p-contact_enTtl {
  margin-bottom: 16px;
  transform: translateX(-2.4%);
  color: #cfcfcf;
  text-align: center;
}
.p-contact_jaTtl {
  display: block;
  transform: translateX(-2.6%);
  text-align: center;
}
.p-contact_line {
  margin: 7% auto;
  transform: translateX(-79.1%);
  background: linear-gradient(to right, #8f79b6, #79c7e8);
}
.p-contact_box {
  margin: 30px auto 0;
  max-width: 603px;
  transform: translateX(-4.5%);
}
.p-contact_desc {
  padding-left: 15px;
  letter-spacing: -0.01em;
  line-height: 2.1;
  font-size: 1.06rem;
  text-align: center;
}
.tel-link {
  display: flex;
  justify-content: center;
  color: #85c5d1;
  text-decoration: underline;
  margin: 20px auto;
}
@media (max-width: 600px) {
  .p-contact_desc {
    padding-left: 0;
    text-align: left;
  }
}
.p-contact_red {
  display: inline-block;
  transform: translateY(-2px);
  color: #ff7b7b;
  font-size: 12px;
}
.p-contact_form {
  margin-top: 14.1%;
  width: 99.3%;
}
.p-contact_label, .p-contact_input {
  display: block;
}
.p-contact_label {
  margin-bottom: 16px;
  font-size: 1.06rem;
}
.p-contact_input {
  margin-bottom: 5.5%;
  padding: 2%;
  width: 100%;
  height: 56px;
  outline: none;
  border: 1px solid #707070;
}
@media (max-width: 767px) {
  .p-contact_input {
    height: 40px;
  }
}
@media (max-width: 600px) {
  .p-contact_input {
    height: 30px;
  }
}
.p-contact_adjustBox {
  position: relative;
  width: 100%;
}
.p-contact_adjustBox::before {
  content: "";
  display: block;
  padding-top: 46.3%;
}
.p-contact_textarea {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2%;
  width: 100%;
  height: 100%;
  border: 1px solid #707070;
  outline: none;
  resize: none;
}
.p-contact_submit {
  margin: 16.6% auto 16.9%;
  padding: 22px 0;
  width: 343px;
  text-align: center;
}
@media (max-width: 1024px) {
  .p-contact_submit {
    width: 300px;
  }
}
@media (max-width: 900px) {
  .p-contact_submit {
    padding: 13px 0;
    width: 200px;
  }
}
@media (max-width: 600px) {
  .p-contact_submit {
    width: 170px;
  }
}
.p-contact_submit::before {
  top: 28px;
  right: 53px;
}
@media (max-width: 900px) {
  .p-contact_submit::before {
    top: 18px;
    right: 40px;
  }
}
@media (max-width: 600px) {
  .p-contact_submit::before {
    top: 18px;
  }
}

.twitter-timeline {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.p-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.p-sns a {
  margin: 0 10px;
}

@media (max-width: 767px) {
  .translate-reset-tab-mini {
    transform: translate(0);
  }
}

.u-preload {
  transition: 0 !important;
}

.text-link {
  color: #85c5d1;
  text-decoration: underline;
}

.text-center {
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
