@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
  These remedies are recommended
  as a starter for any project.
category: file
*/
/* @docs
label: Box Sizing
note: |
  Use border-box by default, globally.
category: global
*/
*, ::before, ::after {
  box-sizing: border-box;
}

/* @docs
label: Line Sizing
note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.
links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property
category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins
note: |
  Remove the tiny space around the edge of the page.
category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute
note: |
  Maintain `hidden` behaviour when overriding `display` values.
  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes
note: |
  Switch to rem units for headings
category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins
note: |
  Keep h1 margins consistent, even when nested.
category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping
note: |
  Overflow by default is bad...
category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule
note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`
category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds
note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default
category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images
note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.
  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely
category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios
note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.
category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width
note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.
category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders
note: |
  Remove the border on images inside links in IE 10 and earlier.
category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow
note: |
  Hide the overflow in IE 10 and earlier.
category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements
note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)
links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/
category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs
note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10
category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*---------------------------------
  variable
---------------------------------*/
/* layout */
/* color */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  font-size: 1.4rem;
  word-break: break-all;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
          animation: fadeIn 1.5s ease 0s 1 normal;
  color: #3e3a39;
}
@media (min-width: 960px) {
  body {
    font-size: 2rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: inline;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

@media (min-width: 960px) {
  a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) {
  .tab {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 960px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 960px) {
  .pc {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 960px) {
  .pc-none {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1366px) {
  .desktop {
    display: block;
  }
}

.desktop-none {
  display: block;
}
@media (min-width: 1366px) {
  .desktop-none {
    display: none;
  }
}

/* contents */
.font__serif {
  font-family: "Noto Serif JP", serif;
}

#main {
  margin-top: 56px;
}
@media (min-width: 960px) {
  #main {
    margin-top: 90px;
  }
}

@media (min-width: 960px) {
  .ttl {
    display: flex;
    justify-content: flex-start;
  }
}
@media (min-width: 1366px) {
  .ttl {
    margin-left: 16%;
  }
}
.ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.ttl h2.con__ttl {
  font-size: 2.6rem;
  font-weight: 600;
  text-align: center;
  color: #727171;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  .ttl h2.con__ttl {
    font-size: 5rem;
  }
}
.ttl h2.con__ttl .txt__jp {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  color: #231815;
}
@media (min-width: 960px) {
  .ttl h2.con__ttl .txt__jp {
    font-size: 2.8rem;
  }
}

/*---------------------------------
  footer
---------------------------------*/
#footer {
  background-color: #8e8e8e;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
}
@media (min-width: 960px) {
  #footer {
    font-size: 2rem;
    padding: 30px 20px;
  }
}

