/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto);
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
  * Remove default margin.
  */
body {
  margin: 0;
}

/* HTML5 display definitions
    ========================================================================== */
/**
  * Correct `block` display not defined for any HTML5 element in IE 8/9.
  * Correct `block` display not defined for `details` or `summary` in IE 10/11
  * and Firefox.
  * Correct `block` display not defined for `main` in IE 11.
  */
article,
aside details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
  * 1. Correct `inline-block` display not defined in IE 8/9.
  * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
  * Prevent modern browsers from displaying `audio` without controls.
  * Remove excess height in iOS 5 devices.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Address `[hidden]` styling not present in IE 8/9/10.
  * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  */
[hidden],
template {
  display: none;
}

/* Links
    ========================================================================== */
/**
  * Remove the gray background color from active links in IE 10.
  */
a {
  background-color: transparent;
}

/**
  * Improve readability when focused and also mouse hovered in all browsers.
  */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
    ========================================================================== */
/**
  * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
  * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  */
b,
strong {
  font-weight: bold;
}

/**
  * Address styling not present in Safari and Chrome.
  */
dfn {
  font-style: italic;
}

/**
  * Address variable `h1` font-size and margin within `section` and `article`
  * contexts in Firefox 4+, Safari, and Chrome.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
  * Address styling not present in IE 8/9.
  */
mark {
  background: #ff0;
  color: #000;
}

/**
  * Address inconsistent and variable font size in all browsers.
  */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
    ========================================================================== */
/**
  * Remove border when inside `a` element in IE 8/9/10.
  */
img {
  border: 0;
}

/**
  * Correct overflow not hidden in IE 9/10/11.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
    ========================================================================== */
/**
  * Address margin not present in IE 8/9 and Safari.
  */
figure {
  margin: 1em 40px;
}

/**
  * Address differences between Firefox and other browsers.
  */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
  * Contain overflow in all browsers.
  */
pre {
  overflow: auto;
}

/**
  * Address odd `em`-unit font size rendering in all browsers.
  */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
    ========================================================================== */
/**
  * Known limitation: by default, Chrome and Safari on OS X allow very limited
  * styling of `select`, unless a `border` property is set.
  */
/**
  * 1. Correct color not being inherited.
  *    Known issue: affects color of disabled elements.
  * 2. Correct font properties not being inherited.
  * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
  * Address `overflow` set to `hidden` in IE 8/9/10/11.
  */
button {
  overflow: visible;
}

/**
  * Address inconsistent `text-transform` inheritance for `button` and `select`.
  * All other form control elements do not inherit `text-transform` values.
  * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  * Correct `select` style inheritance in Firefox.
  */
button,
select {
  text-transform: none;
}

/**
  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  *    and `video` controls.
  * 2. Correct inability to style clickable `input` types in iOS.
  * 3. Improve usability and consistency of cursor style between image-type
  *    `input` and others.
  */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
  * Re-set default cursor for disabled elements.
  */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
  * Remove inner padding and border in Firefox 4+.
  */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
  * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
input {
  line-height: normal;
}

/**
  * It's recommended that you don't attempt to style these elements.
  * Firefox's implementation doesn't respect box-sizing, padding, or width.
  *
  * 1. Address box sizing set to `content-box` in IE 8/9/10.
  * 2. Remove excess padding in IE 8/9/10.
  */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
  * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  * `font-size` values of the `input`, it causes the cursor style of the
  * decrement button to change from `default` to `text`.
  */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
  * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  *    (include `-moz` to future-proof).
  */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
  * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  * Safari (but not Chrome) clips the cancel button when the search input has
  * padding (and `textfield` appearance).
  */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * Define consistent border, margin, and padding.
  */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
  * 1. Correct `color` not being inherited in IE 8/9/10/11.
  * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
  * Remove default vertical scrollbar in IE 8/9/10/11.
  */
textarea {
  overflow: auto;
}

/**
  * Don't inherit the `font-weight` (applied by a rule above).
  * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  */
optgroup {
  font-weight: bold;
}

/* Tables
    ========================================================================== */
/**
  * Remove most spacing between table cells.
  */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "MyYuMinM";
  font-weight: normal;
  src: local("YuMincho-Medium"), local("Yu Mincho Medium"), local("YuMincho-Regular");
}

@font-face {
  font-family: "MyYuMinM";
  font-weight: bold;
  src: local("YuMincho-Bold"), local("Yu Mincho");
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 2;
}

body {
  box-sizing: border-box;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  color: #333333;
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

figure {
  margin: 0;
}

dl,
dt,
dd,
ol,
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  vertical-align: top;
  width: 100%;
}

.l-breadcrumb {
  width: 100%;
  max-width: 1440px;
  margin: 10px auto 60px;
}

@media (max-width: 1439px) {
  .l-breadcrumb {
    width: 1200px;
    margin: 10px auto 60px;
  }
}

