@charset "UTF-8";
/** @format */
/** @format */
/** @format */
/** @format */
/* bold */
@font-face {
  font-family: "DIN Alternate";
  src: url("../font/DIN Alternate Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 62.5%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  color: #333333;
  background-color: #f6f8f9;
  letter-spacing: 1px;
  font-size: 1em;
  overflow: hidden;
}

img {
  width: 100%;
}

.wrapper {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

p {
  line-height: 1.4em;
  letter-spacing: 2px;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1.5s ease;
  transition: opacity 1s ease, -webkit-transform 1.5s ease;
  transition: opacity 1s ease, transform 1.5s ease;
  transition: opacity 1s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

/** @format */
/** @format */
.page-title-section {
  width: 100%;
  position: relative;
  min-height: 200px;
}
@media screen and (max-width: 800px) {
  .page-title-section {
    min-height: 180px;
  }
}
@media screen and (max-width: 533px) {
  .page-title-section {
    min-height: 100px;
  }
}

.page-title__inner {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .page-title__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-title__text {
  position: absolute;
  top: 10vw;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 533px) {
  .page-title__text {
    top: 16vw;
  }
}
@media screen and (max-width: 400px) {
  .page-title__text {
    top: 21vw;
  }
}
.page-title__text .page-title__main {
  font-size: 2.8em;
  color: #01438b;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media screen and (max-width: 1120px) {
  .page-title__text .page-title__main {
    font-size: 2.4em;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 800px) {
  .page-title__text .page-title__main {
    font-size: 2.2em;
    margin-bottom: 4px;
    max-width: 8em;
  }
}
@media screen and (max-width: 533px) {
  .page-title__text .page-title__main {
    font-size: 1.6em;
    letter-spacing: 2px;
  }
}

.page-title__sub {
  font-size: 1.4em;
  color: #a0a0a0;
}
@media screen and (max-width: 800px) {
  .page-title__sub {
    font-size: 1.2em;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 533px) {
  .page-title__sub {
    display: none;
  }
}

.section__title_img {
  width: 100%;
  aspect-ratio: 5/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1120px) {
  .section__title_img {
    aspect-ratio: 4/1;
  }
}
@media screen and (max-width: 533px) {
  .section__title_img {
    aspect-ratio: 3/1;
  }
}
@media screen and (max-width: 400px) {
  .section__title_img {
    aspect-ratio: 2/1;
  }
}

.breadcrumb {
  padding: 32px 64px;
}
@media screen and (max-width: 800px) {
  .breadcrumb {
    padding: 24px 40px;
  }
}
@media screen and (max-width: 400px) {
  .breadcrumb {
    padding: 24px;
  }
}
.breadcrumb__inner {
  font-size: 1.2em;
  color: #666;
}
.breadcrumb__link {
  color: #01438b;
  margin-right: 4px;
}
.breadcrumb__current {
  font-weight: bold;
  color: #333;
}

.breadcrumb-post {
  padding: 96px 64px 32px;
}
@media screen and (max-width: 800px) {
  .breadcrumb-post {
    padding: 24px 40px;
  }
}
@media screen and (max-width: 400px) {
  .breadcrumb-post {
    padding: 24px;
  }
}
.breadcrumb-post__inner {
  font-size: 1.2em;
  color: #666;
}
.breadcrumb-post__link {
  color: #01438b;
  margin-right: 4px;
}
.breadcrumb-post__current {
  font-weight: bold;
  color: #333;
}

/* -----------------------------
Contact
------------------------------*/
.contact {
  padding: 64px;
  background-image: -webkit-linear-gradient(150deg, #03274d, transparent 66vw);
  background-image: linear-gradient(-60deg, #03274d, transparent 66vw);
  padding-top: 40px;
  margin-top: 0;
  background-color: #01438b;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .contact {
    padding-top: 24px; /* ← ここに移動！ */
  }
}
@media screen and (max-width: 800px) {
  .contact {
    margin-top: 0;
    padding-top: 40px;
    position: relative;
  }
}
@media screen and (max-width: 533px) {
  .contact {
    padding: 40px;
  }
}
@media screen and (max-width: 400px) {
  .contact {
    padding: 40px 0;
  }
}

.section__title_contact {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  padding: 0 40px;
  text-align: left;
  font-size: 2.2em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 4px;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .section__title_contact {
    font-size: 1.8em;
    margin-top: -10px;
    padding: 0;
  }
}
@media screen and (max-width: 533px) {
  .section__title_contact {
    padding: 0;
  }
}
@media screen and (max-width: 400px) {
  .section__title_contact {
    padding: 0 40px;
  }
}
.section__title_contact::before {
  position: absolute;
  top: -64px;
  right: 0;
  letter-spacing: 8px;
  content: "CONTACT";
  font-family: "DIN Alternate", Bahnschrift, "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-size: 144px;
  color: #fff;
  opacity: 0.2;
  text-transform: uppercase;
  z-index: -10;
}
@media screen and (max-width: 1120px) {
  .section__title_contact::before {
    top: -40px;
    font-size: 5em;
  }
}
@media screen and (max-width: 800px) {
  .section__title_contact::before {
    top: -24px;
    font-size: 4em;
    letter-spacing: 4px;
  }
}
@media screen and (max-width: 533px) {
  .section__title_contact::before {
    display: none;
  }
}

.contact__text {
  max-width: 560px;
  font-size: 2em;
  color: #fff;
  letter-spacing: 3px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .contact__text {
    max-width: 560px;
    font-size: 1.8em;
  }
}
@media screen and (max-width: 980px) {
  .contact__text {
    max-width: 500px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 800px) {
  .contact__text {
    font-size: 1.6em;
  }
}

.contact__group {
  padding: 64px 40px 16px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .contact__group {
    padding: 40px 0 16px;
  }
}
@media screen and (max-width: 400px) {
  .contact__group {
    padding: 40px 40px 16px;
  }
}

.contact__concept_btn {
  display: block;
  margin: 0 0 0 auto;
  font-weight: 400;
  font-size: 1.8em;
  border: 2px solid #01438b;
  letter-spacing: 2px;
  padding: 16px 32px;
  color: #01438b;
  background-color: #fff;
  border-radius: 99px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 980px) {
  .contact__concept_btn {
    font-size: 1.6em;
    letter-spacing: 2px;
    padding: 12px 24px;
  }
}
@media screen and (max-width: 400px) {
  .contact__concept_btn {
    margin: 0 auto;
  }
}
.contact__concept_btn::after {
  background: #023770;
  position: absolute;
  top: 0;
  left: 0px;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: skewY(-10deg) scale(1, 0);
          transform: skewY(-10deg) scale(1, 0);
  height: 140px;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.contact__concept_btn:hover {
  border: 2px solid #fff;
  color: #fff;
}
.contact__concept_btn:hover::after {
  -webkit-transform: skewY(-10deg) scale(1, 1);
          transform: skewY(-10deg) scale(1, 1);
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: opacity 1s, -webkit-transform 2s ease;
  transition: opacity 1s, -webkit-transform 2s ease;
  transition: opacity 1s, transform 2s ease;
  transition: opacity 1s, transform 2s ease, -webkit-transform 2s ease;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ceo-message {
  padding: 64px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .ceo-message {
    padding: 40px 64px;
  }
}
@media screen and (max-width: 800px) {
  .ceo-message {
    padding: 24px 64px;
  }
}
@media screen and (max-width: 533px) {
  .ceo-message {
    padding: 24px 40px;
  }
}
.ceo-message__title {
  font-size: 3.2em;
  margin-bottom: 24px;
  letter-spacing: 4px;
  color: #333333;
  text-align: left;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .ceo-message__title {
    font-size: 2.8em;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 533px) {
  .ceo-message__title {
    font-size: 2.3em;
    letter-spacing: 1px;
    line-height: 1.4;
  }
}
.ceo-message__body {
  margin: 0 auto;
  text-align: left;
}
.ceo-message__signature {
  text-align: right;
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 32px;
}
@media screen and (max-width: 533px) {
  .ceo-message__signature {
    font-size: 1.6em;
    letter-spacing: normal;
    line-height: normal;
  }
}

.ceo-message__body_text {
  font-size: 1.8em;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  .ceo-message__body_text {
    font-size: 1.6em;
    line-height: 1.8;
  }
}
.ceo-message__body_text:last-child {
  margin-bottom: 0;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .section-container {
    padding: 0;
  }
}

.vision {
  padding: 24px 64px;
}
@media screen and (max-width: 533px) {
  .vision {
    padding: 24px 40px;
  }
}
.vision__title {
  color: #fff;
  font-size: 3.2em;
  margin-bottom: 32px;
}
@media screen and (max-width: 800px) {
  .vision__title {
    font-size: 2.8em;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 533px) {
  .vision__title {
    font-size: 2.4em;
  }
}
.vision__item {
  background: #fff;
  margin-bottom: 16px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  max-width: 800px;
}
.vision__header {
  width: 100%;
  padding: 24px;
  font-size: 2.3em;
  font-weight: bold;
  background: #fff;
  color: #333;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border: none;
}
.vision__header:hover {
  background: #fff;
}
@media screen and (max-width: 800px) {
  .vision__header {
    font-size: 2em;
    padding: 16px 24px;
  }
}
@media screen and (max-width: 400px) {
  .vision__header {
    font-size: 1.8em;
  }
}
.vision__icon .triangle {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.vision__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
}
.vision__text {
  font-size: 2em;
  color: #333;
  letter-spacing: 1px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .vision__text {
    font-size: 1.6em;
  }
}
.vision__text .bold {
  font-weight: bold;
}

.vision__item.is-open {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.vision__item.is-open .vision__icon .triangle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.vision__item.is-open .vision__content {
  padding: 8px 24px 16px;
  max-height: 500px;
}

.vision__item .vision__content .vision__list {
  padding-left: 2em;
  margin-bottom: 16px;
  list-style-type: disc;
}
.vision__item .vision__content .vision__list .vision__list_text {
  font-size: 2em;
  line-height: 1.7;
  margin-bottom: 3px;
}
@media screen and (max-width: 800px) {
  .vision__item .vision__content .vision__list .vision__list_text {
    font-size: 1.6em;
  }
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .section-container {
    padding: 0;
  }
}

.philosophy-actions {
  padding: 64px 40px;
}
.philosophy-actions__heading {
  font-size: 3.2em;
  margin-bottom: 40px;
  text-align: left;
  color: #333;
  letter-spacing: 2px;
}
@media screen and (max-width: 800px) {
  .philosophy-actions__heading {
    font-size: 2.4em;
  }
}
.philosophy-actions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 24px 40px;
}
@media screen and (max-width: 800px) {
  .philosophy-actions__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (max-width: 533px) {
  .philosophy-actions__list {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
}
.philosophy-actions__item {
  background: #fff;
  padding: 16px 24px;
  text-align: center;
  -webkit-box-shadow: 5px 5px 5px #ededef;
          box-shadow: 5px 5px 5px #ededef;
}
.philosophy-actions__icon {
  margin-bottom: 12px;
}
.philosophy-actions__icon img {
  width: 72px;
  height: auto;
}
@media screen and (max-width: 533px) {
  .philosophy-actions__icon img {
    width: 56px;
  }
}
.philosophy-actions__text {
  font-size: 2.2em;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .philosophy-actions__text {
    font-size: 2em;
  }
}
@media screen and (max-width: 533px) {
  .philosophy-actions__text {
    font-size: 1.8em;
  }
}

.philosophy-actions__item {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.philosophy-actions__item.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}/*# sourceMappingURL=philosophy.css.map */