@charset "UTF-8";

/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}

/* 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 {
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
  line-height: 1.15;
  /* 1 */
  scroll-behavior: smooth;
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/**
 * 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 {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 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 {
  -webkit-box-sizing: content-box;
  border-top-width: 1px;
  box-sizing: content-box;
  /* 1 */
  clear: both;
  color: inherit;
  height: 0;
  /* 1 */
  margin: 0;
  overflow: visible;
  /* 2 */
}

/**
 * 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;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  -webkit-text-decoration: underline dotted;
  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 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
  vertical-align: middle;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-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;
  min-width: 0;
  padding: 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 {
  padding: 0;
  vertical-align: top;
}

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

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.u-desktop {
  display: none;
}

.font-family-en {
  font-family: "Futura", "Century Gothic", sans-serif;
}

html {
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  /* フォントサイズの正確に */
  -webkit-text-size-adjust: 100%;
  /* 文字をシャープに */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  color: #333333;
  font-family: "Noto Sans", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
}

.sr-only {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ホバー */

a {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

img {
  height: auto;
}

.c-buger-button {
  display: inline-block;
  height: inherit;
  padding: 10px;
  /* ボタンの配置位置  */
  position: relative;
  /* ボタンの大きさ  */
  width: 100%;
  /* 最前面に */
  z-index: 10;
}

.c-buger-button__line {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  background-color: #00B0EB;
  /* バーガー線の色 */
  border-radius: 5px;
  display: block;
  height: 2px;
  position: relative;
  /* バーガー線の位置基準として設定 */
  transition: 0.2s;
  width: 100%;
  /* 線の長さと高さ */
}

.c-buger-button__line::before,
.c-buger-button__line::after {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  background-color: #00B0EB;
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transition: 0.5s;
  width: 100%;
}

.c-buger-button__line::before {
  /* 上の線の位置 */
  -webkit-transform: translateY(-13px);
  -ms-transform: translateY(-13px);
  transform: translateY(-13px);
}

.c-buger-button__line::after {
  /* 下の線の位置 */
  -webkit-transform: translateY(13px);
  -ms-transform: translateY(13px);
  transform: translateY(13px);
}

/***** メニューオープン時 *****/

.c-buger-button__line.open {
  background-color: transparent;
  /* 真ん中の線を透明に */
  z-index: 50;
}

.c-buger-button__line.open::before,
.c-buger-button__line.open::after {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  background-color: #fff;
  /* 上下の線の色を変える */
  content: "";
  transition: 0.2s;
}

.c-buger-button__line.open::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  /* 上の線を傾ける */
}

.c-buger-button__line.open::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* 下の線を傾ける */
}

.c-button {
  border: solid 3px #000;
  display: inline-block;
  max-width: 20rem;
  padding: 1.5rem 1rem;
  text-align: center;
  width: 100%;
}

.c-content-sub-title {
  color: #26BCEE;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-content-sub-title span {
  display: inline-block;
}

.c-content-title {
  color: #26BCEE;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6;
}

.c-modal {
  background: rgba(102, 102, 102, 0.9);
  color: #3B4043;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.c-modal__content {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #fff;
  left: 50%;
  margin: auto;
  padding: 40px 20px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

.c-modal__content--scroll {
  height: 70%;
  overflow: scroll;
}

.c-modal__title {
  color: #26BCEE;
  font-size: 1.25rem;
  text-align: center;
}

.c-modal__title.c-modal__title--black {
  color: #3B4043;
  font-size: 1.5rem;
  text-align: left;
}

.c-modal__sub-title {
  font-weight: 700;
  margin-top: 2rem;
}

.c-modal__text {
  margin-top: 20px;
}

.c-modal__text,
.c-modal__list {
  font-weight: 400;
  line-height: 2;
}

.c-modal__close {
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 3%;
  top: 3%;
  width: 30px;
}

.c-modal__close-icon {
  display: inline-block;
  height: inherit;
  position: relative;
  width: 100%;
  z-index: 1;
}

.c-modal__close-icon::before,
.c-modal__close-icon::after {
  background-color: #fff;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.c-modal__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal__lists {
  list-style: decimal;
  list-style-position: outside;
}

.c-modal__list--none {
  list-style: none;
}

.c-modal__content > .c-modal__lists {
  margin-left: 1rem;
}

.c-modal__lists--child {
  margin-left: 1rem;
}

body.modal-open {
  overflow: hidden;
}

.c-mv-scroll {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  position: absolute;
  right: 0;
  transform: rotate(90deg);
}

.c-mv-scroll__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}