/*---------------------------------
  header
---------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}

#header__item {
  display: flex;
  align-items: center;
}

@media (max-width: 960px) {
  #header {
    height: 56px;
  }
  #header__item {
    height: 56px;
    padding: 0 15px;
  }
  #header__item h1 img {
    height: 33px;
  }
  .toggle__button {
    display: block;
    position: absolute;
    top: 10px;
    right: 16px;
    z-index: 1100;
    background: url(/asset/images/nav_open.svg) no-repeat center;
    background-size: contain;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .toggle__button.button__open {
    top: 20px;
    background: url(/asset/images/nav_close.svg) no-repeat center;
    background-size: contain;
  }
  #nav__area {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    z-index: 1000;
    background: transparent;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, background 0.3s;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s, background 0.3s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 80px 15px;
  }
  #nav__area.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background: #41ab79;
    opacity: 1;
    pointer-events: auto;
  }
  #nav__area ul li {
    border-top: 1px solid #fff;
  }
  #nav__area ul li:last-of-type {
    border-bottom: 1px solid #fff;
  }
  #nav__area ul li a {
    display: block;
    padding: 15px 18px;
    font-size: 1.8rem;
    text-decoration: none;
    color: #fff;
    position: relative;
  }
  #nav__area ul li a::after {
    content: "";
    display: block;
    clip-path: polygon(20% 0, 100% 50%, 20% 100%, 0% 100%, 80% 50%, 0% 0%);
    background-color: #fff;
    width: 8px;
    height: 15px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
  }
  #nav__area ul li a span {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 2rem;
    color: #74c29d;
  }
  #nav__area .btn__cv {
    display: block;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    width: 10rem;
    margin: 100px auto 0;
    text-align: center;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 520px) {
  #nav__area {
    width: 100%;
  }
}
@media (min-width: 961px) {
  #header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2% 0 2.6%;
  }
  #header__item {
    height: 90px;
  }
  #header__item h1 img {
    height: 36px;
  }
  .toggle__button {
    display: none;
  }
  #nav__area {
    width: 78%;
  }
  #nav__area nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  #nav__area a {
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    line-height: 1;
  }
  #nav__area ul {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  #nav__area ul li {
    margin-left: 5.21%;
    line-height: 1;
  }
  #nav__area ul li a span {
    display: none;
  }
  #nav__area .btn__cv {
    margin-left: 5.21%;
    background-color: #41ab79;
    color: #fff;
    width: 16rem;
    text-align: center;
    padding: 1rem 0;
  }
}
@media (min-width: 1366px) {
  #header {
    padding: 0 4.17% 0 4.95%;
  }
  #header__item h1 img {
    height: 55px;
  }
}
/*---------------------------------
  hdg
---------------------------------*/
/*---------------------------------
  color
---------------------------------*/
/* 左から右 */
.grad__to-right {
  background: linear-gradient(to right, #c4e5d4, #fff);
}

/* 右から左 */
.grad__to-left {
  background: linear-gradient(to left, #c4e5d4, #fff);
}

/* 下から上 */
.grad__to-top {
  background: linear-gradient(to top, #c4e5d4, #fff);
}

/*---------------------------------
  top
---------------------------------*/
#top {
  /* kv */
  /* intro */
  /* topMessage */
  /* feature */
  /* commitment */
  /* company */
  /* contact_intro */
}
#top #kv {
  background: url(/asset/images/kv_sp.jpg) no-repeat top;
  background-size: cover;
  height: 162.67vw;
}
@media (min-width: 768px) {
  #top #kv {
    background: url(/asset/images/kv_pc.jpg) no-repeat top;
    background-size: cover;
    height: 51.56vw;
  }
}
@media (min-width: 960px) {
  #top #kv {
    height: 100vh;
  }
}
@media (min-width: 960px) {
  #top #kv .kv__inner {
    max-width: 85.15vw;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #top #kv .kv__inner {
    max-width: 71.15vw;
  }
}
#top #kv .catch_jp {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  padding: 55px 35px 0;
  margin-bottom: 45px;
  text-shadow: 2px 2px 0 #fff;
}
@media (min-width: 768px) {
  #top #kv .catch_jp {
    margin-bottom: 25px;
  }
}
@media (min-width: 960px) {
  #top #kv .catch_jp {
    padding: 125px 0 0;
    font-size: 4.8rem;
    letter-spacing: 0.3em;
    text-shadow: 4px 4px 0 #fff;
  }
}
@media (min-width: 1024px) {
  #top #kv .catch_jp {
    font-size: 5rem;
  }
}
@media (min-width: 1240px) {
  #top #kv .catch_jp {
    font-size: 6rem;
  }
}
@media (min-width: 1366px) {
  #top #kv .catch_jp {
    font-size: 7rem;
  }
}
#top #kv .catch_jp.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}
#top #kv .catch_jp.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .catch_en {
  padding: 0 15px;
}
@media (min-width: 960px) {
  #top #kv .catch_en {
    padding: 0;
  }
}
#top #kv .catch_en.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: translate(-30px, -30px);
          transform: translate(-30px, -30px);
  transition-delay: 0.8s;
}
#top #kv .catch_en.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #intro {
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 768px) {
  #top #intro::before, #top #intro::after {
    content: "";
    display: block;
    width: 50%;
    height: 120px;
    background: linear-gradient(to right, #c4e5d4, #fff);
  }
}
#top #intro .bg {
  background: url(/asset/images/intro_bg_sp.jpg) no-repeat top center;
  background-size: cover;
}
@media (min-width: 768px) {
  #top #intro .bg {
    background: url(/asset/images/intro_bg_pc.jpg) no-repeat top center;
    background-size: cover;
  }
}
#top #intro .inner {
  padding: 40px 15px 20px;
}
@media (min-width: 960px) {
  #top #intro .inner {
    padding-bottom: 70px;
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  #top #intro .txt {
    margin-top: -65px;
  }
}
@media (min-width: 960px) {
  #top #intro .txt {
    margin-top: -85px;
  }
}
#top #intro .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #intro .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #intro .txt h2 {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media (min-width: 960px) {
  #top #intro .txt h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1366px) {
  #top #intro .txt h2 {
    font-size: 5.4rem;
  }
}
#top #intro .txt p {
  font-size: 1.6rem;
  line-height: 2.2;
  font-weight: 600;
}
@media (min-width: 768px) {
  #top #intro .txt p {
    margin-bottom: 1rem;
  }
}
@media (min-width: 960px) {
  #top #intro .txt p {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 1366px) {
  #top #intro .txt p {
    font-size: 2.4rem;
  }
}
#top #intro .txt p .fadein-char {
  opacity: 0;
  transition: opacity 0.3s;
  display: inline-block;
}
@media (min-width: 960px) {
  #top #topMessage {
    padding-top: 150px;
  }
}
@media (min-width: 1366px) {
  #top #topMessage {
    padding-top: 320px;
  }
}
#top #topMessage h2.con__ttl {
  padding: 45px 0 25px;
}
@media (min-width: 960px) {
  #top #topMessage h2.con__ttl {
    padding: 0;
    margin-bottom: 60px;
    margin-left: 60px;
  }
}
#top #topMessage .con {
  background-color: #8e8e8e;
  color: #fff;
  padding: 20px 15px;
  position: relative;
}
@media (min-width: 960px) {
  #top #topMessage .con {
    padding: 60px;
  }
}
@media (min-width: 1366px) {
  #top #topMessage .con {
    max-width: 62.4%;
    margin: 0 auto;
  }
}
#top #topMessage .con .con__ttl {
  font-size: 2rem;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  #top #topMessage .con .con__ttl {
    font-size: 3.4rem;
    line-height: 2;
    margin-bottom: 30px;
  }
}
#top #topMessage .con .con__ttl .t__sub {
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  #top #topMessage .con .con__ttl .t__main span {
    display: block;
  }
}
#top #topMessage .con .con__ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #topMessage .con .con__ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #topMessage .con .txt p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  #top #topMessage .con .txt p {
    font-size: 2rem;
  }
}
#top #topMessage .con .txt.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #topMessage .con .txt.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 960px) {
  #top #topMessage .con .ph {
    position: absolute;
    right: 0;
    bottom: 74%;
    width: 50%;
  }
}
@media (min-width: 1366px) {
  #top #topMessage .con .ph {
    bottom: 78%;
    right: -30%;
    width: 80.13%;
  }
}
#top #topMessage .con .ph.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #topMessage .con .ph.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #topMessage .con .sign {
  font-size: 1.6rem;
  text-align: right;
  margin-top: 15px;
}
@media (min-width: 960px) {
  #top #topMessage .con .sign {
    font-size: 2.8rem;
  }
}
#top #topMessage .con .sign span {
  margin-left: 2rem;
}
#top #topMessage .con .sign.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #topMessage .con .sign.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #feature .bg {
  padding-top: 45px;
  background-image: url(/asset/images/feature_bg01.png), url(/asset/images/feature_bg02.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center top 65px, center bottom 26%;
  background-size: 94% auto, 94% auto;
}
@media (min-width: 960px) {
  #top #feature .bg {
    padding-top: 140px;
    background-image: url(/asset/images/feature_bg01.png), url(/asset/images/feature_bg02.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left top 65px, left 40% bottom 26%;
    background-size: 60% auto, 50% auto;
  }
}
@media (min-width: 1366px) {
  #top #feature .bg {
    padding-top: 280px;
    background-image: url(/asset/images/feature_bg01.png), url(/asset/images/feature_bg02.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left 5% top 10%, left 40% bottom 26%;
    background-size: 55% auto, 50% auto;
  }
}
@media (min-width: 960px) {
  #top #feature h2.con__ttl {
    padding: 0;
    margin-bottom: 60px;
    margin-left: 13%;
  }
}
@media (min-width: 960px) {
  #top #feature .items .item {
    display: flex;
    align-items: center;
  }
  #top #feature .items .item.reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 960px) and (min-width: 1366px) {
  #top #feature .items .item.reverse .txt {
    padding: 0;
    margin-right: 18.13%;
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  #top #feature .items .item.reverse .ph {
    margin-left: 0;
    margin-right: 45px;
  }
}
@media (min-width: 960px) and (min-width: 1366px) {
  #top #feature .items .item.reverse .ph {
    margin-right: 95px;
  }
}
#top #feature .items .item.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #feature .items .item.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #feature .items .item .txt {
  padding: 0 15px 25px 15px;
}
@media (min-width: 1366px) {
  #top #feature .items .item .txt {
    padding: 0;
    margin-left: 18.13%;
  }
}
#top #feature .items .item .txt h3 {
  text-align: center;
  font-size: 1.7rem;
  padding: 25px 0;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  #top #feature .items .item .txt h3 {
    text-align: left;
    font-size: 2.6rem;
  }
}
@media (min-width: 1366px) {
  #top #feature .items .item .txt h3 {
    font-size: 3.4rem;
  }
}
#top #feature .items .item .txt p {
  line-height: 1.8;
}
@media (min-width: 960px) {
  #top #feature .items .item .txt p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1366px) {
  #top #feature .items .item .txt p {
    font-size: 2rem;
  }
}
@media (min-width: 960px) {
  #top #feature .items .item .ph {
    width: 45.83%;
    flex: none;
    margin-left: 45px;
  }
}
@media (min-width: 1366px) {
  #top #feature .items .item .ph {
    margin-left: 95px;
  }
}
@media (min-width: 960px) {
  #top #feature .ph__main {
    position: relative;
    z-index: -1;
    margin-top: 50px;
  }
}
#top #commitment {
  padding-top: 50px;
}
@media (min-width: 1366px) {
  #top #commitment {
    padding-top: 200px;
  }
}
#top #commitment .bg {
  padding-top: 20px;
}
@media (min-width: 960px) {
  #top #commitment .bg {
    padding-top: 50px;
    padding-bottom: 140px;
  }
}
@media (min-width: 1366px) {
  #top #commitment .bg {
    padding-top: 110px;
  }
}
@media (min-width: 768px) {
  #top #commitment .ttl.sp {
    display: none !important;
  }
}
#top #commitment h2.con__ttl {
  padding: 25px 0;
}
@media (min-width: 960px) {
  #top #commitment h2.con__ttl {
    padding: 0;
    margin-bottom: 60px;
    margin-left: 13%;
  }
}
#top #commitment .renew__ttl {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  #top #commitment .renew__ttl {
    margin-bottom: 25px;
  }
}
@media (min-width: 1366px) {
  #top #commitment .renew__ttl {
    margin-left: 22.4%;
  }
}
#top #commitment .renew__ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #commitment .renew__ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #commitment .renew__ttl h3 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}
@media (min-width: 960px) {
  #top #commitment .renew__ttl h3 {
    text-align: left;
    font-size: 2.4rem;
  }
}
@media (min-width: 1366px) {
  #top #commitment .renew__ttl h3 {
    font-size: 3.4rem;
  }
}
#top #commitment .renew {
  padding: 0 15px 25px;
}
@media (min-width: 960px) {
  #top #commitment .renew {
    position: relative;
  }
}
@media (min-width: 1366px) {
  #top #commitment .renew {
    padding: 0;
  }
}
#top #commitment .renew .lead {
  padding: 25px 0;
  line-height: 2;
}
@media (min-width: 1366px) {
  #top #commitment .renew .lead {
    margin-left: 22.4%;
    position: relative;
    z-index: 10;
  }
}
#top #commitment .renew .lead.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #commitment .renew .lead.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  #top #commitment .renew .ph01 {
    margin-bottom: 25px;
  }
}
@media (min-width: 960px) {
  #top #commitment .renew .ph01 {
    margin-top: 50px;
    margin-bottom: 0;
    width: 52.88%;
  }
}
@media (min-width: 1366px) {
  #top #commitment .renew .ph01 {
    margin-top: 8%;
    margin-left: 5.21%;
    width: 46.88%;
  }
}
#top #commitment .renew .ph01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #commitment .renew .ph01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #commitment .renew .ph02 {
  margin-bottom: 25px;
}
@media (min-width: 960px) {
  #top #commitment .renew .ph02 {
    margin-bottom: 0;
    width: 36.46%;
    position: absolute;
    top: 0;
    right: 15px;
  }
}
@media (min-width: 1366px) {
  #top #commitment .renew .ph02 {
    right: 5.21%;
  }
}
#top #commitment .renew .ph02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #commitment .renew .ph02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 960px) {
  #top #commitment .renew .ph03 {
    width: 30.31%;
    position: absolute;
    top: 57%;
    left: 58%;
  }
}
@media (min-width: 1366px) {
  #top #commitment .renew .ph03 {
    top: 61%;
    left: 57%;
  }
}
#top #commitment .renew .ph03.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #commitment .renew .ph03.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #commitment .logomark {
  background-color: #fff;
  padding: 50px 15px;
}
@media (min-width: 960px) {
  #top #commitment .logomark {
    width: 55.42%;
    margin: 100px auto 0;
    padding: 50px 40px;
  }
}
@media (min-width: 1366px) {
  #top #commitment .logomark {
    margin: 200px auto 0;
  }
}
#top #commitment .logomark.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #commitment .logomark.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #commitment .logomark .logo {
  width: 50%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  #top #commitment .logomark .logo {
    width: 80%;
    margin-bottom: 45px;
  }
}
@media (min-width: 1366px) {
  #top #commitment .logomark .logo {
    margin-bottom: 95px;
  }
}
#top #commitment .logomark .block {
  margin-top: 50px;
}
#top #commitment .logomark .block h4 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 25px;
}
@media (min-width: 960px) {
  #top #commitment .logomark .block h4 {
    font-size: 2.4rem;
  }
}
@media (min-width: 1366px) {
  #top #commitment .logomark .block h4 {
    font-size: 3rem;
  }
}
#top #commitment .logomark .block p {
  line-height: 1.8;
}
#top #company {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media (min-width: 960px) {
  #top #company {
    padding-top: 195px;
    font-size: 1.6rem;
  }
}
@media (min-width: 1366px) {
  #top #company {
    font-size: 1.8rem;
  }
}
#top #company .inner {
  padding: 25px 15px;
}
@media (min-width: 960px) {
  #top #company .inner {
    padding: 85px 15px 100px;
  }
}
#top #company .ttl {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #top #company .ttl.sp {
    display: none !important;
  }
}
@media (min-width: 960px) {
  #top #company h2.con__ttl {
    padding: 0;
    margin-bottom: 60px;
    margin-left: 60px;
  }
}
@media (min-width: 768px) {
  #top #company .outline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
}
#top #company .outline dl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline dl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #company .outline dl div {
  margin-top: 25px;
}
@media (min-width: 768px) {
  #top #company .outline dl div {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 960px) {
  #top #company .outline dl div {
    margin-top: 50px;
  }
}
@media (min-width: 768px) {
  #top #company .outline dl div dt {
    flex: none;
    text-align-last: justify;
    width: 11rem;
    margin-right: 15px;
  }
}
@media (min-width: 960px) {
  #top #company .outline dl div dt {
    width: 17rem;
    margin-right: 25px;
  }
}
#top #company .outline dl div a {
  display: inline-block;
  color: #3e3a39;
}
#top #company .outline dl div a::after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 12px;
  background: url(/asset/images/icon_win.svg) no-repeat center;
  background-size: contain;
  margin-left: 5px;
}
@media (min-width: 960px) {
  #top #company .outline dl div a::after {
    width: 34px;
    height: 25px;
  }
}
#top #company .outline .result {
  margin-top: 25px;
}
@media (min-width: 960px) {
  #top #company .outline .result {
    margin-top: 50px;
  }
}
#top #company .outline .result.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline .result.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #company .outline .result dl {
  margin-bottom: 25px;
}
@media (min-width: 960px) {
  #top #company .outline .result dl {
    margin-bottom: 50px;
  }
}
#top #company .outline .result dl dd {
  padding-left: 1em;
}
@media (min-width: 960px) {
  #top #company .outline .result h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 1366px) {
  #top #company .outline .result h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  #top #company .outline .ph01 {
    position: absolute;
    top: 0;
    right: 0;
    width: 31.67%;
  }
}
@media (min-width: 1366px) {
  #top #company .outline .ph01 {
    width: 41.67%;
  }
}
#top #company .outline .ph01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline .ph01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #company .outline .items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  text-align: right;
}
@media (min-width: 768px) {
  #top #company .outline .items {
    display: block;
    position: absolute;
    top: 22.5vw;
    right: 0;
  }
}
@media (min-width: 1366px) {
  #top #company .outline .items {
    top: 380px;
  }
}
#top #company .outline .items .ph02 {
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #top #company .outline .items .ph02 {
    width: 34%;
    margin-left: auto;
  }
}
@media (min-width: 1366px) {
  #top #company .outline .items .ph02 {
    width: 280px;
    margin-bottom: 55px;
  }
}
#top #company .outline .items .ph02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline .items .ph02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #company .outline .items .ph03 {
  width: 26.67%;
  margin-right: 25px;
}
@media (min-width: 768px) {
  #top #company .outline .items .ph03 {
    width: 20%;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 25px;
  }
}
@media (min-width: 1366px) {
  #top #company .outline .items .ph03 {
    width: 152px;
    margin-bottom: 55px;
  }
}
#top #company .outline .items .ph03.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline .items .ph03.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #company .outline .items .ph04 {
  width: 26.67%;
}
@media (min-width: 768px) {
  #top #company .outline .items .ph04 {
    width: 20%;
    margin-left: auto;
  }
}
@media (min-width: 1366px) {
  #top #company .outline .items .ph04 {
    width: 152px;
  }
}
#top #company .outline .items .ph04.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline .items .ph04.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 1366px) {
  #top #company .outline .map {
    margin-top: 100px;
  }
}
#top #company .outline .map.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #company .outline .map.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #contact_intro {
  background: url(/asset/images/contact_bg_sp.jpg) no-repeat center bottom;
  background-size: cover;
  text-align: center;
  padding-top: 55px;
  padding-bottom: 270px;
}
@media (min-width: 768px) {
  #top #contact_intro {
    padding-top: 70px;
    padding-bottom: 320px;
  }
}
@media (min-width: 960px) {
  #top #contact_intro {
    background: url(/asset/images/contact_bg_pc.jpg) no-repeat center bottom;
    background-size: cover;
    padding-top: 160px;
    padding-bottom: 480px;
  }
}
#top #contact_intro .btn.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #contact_intro .btn.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #contact_intro .btn a {
  display: block;
  color: #fff;
  background-color: #41ab79;
  width: 140px;
  border-radius: 10px;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  text-decoration: none;
  padding: 1rem 0;
}
@media (min-width: 960px) {
  #top #contact_intro .btn a {
    font-size: 3.6rem;
    width: 280px;
    margin: 0 auto 20px;
  }
}
@media (min-width: 960px) {
  #top #contact_intro .lead {
    font-size: 2rem;
  }
}
#top #contact_intro .lead.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top #contact_intro .lead.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*---------------------------------
  contact
