/*! 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.0;
 }
 
 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 .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: 10000;
   }
 }
 
 .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 40px;
   margin: 0 auto;
   display: -webkit-box;
   display: flex;
   -webkit-box-pack: justify;
           justify-content: space-between;
   flex-wrap: wrap;
 }
 
 @media (max-width: 899px) {
   .l-footer > .container {
     padding: 0 20px;
   }
 }
 
 @media (max-width: 767px) {
   .l-footer > .container {
     width: 100%;
     max-width: 100%;
     min-width: 100%;
     padding: 0 15px;
   }
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .information {
     width: 100%;
     margin-bottom: 40px;
   }
 }
 
 .l-footer > .container > .information > .logo {
   width: 184px;
   margin-bottom: 45px;
 }
 
 @media (max-width: 899px) {
   .l-footer > .container > .information > .logo {
     width: 105px;
   }
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .information > .logo {
     width: 160px;
     margin: 0 auto 30px;
   }
 }
 
 .l-footer > .container > .information > .data {
   font-size: 1.4rem;
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .information > .data {
     text-align: center;
     font-size: 1.2rem;
   }
 }
 
 .l-footer > .container > .information > .data > .name {
   display: block;
   font-weight: bold;
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .information > .access {
     text-align: center;
   }
 }
 
 .l-footer > .container > .information > .access > .link {
   display: inline-block;
   font-size: 1.4rem;
   font-weight: bold;
   background: url("../img/common/ico_arrow01.png") left 50% no-repeat;
   padding-left: 25px;
 }
 
 .l-footer > .container > .information > .access > .link:hover {
   text-decoration: underline;
 }
 
 .l-footer > .container > .links {
   position: absolute;
   right: 40px;
   display: -webkit-box;
   display: flex;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
           flex-direction: column;
 }
 
 @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;
 }
 
 @media (max-width: 1159px) {
   .l-footer > .container > .links > .primary {
     margin-bottom: 15px;
   }
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .links > .primary {
     flex-wrap: wrap;
   }
 }
 
 .l-footer > .container > .links > .primary > .item {
   margin-left: 40px;
 }
 
 .l-footer > .container > .links > .primary > .item:nth-child(1) {
   margin-left: 0;
 }
 
 @media (max-width: 1159px) {
   .l-footer > .container > .links > .primary > .item {
     margin-left: 20px;
   }
 }
 
 @media (max-width: 1010px) {
   .l-footer > .container > .links > .primary > .item {
     margin-left: 0;
   }
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .links > .primary > .item {
     width: 100%;
     margin-left: 0;
   }
 }
 
 .l-footer > .container > .links > .primary > .item > .link {
   font-weight: bold;
 }
 
 @media (max-width: 1010px) {
   .l-footer > .container > .links > .primary > .item > .link {
     margin-left: 15px;
     font-size: 1.4rem;;
   }
 }
 
 @media (max-width: 899px) {
   .l-footer > .container > .links > .primary > .item > .link {
     margin-left: 15px;
     font-size: 1.3rem;;
   }
 }
 
 @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;
   margin-bottom: 35px;
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .links > .secondary {
     -webkit-box-pack: start;
             justify-content: flex-start;
     flex-wrap: wrap;
   }
 }
 
 .l-footer > .container > .links > .secondary > .item {
   margin-left: 40px;
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .links > .secondary > .item {
     margin-left: 0;
     margin-right: 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;
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .links > .contact {
     flex-wrap: wrap;
   }
 }
 
 .l-footer > .container > .links > .contact > .item {
   margin-left: 20px;
 }
 
 @media (max-width: 767px) {
   .l-footer > .container > .links > .contact > .item {
     width: 100%;
     margin-left: 0;
     margin-bottom: 10px;
   }
 }
 
 .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 {
   text-align: center;
   color: #999999;
   font-size: 1.2rem;
   width: 100%;
   font-family: 'Roboto', sans-serif;
   letter-spacing: 0.05em;
   padding: 30px 0;
   margin: 60px 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: 10002;
   }
   .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 {
     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: 100vw;
     -webkit-transition: 0.6s ease;
     transition: 0.6s ease;
     width: 100%;
   }
 }
 
 .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 {
   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: 10001;
   -webkit-transition: 0.6s ease;
   transition: 0.6s ease;
 }
 
 .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: 5.0rem;
   letter-spacing: -.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: -.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: 3.0rem;
     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;
   }
 }
 
 .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.png");
 }
 
 .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.-company {
   background: #0185c4 url("../img/company/mainImg01.png") right center no-repeat;
 }
 
 @media (max-width: 899px) {
   .l-key-visual.-company {
     background: url("../img/company/mainImg01.png") right center;
   }
 }
 
 .only-sp {
   display: none;
 }
 
 @media (max-width: 767px) {
   .only-sp {
     display: block;
   }
 }
 
 .only-pc {
   display: block;
 }
 
 @media (max-width: 767px) {
   .only-pc {
     display: none;
   }
 }
 
 .l-section {
   margin-bottom: 110px;
 }
 
 @media (max-width: 767px) {
   .l-section {
     margin-bottom: 60px;
   }
 }
 
 .c-btn .link {
   display: block;
   width: 360px;
   text-align: center;
   margin: 0 auto;
   background: -webkit-linear-gradient(left, #4ac6ff, #00a0e9);
   background: linear-gradient(90deg, #4ac6ff, #00a0e9);
   color: #fff;
   border-radius: 30px;
   padding: 14px 0;
   box-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.15);
   -webkit-transition: 0.6s ease;
   transition: 0.6s ease;
 }
 
 @media (max-width: 767px) {
   .c-btn .link {
     width: 200px;
     font-size: 1.4rem;
     padding: 10px 0;
   }
 }
 
 .c-btn .link:hover {
   opacity: 0.6;
 }
 
 .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/ico_arrow01.png") left 9px 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;
 }
 
 .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 {
   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: 5px;
     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;
 }
 
 @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: 0 40px;
   margin: 0 auto;
   height: 900px;
   display: -webkit-box;
   display: flex;
   -webkit-box-pack: justify;
           justify-content: space-between;
   -webkit-box-align: center;
           align-items: center;
 }
 
 @media (max-width: 999px) {
   .p-top-about {
     width: 100%;
     max-width: 100%;
     min-width: 100%;
     padding-bottom: 100px;
     -webkit-box-orient: vertical;
     -webkit-box-direction: normal;
             flex-direction: column;
     height: auto;
     justify-content: space-around;
   }
 }
 
 @media (max-width: 670px) {
   .p-top-about {
     padding: 0 30px;
   }
 }
 
 .p-top-about .summary {
   width: 45%;
   padding: 0 45px 0 0;
 }
 
 @media (max-width: 999px) {
   .p-top-about .summary {
     width: 100%;
     padding: 0 0 60px 0;
     -webkit-box-ordinal-group: 3;
             order: 2;
   }
 }
 
 .p-top-about .summary .text {
   font-size: 1.8rem;
   color: #fff;
   margin-bottom: 60px;
 }
 
 @media (max-width: 999px) {
   .p-top-about .summary .text {
     margin-bottom: 20px;
     font-size: 1.4rem;
   }
 }
 
 .p-top-about .summary .link .link {
   display: block;
   color: #fff;
   border: 1px solid #fff;
   border-radius: 30px;
   width: 360px;
   padding: 14px 0;
   text-align: center;
   -webkit-transition: 0.6s ease;
   transition: 0.6s ease;
 }
 
 @media (max-width: 999px) {
   .p-top-about .summary .link .link {
     margin: 0 auto;
     width: 200px;
     font-size: 1.4rem;
     padding: 10px 0;
   }
 }
 
 .p-top-about .summary .link .link:hover {
   background-color: #00a0e9;
 }
 
 .p-top-about .figure {
   width: 55%;
 }
 
 @media (max-width: 999px) {
   .p-top-about .figure {
     padding: 60px 0 50px;
     width: 70%;
     -webkit-box-ordinal-group: 2;
             order: 1;
   }
 }
 
 @media (max-width: 670px) {
   .p-top-about .figure {
     width: 100%;
   }
 }
 
 .p-top-about .figure .image {
   width: 100%;
 }
 
 .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 0;
 }
 
 @media (max-width: 767px) {
   .p-top-banner {
     padding: 60px 0;
     min-width: initial;
     width: 100%;
   }
 }
 
 .p-top-banner > .wrapper {
   width: 100%;
   max-width: 1280px;
   padding: 0 40px;
   margin: 0 auto;
 }
 
 @media (max-width: 767px) {
   .p-top-banner > .wrapper {
     width: 100%;
     max-width: 100%;
     min-width: 100%;
     padding: 0 15px;
   }
 }
 
 .p-top-banner > .wrapper > .box {
   display: -webkit-box;
   display: flex;
   margin-bottom: 35px;
   flex-wrap: wrap;
 }
 
 @media (max-width: 767px) {
   .p-top-banner > .wrapper > .box {
     margin-bottom: 15px;
   }
 }
 
 .p-top-banner > .wrapper > .box > .banner {
   width: calc( 50% - 10px);
   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: 960px) {
   .p-top-banner > .wrapper > .box > .banner {
     width: 100%;
     margin-bottom: 15px;
     flex-wrap: wrap;
   }
 }
 
 .p-top-banner > .wrapper > .box > .banner:nth-child(1) {
   margin-right: 10px;
 }
 
 .p-top-banner > .wrapper > .box > .banner:nth-child(2) {
   margin-left: 10px;
 }
 
 @media (max-width: 960px) {
   .p-top-banner > .wrapper > .box > .banner:nth-child(1) {
     margin-right: 0;
   }
   
   .p-top-banner > .wrapper > .box > .banner:nth-child(2) {
     margin-left: 0;
   }
   }
 
 .p-top-banner > .wrapper > .box > .banner > .figure {
   position: relative;
   width: 53%;
 }
 
 @media (max-width: 960px) {
   .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: 960px) {
   .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: url("../img/common/ico_arrow01.png") 90% 90% no-repeat;
 }
 
 @media (max-width: 1160px) {
   .p-top-banner > .wrapper > .box > .banner > .text {
     padding: 0 20px;
     font-size: 1.3rem;
   }
 }
 
 @media (max-width: 960px) {
   .p-top-banner > .wrapper > .box > .banner > .text {
     width: calc( 100% - 250px );
     padding: 0 35px;
     font-size: 1.4rem;
     background: url("../img/common/ico_arrow01.png") calc( 100% - 15px) calc( 100% - 15px) no-repeat;
   }
 }
 
 @media (max-width: 767px) {
   .p-top-banner > .wrapper > .box > .banner > .text {
     width: 100%;
     padding: 0 15px 40px;
     height: auto;
     background: url("../img/common/ico_arrow01.png") calc( 100% - 15px) calc( 100% - 15px) no-repeat;
   }
 }
 
 .p-top-banner > .wrapper > .box > .banner:hover {
   opacity: 0.6;
 }
 
 .p-top-banner > .wrapper > .list {
   display: -webkit-box;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
 }
 
 @media (max-width: 1160px) {
   .p-top-banner > .wrapper > .list::after {
     content: "";
     display: block;
     width: 49%;
   }
 }
 
 .p-top-banner > .wrapper > .list > .item {
   width: 19%;
   margin: 0 0 25px 0;
 }
 
 @media (max-width: 1160px) {
   .p-top-banner > .wrapper > .list > .item {
     width: 23%;
   }
 }
 
 @media (max-width: 960px) {
   .p-top-banner > .wrapper > .list > .item {
     width: 31%;
   }
 }
 
 @media (max-width: 767px) {
   .p-top-banner > .wrapper > .list > .item {
     width: 49%;
     margin: 0 0 15px 0;
   }
 }
 
 @media (max-width: 550px) {
   .p-top-banner > .wrapper > .list > .item {
     width: 100%;
   }
 }
 
 .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;
 }
 
 .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: 3.0rem;
   }
 }
 
 /* .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);
   }
 }
 
 .p-top-company {
   background-color: #fff;
   position: relative;
   padding: 120px 0 0 0;
   min-width: 100%;
 }
 
 @media (max-width: 767px) {
   .p-top-company {
     padding: 60px 0 0 0;
     min-width: initial;
     width: 100%;
   }
 }
 
 .p-top-company > .background {
   position: absolute;
   width: 100%;
   height: 700px;
   background: #fff url("../img/top/bg_company.png") center top no-repeat;
   background-size: 100% auto;
   top: 0;
   z-index: 10;
 }
 
 @media (max-width: 767px) {
   .p-top-company > .background {
     height: 720px;
     background-size: cover;
   }
 }
 
 .p-top-company > .wrapper {
   position: relative;
   width: 100%;
   max-width: 1280px;
   padding: 0 40px 120px;
   margin: 0 auto 0;
   display: -webkit-box;
   display: flex;
   border-bottom: 1px solid #ebebeb;
   z-index: 11;
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper {
     width: 100%;
     max-width: 100%;
     min-width: 100%;
     padding: 0 15px 60px;
     flex-wrap: wrap;
   }
 }
 
 .p-top-company > .wrapper > .summary {
   width: 600px;
   background-color: #fff;
   padding: 80px 70px;
 }
 
 @media (max-width: 1100px) {
   .p-top-company > .wrapper > .summary {
     width: 55%;
     padding: 6% 3% 6% 6%;
   }
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .summary {
     width: 100%;
     padding: 50px 15px;
   }
 }
 
 .p-top-company > .wrapper > .summary > .lead {
   margin-top: 35px;
   font-size: 2.4rem;
   font-weight: bold;
   margin-bottom: 25px;
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .summary > .lead {
     margin-top: 25px;
     margin-bottom: 20px;
     font-size: 1.6rem;
   }
 }
 
 .p-top-company > .wrapper > .summary > .text {
   margin-bottom: 25px;
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .summary > .text {
     font-size: 1.4rem;
   }
 }
 
 .p-top-company > .wrapper > .summary .list {
   display: -webkit-box;
   display: flex;
   flex-wrap: wrap;
 }
 
 .p-top-company > .wrapper > .summary .list > .item {
   width: 60%;
   margin-bottom: 15px;
 }
 
 .p-top-company > .wrapper > .summary .list > .item:nth-child(2n) {
   width: 40%;
 }
 
 @media (max-width: 940px) {
   .p-top-company > .wrapper > .summary .list > .item {
     width: 100%;
     margin-bottom: 10px;
   }
   
   .p-top-company > .wrapper > .summary .list > .item:nth-child(2n) {
     width: 100%;
   }
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .summary .list > .item {
     width: 100%;
     margin-bottom: 5px;
   }
 }
 
 .p-top-company > .wrapper > .summary .list > .item > .link {
   font-weight: bold;
   background: url("../img/common/ico_arrow01.png") left 50% no-repeat;
   padding-left: 25px;
   -webkit-transition: 0.6s ease;
   transition: 0.6s ease;
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .summary .list > .item > .link {
     font-size: 1.4rem;
   }
 }
 
 .p-top-company > .wrapper > .summary .list > .item > .link:hover {
   opacity: 0.6;
 }
 
 .p-top-company > .wrapper > .figure {
   width: calc( 100% - 600px );
   height: 600px;
   overflow: hidden;
   position: relative;
 }
 
 @media (max-width: 1100px) {
   .p-top-company > .wrapper > .figure {
     width: 45%;
   }
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .figure {
     width: 100%;
     height: auto;
   }
 }
 
 .p-top-company > .wrapper > .figure > .image {
   position: absolute;
   width: 600px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
 }
 
 @media (max-width: 767px) {
   .p-top-company > .wrapper > .figure > .image {
     position: relative;
     width: 100%;
     left: auto;
     top: auto;
     transform: none;
   }
 }
 
 .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;
 }
 
 .p-top-news {
   background-color: #fff;
   padding: 120px 0;
 }
 
 @media (max-width: 767px) {
   .p-top-news {
     padding: 60px 0;
     min-width: initial;
     width: 100%;
   }
 }
 
 .p-top-news .wrapper {
   width: 100%;
   max-width: 1280px;
   padding: 0 40px;
   margin: 0 auto;
 }
 
 @media (max-width: 767px) {
   .p-top-news .wrapper {
     width: 100%;
     padding: 0 15px;
     max-width: 100%;
     min-width: 100%;
   }
 }
 
 .p-top-product {
   background-color: #f5f5f5;
   padding: 105px 0 120px;
 }
 
 @media (max-width: 767px) {
   .p-top-product {
     padding: 60px 0 25px;
     min-width: initial;
     width: 100%;
   }
 }
 
 .p-top-product > .wrapper {
   width: 100%;
   max-width: 1280px;
   padding: 0 40px;
   margin: 0 auto;
 }
 
 @media (max-width: 767px) {
   .p-top-product > .wrapper {
     width: 100%;
     max-width: 100%;
     min-width: 100%;
     padding: 0 15px;
   }
 }
 
 .p-top-product > .wrapper > .container {
   margin-top: 40px;
   display: -webkit-box;
   display: flex;
   -webkit-box-pack: justify;
           justify-content: space-between;
 }
 
 @media (max-width: 767px) {
   .p-top-product > .wrapper > .container {
     flex-wrap: wrap;
     margin-top: 25px;
   }
 }
 
 .p-top-product > .wrapper > .container > .box {
   width: 50%;
 }
 
 @media (max-width: 767px) {
   .p-top-product > .wrapper > .container > .box {
     width: 100%;
   }
 }
 
 .p-top-product > .wrapper > .container > .box:nth-child(1) {
   padding-right: 10px;
 }
 
 @media (max-width: 767px) {
   .p-top-product > .wrapper > .container > .box:nth-child(1) {
     padding-right: 0;
   }
 }
 
 .p-top-product > .wrapper > .container > .box:nth-child(2) {
   padding-left: 10px;
 }
 
 @media (max-width: 767px) {
   .p-top-product > .wrapper > .container > .box:nth-child(2) {
     padding-left: 0;
   }
 }
 
 .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.0;
   }
 }
 
 .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 {
   font-family: MyYuMinM, YuMincho, 'Yu Mincho', serif;
   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;
   }
 }
 
 .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%;
   }
 }
 
 .p-about-mission {
   padding: 160px 0 120px;
 }
 
 @media (max-width: 767px) {
   .p-about-mission {
     padding: 80px 0 100px;
   }
 }
 
 .p-about-mission > .title {
   font-family: MyYuMinM, YuMincho, 'Yu Mincho', serif;
   margin-bottom: 60px;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .title {
     margin-bottom: 30px;
   }
 }
 
 .p-about-mission > .title > .en {
   display: block;
   text-align: center;
   font-size: 3.0rem;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .title > .en {
     font-size: 1.6rem;
   }
 }
 
 .p-about-mission > .title > .jp {
   display: block;
   text-align: center;
   font-size: 4.8rem;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .title > .jp {
     font-size: 3.6rem;
   }
 }
 
 .p-about-mission > .mission {
   margin-bottom: 100px;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .mission {
     margin-bottom: 50px;
   }
 }
 
 .p-about-mission > .mission > .item {
   margin-bottom: 45px;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .mission > .item {
     margin-bottom: 35px;
   }
 }
 
 .p-about-mission > .mission > .item > .num {
   font-family: MyYuMinM, YuMincho, 'Yu Mincho', serif;
   font-style: italic;
   text-align: center;
   font-size: 4.8rem;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .mission > .item > .num {
     font-size: 3.6rem;
   }
 }
 
 .p-about-mission > .mission > .item > .text {
   text-align: center;
   font-size: 1.8rem;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .mission > .item > .text {
     text-align: left;
     font-size: 1.5rem;
   }
 }
 
 .p-about-mission > .gallery {
   display: -webkit-box;
   display: flex;
   flex-wrap: wrap;
   -webkit-box-pack: justify;
           justify-content: space-between;
   max-width: 1200px;
   margin: auto;
 }
 
 .p-about-mission > .gallery > .photo {
   width: calc( 50% - 5px);
   margin-bottom: 10px;
 }
 
 @media (max-width: 767px) {
   .p-about-mission > .gallery > .photo {
     width: calc( 50% - 2.5px);
     margin-bottom: 5px;
   }
 }
 
 .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%;
   }
 }
 
 .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: 2.0rem;
   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);
}