.c-mv-scroll__text::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  width: 100px;
}

.c-nav {
  background: #26BCEE;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.c-nav__inner {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-nav__lists {
  margin-top: 39%;
  text-align: center;
}

.c-nav__list {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 21px;
}

.c-nav__list a {
  position: relative;
}

.c-nav__list a::after {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  background-color: #26BCEE;
  /* アンダーバーの色を設定 */
  bottom: -2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s;
  width: 100%;
}

.c-nav__list a:hover::after,
.c-nav__list a:active::after {
  opacity: 1;
}

.c-to-top-sp {
  bottom: 20px;
  position: absolute;
  right: 0;
}

.c-to-top-sp a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  align-items: center;
  border: 2px solid #CDD6DD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  justify-content: center;
  transition: all 1s;
  width: 40px;
}

.c-to-top-sp a:active {
  background: #CDD6DD;
}

.c-to-top-sp a:active svg path {
  fill: #fff;
}

.l-footer {
  background: #F7F7F7;
  margin-bottom: 50px;
}

.l-footer__inner {
  margin: 0 auto;
  padding: 40px 0 37px;
  text-align: center;
  width: 78.125%;
}

.l-footer__lists {
  margin-top: 49px;
  width: 100%;
}

.l-footer__list + .l-footer__list {
  margin-top: 17px;
}

.l-footer__list a {
  display: inline-block;
  padding: 10px 0;
}

.l-footer__logo {
  margin: 0 auto;
  width: 160px;
}

.l-footer__copyright {
  background: #26BCEE;
  color: #ffffff;
  display: block;
  font-size: 10px;
  padding: 19px 0;
  text-align: center;
}

.l-footer__contact {
  background: #666666;
  bottom: 0;
  color: #fff;
  display: none;
  left: 0;
  letter-spacing: 0.3em;
  padding: 16px 10px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 20;
}

.l-footer__contact::before {
  background: url(../images/icon-mail.png) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  width: 16px;
}

.l-header {
  background: #fff;
  height: 85px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 3;
}

.l-header__inner {
  height: inherit;
  padding-right: 20px;
}

.l-header__buger-menu {
  height: inherit;
  margin-left: auto;
  width: 56px;
}

.l-inner {
  margin: 0 auto;
  max-width: 1100px;
  width: 90%;
}

.l-lower-header {
  background: #fff;
  height: 86px;
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 3;
}

.l-lower-header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding: 0 20px 0 30px;
  width: 100%;
}

.l-lower-header__logo {
  width: 150px;
}

.l-lower-header__buger-menu {
  height: inherit;
  width: 56px;
}

.l-main {
  margin: 0 auto;
  padding-bottom: 65px;
  padding-top: 60px;
  position: relative;
  width: 89.7%;
}

.l-top-main {
  padding-top: 0;
}

.l-top-about {
  margin-top: 76px;
}

.p-contact__content {
  width: 100%;
}

.formTable tr {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}

.formTable tr + tr {
  margin-top: 40px;
}

.formTable td {
  line-height: 1.375;
  margin-top: 17px;
}

.formButtonInner {
  margin-top: 60px;
}

.formButton {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  background: #26BCEE;
  border: 2px solid transparent;
  border-radius: 24px;
  color: #fff;
  display: block;
  font-weight: 700;
  max-width: 272px;
  padding: 13px 10px;
  transition: all 0.3s;
  width: 100%;
}

.formButton + .formButton {
  margin-top: 30px;
}

.formButton:hover,
.formButton:active {
  background: #fff;
  border: 2px solid #26BCEE;
  color: #26BCEE;
}

.formButton--white {
  background: #fff;
  border: 2px solid #26BCEE;
  color: #26BCEE;
}

.formButton--white:hover,
.formButton--white:active {
  background: #26BCEE;
  border: 2px solid transparent;
  color: #fff;
}

table.formTable th {
  width: 100%;
}

.p-border-box__inner {
  border: solid 2px #333;
  border-radius: 10px;
  margin: 0 auto;
  padding: 20px 30px;
  text-align: center;
}

.p-border-box__title {
  border-bottom: double 4px #333;
  display: inline-block;
}

.p-border-box__text {
  letter-spacing: 0.02em;
  margin: 20px auto 0;
}

.p-border-box__text + .p-border-box__text {
  margin-top: 30px;
}