---------------------------------*/
#contact .ttl {
  justify-content: center;
  margin-left: 0;
}
#contact #main {
  background: url(/asset/images/contact_bg_sp.jpg) no-repeat center bottom;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 300px;
}
@media (min-width: 960px) {
  #contact #main {
    background: url(/asset/images/contact_bg_pc.jpg) no-repeat center bottom;
    background-size: cover;
    padding-bottom: 500px;
  }
}
#contact #main #formWrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  /* form */
}
#contact #main #formWrap.thanks {
  height: 100vh;
}
#contact #main #formWrap .ttl {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #contact #main #formWrap .ttl {
    margin-bottom: 60px;
  }
}
#contact #main #formWrap h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
#contact #main #formWrap .lead {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #contact #main #formWrap .lead {
    margin-bottom: 60px;
  }
}
#contact #main #formWrap .formTable {
  width: 100%;
}
#contact #main #formWrap .formTable .form__style {
  width: 100%;
  min-height: calc(1.5em + 0.75rem + 2px);
  padding: 1rem 0.75rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  margin: 0;
  font-family: inherit;
}
#contact #main #formWrap .formTable th {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  display: block;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  #contact #main #formWrap .formTable th {
    display: table-cell;
    padding: 10px 0;
    width: 20rem;
  }
}
#contact #main #formWrap .formTable th div {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  #contact #main #formWrap .formTable th div {
    width: 22rem;
    margin-right: 1.5rem;
    justify-content: space-between;
  }
}
#contact #main #formWrap .formTable th .required {
  background-color: #41ab79;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 0.5rem;
  padding: 2px;
  border-radius: 2px;
}
@media (min-width: 768px) {
  #contact #main #formWrap .formTable th .required {
    font-size: 1.4rem;
    padding: 4px;
  }
}
#contact #main #formWrap .formTable td {
  display: block;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  #contact #main #formWrap .formTable td {
    display: table-cell;
    padding: 10px 0;
  }
}
#contact #main #formWrap .contact__btn {
  margin-top: 40px;
}
@media (min-width: 768px) {
  #contact #main #formWrap .contact__btn {
    display: flex;
    justify-content: center;
  }
}
#contact #main #formWrap .contact__btn button, #contact #main #formWrap .contact__btn input {
  display: block;
  width: 100%;
  text-align: center;
  border: 5px;
  color: #fff;
  font-size: 2rem;
  padding: 20px 0;
  cursor: pointer;
  margin: 0;
  font-family: inherit;
  line-height: inherit;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #contact #main #formWrap .contact__btn button, #contact #main #formWrap .contact__btn input {
    width: 300px;
    margin: 0 15px;
  }
}
#contact #main #formWrap .contact__btn .btn__submit {
  background-color: #41ab79;
}
#contact #main #formWrap .contact__btn .btn__wait {
  background-color: #666;
}
#contact #main #formWrap .thanks__message {
  text-align: center;
  padding: 40px 0;
}
#contact #main #formWrap .thanks__message .txt {
  line-height: 2;
}
#contact #main #formWrap .thanks__message .btn {
  margin-top: 40px;
}
#contact #main #formWrap .thanks__message .btn a {
  background-color: #41ab79;
  color: #fff;
  text-align: center;
  width: 280px;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
}
/*# sourceMappingURL=styles.css.map */