@media (max-width: 1279px) {
  .l-breadcrumb {
    width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .l-breadcrumb {
    margin: 0 0 50px;
  }
}

.l-breadcrumb:not(:has(+ .l-content.is-navigation)) {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .l-breadcrumb:not(:has(+ .l-content.is-navigation)) {
    margin-bottom: 64px;
  }
}

.l-breadcrumb .list {
  width: 100%;
  margin: 0 auto;
  padding: 0 120px;
  display: -webkit-box;
  display: flex;
}

@media (max-width: 1439px) {
  .l-breadcrumb .list {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .l-breadcrumb .list {
    display: none;
  }
}

.l-breadcrumb .list > .item {
  font-size: 1.2rem;
}

.l-breadcrumb .list > .item > .link {
  color: #999999;
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #999999;
}

.l-breadcrumb .list > .item > .link:hover {
  text-decoration: underline;
}

.l-breadcrumb .list > .item > .current {
  color: #999999;
}

.l-content {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .l-content {
    min-width: 100%;
  }
}

.l-content > .container {
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .l-content > .container {
    padding: 0 15px;
  }
}

.l-content.is-navigation {
  position: relative;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .l-content.is-navigation {
    margin-top: -50px;
    overflow: hidden;
  }
}

.l-content.is-navigation > .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 1280px;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container {
    flex-wrap: wrap;
    padding: 0 15px;
  }
}

.l-content.is-navigation > .container > .content {
  width: 840px;
}

@media (max-width: 1179px) {
  .l-content.is-navigation > .container > .content {
    width: calc(100% - 200px - 20px);
  }
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container > .content {
    width: 100%;
    padding-top: 90px;
  }
}

.l-content.is-navigation > .container .sub-navi-overlay {
  display: none;
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container .sub-navi-overlay {
    display: block;
    width: 100%;
    height: 120vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 996;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container .sub-navi-overlay.is-show {
    opacity: 1;
    visibility: visible;
  }
}

.l-content.is-navigation > .container > .sub-navigation {
  width: 240px;
  margin: 0 20px 0 0;
}

@media (max-width: 1179px) {
  .l-content.is-navigation > .container > .sub-navigation {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container > .sub-navigation {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9997;
  }
}

.l-content.is-navigation > .container > .sub-navigation > .sub-opener {
  display: none;
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container > .sub-navigation > .sub-opener {
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 10px 15px;
    background-color: #00a0e9;
    border-top: 1px solid #fff;
    position: relative;
  }
  .l-content.is-navigation > .container > .sub-navigation > .sub-opener::before,
  .l-content.is-navigation > .container > .sub-navigation > .sub-opener::after {
    content: "";
    width: 16px;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    right: 22px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .l-content.is-navigation > .container > .sub-navigation > .sub-opener::before {
    -webkit-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .l-content.is-navigation > .container > .sub-navigation > .sub-opener.is-open::before {
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
  }
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container > .sub-navigation > .list {
    background-color: #fff;
    padding: 40px 40px 20px 40px;
    position: absolute;
    left: 100vw;
    top: 49px;
    width: 100%;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
}

@media (max-width: 767px) {
  .l-content.is-navigation > .container > .sub-navigation > .list.is-open {
    left: 0;
  }
}

.l-content.is-navigation > .container > .sub-navigation > .list > .item {
  margin-bottom: 15px;
}

@media (max-width: 1179px) {
  .l-content.is-navigation > .container > .sub-navigation > .list > .item {
    margin-bottom: 15px;
  }
}

.l-content.is-navigation > .container > .sub-navigation > .list > .item > .link {
  font-weight: bold;
}

@media (max-width: 1179px) {
  .l-content.is-navigation > .container > .sub-navigation > .list > .item > .link {
    font-size: 1.4rem;
  }
}

.l-content.is-navigation > .container > .sub-navigation > .list > .item > .link:hover {
  color: #0185c4;
}

.l-footer {
  background-color: #fff;
  padding: 60px 0 0 0;
  border-top: 10px solid #45c4fd;
}

@media (max-width: 767px) {
  .l-footer {
    padding: 40px 0 0 0;
    min-width: initial;
    width: 100%;
  }
}

.l-footer > .container {
  width: 100%;
  padding: 0 min(40px, calc(40 / 1440 * 100vw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
}

@media (max-width: 1070px) {
  .l-footer > .container {
    display: block;
  }
}

@media (max-width: 767px) {
  .l-footer > .container {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .l-footer > .container > .information {
    width: 100%;
    margin-bottom: 40px;
  }
}

.l-footer > .container > .information > .inner {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: min(60px, calc(60 / 1440 * 100vw));
  grid-template-areas: "logo sns" "data data" "access access";
}

@media (max-width: 767px) {
  .l-footer > .container > .information > .inner {
    grid-template-areas: "logo" "data" "access" "sns";
    grid-template-columns: auto;
  }
}

.l-footer > .container > .information > .inner > .logo {
  grid-area: logo;
  width: clamp(160px, calc(184 / 1440 * 100vw), 184px);
}

@media (max-width: 767px) {
  .l-footer > .container > .information > .inner > .logo {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
  }
}

.l-footer > .container > .information > .inner > .logo img {
  height: auto;
}

.l-footer > .container > .information > .inner > .sns-area {
  grid-area: sns;
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 767px) {
  .l-footer > .container > .information > .inner > .sns-area {
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
  }
}

.l-footer > .container > .information > .inner > .sns-area img {
  vertical-align: text-bottom;
}

@media (max-width: 767px) {
  .l-footer > .container > .information > .inner > .sns-area img {
    width: 32px;
    height: auto;
  }
}

.l-footer > .container > .information > .inner > .data {
  grid-area: data;
  font-size: 1.4rem;
  margin-top: 45px;
}

@media (max-width: 767px) {
  .l-footer > .container > .information > .inner > .data {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
  }
}

.l-footer > .container > .information > .inner > .data > .name {
  display: block;
  font-weight: bold;
}

.l-footer > .container > .information > .inner > .access {
  grid-area: access;
}

@media (max-width: 767px) {
  .l-footer > .container > .information > .inner > .access {
    text-align: center;
  }
}

.l-footer > .container > .information > .inner > .access > .link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  background: url("../img/common/icon-arrow-01.svg") left 50% no-repeat;
  padding-left: 25px;
}

.l-footer > .container > .information > .inner > .access > .link:hover {
  text-decoration: underline;
}

@media (max-width: 899px) {
  .l-footer > .container > .links {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .l-footer > .container > .links {
    position: relative;
    right: 0;
    width: 100%;
    border-top: 1px solid #ebebeb;
  }
}

.l-footer > .container > .links > .primary {
  display: -webkit-box;
  display: flex;
  margin-bottom: 35px;
  justify-content: flex-end;
  gap: 40px;
}

@media (max-width: 1159px) {
  .l-footer > .container > .links > .primary {
    margin-bottom: 15px;
    gap: 20px;
  }
}

@media (max-width: 1070px) {
  .l-footer > .container > .links > .primary {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .primary {
    display: block;
    margin-top: 0;
  }
}

.l-footer > .container > .links > .primary > .item {
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .primary > .item {
    width: 100%;
  }
}

.l-footer > .container > .links > .primary > .item > .link {
  font-weight: bold;
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .primary > .item > .link {
    display: block;
    border-bottom: 1px solid #ebebeb;
    padding: 10px 0;
    margin-left: 0;
    font-size: 1.4rem;
  }
}

.l-footer > .container > .links > .primary > .item > .link:hover {
  text-decoration: underline;
}

.l-footer > .container > .links > .secondary {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  column-gap: min(40px, calc(40 / 1440 * 100vw));
  margin-bottom: 35px;
}

@media (max-width: 1159px) {
  .l-footer > .container > .links > .secondary {
    column-gap: 20px;
  }
}

@media (max-width: 1070px) {
  .l-footer > .container > .links > .secondary {
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 15px;
  }
}

.l-footer > .container > .links > .secondary > .item > .link {
  color: #999999;
  font-size: 1.4rem;
}

.l-footer > .container > .links > .secondary > .item > .link:hover {
  text-decoration: underline;
}

.l-footer > .container > .links > .contact {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  column-gap: 20px;
}

@media (max-width: 1070px) {
  .l-footer > .container > .links > .contact {
    -webkit-box-pack: start;
    justify-content: flex-start;
    row-gap: 10px;
  }
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .contact {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .contact > .item {
    width: 100%;
  }
}

.l-footer > .container > .links > .contact > .item > .link {
  display: block;
  background-color: #999999;
  text-align: center;
  width: 180px;
  padding: 9px 0;
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .contact > .item > .link {
    width: 100%;
    padding: 14px 12px;
  }
}

.l-footer > .container > .links > .contact > .item > .link:hover {
  background-color: #2db7f6;
}

.l-footer > .container > .links > .contact > .item > .link > .icon {
  color: #fff;
  font-size: 1.4rem;
  padding-left: 28px;
}

@media (max-width: 767px) {
  .l-footer > .container > .links > .contact > .item > .link > .icon {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}

.l-footer > .container > .links > .contact > .item:nth-child(1) > .link > .icon {
  background: url("../img/common/ico_contact.png") left 50% no-repeat;
}

.l-footer > .container > .links > .contact > .item:nth-child(2) > .link > .icon {
  background: url("../img/common/ico_document.png") left 50% no-repeat;
}

.l-footer > .container > .copyright {
  grid-column: 1 / 3;
  text-align: center;
  color: #999999;
  font-size: 1.2rem;
  width: 100%;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
  padding: 30px 0;
  margin: 27px 0 0 0;
  border-top: 1px solid #ebebeb;
}

@media (max-width: 767px) {
  .l-footer > .container > .copyright {
    padding: 25px 0;
    margin: 40px 0 0 0;
  }
}

.l-header {
  width: 100%;
  max-width: 100%;
  min-width: 1160px; /* 20211008変更 1440→1160 */
  position: fixed;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  z-index: 999;
}

/* 20211008追加 */
@media (max-width: 1159px) {
  .l-header {
    min-width: 1011px;
  }
  .l-header > .navigation > .list > .item > .link {
    margin-left: 20px !important;
  }
}

/* 20211008追加 */
@media (max-width: 1010px) {
  .l-header {
    min-width: 900px;
  }
  .l-header > .navigation > .list > .item > .link {
    font-size: 1.4rem;
    margin-left: 15px !important;
  }
}

/* 20211008追加 */
@media (max-width: 899px) {
  .l-header {
    min-width: 768px;
    padding: 15px 18px 15px 15px;
  }
  .l-header > .navigation > .list > .item > .link {
    font-size: 1.3rem;
    margin-left: 15px !important;
  }
}

@media (max-width: 767px) {
  .l-header {
    max-width: 100%;
    min-width: 100%;
    padding: 15px 18px 15px 15px;
    flex-wrap: wrap;
    z-index: 9999;
  }
  .l-header > .navigation > .list > .item > .link {
    margin-left: 0 !important;
  }
}

.l-header > .logo > .link {
  position: relative;
  background: url("../img/common/logo_white.png") left top no-repeat;
  background-size: 183px 60px;
  width: 183px;
  height: 60px;
  display: block;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 899px) {
  /* 20211008変更 767→899 */
  .l-header > .logo > .link {
    background-size: 105px 34px;
    width: 105px;
    height: 34px;
  }
}

.l-header > .logo > .link > .image {
  position: relative;
  width: 183px;
  height: 60px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 899px) {
  /* 20211008変更 767→899 */
  .l-header > .logo > .link > .image {
    width: 105px;
    height: 34px;
  }
}

.l-header > .btn-open {
  display: none;
}

@media (max-width: 767px) {
  .l-header > .btn-open {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    display: block;
    position: relative;
    width: 34px;
    height: 34px;
    padding: 5px;
  }
}

@media (max-width: 767px) {
  .l-header > .btn-open > .line {
    position: absolute;
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
}

@media (max-width: 767px) {
  .l-header > .btn-open > .moji {
    position: absolute;
    display: block;
    width: 24px;
    height: 7px;
    top: 14px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
}

@media (max-width: 767px) {
  .l-header > .btn-open > .moji:before {
    content: url(../img/icon/menu_white.png);
  }
}

@media (max-width: 767px) {
  .l-header > .btn-open > .line:nth-child(1) {
    top: 7px;
  }
}

@media (max-width: 767px) {
  .l-header > .btn-open > .line:nth-child(2) {
    top: 14px;
  }
}

@media (max-width: 767px) {
  .l-header > .btn-open > .line:nth-child(3) {
    top: 21px;
  }
}

@media (max-width: 767px) {
  .l-header > .navigation {
    position: fixed;
    top: 57px;
    left: 100%;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    width: 100%;
    height: calc(100vh - 57px);
    overflow-y: auto;
    z-index: 9999;
  }
}

.l-header > .navigation > .list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .l-header > .navigation > .list {
    flex-wrap: wrap;
    padding-top: 7px;
  }
}

@media (max-width: 767px) {
  .l-header > .navigation > .list > .item {
    width: 100%;
    border-top: 1px solid #ebebeb;
  }
}

.l-header > .navigation > .list > .item > .link {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-weight: bold;
  color: #fff;
  margin-left: 40px;
  padding: 5px 0;
}

@media (max-width: 767px) {
  .l-header > .navigation > .list > .item > .link {
    padding: 13px 15px;
    margin-left: 0;
    font-size: 1.5rem;
    width: 100%;
    display: block;
    background-color: #fff;
    color: #333333;
    border-bottom: 3px solid transparent;
  }
}

.l-header > .navigation > .list > .item > .link:hover {
  border-bottom: 3px solid #fff;
}

.l-header > .navigation > .list > .item > .link.is-active {
  border-bottom: 3px solid #fff;
}

.l-header > .navigation > .list > .item:last-child {
  display: none;
}

@media (max-width: 767px) {
  .l-header > .navigation > .list > .item:last-child {
    display: block;
  }
}

@media (max-width: 767px) {
  .l-header > .navigation > .list > .item:last-child > .link {
    background-color: #aeaeae;
    text-align: center;
    color: #fff;
  }
}

.l-header.is-open,
.l-header.is-scrolled {
  padding: 15px 40px;
  background-color: white;
}

@media (max-width: 899px) {
  /* 20211008変更 768→899 */
  .l-header.is-open,
  .l-header.is-scrolled {
    padding: 15px 18px 15px 15px;
  }
}

.l-header.is-open > .logo > .link,
.l-header.is-scrolled > .logo > .link {
  width: 151px;
  height: 50px;
  background-size: 151px 50px;
}

@media (max-width: 899px) {
  /* 20211008変更 767→899 */
  .l-header.is-open > .logo > .link,
  .l-header.is-scrolled > .logo > .link {
    width: 105px;
    height: 34px;
    background-size: 105px 34px;
  }
}

.l-header.is-open > .logo > .link > .image,
.l-header.is-scrolled > .logo > .link > .image {
  width: 151px;
  height: 50px;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 899px) {
  /* 20211008変更 767→899 */
  .l-header.is-open > .logo > .link > .image,
  .l-header.is-scrolled > .logo > .link > .image {
    width: 105px;
    height: 34px;
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .btn-open > .line,
  .l-header.is-scrolled > .btn-open > .line {
    background-color: #00a0e9;
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .btn-open > .moji:before,
  .l-header.is-scrolled > .btn-open > .moji:before {
    content: url(../img/icon/menu_blue.png);
  }
}

.l-header.is-open > .navigation > .list > .item > .link,
.l-header.is-scrolled > .navigation > .list > .item > .link {
  color: #333;
}

.l-header.is-open > .navigation > .list > .item > .link:hover,
.l-header.is-scrolled > .navigation > .list > .item > .link:hover {
  border-bottom: 3px solid #00a0e9;
}

@media (max-width: 767px) {
  .l-header.is-open > .navigation > .list > .item > .link:hover,
  .l-header.is-scrolled > .navigation > .list > .item > .link:hover {
    border-bottom: none;
  }
}

.l-header.is-open > .navigation > .list > .item > .link.is-active,
.l-header.is-scrolled > .navigation > .list > .item > .link.is-active {
  border-bottom: 3px solid #00a0e9;
}

@media (max-width: 767px) {
  .l-header.is-open > .navigation > .list > .item:last-child > .link,
  .l-header.is-scrolled > .navigation > .list > .item:last-child > .link {
    color: #fff;
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .navigation {
    left: 0;
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .btn-open > .line:nth-child(1) {
    width: 30px;
    top: 81%;
    left: 35%;
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    transform: rotate(45deg) translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .btn-open > .line:nth-child(2) {
    width: 30px;
    top: 19%;
    left: 41%;
    -webkit-transform: rotate(-45deg) translate(-50%, -50%);
    transform: rotate(-45deg) translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .btn-open > .line:nth-child(3) {
    width: 0;
  }
}

@media (max-width: 767px) {
  .l-header.is-open > .btn-open > .moji:before {
    content: url(../img/icon/close.png);
  }
}

.overlay {
  background-color: #000;
  width: 100%;
  height: 120vh;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 9998;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 767px) {
  .overlay.is-show {
    visibility: visible;
    opacity: 0.8;
  }
}

.l-key-visual {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  min-height: 430px;
  padding: 45px 60px;
  font-family: MyYuMinM, YuMincho, "Yu Mincho", serif;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media (max-width: 899px) {
  .l-key-visual {
    padding: 15px 15px;
    min-height: auto;
    min-width: 100%;
    height: 86.2vh;
  }
}

.l-key-visual > .container > .copy-s {
  display: block;
  font-size: 5rem;
  letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
  .l-key-visual > .container > .copy-s {
    font-size: 3.4rem;
  }
}

@media (max-width: 899px) {
  .l-key-visual > .container > .copy-s {
    font-size: 1.7rem;
  }
}

.l-key-visual > .container > .copy-l {
  display: block;
  font-size: 7.2rem;
  letter-spacing: -0.05em;
}

@media (max-width: 1100px) {
  .l-key-visual > .container > .copy-l {
    font-size: 4.4rem;
  }
}

@media (max-width: 899px) {
  .l-key-visual > .container > .copy-l {
    line-height: 1.4;
    font-size: 4.2rem;
  }
}

.l-key-visual > .container > .en {
  display: block;
  font-size: 4.8rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 45px 120px 0 120px;
}

@media (max-width: 1439px) {
  .l-key-visual > .container > .en {
    padding: 45px 0 0 0;
  }
}

@media (max-width: 899px) {
  .l-key-visual > .container > .en {
    text-align: center;
    font-size: 3rem;
    padding: 25px 0 0 0;
  }
}

.l-key-visual > .container > .jp {
  display: block;
  font-size: 1.8rem;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
  line-height: 1.4;
  padding: 0 120px 0 120px;
}

@media (max-width: 1439px) {
  .l-key-visual > .container > .jp {
    padding: 0 0 0 0;
  }
}

@media (max-width: 899px) {
  .l-key-visual > .container > .jp {
    text-align: center;
    font-size: 1.2rem;
    padding: 0;
  }
}

/* top */
.l-key-visual.-top {
  padding: clamp(30px, calc(48 / 1440 * 100vw), 48px) clamp(15px, calc(48 / 1440 * 100vw), 48px);
}
@media (max-width: 767px) {
  .l-key-visual.-top {
    padding: 30px 15px;
  }
}
.l-key-visual.-top > .container > .copy-ja {
  font-size: clamp(3.6rem, calc(56 / 1440 * 100vw), 5.6rem);
  line-height: 1.25;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
.l-key-visual.-top > .container > .copy-en {
  margin-top: 16px;
  font-size: clamp(1rem, calc(14 / 1440 * 100vw), 1.4rem);
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}
.l-key-visual.-top > .container > .copy-text {
  margin-top: 16px;
  font-size: clamp(1.4rem, calc(20 / 1440 * 100vw), 2rem);
  line-height: 1.75;
  font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}

.l-key-visual.-lower {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 100vh;
  min-height: 800px;
  background-position: center center;
  background-size: cover;
  height: 450px;
  min-height: 450px;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (max-width: 899px) {
  .l-key-visual.-lower {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 250px;
    min-height: 250px;
    z-index: 998;
  }
}

.l-key-visual.-lower > .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1439px) {
  .l-key-visual.-lower > .container {
    width: 1200px;
    margin: auto;
  }
}

@media (max-width: 1279px) {
  .l-key-visual.-lower > .container {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}

@media (max-width: 899px) {
  .l-key-visual.-lower > .container {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}

.l-key-visual.-about {
  background-image: url("../img/about/mainImg01.jpg");
}

.l-key-visual.-product {
  background-image: url("../img/product/mainImg01.jpg");
}

.l-key-visual.-service {
  background-image: url("../img/service/mainImg01.png");
}

.l-key-visual.-solution {
  background-image: url("../img/solution/mainImg01.png");
}

.l-key-visual.-homeskun {
  background-image: url("../img/homeskun/mainImg01.png");
}

.l-key-visual.-rd {
  background-image: url("../img/rd/mainImg01.png");
}

.l-key-visual.-company {
  background-image: url("../img/company/mainImg01.png");
  background-size: cover;
  background-color: #0185c4;
  background-position: right center;
  background-repeat: no-repeat;
}

.l-section {
  margin-bottom: 110px;
}

@media (max-width: 767px) {
  .l-section {
    margin-bottom: 60px;
  }
}

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

.c-btn .link {
  display: inline-block;
  min-width: 360px;
  width: auto;
  text-align: center;
  background: -webkit-linear-gradient(left, #4ac6ff, #00a0e9);
  background: linear-gradient(90deg, #4ac6ff, #00a0e9);
  color: #fff;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 767px) {
  .c-btn .link {
    min-width: 200px;
    font-size: 1.4rem;
    padding-block: 10px;
  }
}

.c-btn .link:hover {
  opacity: 0.6;
}

.c-btn.-blank > .link {
  position: relative;
}

.c-btn.-blank > .link > img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translate(0, -50%);
}

@media (max-width: 767px) {
  .c-btn.-blank > .link > img {
    width: 16px;
    height: 16px;
  }
}

.c-hash {
  display: -webkit-box;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.c-hash > .name {
  width: 120px;
  padding-right: 15px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-hash > .name {
    width: 100%;
    padding-right: 0;
    margin-top: 10px;
  }
}

.c-hash > .value {
  width: calc(100% - 120px);
}

@media (max-width: 767px) {
  .c-hash > .value {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .c-hash.-horizonal > .name {
    width: 90px;
    padding-right: 15px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .c-hash.-horizonal > .value {
    width: calc(100% - 90px);
  }
}

.c-link {
  color: #0185c4;
  text-decoration: underline;
}

.c-link:hover {
  text-decoration: none;
}

.post-edit-link {
  color: #0185c4;
  text-decoration: underline;
}

.post-edit-link {
  text-decoration: none;
}

.c-link.-icon {
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  color: #333333;
  padding-left: 25px;
  background: url("../img/common/icon-arrow-01.svg") left center no-repeat;
}

.c-link.-icon:hover {
  color: #0185c4;
}

.c-list > .item {
  position: relative;
  padding-left: 18px;
}

.c-list > .item::before {
  content: "";
  background-color: #333;
  width: 3px;
  height: 3px;
  display: block;
  position: absolute;
  top: 1em;
  left: 5px;
}

@media (max-width: 767px) {
  .c-list.-blue > .item {
    font-size: 1.4rem;
  }
}

.c-list.-blue > .item::before {
  content: "";
  background-color: #00a0e9;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 1em;
  transform: translateY(-50%);
  left: 0;
}

.c-newsList {
  margin: 35px 135px 30px 135px;
}

@media (max-width: 1240px) {
  .c-newsList {
    margin: 35px 25px 30px 25px;
  }
}

@media (max-width: 767px) {
  .c-newsList {
    margin: 25px 0 0 0;
  }
}

.c-newsList > .item {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.c-newsList > .item > .date {
  font-size: 1.6rem;
  font-weight: bold;
  width: 120px;
}

@media (max-width: 767px) {
  .c-newsList > .item > .date {
    width: 120px;
  }
}

.c-newsList > .item > .tag {
  width: 120px;
}

.c-newsList > .item > .tag > .text a {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #333;
  padding: 2px 0;
}

.c-newsList > .item > .text {
  font-size: 1.6rem;
  margin-left: 40px;
  width: calc(100% - 290px);
}

@media (max-width: 767px) {
  .c-newsList > .item > .text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.c-newsList > .item > .text:hover {
  text-decoration: underline;
}

.c-table {
  border-top: 1px solid #ebebeb;
  table-layout: fixed;
  width: 100%;
}

.c-table tr th {
  border-bottom: 1px solid #ebebeb;
  padding: 25px 25px 25px 0;
  width: 180px;
  text-align: left;
  vertical-align: top;
}

@media (max-width: 1179px) {
  .c-table tr th {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .c-table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
    border-bottom: none;
    font-size: 1.4rem;
  }
}

.c-table tr td {
  border-bottom: 1px solid #ebebeb;
  padding: 25px 0;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .c-table tr td {
    display: block;
    width: 100%;
    padding: 0 0 20px 15px;
    font-size: 1.4rem;
  }
}

.c-table tr td > .block {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 767px) {
  .c-table tr td > .block {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.c-table tr td > .block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 767px) {
  .c-table tr td > .block:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .c-table tr td > .block > .box {
    width: 100%;
  }
}

.c-table tr td > .block > .box:first-child {
  width: 360px;
}

@media (max-width: 1179px) {
  .c-table tr td > .block > .box:first-child {
    width: 100%;
  }
}

.c-table tr td > .block > .box:last-child {
  width: calc(100% - 360px);
}

@media (max-width: 1179px) {
  .c-table tr td > .block > .box:last-child {
    width: 100%;
    padding: 15px 0 65% 0;
    position: relative;
  }
}

@media (max-width: 767px) {
  .c-table tr td > .block > .box:last-child {
    margin-left: -5px;
  }
}

.c-table tr td > .block .title {
  width: 100%;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .c-table tr td > .block .title {
    margin-bottom: 5px;
  }
}

.c-table tr td > .block .body {
  width: 100%;
}

.c-table tr td > .block .body > .text {
  margin-bottom: 15px;
}

.c-title-lv01 {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .c-title-lv01 {
    font-size: 2.6rem;
    margin-bottom: 25px;
  }
}

.c-title-lv02 {
  position: relative;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ebebeb;
}

@media (max-width: 767px) {
  .c-title-lv02 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}

.c-title-lv02::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background-color: #00a0e9;
  position: absolute;
  bottom: -3px;
}

.c-title-lv03 {
  text-align: center;
  font-size: 4.8rem;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .c-title-lv03 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .u-mb05-pc {
    margin-bottom: 5px !important;
  }
}

@media (min-width: 768px) {
  .u-mb10-pc {
    margin-bottom: 10px !important;
  }
}

@media (min-width: 768px) {
  .u-mb15-pc {
    margin-bottom: 15px !important;
  }
}

@media (min-width: 768px) {
  .u-mb20-pc {
    margin-bottom: 20px !important;
  }
}

@media (min-width: 768px) {
  .u-mb25-pc {
    margin-bottom: 25px !important;
  }
}

@media (min-width: 768px) {
  .u-mb30-pc {
    margin-bottom: 30px !important;
  }
}

@media (min-width: 768px) {
  .u-mb35-pc {
    margin-bottom: 35px !important;
  }
}

@media (min-width: 768px) {
  .u-mb40-pc {
    margin-bottom: 40px !important;
  }
}

@media (min-width: 768px) {
  .u-mb45-pc {
    margin-bottom: 45px !important;
  }
}

@media (min-width: 768pxs) {
  .u-mb50-pc {
    margin-bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  .u-mb05-sp {
    margin-bottom: 5px !important;
  }
}

@media (max-width: 767px) {
  .u-mb10-sp {
    margin-bottom: 10px !important;
  }
}

@media (max-width: 767px) {
  .u-mb15-sp {
    margin-bottom: 15px !important;
  }
}

@media (max-width: 767px) {
  .u-mb20-sp {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 767px) {
  .u-mb25-sp {
    margin-bottom: 25px !important;
  }
}

@media (max-width: 767px) {
  .u-mb30-sp {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .u-mb35-sp {
    margin-bottom: 35px !important;
  }
}

@media (max-width: 767px) {
  .u-mb40-sp {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .u-mb45-sp {
    margin-bottom: 45px !important;
  }
}

@media (max-width: 767px) {
  .u-mb50-sp {
    margin-bottom: 50px !important;
  }
}

.p-top-about {
  width: 100%;
  max-width: 1280px;
  padding: min(118px, calc(118 / 1440 * 100vw)) 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: min(49px, calc(49 / 1440 * 100vw));
  grid-template-areas: "title image" "lead image" "message image" "text image" "link image";
  color: #fff;
}

@media (max-width: 990px) {
  .p-top-about {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .p-top-about {
    padding: 80px 15px;
  }
}

.p-top-about .title {
  grid-area: title;
  font-size: 1.6rem;
  font-weight: bold;
}

.p-top-about .title::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #fff;
  margin-top: min(38px, calc(38 / 1440 * 100vw));
}

@media (max-width: 990px) {
  .p-top-about .title::after {
    margin-top: 30px;
    margin-inline: auto;
  }
}

.p-top-about .lead {
  grid-area: lead;
  font-size: clamp(2.4rem, min(4rem, calc(40 / 1440 * 100vw)), 4rem);
  font-weight: bold;
  line-height: 1.5;
  margin-top: clamp(30px, calc(39 / 1440 * 100vw), 39px);
}

@media (max-width: 767px) {
  .p-top-about .lead {
    font-size: min(2.4rem, calc(24 / 375 * 100vw));
    margin-top: 30px;
  }
}

.p-top-about .message {
  grid-area: message;
  margin-top: clamp(12px, calc(20 / 1440 * 100vw), 20px);
  max-width: clamp(263px, calc(404 / 1440 * 100vw), 404px);
}

@media (max-width: 767px) {
  .p-top-about .message {
    max-width: 263px;
    margin-top: 12px;
  }
}

.p-top-about .text {
  grid-area: text;
  margin-top: clamp(20px, calc(50 / 1440 * 100vw), 50px);
  font-size: 1.6rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-top-about .text {
    margin-top: 20px;
  }
}

.p-top-about > .link {
  grid-area: link;
  margin-top: 55px;
}

@media (max-width: 767px) {
  .p-top-about > .link {
    margin-top: 20px;
  }
}

.p-top-about .link .link {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  width: 360px;
  padding: 11px 0;
  text-align: center;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 767px) {
  .p-top-about .link .link {
    font-size: 1.4rem;
    padding: 9px 0;
    width: 200px;
  }
}

.p-top-about .link .link:hover {
  background-color: #00a0e9;
}

.p-top-about .figure {
  grid-area: image;
  max-width: 100%;
}

@media (max-width: 990px) {
  .p-top-about .figure {
    margin-top: min(50px, calc(50 / 1440 * 100vw));
    max-width: min(345px, calc(345 / 375 * 100vw));
  }
}

@media (max-width: 767px) {
  .p-top-about .figure {
    margin-top: 20px;
  }
}

.p-top-about .figure .image {
  height: auto;
}

.p-top-anniversary {
  background-color: #fff;
  width: 100%;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .p-top-anniversary {
    min-width: initial;
    width: 100%;
    padding: 60px 15px;
  }
}

.p-top-anniversary .wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-top-anniversary .wrapper {
    padding: 0;
  }
}

.p-top-anniversary .wrapper > .link {
  position: relative;
  display: block;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.p-top-anniversary .wrapper > .link:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .p-top-anniversary .wrapper > .link > .figure {
    position: relative;
    width: calc(100vw - 45px);
    height: calc(100vw - 30px);
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .p-top-anniversary .wrapper > .link > .figure > .image {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: auto;
    height: calc(100vw - 30px);
  }
}

.p-top-anniversary .wrapper > .link .text {
  position: absolute;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 23%;
  display: block;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 1% 0;
  color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .p-top-anniversary .wrapper > .link .text {
    width: 200px;
    font-size: 1.4rem;
    padding: 10px 0;
    top: 70vw;
  }
}

.p-top-banner {
  background-color: #f5f5f5;
  padding: 120px 40px;
}

@media (max-width: 767px) {
  .p-top-banner {
    padding: 80px 15px;
    min-width: initial;
    width: 100%;
  }
}

.p-top-banner > .wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.p-top-banner > .wrapper > .box {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

@media (max-width: 1023px) {
  .p-top-banner > .wrapper > .box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .box {
    margin-bottom: 25px;
  }
}

.p-top-banner > .wrapper > .box > .banner {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: #fff;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 1023px) {
  .p-top-banner > .wrapper > .box > .banner {
    width: 100%;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
}

.p-top-banner > .wrapper > .box > .banner > .figure {
  position: relative;
  width: 53%;
}

@media (max-width: 1023px) {
  .p-top-banner > .wrapper > .box > .banner > .figure {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .box > .banner > .figure {
    width: 100%;
  }
}

.p-top-banner > .wrapper > .box > .banner > .figure .title {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 20px;
  line-height: 1.6;
}

.p-top-banner > .wrapper > .box > .banner:nth-child(2) > .figure .title {
  top: 30px;
}

@media (max-width: 1160px) {
  .p-top-banner > .wrapper > .box > .banner > .figure .title {
    top: 12px;
  }
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .box > .banner > .figure .title {
    top: 7%;
  }
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .box > .banner:nth-child(2) > .figure .title {
    top: 15%;
  }
}

.p-top-banner > .wrapper > .box > .banner > .figure .title .text {
  display: inline;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid #687277;
}

@media (max-width: 1160px) {
  .p-top-banner > .wrapper > .box > .banner > .figure .title .text {
    font-size: 1.1rem;
  }
}

@media (max-width: 1023px) {
  .p-top-banner > .wrapper > .box > .banner > .figure .title .text {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .box > .banner > .figure .title .text {
    font-size: 3.5vw;
  }
}

.p-top-banner > .wrapper > .box > .banner > .text {
  font-size: 1.4rem;
  width: 47%;
  height: 100%;
  padding: 0 35px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-image: url("../img/common/icon-arrow-01.svg");
  background-position: 90% 90%;
  background-repeat: no-repeat;
}

@media (max-width: 1160px) {
  .p-top-banner > .wrapper > .box > .banner > .text {
    padding: 0 20px;
    font-size: 1.3rem;
  }
}

@media (max-width: 1023px) {
  .p-top-banner > .wrapper > .box > .banner > .text {
    width: calc(100% - 250px);
    padding: 0 35px;
    font-size: 1.4rem;
    background-position: calc(100% - 15px) calc(100% - 15px);
  }
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .box > .banner > .text {
    width: 100%;
    padding: 0 15px 40px;
    height: auto;
  }
}

.p-top-banner > .wrapper > .box > .banner:hover {
  opacity: 0.6;
}

.p-top-banner > .wrapper > .list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .p-top-banner > .wrapper > .list {
    gap: 16px;
  }
}

.p-top-banner > .wrapper > .list > .item {
  text-align: center;
}

.p-top-banner > .wrapper > .list > .item > .link {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.p-top-banner > .wrapper > .list > .item > .link:hover {
  opacity: 0.6;
}

.p-top-banner > .wrapper > .list > .item > .link > .image {
  width: auto;
  max-width: 100%;
}

.c-heading-topLv01 {
  padding-bottom: 35px;
  text-align: center;
  position: relative;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .c-heading-topLv01 {
    padding-bottom: 25px;
  }
}

.c-heading-topLv01 > .jp {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-heading-topLv01 > .jp {
    font-size: 3rem;
  }
}

/* .c-heading-topLv01 > .jp {
   display: block;
   font-size: 1.8rem;
   font-weight: bold;
 }

 @media (max-width: 767px) {
   .c-heading-topLv01 > .jp {
     font-size: 1.2rem;
   }
 } */

.c-heading-topLv01::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #00a0e9;
}

.c-heading-topLv01.-left {
  text-align: left;
}

@media (max-width: 767px) {
  .c-heading-topLv01.-left {
    text-align: center;
  }
}

.c-heading-topLv01.-left::after {
  left: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media (max-width: 767px) {
  .c-heading-topLv01.-left::after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media (max-width: 767px) {
  .c-heading-topLv02 {
    text-align: center;
  }
}

.c-heading-topLv02::after {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  background-color: #00a0e9;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .c-heading-topLv02::after {
    margin-top: 30px;
    margin-inline: auto;
  }
}

.c-heading-topLv02 .jp {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  color: #333333;
  line-height: 1.45;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .c-heading-topLv02 .jp {
    font-size: 3.2rem;
  }
}

.c-heading-topLv02 .en {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #00a0e9;
  line-height: 1.5;
}

.c-heading-about01 .en {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #00a0e9;
  line-height: 1.5;
  position: relative;
}

@media (max-width: 767px) {
  .c-heading-about01 .en {
    text-align: center;
  }
}

.c-heading-about01 .en::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #00a0e9;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .c-heading-about01 .en::after {
    margin-top: 30px;
    margin-inline: auto;
  }
}

.c-heading-about01 .jp {
  display: block;
  font-size: 4.8rem;
  margin-top: 40px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .c-heading-about01 .jp {
    font-size: 2.4rem;
    margin-top: 30px;
    text-align: center;
  }
}

.c-heading-pages01 {
  text-align: center;
  position: relative;
}

.c-heading-pages01 .small {
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .c-heading-pages01 .small {
    font-size: 2rem;
  }
}

.c-heading-pages01 .large {
  display: block;
  font-size: 4rem;
}

@media (max-width: 767px) {
  .c-heading-pages01 .large {
    font-size: 3.2rem;
  }
}

.c-heading-pages01::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #00a0e9;
  margin-top: 40px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .c-heading-pages01::after {
    margin-top: 30px;
  }
}

.c-heading-pages02 {
  font-size: 2.6rem;
  font-weight: bold;
  position: relative;
  border-bottom: 3px solid #d6d6d6;
  line-height: 1.423;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .c-heading-pages02 {
    font-size: 2.2rem;
    padding-bottom: 10px;
    margin-bottom: 25px;
  }
}

.c-heading-pages02::after {
  content: "";
  display: block;
  bottom: -3px;
  left: 0;
  width: 72px;
  height: 3px;
  background-color: #00a0e9;
  position: absolute;
}

@media (max-width: 767px) {
  .c-heading-pages02::after {
    width: 40px;
  }
}

.c-heading-pages03 {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  gap: 12px;
}

@media (max-width: 767px) {
  .c-heading-pages03 {
    font-size: 1.6rem;
  }
}

.c-heading-pages03::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 4px;
  height: 26px;
  margin-top: 1px;
  background-color: #00a0e9;
}

.c-heading-pages03 + .c-list {
  margin-top: 16px;
}

.c-pages-lead {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.c-pages-lead > span {
  background-color: #00a0e9;
  padding-inline: 8px;
  color: #fff;
  font-size: clamp(2.8rem, calc(40 / 1440 * 100vw), 4rem);
  line-height: 1.8;
  font-weight: bold;
}

@media (max-width: 767px) {
  .c-pages-lead > span {
    font-size: clamp(1rem, calc(20 / 375 * 100vw), 2rem);
  }
}

.c-pages-lead-section {
  padding: 0 40px 120px;
}

@media (max-width: 767px) {
  .c-pages-lead-section {
    padding: 0 15px 80px;
  }
}

.c-pages-lead-section > .wrapper {
  text-align: center;
}

.c-pages-lead-section > .wrapper > .text {
  margin-top: 24px;
  font-size: 1.6rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .c-pages-lead-section > .wrapper > .text {
    margin-top: 16px;
    font-size: 1.4rem;
    text-align: left;
  }
}

.c-pages-section {
  padding: 120px 40px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .c-pages-section {
    padding: 80px 15px;
  }
}

.c-pages-section:nth-of-type(odd) {
  background-color: #eef4f8;
}

.c-pages-section > .wrapper {
  max-width: 1200px;
  margin-inline: auto;
}

.c-pages-section > .wrapper > .title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .c-pages-section > .wrapper > .title {
    margin-bottom: 30px;
  }
}

.c-pages-section > .wrapper > .text {
  text-align: center;
  margin-top: 40px;
  line-height: 2;
}

@media (max-width: 767px) {
  .c-pages-section > .wrapper > .text {
    margin-top: 30px;
    font-size: 1.4rem;
    text-align: left;
  }
}

.c-pages-section > .wrapper .text + .text {
  margin-top: 1.5em;
}

@media (max-width: 767px) {
  .c-pages-section > .wrapper .text + .text {
    margin-top: 1em;
  }
}

.c-pages-section > .wrapper .figure img {
  height: auto;
}

.c-pages-2column > .wrapper {
  display: grid;
  grid-template-columns: 427fr 680fr;
  column-gap: 48px;
}

@media (max-width: 767px) {
  .c-pages-2column > .wrapper {
    display: block;
  }
}

.c-pages-2column > .wrapper > .center {
  grid-column: 1 / 3;
}

.c-pages-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (max-width: 767px) {
  .c-pages-box {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.c-pages-box > .list {
  background-color: #fff;
  padding: 24px;
}

@media (max-width: 767px) {
  .c-pages-box > .list {
    padding: 20px;
  }
}

.c-pages-box > .list > .title {
  color: #2372a7;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.444;
}

@media (max-width: 767px) {
  .c-pages-box > .list > .title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}

.c-pages-box > .list > .data {
  font-size: 1.4rem;
  color: #555;
}

/* top company */
.p-top-company {
  padding: 120px 40px;
  overflow: hidden;
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 990px) {
  .p-top-company {
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .p-top-company {
    padding: 87px 15px 80px;
  }
}

.p-top-company > .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 472px 648fr;
  column-gap: 80px;
  grid-template-areas: "title figure" "text figure" "list figure" "btn figure";
  position: relative;
}

@media (max-width: 990px) {
  .p-top-company > .wrapper {
    display: block;
  }
}

@media (max-width: 990px) {
  .p-top-company .title {
    text-align: center;
  }

  .p-top-company .title::after {
    margin-inline: auto;
  }
}

.p-top-company .figure {
  grid-area: figure;
  width: 768px;
  height: auto;
}

@media (max-width: 990px) {
  .p-top-company .figure {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .p-top-company .figure {
    margin-top: 24px;
  }
}

.p-top-company .figure .image {
  height: auto;
}

.p-top-company .text {
  grid-area: text;
  line-height: 2;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-top-company .text {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}

.p-top-company .list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 15px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-top-company .list {
    margin-top: 40px;
  }
}

.p-top-company .list > .item > .link {
  font-weight: bold;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.5;
  gap: 10px;
}

.p-top-company .list > .item > .link::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 24px;
  background-image: url("../img/common/icon-arrow-01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

.p-top-company .list > .item > .link:hover {
  opacity: 0.6;
}

.p-top-company .btn {
  grid-area: btn;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-top-company .btn {
    margin-top: 24px;
  }
}

.p-top-company .btn .link {
  margin-left: 0;
}

@media (max-width: 990px) {
  .p-top-company .btn .link {
    margin-left: auto;
  }
}

.l-fixed-visual {
  position: fixed;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  z-index: -1;
  background-color: #000;
}

@media (max-width: 767px) {
  .l-fixed-visual {
    position: fixed;
    min-height: auto;
  }
}

.l-fixed-visual > .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1.4s ease;
  transition: 1.4s ease;
}

.l-fixed-visual > .photo:first-child {
  visibility: visible;
  opacity: 1;
}

.l-fixed-visual > .photo.is-show {
  visibility: visible;
  opacity: 1;
}

.l-fixed-visual > .photo > .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-fixed-visual > .dark {
  background-color: #000;
  position: fixed;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  opacity: 0;
}

/* top news */
.p-top-news {
  background-color: #fff;
  padding: 120px 40px;
}

@media (max-width: 767px) {
  .p-top-news {
    padding: 80px 15px;
  }
}

.p-top-news .wrapper {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.p-top-news .title {
  text-align: center;
}

.p-top-news .title::after {
  margin-inline: auto;
}

.p-top-news .news {
  margin: unset;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-top-news .news {
    margin-top: 30px;
  }
}

.p-top-news .news > .item > .text {
  width: calc(100% - 280px);
}

@media (max-width: 767px) {
  .p-top-news .news > .item > .text {
    width: 100%;
  }
}

.p-top-news .btn {
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-top-news .btn {
    margin-top: 24px;
  }
}

/* top product */
.p-top-product {
  padding: 120px 40px;
  overflow: hidden;
  background: linear-gradient(124deg, #eef4f8 0%, #eef4f8 50%, #fff 50%, #fff 100%);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: clamp(-425px, calc(-294px - ((1300px - 100vw) / (1300 - 768)) * 195), -230px);
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 990px) {
  .p-top-product {
    background: none;
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .p-top-product {
    padding: 87px 15px 80px;
  }
}

.p-top-product > .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 648fr 472px;
  column-gap: 80px;
  grid-template-areas: "figure title" "figure lead" "figure text" "figure btn";
  position: relative;
}

@media (max-width: 990px) {
  .p-top-product > .wrapper {
    display: block;
  }
}

.p-top-product .title {
  grid-area: title;
  padding-top: 60px;
}

@media (max-width: 990px) {
  .p-top-product .title {
    text-align: center;
    padding-top: 0;
  }

  .p-top-product .title::after {
    margin-inline: auto;
  }
}

.p-top-product .lead {
  grid-area: lead;
  font-size: 2.8rem;
  line-height: 1.464;
  font-weight: bold;
  margin-top: 40px;
}

@media (max-width: 990px) {
  .p-top-product .lead {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .p-top-product .lead {
    font-size: 1.8rem;
    margin-top: 30px;
  }
}

.p-top-product .figure {
  grid-area: figure;
  position: absolute;
  right: 0;
  width: 1005px;
  height: auto;
}

@media (max-width: 990px) {
  .p-top-product .figure {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .p-top-product .figure {
    margin-top: 24px;
  }
}

.p-top-product .figure .image {
  height: auto;
}

.p-top-product .text {
  grid-area: text;
  line-height: 2;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-top-product .text {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}
.p-top-product .btn {
  grid-area: btn;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-top-product .btn {
    margin-top: 24px;
  }
}

.p-top-product .btn .link {
  margin-left: 0;
}

@media (max-width: 990px) {
  .p-top-product .btn .link {
    margin-left: auto;
  }
}

.p-link-product {
  overflow: hidden;
  display: block;
  width: 100%;
  height: auto;
  background-color: #000;
  position: relative;
}

@media (max-width: 767px) {
  .p-link-product {
    height: auto;
    overflow: visible;
    background-color: transparent;
  }
}

.p-link-product > .figure {
  position: relative;
  opacity: 1;
}

.p-link-product > .figure > .image {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.p-link-product > .figure > .arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: block;
  width: 55px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
}

@media (max-width: 1180px) {
  .p-link-product > .figure > .arrow {
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 865px) {
  .p-link-product > .figure > .arrow {
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 767px) {
  .p-link-product > .figure > .arrow {
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
  }
}

.p-link-product > .figure > .arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(45deg) translate(-88%, 20%);
  transform: rotate(45deg) translate(-88%, 20%);
}

@media (max-width: 1180px) {
  .p-link-product > .figure > .arrow::before {
    width: 12px;
    height: 12px;
    top: 48%;
    left: 49%;
  }
}

@media (max-width: 865px) {
  .p-link-product > .figure > .arrow::before {
    width: 10px;
    height: 10px;
    top: 50%;
    left: 50%;
  }
}

@media (max-width: 767px) {
  .p-link-product > .figure > .arrow::before {
    width: 9px;
    height: 9px;
    -webkit-transform: rotate(45deg) translate(-76%, 9%);
    transform: rotate(45deg) translate(-76%, 9%);
  }
}

.p-link-product > .figure > .new_window {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: block;
  width: 55px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
}

@media (max-width: 1180px) {
  .p-link-product > .figure > .new_window {
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 865px) {
  .p-link-product > .figure > .new_window {
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 767px) {
  .p-link-product > .figure > .new_window {
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
  }
}

.p-link-product > .figure > .new_window::before {
  content: url("../img/icon/icon_white-window.svg");
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  top: 25%;
  left: 35%;
}

@media (max-width: 1180px) {
  .p-link-product > .figure > .new_window::before {
    top: 11%;
    left: 29%;
  }
}

@media (max-width: 865px) {
  .p-link-product > .figure > .new_window::before {
    top: 2%;
    left: 23%;
  }
}

@media (max-width: 767px) {
  .p-link-product > .figure > .new_window::before {
    top: 10%;
    left: 30%;
  }
}

.p-link-product > .opener {
  position: absolute;
  padding: 0 40px;
  transition: 0.6s ease;
  top: 82%;
}

@media (max-width: 1180px) {
  .p-link-product > .opener {
    padding: 0 25px;
    top: 85%;
  }
}

@media (max-width: 865px) {
  .p-link-product > .opener {
    padding: 0 25px;
    top: 84%;
  }
}

@media (max-width: 767px) {
  .p-link-product > .opener {
    position: relative;
    top: 0;
    height: auto;
    padding: 0;
  }
}

.p-link-product > .opener > .title {
  width: calc(100% - 18px);
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 1180px) {
  .p-link-product > .opener > .title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 865px) {
  .p-link-product > .opener > .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .p-link-product > .opener > .title {
    position: absolute;
    top: -53px;
    left: 18px;
    font-size: 1.6rem;
  }
}

.p-link-product > .opener > .summary {
  width: 100%;
  color: #fff;
}

@media (max-width: 1180px) {
  .p-link-product > .opener > .summary {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media (max-width: 865px) {
  .p-link-product > .opener > .summary {
    font-size: 1.3rem;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .p-link-product > .opener > .summary {
    color: #333;
    font-size: 1.3rem;
    margin: 10px 0 35px 0;
    line-height: 2;
  }
}

.p-link-product:hover > .opener {
  top: 50%;
  transform: translate(0, -50%);
}

@media (max-width: 767px) {
  .p-link-product:hover > .opener {
    top: inherit;
    transform: none;
  }
}

.p-link-product:hover > .figure > .image {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .p-link-product:hover > .figure > .image {
    opacity: 1;
  }
}

.p-about-natural {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .p-about-natural {
    margin-bottom: 50px;
  }
}

.p-about-natural > .title {
  text-align: center;
  font-size: 4.8rem;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .p-about-natural > .title {
    font-size: 3.6rem;
    margin-bottom: 35px;
  }
}

.p-about-natural > .text {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .p-about-natural > .text {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/* top service */
.p-top-service {
  padding: 120px 40px;
  overflow: hidden;
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 990px) {
  .p-top-service {
    background: none;
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .p-top-service {
    padding: 87px 15px 80px;
  }
}

.p-top-service > .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 472px 648fr;
  column-gap: 80px;
  grid-template-areas: "title figure" "lead figure" "text figure" "btn figure";
  position: relative;
}

@media (max-width: 990px) {
  .p-top-service > .wrapper {
    display: block;
  }
}

@media (max-width: 990px) {
  .p-top-service .title {
    text-align: center;
  }

  .p-top-service .title::after {
    margin-inline: auto;
  }
}

.p-top-service .lead {
  grid-area: lead;
  font-size: 2.8rem;
  line-height: 1.464;
  font-weight: bold;
  margin-top: 40px;
}

@media (max-width: 990px) {
  .p-top-service .lead {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .p-top-service .lead {
    font-size: min(calc(18 / 375 * 100vw), 1.8rem);
    margin-top: 30px;
  }
}

.p-top-service .figure {
  grid-area: figure;
  width: 768px;
  height: auto;
}

@media (max-width: 990px) {
  .p-top-service .figure {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .p-top-service .figure {
    margin-top: 24px;
  }
}

.p-top-service .figure .image {
  height: auto;
}

.p-top-service .text {
  grid-area: text;
  line-height: 2;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-top-service .text {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}
.p-top-service .btn {
  grid-area: btn;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-top-service .btn {
    margin-top: 24px;
  }
}

.p-top-service .btn .link {
  margin-left: 0;
}

@media (max-width: 990px) {
  .p-top-service .btn .link {
    margin-left: auto;
  }
}

/* top randd */
.p-top-randd {
  padding: 120px 40px 179px;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  border-bottom: 1px solid #ebebeb;
}

@media (max-width: 990px) {
  .p-top-randd {
    background: none;
    background-color: #fff;
  }
}

@media (max-width: 767px) {
  .p-top-randd {
    padding: 87px 15px 80px;
  }
}

.p-top-randd::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(90deg, #e2e2e280 1px, transparent 1px), linear-gradient(#e2e2e280 1px, transparent 1px);
  background-position: right 1px top 20px;
  background-size: 21px 21px;
  background-color: #fff;
  z-index: 0;
}

@media (max-width: 1440px) {
  .p-top-randd::before {
    width: calc(100% - (472px + 80px + 48px + 40px));
  }
}

@media (max-width: 990px) {
  .p-top-randd::before {
    display: none;
  }
}

.p-top-randd > .wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 648fr 472px;
  column-gap: 80px;
  grid-template-areas: "figure title" "figure lead" "figure text" "figure btn";
  position: relative;
}

@media (max-width: 990px) {
  .p-top-randd > .wrapper {
    display: block;
  }
}

.p-top-randd .title {
  grid-area: title;
  padding-top: 60px;
}

@media (max-width: 990px) {
  .p-top-randd .title {
    text-align: center;
    padding-top: 0;
  }

  .p-top-randd .title::after {
    margin-inline: auto;
  }
}

.p-top-randd .lead {
  grid-area: lead;
  font-size: 2.8rem;
  line-height: 1.464;
  font-weight: bold;
  margin-top: 40px;
}

@media (max-width: 990px) {
  .p-top-randd .lead {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .p-top-randd .lead {
    font-size: 1.8rem;
    margin-top: 30px;
  }
}

.p-top-randd .figure {
  grid-area: figure;
  position: absolute;
  right: 0;
  width: 768px;
  height: auto;
}

@media (max-width: 990px) {
  .p-top-randd .figure {
    position: relative;
    margin-inline: auto;
    margin-top: 24px;
    width: auto;
    background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/top/bg-top-randd-01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 94.6%;
  }
}

.p-top-randd .figure .image {
  max-width: 440px;
  height: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 990px) {
  .p-top-randd .figure .image {
    max-width: calc(198vw / 375 * 100);
    position: relative;
    z-index: 1;
  }
}

.p-top-randd .figure .image:nth-of-type(2) {
  margin-top: -186px;
  margin-left: 328px;
}

@media (max-width: 990px) {
  .p-top-randd .figure .image:nth-of-type(2) {
    margin-top: calc(-84vw / 375 * 100);
    margin-left: auto;
    display: block;
  }
}

.p-top-randd .figure .image:nth-of-type(3) {
  margin-top: -141px;
  margin-left: 165px;
}

@media (max-width: 990px) {
  .p-top-randd .figure .image:nth-of-type(3) {
    margin-top: calc(-64vw / 375 * 100);
    margin-left: calc(35vw / 375 * 100);
  }
}

/* .p-top-randd .figure {
  grid-area: figure;
  position: absolute;
  right: 0;
  width: 768px;
  height: auto;
}

@media (max-width: 990px) {
  .p-top-randd .figure {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .p-top-randd .figure {
    margin-top: 24px;
  }
}

.p-top-randd .figure > .image {
  display: block;
  height: auto;
}

@media (max-width: 990px) {
  .p-top-randd .figure > .image {
    margin: -13.33vw -25px;
    width: min(870px, calc(100% + 50px));
  }
} */

.p-top-randd .text {
  grid-area: text;
  line-height: 2;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-top-randd .text {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}
.p-top-randd .btn {
  grid-area: btn;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-top-randd .btn {
    margin-top: 24px;
  }
}

.p-top-randd .btn .link {
  margin-left: 0;
}

@media (max-width: 990px) {
  .p-top-randd .btn .link {
    margin-left: auto;
  }
}

/* about mission */
.p-about-mission {
  padding-bottom: 160px;
  background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/about/bg-about-01.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: min(100%, 1008px);
  padding-inline: 40px;
}

@media (max-width: 767px) {
  .p-about-mission {
    padding-inline: 15px;
    padding-bottom: 115px;
  }
}

.p-about-mission .wrapper {
  max-width: 1200px;
  margin-inline: auto;
}

.p-about-mission .figure {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-about-mission .figure {
    margin-top: 0;
    max-width: 263px;
    margin-inline: auto;
  }
}

.p-about-mission .figure img {
  width: auto;
  max-width: 100%;
}

.p-about-mission .text {
  font-size: 1.8rem;
  line-height: 2.5;
  margin-top: 35px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-about-mission .text {
    text-align: left;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.p-about-mission .text:nth-of-type(1) {
  margin-top: 85px;
}

@media (max-width: 767px) {
  .p-about-mission .text:nth-of-type(1) {
    margin-top: 55px;
  }
}

.p-about-figure {
  height: 640px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .p-about-figure {
    height: 375px;
  }
}

.p-about-figure img {
  object-fit: cover;
}

/* about business */
.p-about-business {
  padding: 120px 40px;
  background-color: #eef4f8;
}

@media (max-width: 767px) {
  .p-about-business {
    padding: 80px 15px;
  }
}

.p-about-business > .wrapper {
  max-width: 1200px;
  margin-inline: auto;
}

.p-about-business > .wrapper .title {
  text-align: center;
}

.p-about-business > .wrapper .title .en::after {
  margin-inline: auto;
}

.p-about-business > .wrapper > .text {
  line-height: 2;
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-about-business > .wrapper > .text {
    margin-top: 24px;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.75;
  }
}

.p-about-business-columns {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (max-width: 767px) {
  .p-about-business-columns {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.p-about-business-columns > .item {
  background-color: #fff;
  padding: 40px min(80px, calc(80 / 1440 * 100vw)) 80px;
  row-gap: 48px;
  display: grid;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item {
    padding: 24px 20px;
    row-gap: 24px;
  }
}

.p-about-business-columns > .item.--column-2 {
  grid-column: span 2;
  grid-template-areas: "title title" "text figure" "btn figure";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item.--column-2 {
    grid-column: 1;
    grid-template-areas: "title" "text" "figure" "btn";
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.p-about-business-columns > .item.--column-1 {
  grid-template-areas: "title" "text" "btn";
  grid-template-rows: subgrid;
  grid-row: span 4;
}

.p-about-business-columns > .item > .sub-title {
  grid-area: title;
}

.p-about-business-columns > .item > .sub-title .jp {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item > .sub-title .jp {
    font-size: 2rem;
    margin-top: 24px;
  }
}

.p-about-business-columns > .item > .sub-title .en {
  display: block;
  font-size: min(9.6rem, calc(96 / 1440 * 100vw));
  font-weight: bold;
  color: rgba(0, 160, 233, 0.07);
  position: relative;
  text-align: center;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item > .sub-title .en {
    font-size: min(6.4rem, calc(54 / 375 * 100vw));
  }
}

.p-about-business-columns > .item > .sub-title .en::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .p-about-business-columns > .item > .sub-title .en::after {
    width: 64px;
    height: 64px;
    bottom: unset;
    top: 36px;
  }
}

.p-about-business-columns > .item > .sub-title.--product .en::after {
  background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/about/icon-about-product-01.svg);
}

.p-about-business-columns > .item > .sub-title.--service .en::after {
  background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/about/icon-about-service-01.svg);
}

.p-about-business-columns > .item > .sub-title.--randd .en::after {
  background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/about/icon-about-randd-01.svg);
}

.p-about-business-columns > .item > .text {
  grid-area: text;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item > .text {
    font-size: 1.4rem;
  }
}

.p-about-business-columns > .item > .figure {
  grid-area: figure;
}

.p-about-business-columns > .item > .figure img {
  height: auto;
}

.p-about-business-columns > .item > .btn {
  grid-area: btn;
}

.p-about-business-columns > .item > .btn .link {
  margin-left: 0;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item > .btn .link {
    margin-left: auto;
  }
}

.p-about-business-columns > .item.--column-1 > .btn .link {
  width: 240px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .p-about-business-columns > .item.--column-1 > .btn .link {
    width: 200px;
  }
}

/* about value */
.p-about-value {
  padding: 120px 40px;
}

@media (max-width: 767px) {
  .p-about-value {
    padding: 80px 15px;
  }
}

.p-about-value > .wrapper {
  padding: 104px min(104px, calc(104 / 1440 * 100vw)) calc(120px + 24px);
  outline: 1px solid #00a0e9;
  background-color: #eef4f8;
  outline-offset: -24px;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  z-index: -1;
}

@media (max-width: 767px) {
  .p-about-value > .wrapper {
    padding: 45px 35px 104px;
    outline-offset: -17px;
  }
}

.p-about-value > .wrapper > .title {
  text-align: center;
}

.p-about-value > .wrapper > .title .jp {
  max-width: 639px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-about-value > .wrapper > .title .jp {
    max-width: 255px;
  }
}

.p-about-value > .wrapper > .title .jp img {
  height: auto;
}

.p-about-value > .wrapper > .title .en::after {
  margin-inline: auto;
}

.p-about-value > .wrapper > .text {
  line-height: 2;
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-about-value > .wrapper > .text {
    margin-top: 24px;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.75;
  }
}

.p-about-value-list {
  border-top: 1px solid #00a0e9;
  margin-top: 96px;
  padding-top: 80px;
}

@media (max-width: 767px) {
  .p-about-value-list {
    margin-top: 56px;
    padding-top: 40px;
  }
}

.p-about-value-list > .item {
  display: grid;
  grid-template-columns: clamp(218px, calc(300 / 1440 * 100vw), 300px) 1fr;
  column-gap: min(116px, calc(116 / 1440 * 100vw));
}

@media (max-width: 990px) {
  .p-about-value-list > .item {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }
}

.p-about-value-list > .item:not(:first-child) {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .p-about-value-list > .item:not(:first-child) {
    margin-top: 64px;
  }
}

.p-about-value-list > .item > .title {
  font-size: 2.4rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .p-about-value-list > .item > .title {
    font-size: 2rem;
    text-align: center;
  }
}

.p-about-value-list > .item > .data {
  font-size: 1.6rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-about-value-list > .item > .data {
    font-size: 1.4rem;
  }
}

.p-about-value-list > .item > .data p:not(:first-child) {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-about-value-list > .item > .data p:not(:first-child) {
    margin-top: 20px;
  }
}

.p-about-value > .figure {
  background-image: url("https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/about/pict-value-02_pc.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top 40px;
  margin-top: -64px;
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-about-value > .figure {
    background-image: url("https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/about/pict-value-02_sp.jpg");
    background-position: center top calc(20 / 375 * 100vw);
    margin-top: -57px;
    width: 100%;
    aspect-ratio: 345 / 245;
  }
}

.p-about-value > .figure .image {
  max-width: min(640px, calc(640 / 1280 * 100vw));
  margin-inline: auto;
  display: block;
}

@media (max-width: 767px) {
  .p-about-value > .figure .image {
    max-width: calc(285 / 375 * 100vw);
  }
}

.p-about-value > .figure img {
  height: auto;
}

.p-about-concept {
  width: 100%;
  background: url("../img/about/bg_about01.png") center center no-repeat;
  background-size: cover;
  height: 876px;
  padding: 0;
  min-height: 876px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .p-about-concept {
    min-width: 100%;
    height: 125vw;
    min-height: 125vw;
  }
}

.p-about-concept > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media all and (-ms-high-contrast: none) {
  .p-about-concept > .container {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .p-about-concept > .container {
    width: 100%;
    padding: 0 15px;
  }
}

.p-about-concept > .container > .image {
  width: 640px;
}

@media (max-width: 767px) {
  .p-about-concept > .container > .image {
    width: 100%;
  }
}

/* product */
.p-product-homeskun > .wrapper > .lead {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-product-homeskun > .wrapper > .lead {
    font-size: 2.4rem;
    margin-top: 30px;
  }
}

.p-product-homeskun > .wrapper > .text {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .p-product-homeskun > .wrapper > .text {
    text-align: left;
    margin-top: 24px;
  }
}

.p-product-homeskun > .wrapper > .text > span {
  display: inline-block;
}

@media (max-width: 767px) {
  .p-product-homeskun > .wrapper > .text > span {
    display: inline;
  }
}

.p-product-homeskun > .wrapper > .figure {
  margin-top: 48px;
  max-width: 750px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-product-homeskun > .wrapper > .figure {
    margin-top: 40px;
  }
}

.p-product-homeskun > .wrapper > .figure img {
  height: auto;
}

.p-product-homeskun > .wrapper > .btn {
  margin-top: 40px;
}

.p-product-background {
  background-color: #eef4f8;
  max-width: 1200px;
  margin-top: 80px;
  padding: 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr min(392px, calc(392 / 1440 * 100vw));
  column-gap: 48px;
  align-items: center;
  margin-inline: auto;
}

.p-product-background.--background {
  background-color: #dee9f1;
  grid-template-columns: 1fr min(288px, calc(288 / 1440 * 100vw));
  column-gap: min(160px, calc(160 / 1440 * 100vw));
}

@media (max-width: 990px) {
  .p-product-background {
    display: block;
    padding: 28px 20px;
  }
}

@media (max-width: 767px) {
  .p-product-background {
    margin-top: 64px;
  }
}

.p-product-background.--background > .figure {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: -20px;
  width: min(500px, calc(500 / 1440 * 100vw));
}

@media (max-width: 990px) {
  .p-product-background > .figure {
    position: static;
    width: 100%;
    max-width: 392px;
    margin-inline: auto;
    margin-top: 24px;
  }
}

@media (max-width: 990px) {
  .p-product-background.--background > .figure {
    position: static;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    margin-top: 24px;
  }
}

.p-product-background > .figure img {
  height: auto;
}

.p-product-background.--background::before {
  content: "";
  position: absolute;
  width: min(368px, 30.67%);
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/product/bg-product-01.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 990px) {
  .p-product-background.--background::before {
    display: none;
  }
}

.p-product-background > .content > .sub-title {
  color: #00a0e9;
  font-size: 2.2rem;
  font-weight: bold;
  display: flex;
  gap: 12px;
}

@media (max-width: 767px) {
  .p-product-background > .content > .sub-title {
    font-size: 1.8rem;
  }
}

.p-product-background > .content > .sub-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 32px;
  margin-top: 2px;
  background-color: #00a0e9;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .p-product-background > .content > .sub-title::before {
    height: 26px;
  }
}

.p-product-background > .content > .lead {
  font-size: min(2.8rem, min(calc(28 / 1190 * 100vw), 2.8rem));
  font-weight: bold;
  line-height: 1.5;
  margin-top: 40px;
}

@media (max-width: 990px) {
  .p-product-background > .content > .lead {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .p-product-background > .content > .lead {
    font-size: 2.4rem;
    margin-top: 16px;
  }
}

.p-product-background > .content > .text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-product-background > .content > .text {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}

.p-product-background > .content > .text + .text {
  margin-top: 35px;
}

@media (max-width: 767px) {
  .p-product-background > .content > .text + .text {
    margin-top: 18px;
  }
}

/* product system */

.p-product-system > .wrapper > .left > .lead {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .p-product-system > .wrapper > .left > .lead {
    font-size: 2.4rem;
    margin-top: 30px;
    text-align: center;
  }
}

.p-product-system > .wrapper > .left > .text {
  line-height: 2;
  margin-top: 24px;
}

@media (max-width: 990px) {
  .p-product-system > .wrapper > .left > .text {
    font-size: 1.4rem;
  }
}

.p-product-system > .wrapper > .figure {
  margin-inline: auto;
}

@media (max-width: 990px) {
  .p-product-system > .wrapper > .figure {
    margin-top: 24px;
  }
}

/* product lineup */
.p-product-lineup {
  padding-top: 120px;
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-product-lineup {
    padding-top: 64px;
  }
}

.p-product-lineup > .sub-title {
  font-size: 2.6rem;
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
  border-bottom: 3px solid #ebebeb;
  position: relative;
}

@media (max-width: 767px) {
  .p-product-lineup > .sub-title {
    font-size: 2.2rem;
    padding-bottom: 12px;
  }
}

.p-product-lineup > .btn {
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-product-lineup > .btn {
    margin-top: 24px;
  }
}

.p-product-lineup .sub-title::after {
  content: "";
  display: block;
  bottom: -3px;
  left: 0;
  width: 72px;
  height: 3px;
  background-color: #00a0e9;
  position: absolute;
}

.p-product-lineup-link-lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: min(48px, calc(48 / 900 * 100vw));
}

@media (max-width: 767px) {
  .p-product-lineup-link-lists {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.p-product-lineup-link-lists > .item > .link {
  display: block;
  position: relative;
  transition: 0.6s ease;
}

.p-product-lineup-link-lists > .item > .link:hover {
  opacity: 0.6;
}

.p-product-lineup-link-lists > .item > .link::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(0deg, #000000, transparent);
  opacity: 0.5;
}

.p-product-lineup-link-lists > .item > .link img {
  height: auto;
}

.p-product-lineup-link-lists > .item > .link > .text {
  color: #fff;
  position: absolute;
  bottom: min(32px, calc(32 / 900 * 100vw));
  left: min(32px, calc(32 / 900 * 100vw));
  z-index: 1;
  font-weight: bold;
}

@media (max-width: 767px) {
  .p-product-lineup-link-lists > .item > .link > .text {
    bottom: 16px;
    left: 16px;
  }
}

.p-product-lineup-link-lists > .item > .link .image {
  display: block;
  width: min(48px, calc(48 / 900 * 100vw));
  height: min(48px, calc(48 / 900 * 100vw));
  position: absolute;
  bottom: min(32px, calc(32 / 900 * 100vw));
  right: min(32px, calc(32 / 900 * 100vw));
  z-index: 1;
}

@media (max-width: 767px) {
  .p-product-lineup-link-lists > .item > .link .image {
    width: 32px;
    height: 32px;
    bottom: 16px;
    right: 16px;
  }
}

.p-product-lineup-link-lists > .item > .link > .text > .small {
  font-size: min(1.6rem, calc(16 / 900 * 100vw));
  display: block;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .p-product-lineup-link-lists > .item > .link > .text > .small {
    font-size: 1.3rem;
  }
}

.p-product-lineup-link-lists > .item > .link > .text > .large {
  font-size: min(2.4rem, calc(24 / 900 * 100vw));
  display: block;
  line-height: 1.458;
}

@media (max-width: 767px) {
  .p-product-lineup-link-lists > .item > .link > .text > .large {
    font-size: 1.6rem;
  }
}

/* service dx */
.p-service-dx > .wrapper > .left > .sub-title {
  margin-top: 40px;
}

.p-service-dx > .wrapper > .left > .text {
  line-height: 2;
}

@media (max-width: 990px) {
  .p-service-dx > .wrapper > .left > .text {
    font-size: 1.4rem;
  }
}

.p-service-dx > .wrapper > .figure {
  margin-inline: auto;
}

@media (max-width: 990px) {
  .p-service-dx > .wrapper > .figure {
    margin-top: 24px;
  }
}

.p-service-practical-work-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: min(48px, calc(48 / 1100 * 100vw));
}

@media (max-width: 990px) {
  .p-service-practical-work-list {
    display: block;
  }
}

@media (max-width: 990px) {
  .p-service-practical-work-list > .item.item:not(:first-child) {
    margin-top: 24px;
  }
}

.p-service-practical-work-list > .item > .link {
  display: block;
  transition: 0.6s ease;
}

.p-service-practical-work-list > .item > .link:hover {
  opacity: 0.6;
}

.p-service-practical-work-list > .item > .link > .image {
  height: auto;
}

.p-service-practical-work-list > .item > .link > .text {
  font-size: min(1.8rem, calc(18 / 1100 * 100vw));
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  padding-left: min(25px, calc(25 / 1100 * 100vw));
  margin-top: 18px;
}

@media (max-width: 990px) {
  .p-service-practical-work-list > .item > .link > .text {
    font-size: 1.6rem;
    padding-left: 23px;
    margin-top: 10px;
  }
}

.p-service-practical-work-list > .item > .link > .text::before {
  content: "";
  position: absolute;
  width: min(15px, calc(15 / 1100 * 100vw));
  height: min(15px, calc(15 / 1100 * 100vw));
  top: min(7px, calc(7 / 1100 * 100vw));
  left: 0;
  background-image: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets//img/common/icon-arrow-01.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 990px) {
  .p-service-practical-work-list > .item > .link > .text::before {
    top: 5px;
    width: 15px;
    height: 15px;
  }
}

.p-service-practical-work-list > .item > .link > .text img {
  display: inline;
  width: auto;
  margin-top: min(2px, calc(2 / 1100 * 100vw));
  width: min(24px, calc(24 / 1100 * 100vw));
}

@media (max-width: 990px) {
  .p-service-practical-work-list > .item > .link > .text img {
    margin-top: 2px;
    width: 24px;
  }
}

.p-service-solution > .wrapper > .section {
  margin-top: 120px;
}

@media (max-width: 990px) {
  .p-service-solution > .wrapper > .section {
    margin-top: 80px;
  }
}

.p-service-solution > .wrapper > .section.-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: min(117px, calc(117 / 1200 * 100vw));
}

@media (max-width: 1190px) {
  .p-service-solution > .wrapper > .section.-grid {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 990px) {
  .p-service-solution > .wrapper > .section.-grid {
    display: block;
  }
}

.p-service-solution > .wrapper > .section.-grid > .title {
  grid-column: 1 / 3;
}

.p-service-solution > .wrapper > .section > .lists-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: min(104px, calc(104 / 1200 * 100vw));
  row-gap: min(56px, calc(56 / 1200 * 100vw));
  align-content: flex-start;
}

@media (max-width: 1190px) {
  .p-service-solution > .wrapper > .section > .lists-area {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 990px) {
  .p-service-solution > .wrapper > .section > .lists-area {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.p-service-solution > .wrapper > .section > .figure img {
  height: auto;
}

@media (max-width: 990px) {
  .p-service-solution > .wrapper > .section > .figure {
    margin-top: 40px;
  }
}

.p-service-solution > .wrapper > .section > .box {
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-service-solution > .wrapper > .section > .box {
    margin-top: 40px;
  }
}

.p-rd-the-study > .wrapper > .left > .btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-rd-the-study > .wrapper > .left > .btn {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .p-rd-the-study > .wrapper > .left > .text {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .p-rd-the-study > .wrapper > .figure {
    margin-top: 40px;
    margin-inline: auto;
  }
}

.p-rd-investigation > .wrapper {
  grid-template-columns: 680fr 427fr;
}

@media (max-width: 767px) {
  .p-rd-investigation > .wrapper {
    grid-template-columns: 1fr;
  }
}

.p-rd-investigation > .wrapper > .left {
  order: 2;
}
@media (max-width: 767px) {
  .p-rd-investigation > .wrapper > .left {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .p-rd-investigation > .wrapper > .left > .text {
    font-size: 1.4rem;
  }
}

.p-rd-investigation > .wrapper > .right {
  order: 1;
  margin-top: max(-40px, calc(-40 / 1440 * 100vw));
}
@media (max-width: 767px) {
  .p-rd-investigation > .wrapper > .right {
    margin-top: max(-32.5px, calc(-32.5 / 767 * 100vw));
  }
}

.p-rd-investigation > .wrapper > .left > .btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-rd-other > .wrapper > .left > .text {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .p-rd-investigation > .wrapper > .figure {
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .p-rd-other > .wrapper > .figure {
    margin-top: 24px;
  }
}

.p-rd-other > .btn {
  margin-top: 48px;
}

@media (max-width: 767px) {
  .p-rd-other > .btn {
    margin-top: 24px;
  }
  .p-rd-other > .btn > .link {
    width: 300px;
    max-width: 100%;
  }
}

.p-rd-lists {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 80px;
  border: 1px solid #d6d6d6;
  padding: 40px;
}

@media (max-width: 767px) {
  .p-rd-lists {
    margin-top: 40px;
    padding: 20px;
  }
}

.p-rd-lists > .item {
  display: grid;
  grid-template-columns: 168px 1fr;
  column-gap: 48px;
}

@media (max-width: 767px) {
  .p-rd-lists > .item {
    grid-template-columns: 1fr;
    font-size: 1.4rem;
  }
}

.p-rd-lists > .item:not(:first-child) {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .p-rd-lists > .item:not(:first-child) {
    border-top: 1px solid #d6d6d6;
    padding-top: 10px;
  }
}

.p-rd-lists > .item > .title {
  font-weight: bold;
}

.p-rd-lists > .item > .data {
  padding-left: 15px;
}

.p-large-display {
  position: relative;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  pointer-events: none;
  z-index: 10001;
}

.p-large-display.is-show {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.p-large-display.is-show .p-slide-box-large {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.p-slide-overlay {
  position: fixed;
  width: 100vw;
  height: 120vh;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
}

.p-slide-box-large {
  max-width: 960px;
  width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.p-slide-box {
  width: 300px;
  position: relative;
}

@media (max-width: 1179px) {
  .p-slide-box {
    width: 85%;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media (max-width: 767px) {
  .p-slide-box {
    width: 85%;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 994;
  }
}

.swiper-container {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.swiper-wrapper.is-hide {
  visibility: hidden;
  opacity: 0;
}

.swiper-slide {
  flex-shrink: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  cursor: pointer;
}

.swiper-button-prev {
  cursor: pointer;
  display: block;
  width: 25px;
  height: 60px;
  position: absolute;
  left: -13px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #aeaeae;
  color: #fff;
}

.swiper-button-prev:hover {
  background-color: #00a0e9;
}

.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 50%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.swiper-button-prev.is-large {
  width: 50px;
  height: 120px;
  left: -26px;
}

.swiper-button-prev.is-large::after {
  width: 12px;
  height: 12px;
}

.swiper-button-next {
  cursor: pointer;
  display: block;
  width: 25px;
  height: 60px;
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: #aeaeae;
  color: #fff;
}

.swiper-button-next:hover {
  background-color: #00a0e9;
}

.swiper-button-next::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 46%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.swiper-button-next.is-large {
  width: 50px;
  height: 120px;
  right: -26px;
}

.swiper-button-next.is-large::after {
  width: 12px;
  height: 12px;
}

.frm_fit {
  width: 100%;
}

/* 入力フォーム　送信ボタンのデザイン調整 */
.frm_buttons button {
  padding: 1em; /* ボタン内の余白 */
  margin: 2em 0em; /* ボタンの上下の余白 */
  background-color: #00a0e9; /* 背景の色 */
  border-radius: 5px; /* 角を丸く*/
  color: #fff; /* 文字の色*/
  font-size: 14px; /* 文字の大きさ */
  width: 30%; /* ボタンの横幅*/
  border: 0;
}

/* 入力フォーム　送信ボタンのデザイン調整 */
@media (max-width: 767px) {
  .frm_buttons button {
    width: 40%; /* ボタンの横幅*/
  }
}

.frm_buttons button:hover {
  -webkit-filter: brightness(80%);
  filter: brightness(80%);
}

.mw_wp_form_confirm form .c-table,
.mw_wp_form_complete .c-table {
  width: 70%;
}

@media (max-width: 767px) {
  .mw_wp_form_confirm form .c-table,
  .mw_wp_form_complete .c-table {
    width: 100%;
  }
}

.p-message-box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 30px 0 60px;
}

.p-message-box > .image {
  margin: 0 15px;
}

@media (max-width: 767px) {
  .p-message-box > .image {
    margin: 0 10px;
  }
}

.p-message-box > .text {
  margin: 0 15px;
  max-width: 200px;
}

.p-message-box > .text > img {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .p-message-box > .text {
    margin: 0 10px;
    font-size: 1.3rem;
  }
}

.p-message-box-type02 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 30px 0 60px;
}

@media (max-width: 480px) {
  .p-message-box-type02 {
    flex-wrap: wrap;
  }
}

.p-message-box-type02 > .image {
  margin: 0 10px;
  max-width: 300px;
  width: 50%;
}

@media (max-width: 480px) {
  .p-message-box-type02 > .image {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .p-message-box-type02 > .image {
    margin: 0 10px;
  }
}

.p-message-box-type02 > .text {
  margin: 0 10px;
  width: 180px;
  font-size: 1.6rem;
}

.p-message-box-type02 > .text > img {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .p-message-box-type02 > .text {
    margin: 0 10px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .p-message-box-type02 > .text {
    width: 80%;
    margin-top: 10px;
  }
}

#topmessage .leftbox {
  display: inline;
  float: left;
  margin-left: 120px;
  width: 160px;
}

@media (max-width: 767px) {
  #topmessage .leftbox {
    margin-left: 0px;
    width: 120px;
  }
}

.leftbox {
  float: left;
  width: 265px;
  margin-left: 5px;
  zoom: 1;
}

#topmessage .rightbox p,
#topmessage .leftbox p {
  margin: 0px 0px 3em 0px;
}

#topmessage .rightbox {
  display: inline;
  float: right;
  margin-top: 60px;
  margin-right: 100px;
  width: 200px;
  line-height: 1.6em;
}

@media (max-width: 767px) {
  #topmessage .rightbox {
    margin-top: 40px;
    margin-right: 0px;
    width: 170px;
  }
}

.rightbox {
  float: right;
  width: 265px;
  margin-right: 5px;
  zoom: 1;
}

.c-table tr td > .block.block_small_image > .box:first-child {
  width: 500px;
}

.c-table tr td > .block.block_small_image > .box:last-child {
  width: calc(100% - 500px);
}

@media (max-width: 767px) {
  .c-table tr td > .block.block_small_image > .box:first-child,
  .c-table tr td > .block.block_small_image > .box:last-child {
    width: 100%;
  }
}

.c-block-text-image {
  display: grid;
  grid-template-columns: 1fr 56.67%;
  gap: 24px 48px;
}
@media (max-width: 767px) {
  .c-block-text-image {
    grid-template-columns: 1fr;
  }
}
.c-block-text-image > .figure > .image {
  width: 100%;
  max-width: 680px;
  height: auto;
}
@media (max-width: 767px) {
  .c-block-text-image > .figure {
    margin-inline: auto;
  }
}

.c-margin-top-2em {
  margin-top: 2em;
}

.post_content img {
  width: initial;
  max-width: 100%;
  display: block;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.post_content h3,
.post_content h2 {
  margin-top: 50px;
}

.post_content a {
  color: #0185c4;
  text-decoration: underline;
  word-wrap: break-word;
}

.post_content a:hover {
  text-decoration: none;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.p-approach-title {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  margin: 45px 0 10px 0;
}

.p-approach-box {
  display: flex;
  flex-wrap: wrap;
}

.p-approach-box > .summary {
  width: calc(100% - 155px);
}

@media (max-width: 580px) {
  .p-approach-box > .summary {
    width: 100%;
    font-size: 1.4rem;
  }
}

.p-approach-box > .summary > .text {
  margin-bottom: 15px;
}

.p-approach-box > .image {
  width: 135px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: start;
}

@media (max-width: 580px) {
  .p-approach-box > .image {
    width: 100%;
  }
}

.p-approach-box > .image > img {
  width: auto;
}

.p-googlemap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.p-googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.p-homeskun {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .p-homeskun {
    padding-bottom: 50px;
  }
}

.p-homeskun > .wrapper {
  max-width: 1280px;
  padding: 0 40px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-homeskun > .wrapper {
    padding: 0 15px;
  }
}

.p-homeskun > .wrapper > .block {
  padding: 20px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}

.p-homeskun > .wrapper > .block > .summary {
  width: 50%;
}

@media (max-width: 767px) {
  .p-homeskun > .wrapper > .block > .summary {
    width: 100%;
  }
}

.p-homeskun > .wrapper > .block .lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .p-homeskun > .wrapper > .block .lead {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}

.p-homeskun > .wrapper > .block .text {
  margin-bottom: 15px;
}

.p-homeskun > .wrapper > .block > .figure {
  width: calc(50% - 50px);
  margin-left: 50px;
}

@media (max-width: 767px) {
  .p-homeskun > .wrapper > .block > .figure {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
}

.p-homeskun > .wrapper > .block > .figure > .image {
  padding: 5px;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1) inset;
}

@media (max-width: 374px) {
  .p-link-product > .opener > .title.p-service-adjust {
    top: -88px;
  }
}

@media (min-width: 375px) {
  .p-service-adjust br {
    display: none;
  }
}

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

@media (max-width: 353px) {
  .p-about-natural .title span {
    font-size: 2rem;
  }
}

.list .item .link .image {
  image-rendering: -webkit-optimize-contrast;
}

/* 20230228 松崎追加 */
.press dl {
  margin-left: 15px;
  display: flex;
  flex-wrap: wrap;
}
.press dt {
  width: 20%;
  padding: 5px 10px;
  background-color: #f3f3f3;
  margin: 0 0 5px 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: flex;
  align-items: left;
  justify-content: left;
}
.press dd {
  width: 80%;
  padding: 5px 10px;
  background-color: #f9f9f9;
  margin: 0 0 5px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* 20230913 松崎追加 */
a.bright img:hover {
  filter: brightness(105%);
}

a.opacity img:hover {
  opacity: 0.8;
}

.shadow5:hover {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}

/* ギャラリーエリア */
.p-company-gallery-text-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 955px) {
  .p-company-gallery-text-area {
    display: block;
  }
}

.p-company-gallery-text-area > .note {
  text-align: right;
}

.p-company-gallery {
  --max-width: 662px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--max-width);
}

.p-company-gallery.--column-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  .p-company-gallery {
    --max-width: 100%;
  }
}

.p-company-gallery > .gallery-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.p-company-gallery > .gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.p-company-gallery > div > .link {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: calc(109 / 164 * 100%);
  aspect-ratio: 164 / 109;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p-company-gallery > .gallery-tall > .link {
  padding-top: calc(220 / 164 * 100%);
  aspect-ratio: 164 / 220;
}

.p-company-gallery > .gallery-large > .link {
  padding-top: calc(220 / 330 * 100%);
  aspect-ratio: 330 / 220;
}

.p-company-gallery .image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.p-company-gallery > .gallery-hidden-link {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
}

/* careers */
.p-careers {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .p-careers {
    margin-bottom: 80px;
  }
}
.p-careers .container {
  max-width: 1280px;
  margin: auto;
}
@media (max-width: 767px) {
  .p-careers .c-block-text-image > div > p {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.p-careers .btn:has(.link-recruit) {
  margin-top: 40px;
}
.p-careers .link-recruit {
  width: 100%;
  max-width: 472px;
  padding: 16px 0;
  border-radius: 100px;
  line-height: 1.5;
}
.p-careers .link-recruit > span {
  display: block;
  font-size: 1.4rem;
}
.p-careers .link-parttime {
  position: relative;
  margin-top: 48px;
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  background: url(https://www.integral.co.jp/wordpress/wp-content/themes/Integral/assets/img/common/icon-arrow-01.svg) left 50% no-repeat;
  padding-left: 25px;
  padding-right: 28px;
}
.p-careers .link-parttime > img {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .p-careers .link-parttime > img {
    width: 16px;
    height: 16px;
  }
}
.p-careers .link-parttime:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-careers .link-recruit {
    max-width: 255px;
    padding: 8px 0;
    font-size: 1.4rem;
  }
  .p-careers .link-recruit > span {
    font-size: 1.2rem;
  }
  .p-careers .link-recruit::after {
    width: 16px;
    height: 16px;
  }
  .p-careers .link-parttime {
    margin-top: 40px;
    margin-left: 0;
    padding-right: 20px;
  }
  .p-careers .link-parttime::after {
    width: 16px;
    height: 16px;
  }
}
.p-careers .text-note {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #888;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-careers .text-note {
    text-align: left;
  }
}

@media (min-width: 767.999px) {
  .only-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}

/* lightboxのリキッド対応 */
.lightboxOverlay {
  max-width: 100% !important;
}

.lb-dataContainer {
  max-width: calc(100% - 40px) !important;
}

.lb-outerContainer {
  max-width: calc(100vw - 40px) !important;
  height: auto !important;
}

.lightbox .lb-image {
  max-width: calc(100vw - 40px) !important;
  height: auto !important;
}