.p-border-box__text--left {
  text-align: left;
}

.p-breadcrumb {
  display: none;
}

.p-breadcrumb__inner {
  height: inherit;
  margin: 0 auto;
  width: 78.1%;
}

.p-breadcrumb__lists {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-breadcrumb__list {
  font-size: 14px;
}

.p-breadcrumb__list a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.p-breadcrumb__list + .p-breadcrumb__list::before {
  background: url(../images/Icon-ArrowRight-Small.svg) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 9.4px;
  margin: 0 20px;
  width: 6.1px;
}

.p-breadcrumb__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}

.p-breadcrumb__top a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #26BCEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  justify-content: center;
  width: 80px;
}

.p-breadcrumb__top img {
  height: 30px;
  width: 30px;
}

.p-company-overview {
  margin-top: 62px;
}

.p-company-origin__text {
  color: #555555;
  line-height: 2.25;
  margin-top: 20px;
}

.p-company-overview__content {
  margin-top: 55px;
  text-align: center;
}

.p-company-overview__wrap dt {
  font-size: 1.125rem;
  position: relative;
}

.p-company-overview__wrap dt::after {
  background: #CCCCCC;
  content: "";
  display: block;
  height: 2px;
  margin: 19px 0 6px;
  width: 100%;
}

.p-company-overview__wrap dd {
  font-size: 1.125rem;
  line-height: 2;
  width: 100%;
}

.p-company-overview__wrap span {
  display: inline-block;
}

.p-company-overview__wrap + .p-company-overview__wrap {
  margin-top: 31px;
}

.p-company-member {
  margin-top: 64px;
}

.p-company-member__img {
  margin-top: 32px;
  position: relative;
}

.p-company-member__img.p-company-member__img--pc {
  display: none;
}

.p-company-member__img:hover .p-company-member__img-wrap:nth-child(2) {
  opacity: 1;
}

.p-company-member__img-wrap:nth-child(2) {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
}

.p-company-member__text {
  line-height: 2.25;
  margin-top: 20px;
}

.p-company-member__content + .p-company-member__content {
  margin-top: 44px;
}

.p-company-member__info {
  color: #26BCEE;
  font-weight: 700;
  margin-top: 20px;
}

.p-company-member__position {
  font-size: 1.25rem;
}

.p-company-member__name {
  font-size: 1.875rem;
  margin-top: 20px;
}

.p-company-member__name span {
  margin-left: 30px;
}

.p-company-member__name-en {
  font-size: 1.375rem;
  margin-top: 20px;
}

.p-contact__form {
  margin-top: 80px;
  width: 100%;
}

.p-contact__bg-img {
  display: none;
}

.p-contact__flex-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.p-contact__flex-inner.p-contact__flex-inner--mt {
  margin-top: 80px;
}

.p-contact__required {
  color: #FF0000;
  display: inline-block;
  margin-top: 13px;
}

.p-contact__top-text {
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 25px;
}

.p-contact__top-button {
  margin-top: 60px;
  text-align: center;
}

.p-contact__top-button a {
  background: #26BCEE;
  border-radius: 24px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  max-width: 272px;
  padding: 16px 10px;
  text-align: center;
  width: 100%;
}

.p-contact__top-text.p-contact__top-text--lage {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-contact__bg-img.p-contact__bg-img--lage {
  width: 34%;
}

.p-contact__top-text--lage span {
  display: inline-block;
}

.p-form__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-form__item + .p-form__item {
  margin-top: 37px;
}

.p-form__item.p-form__item-textarea {
  margin-top: 40px;
}

.p-form__item > label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  margin-right: 20px;
}

.p-form__text {
  border: solid 1px #cdd6dd;
  margin-top: 20px;
  padding: 15px 20px;
  width: 100%;
}

.p-form__item--flex-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.p-form__item textarea {
  resize: none;
}

.p-form__button-block {
  margin-top: 30px;
  text-align: center;
}

.p-form__button {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  background-color: #26BCEE;
  border: 1px solid transparent;
  border-radius: 40px;
  color: #ffffff;
  display: inline-block;
  max-width: 272px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.4s;
  width: 100%;
}

.p-form__button:hover {
  background: #fff;
  border: 1px solid #26BCEE;
  color: #26BCEE;
}

.p-form__item input::-webkit-input-placeholder,
.p-form__item textarea::-webkit-input-placeholder {
  color: #cdd6dd;
}

.p-form__item input::-moz-placeholder,
.p-form__item textarea::-moz-placeholder {
  color: #cdd6dd;
}

.p-form__item input:-ms-input-placeholder,
.p-form__item textarea:-ms-input-placeholder {
  color: #cdd6dd;
}

.p-form__item input::-ms-input-placeholder,
.p-form__item textarea::-ms-input-placeholder {
  color: #cdd6dd;
}

.p-form__item input::placeholder,
.p-form__item textarea::placeholder {
  color: #cdd6dd;
}

.p-form__radio-wrapper {
  margin-top: 20px;
  width: 100%;
}

.p-form__radio-item {
  display: block;
}

.p-form__radio-item + .p-form__radio-item {
  margin-top: 10px;
}

.p-form__radio-item label {
  border: solid 3px #26BCEE;
  border-radius: 10px;
  color: #26BCEE;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  padding: 27px 15px;
  position: relative;
  text-align: center;
  width: 100%;
}

.p-form__radio-item label::before,
.p-form__radio-item label::after {
  content: "";
  display: none;
}

.p-form__radio-item label::before {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #cdd6dd;
  border-radius: 4px;
  height: 20px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.p-form__radio-item label::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  height: 5px;
  left: 10px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
}

.p-form__radio-item input:checked + label::after {
  opacity: 1;
}

.p-form__radio-item input:checked + label {
  background: #26BCEE;
  color: #fff;
}

.p-form__radio-item input:checked + label::before {
  background: #00c3f9;
  border: transparent;
}

.p-form__radio-item input,
.p-form__privacy-policy input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.p-form__privacy-policy {
  font-size: 12px;
  margin-top: 60px;
  margin-top: 40px;
  text-align: center;
}

.p-form__privacy-policy label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.p-form__privacy-policy a {
  margin-left: 20px;
  text-decoration: underline;
}

.p-form__privacy-policy label::before,
.p-form__privacy-policy label::after {
  content: "";
  display: block;
  position: absolute;
}

.p-form__privacy-policy label::before {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #cdd6dd;
  height: 30px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.p-form__privacy-policy label::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  height: 9px;
  left: 13px;
  opacity: 0;
  top: 36%;
  transform: translateY(-50%) rotate(-45deg);
  width: 14px;
}

.p-form__privacy-policy input:checked + label::after {
  opacity: 1;
}

.p-form__privacy-policy input:checked + label::before {
  background: #00c3f9;
  border: transparent;
}

.p-form__error {
  color: #707F89;
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
}

.p-form__item-inner {
  display: block;
  width: 100%;
}

.p-lineup__lists.p-lineup__lists--pc {
  display: none;
}

.p-lineup__top-text {
  border: solid 3px #26BCEE;
  border-radius: 29px;
  color: #555555;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7777777778;
  padding: 15px 18px;
  position: relative;
}

.p-lineup__top-text::after {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: url(../images/icon-service-deco-sp.png) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 18px;
  position: absolute;
  right: 10%;
  top: -2%;
  transform: translate(-50%, -50%);
  width: 42px;
}

.p-lineup__top-img {
  max-width: 220px;
  width: 35.5%;
}

.p-lineup__lead-img {
  margin-top: 20px;
}

.p-lineup__lists {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-column-gap: 19px;
  -moz-column-gap: 19px;
  align-items: stretch;
  /* 要素の高さを揃える */
  column-gap: 19px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  margin: 60px auto 0;
  row-gap: 15px;
  width: 95%;
}

.p-lineup__list--blue {
  grid-column: 1/span 2;
  /* 1つ目のアイテムは2列に広がる */
}

.p-lineup__list-button {
  border: solid 3px #26BCEE;
  border-radius: 20px;
  color: #26BCEE;
  display: block;
  font-size: 11px;
  font-weight: 700;
  height: 70px;
  overflow: hidden;
  padding: 0 3%;
  position: relative;
  text-align: center;
  width: 100%;
}

.p-lineup__list-button span {
  display: inline-block;
}

.p-lineup__list-button::before {
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  -webkit-transition: width 1000ms;
  -o-transition: width 1000ms;
  background-color: #26BCEE;
  content: "";
  height: 100%;
  left: -100px;
  position: absolute;
  top: 0;
  transform: skewX(45deg);
  transition: width 1000ms;
  width: 0;
  z-index: -1;
}

.p-lineup__list-button:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-box-shadow: 4px 5px 17px -4px #268391;
  border: transparent;
  box-shadow: 4px 5px 17px -4px #268391;
  color: #ffffff;
  transform: scale(1.1);
}

.p-lineup__list-button:hover::before {
  width: 205%;
}

.p-lineup__list-button--flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #26BCEE;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.p-lineup__list-button--flex:hover {
  opacity: 1;
}

.p-lineup__list-button--flex::before {
  -webkit-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  -webkit-transition: width 1000ms;
  -o-transition: width 1000ms;
  background-color: #ffffff;
  content: "";
  height: 100%;
  left: -100px;
  position: absolute;
  top: 0;
  transform: skewX(45deg);
  transition: width 1000ms;
  width: 0;
  z-index: -1;
}

.p-lineup__list-button--flex:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-box-shadow: 4px 5px 17px -4px #ffffff;
  border: solid 3px #26BCEE;
  box-shadow: 4px 5px 17px -4px #ffffff;
  color: #26BCEE;
  transform: scale(1.1);
}

.p-lower-page-top {
  background-color: #26BCEE;
}

.p-lower-page-top__inner {
  padding: 43px 15px 35px;
  text-align: center;
}

.p-lower-page-top__title {
  color: #ffffff;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  position: relative;
}

.p-lower-page-top__title::after {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #ffffff;
  bottom: -26px;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100px;
}

.p-lower-page-top__text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
}

.p-main-visual {
  height: 100vh;
  position: relative;
}

.p-main-visual__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  justify-content: center;
  text-align: center;
}

.p-main-visual__logo {
  margin: 0 auto;
  max-width: 200px;
  width: 90%;
}

.p-main-visual__title {
  display: inline-block;
  max-width: 330px;
  width: 90%;
}

.p-main-visual__text {
  color: #26BCEE;
  font-size: 20px;
  line-height: 2.1;
  margin-top: 40px;
}

.p-main-visual__scroll {
  display: none;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.p-member__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: 100%;
}

.p-member__career {
  width: 100%;
}

.p-member__name-block::after {
  background: #000;
  content: "";
  display: block;
  height: 3px;
  width: 100px;
}

.p-member__name-en {
  text-transform: capitalize;
}

.p-member__career-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.p-member__career-list + .p-member__career-list {
  margin-top: 5px;
}

.p-member__career-list dt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  background: #999;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  line-height: 1.5;
  padding: 20px 30px;
  text-align: center;
  width: 45.5%;
}

.p-member__career-list dd {
  background: #eee;
  padding: 20px 30px;
  width: 54.5%;
}

.p-member__career-list li {
  list-style: inside;
}

.p-service__content + .p-service__content {
  margin-top: 76px;
}

.p-service__lists {
  margin-top: 27px;
}

.p-service__list {
  background: #F2F2F2;
  border-radius: 10px;
  color: #555555;
  padding: 16px 20px 13px;
}

.p-service__list + .p-service__list {
  margin-top: 20px;
}

.p-service__list-title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.p-service__list-title span {
  display: inline-block;
}

.p-service__list-title::after {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #333333;
  bottom: 2px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 120px;
}

.p-service__list-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  margin-top: 12px;
}

.p-service__list-text dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-service__list-text dd::before {
  content: "・";
  display: block;
}

.p-service__support {
  padding-top: 90px;
}

.p-support {
  margin-bottom: 100px;
  margin-top: 20px;
}

.p-support__swiper {
  display: block;
  margin-top: 40px;
}

.swiper-slide.p-support__img {
  display: block;
  width: 1000px;
}

.p-support__img {
  display: none;
}

.p-support__swiper .swiper-scrollbar {
  bottom: 0;
  display: block;
  margin-top: 30px;
  position: relative;
  width: 100%;
}

.p-top-about {
  position: relative;
}

.p-top-about__img {
  margin: 40px auto 0;
  width: 150px;
}

.p-top-about__sub-title {
  color: #26BCEE;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6153846154;
  margin-top: 33px;
}

.p-top-about__contents {
  margin-top: 50px;
}

.p-top-about__content + .p-top-about__content {
  margin-top: 48px;
}

.p-top-about__content-title {
  border-bottom: 4px solid #26BCEE;
  color: #26BCEE;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6363636364;
  margin-bottom: 22px;
  max-width: 700px;
  width: 100%;
}

.p-top-about__content-title span {
  display: inline-block;
}

.p-top-about__content-text {
  line-height: 2.25;
}

.p-top-about__content-text + .p-top-about__content-text {
  margin-top: 35px;
}

.p-top-service__title {
  text-align: center;
}

.p-top-service__img {
  margin: 40px auto 0;
  width: 250px;
}

.p-top-service__content {
  margin-top: 33px;
}

.p-top-service__text {
  color: #26BCEE;
  font-size: 1.125rem;
  line-height: 2.2222222222;
}

.p-top-service__text span {
  display: inline-block;
}

.p-top-service__button {
  margin-top: 27px;
}

.p-top-service__button a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  border: 5px solid #26BCEE;
  color: #26BCEE;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 35px 10px;
  text-align: center;
  transition: all 0.3s;
}

.p-top-service__button a:hover,
.p-top-service__button a:active {
  background: #26BCEE;
  border: 5px solid transparent;
  color: #fff;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }

  .u-mobile {
    display: none;
  }

  html {
    font-size: 1.4545454545vw;
  }

  a:hover {
    opacity: 0.7;
  }

  .c-buger-button {
    padding: 15px;
  }

  .c-buger-button__line {
    height: 3px;
  }

  .c-buger-button__line::before {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .c-buger-button__line::after {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  .c-buger-button__line.open::before,
  .c-buger-button__line.open::after {
    background-color: #00B0EB;
    /* 上下の線の色を変える */
  }

  .c-content-sub-title {
    font-size: 1.6875rem;
  }

  .c-content-title {
    font-size: 2.1875rem;
  }

  .c-modal__content {
    max-width: 800px;
    padding: 60px 50px;
    width: 55%;
  }

  .c-modal__content--scroll {
    height: 600px;
  }

  .c-modal__title {
    font-size: 2.125rem;
    font-weight: 700;
  }

  .c-modal__text {
    margin-top: 40px;
  }

  .c-modal__close {
    height: 60px;
    width: 60px;
  }

  .c-modal__list--mt {
    margin-top: 2rem;
  }

  .c-nav {
    background: #fff;
    z-index: 2;
  }

  .c-nav__logo {
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
  }

  .c-nav__lists {
    margin-top: 161px;
  }

  .c-nav__list {
    color: #26BCEE;
  }

  .c-to-top-sp {
    display: none;
  }

  .l-footer {
    margin-bottom: 0;
  }

  .l-footer__copyright {
    font-size: 14px;
    letter-spacing: 0.3em;
    padding: 32px 0;
  }

  .l-footer__contact {
    display: none;
  }

  .l-header {
    height: unset;
  }

  .l-header__inner {
    padding: 35px 43px;
  }

  .l-header__buger-menu {
    width: 85px;
  }

  .l-lower-header {
    height: 120px;
  }

  .l-lower-header__inner {
    height: inherit;
    padding: 0 42px 0 60px;
  }

  .l-lower-header__logo {
    max-width: 341px;
    width: 25%;
  }

  .l-lower-header__buger-menu {
    width: 85px;
  }

  .l-main {
    max-width: 1500px;
    padding: 100px 0 8.3%;
    padding-bottom: 150px;
    width: 78.1%;
  }

  .l-top-about {
    margin-top: 260px;
  }

  .p-contact__content {
    max-width: 952px;
    width: 70%;
  }

  .formTable th {
    width: 20%;
  }

  .formTable tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .formTable td {
    margin-left: 9%;
    margin-top: 0;
    width: 70%;
  }

  .formButton {
    display: inline-block;
    width: 40%;
  }

  .formButton + .formButton {
    margin-left: 20px;
    margin-top: 0;
  }

  table.formTable th {
    width: 40%;
  }

  .p-breadcrumb {
    background-color: #E0F7FF;
    display: block;
    height: 80px;
    position: relative;
  }

  .p-breadcrumb__inner {
    max-width: 1500px;
  }

  .p-company-overview {
    margin-top: 5.5%;
  }

  .p-company-origin__text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2;
    margin-top: 3%;
  }

  .p-company-origin__text span {
    display: inline-block;
  }

  .p-company-overview__content {
    margin-top: 63px;
  }

  .p-company-overview__wrap {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px #cccccc solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 11px 0 10px;
  }

  .p-company-overview__wrap dt {
    font-weight: 700;
    text-align: center;
    width: 13%;
  }

  .p-company-overview__wrap dt::after {
    display: none;
  }

  .p-company-overview__wrap dd {
    margin-left: 40px;
    text-align: left;
  }

  .p-company-overview__wrap + .p-company-overview__wrap {
    margin-top: 0;
  }

  .p-company-member {
    margin-top: 6.5%;
  }

  .p-company-member__content {
    margin-top: 4%;
  }

  .p-company-member__img {
    margin-top: 0;
  }

  .p-company-member__img.p-company-member__img--pc {
    display: block;
  }

  .p-company-member__img.p-company-member__img--sp {
    display: none;
  }

  .p-company-member__text {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    margin: 3.2% auto 0;
    width: 82%;
  }

  .p-company-member__content + .p-company-member__content {
    margin-top: 6.6%;
  }

  .p-company-member__info {
    display: none;
  }

  .p-contact__form {
    margin-top: 0;
    width: 65.8%;
  }

  .p-contact__bg-img {
    display: block;
    margin-left: 4%;
    max-width: 354px;
    width: 35%;
  }

  .p-contact__flex-inner {
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    margin-top: 10.8%;
  }

  .p-contact__flex-inner.p-contact__flex-inner--mt {
    margin-top: 100px;
  }

  .p-contact__required {
    margin-top: 36px;
  }

  .p-contact__top-text {
    font-size: 1.375rem;
    line-height: 2;
    margin-top: 50px;
  }

  .p-contact__top-button {
    margin-top: 200px;
    text-align: left;
  }

  .p-contact__text.p-contact__text--mt p {
    font-size: 1.375rem;
  }

  .p-contact__top-text.p-contact__top-text--lage {
    font-size: 2.125rem;
  }

  .p-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    flex-direction: row;
  }

  .p-form__item + .p-form__item {
    margin-top: 30px;
  }

  .p-form__item.p-form__item-textarea {
    margin-top: 79px;
  }

  .p-form__item > label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20.5%;
    flex: 0 0 20.5%;
    margin-left: 35px;
  }

  .p-form__text {
    margin-top: 0;
  }

  .p-form__text.p-form__text--tel {
    width: 50.5%;
  }

  .p-form__button-block {
    margin-top: 39px;
  }

  .p-form__button {
    margin-left: 70px;
  }

  .p-form__radio-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    width: 83%;
  }

  .p-form__radio-wrapper .p-form__radio-item label {
    font-size: 16px;
  }

  .p-form__radio-item + .p-form__radio-item {
    margin-top: 20px;
  }

  .p-form__radio-item label {
    border: none;
    color: #3b4043;
    display: inline-block;
    font-size: 1.125rem;
    padding: unset;
    padding-left: 45px;
    text-align: left;
  }

  .p-form__radio-item label::before,
  .p-form__radio-item label::after {
    display: block;
    position: absolute;
  }

  .p-form__radio-item label::before {
    height: 30px;
    width: 30px;
  }

  .p-form__radio-item label::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    height: 9px;
    left: 13px;
    top: 36%;
    transform: translateY(-50%) rotate(-45deg);
    width: 14px;
  }

  .p-form__radio-item input:checked + label {
    background: unset;
    color: #3b4043;
  }

  .p-form__privacy-policy label {
    margin-left: 70px;
    padding-left: 45px;
  }

  .p-form__item.p-form__item--mt {
    margin-top: 39px;
  }

  .p-form__error {
    margin-top: 17px;
  }

  .p-lineup__lists.p-lineup__lists--sp {
    display: none;
  }

  .p-lineup__lists.p-lineup__lists--pc {
    display: grid;
  }

  .p-lineup__top-text {
    font-size: 1.5rem;
    line-height: 1.5833333333;
    max-width: 1174px;
    padding: 26px 60px 26px 47px;
    width: 80%;
  }

  .p-lineup__top-text::after {
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    background: url(../images/icon-service-deco.png) no-repeat center;
    background-size: contain;
    bottom: 20%;
    height: 42px;
    right: 0;
    top: unset;
    transform: translate(50%, -50%);
    width: 40px;
  }

  .p-lineup__top-img {
    margin-left: 65px;
    width: 30%;
  }

  .p-lineup__lead-img {
    margin-top: 40px;
  }

  .p-lineup__lists {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    -webkit-column-gap: 3%;
    -moz-column-gap: 3%;
    align-items: unset;
    /* 要素の高さを揃える */
    column-gap: 3%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: unset;
    margin: 2% auto 0;
    max-width: 1280px;
    row-gap: 40px;
    width: 90%;
  }

  .p-lineup__list--blue {
    grid-column: unset;
  }

  .p-lineup__list {
    height: 180px;
    max-width: 400px;
    width: 100%;
  }

  .p-lineup__list-button {
    font-size: clamp(1.125rem, 0.8333rem + 0.6076vw, 1.5625rem);
    height: 100%;
  }

  .p-lower-page-top__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 1500px;
    padding: 15px 0;
    padding: 3.9% 0;
    width: 78%;
  }

  .p-lower-page-top__title {
    font-size: 2.1875rem;
    margin-right: 6.5%;
    padding: 30px 6% 30px 0;
  }

  .p-lower-page-top__title::after {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 7.5rem;
    left: unset;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
  }

  .p-lower-page-top__text {
    font-size: 1.5rem;
    margin-top: 0;
  }

  .p-main-visual__logo {
    max-width: 534px;
    width: 90%;
  }

  .p-main-visual__title {
    margin-top: 30px;
    max-width: 688px;
  }

  .p-main-visual__text {
    font-size: 2.25rem;
    letter-spacing: 0.02em;
    line-height: 1.7222222222;
    margin-top: 66px;
  }

  .p-main-visual__scroll {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    bottom: 10%;
    display: block;
    height: 220px;
    position: absolute;
    right: 3.5%;
    transform: translateY(0%);
    width: 27px;
  }

  .p-service__content {
    margin: 90px auto 0;
    max-width: 1400px;
    width: 95%;
  }

  .p-service__content + .p-service__content {
    margin-top: 106px;
  }

  .p-service__lists {
    margin-top: 50px;
  }

  .p-service__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 60px;
  }

  .p-service__list-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 5%;
    padding: 20px 3% 20px 0;
    text-align: left;
    width: 35%;
  }

  .p-service__list-title::after {
    bottom: unset;
    height: 100%;
    left: unset;
    right: 0;
    top: 50%;
    width: 2px;
  }

  .p-service__list-text {
    font-size: 1rem;
    line-height: 1.8888888889;
    margin-top: 0;
    width: 80%;
  }

  .p-service__support {
    padding-top: 13%;
  }

  .p-support {
    margin-bottom: 0;
    margin-top: 43px;
  }

  .p-support__swiper {
    display: none;
  }

  .swiper-slide.p-support__img {
    width: unset;
  }

  .p-support__img {
    display: block;
    margin-top: 40px;
  }

  .p-support__swiper .swiper-scrollbar {
    position: unset;
  }

  .p-top-about__img {
    -webkit-transform: translateY(-42%);
    -ms-transform: translateY(-42%);
    left: 4%;
    max-width: 281px;
    position: absolute;
    top: 50%;
    transform: translateY(-42%);
    width: 17%;
  }

  .p-top-about__sub-title {
    font-size: 2rem;
    margin-top: 38px;
  }

  .p-top-about__contents {
    margin-left: auto;
    margin-top: 77px;
    max-width: 1000px;
    width: 70%;
  }

  .p-top-about__content + .p-top-about__content {
    margin-top: 80px;
  }

  .p-top-about__content-title {
    font-size: 1.75rem;
    line-height: 1.6363636364;
    margin-bottom: 30px;
    width: 80%;
  }

  .p-top-about__content-text {
    margin-left: auto;
    max-width: 900px;
    width: 90%;
  }

  .p-top-service {
    position: relative;
  }

  .p-top-service__title {
    text-align: left;
  }

  .p-top-service__img {
    -webkit-transform: translateY(-44%);
    -ms-transform: translateY(-44%);
    margin-top: 0;
    max-width: 479px;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-44%);
    width: 28%;
  }

  .p-top-service__content {
    margin-top: 67px;
    max-width: 900px;
    width: 60%;
  }

  .p-top-service__text {
    font-size: 1.5rem;
    line-height: 2.0833333333;
  }

  .p-top-service__button {
    margin-top: 53px;
  }

  .p-top-service__button a {
    display: inline-block;
    font-size: 1.375rem;
    max-width: 350px;
    padding: 22.5px 10px;
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .l-footer__inner {
    max-width: 1500px;
    padding: 60px 0 57px;
    width: 90%;
  }

  .l-footer__lists {
    margin-top: 0;
  }

  .l-footer__list {
    margin-left: 6.35%;
  }

  .l-footer__list + .l-footer__list {
    margin-top: 0;
  }

  .l-footer__logo {
    margin: unset;
    max-width: 240px;
    width: 100%;
  }

  .l-footer__flex-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=map/style.css.map */