@charset "UTF-8";
/**
 * color.
 */
@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.pc-none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.is-hide {
  opacity: 0;
}

/**
 * etc.
 */
/* arrow-circle */
.arrow-circle::before {
  content: '';
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 22px;
  height: 22px;
  border: 1px solid #0dc4b9;
  border-radius: 50%;
}

.arrow-circle::after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 5.5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0dc4b9;
  border-right: 2px solid #0dc4b9;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/**
 * animation.
 */
/*==================================================
 スタート時は要素自体を透過0にするためのopacity:0;を指定する
 ===================================*/
.scrollItem {
  opacity: 0;
}

/*==================================================
 ふわっ
 ===================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
  背景色が伸びて出現
==================================================*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
  display: block;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #6dc9ed;
  /*伸びる背景色の設定*/
}

.onayami .common__h2 .bgLRextend::before {
  width: 100%;
  left: 0;
}

.suggest .common__h2 .bgLRextend::before {
  width: 100%;
  left: 0;
}

.step .common__h2 .bgLRextend::before {
  width: 36%;
  left: 31%;
}

.serviceList .common__h2 .bgLRextend::before {
  width: 80%;
  left: 12%;
}

.staff .common__h2 .bgLRextend::before {
  width: 76%;
  left: 12%;
}

.voice .common__h2 .bgLRextend::before {
  width: 86%;
  left: 10%;
}

.question .common__h2 .bgLRextend::before {
  width: 70%;
  left: 10%;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.step__img .bgextend {
  display: block;
  height: 350px;
}

.step__img .bgextend::before {
  border-radius: 60px;
  display: block;
  width: 100%;
}

/* MV circle */
.circle {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
}

@media screen and (min-width: 768px) {
  .circle {
    width: 89rem;
    height: 89rem;
  }
}

@media screen and (max-width: 767px) {
  .circle {
    width: 49rem;
    height: 49rem;
  }
}

.circle__block {
  width: 100%;
  position: relative;
}

.circle--01 {
  margin-top: .5rem;
  margin-left: .5rem;
  background: #0087c1;
  -webkit-animation: circleMove_01 5s linear infinite;
          animation: circleMove_01 5s linear infinite;
  z-index: 3;
}

@media screen and (min-width: 768px) {
  .circle--01 {
    width: 87rem;
    height: 87rem;
  }
}

@-webkit-keyframes circleMove_01 {
  0% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  50% {
    border-radius: 58% 52% 55% 52% / 52% 48% 56% 51%;
  }
  100% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
}

@keyframes circleMove_01 {
  0% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  50% {
    border-radius: 58% 52% 55% 52% / 52% 48% 56% 51%;
  }
  100% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
}

.circle--02 {
  background: #6dc9ed;
  -webkit-animation: circleMove_02 10s linear infinite;
          animation: circleMove_02 10s linear infinite;
  z-index: 2;
}

@-webkit-keyframes circleMove_02 {
  0% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  50% {
    border-radius: 51% 60% 54% 56% / 54% 51% 55% 60%;
  }
  100% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
}

@keyframes circleMove_02 {
  0% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  50% {
    border-radius: 51% 60% 54% 56% / 54% 51% 55% 60%;
  }
  100% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
}

.circle--03 {
  margin-top: 10px;
  background: #b6e9ff;
  -webkit-animation: circleMove_03 5s linear infinite;
          animation: circleMove_03 5s linear infinite;
  z-index: 1;
}

@-webkit-keyframes circleMove_03 {
  0% {
    border-radius: 51% 60% 54% 56% / 54% 51% 55% 60%;
  }
  50% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  100% {
    border-radius: 51% 60% 54% 56% / 54% 51% 55% 60%;
  }
}

@keyframes circleMove_03 {
  0% {
    border-radius: 51% 60% 54% 56% / 54% 51% 55% 60%;
  }
  50% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  100% {
    border-radius: 51% 60% 54% 56% / 54% 51% 55% 60%;
  }
}

/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

/*
  * 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,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

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

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

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type="number"] {
  width: auto;
  /* Firefox 36+ */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Safari 8+ */
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}

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

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

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

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}

/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
     # Selection
     # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/**
 * base.
 */
html {
  font-size: 62.5%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: bold;
}

p {
  margin: 0;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

button {
  padding: 0;
  border: none;
  outline: none;
}

input {
  border: 0;
  padding: 0;
  outline: none;
}

th {
  font-weight: normal;
}

/**
 * font-family.
 */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 500;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

.font-en {
  font-family: "Alata", sans-serif;
}

/**
  * transition.
  */
/**
 * header.
 */
.header {
  max-width: 1140px;
  margin: 2.4rem auto 0;
  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;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .header {
    width: 97%;
    margin: 1% auto;
  }
}

.header__logo {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
      -ms-flex: 4;
          flex: 4;
}

.header__logo a:hover {
  opacity: .75;
}

.header__logo img {
  max-width: 150px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .header__logo img {
    max-width: 100px;
  }
}

.header__menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header__menu ul.nav-items {
  position: relative;
  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;
}

.header__menu li.nav-item {
  width: 72px;
  height: 72px;
}

@media screen and (max-width: 767px) {
  .header__menu li.nav-item {
    width: 56px;
    height: 56px;
  }
  .header__menu li.nav-item:last-child {
    display: none;
  }
  .header__menu li.nav-item:nth-child(2) {
    margin-left: .5rem;
  }
}

.header__menu li.nav-item a.nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .header__menu li.nav-item a.nav-link {
    font-size: 1rem;
  }
}

.header__menu li.nav-item span.font-en {
  font-size: 1.15rem;
  letter-spacing: .1em;
}

.header__menu--white a {
  color: #6dc9ed;
  background-color: #fff;
  border: 2px solid #6dc9ed;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__menu--white a:hover {
  color: #fff;
  background-color: #ff90b7;
  border: 2px solid #fff;
}

.header__menu--blue a.nav-link {
  color: #fff;
  background-color: #6dc9ed;
  border: 2px solid #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__menu--blue a.nav-link:hover {
  background-color: #ff90b7;
}

.header .submenu {
  width: 10rem;
}

.header .submenu-item {
  margin-bottom: .5rem;
}

.header .submenu-item a {
  text-align: left;
  color: #0087c1;
  font-size: 1.2rem;
}

.header .submenu-link {
  padding: 0;
}

.header .show-submenu a.nav-link {
  background-color: #ff90b7;
}

/**
 * footer.
 */
.footer {
  color: #fff;
  position: relative;
  background-color: #022a69;
  padding: 15rem 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 4rem 0 8rem;
  }
}

.footer::before {
  content: '';
  display: block;
  background-color: #022a69;
  border-radius: 100%;
  position: absolute;
  width: 142%;
  height: 300px;
  z-index: 20;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -17%);
          transform: translate(-50%, -17%);
}

@media screen and (max-width: 767px) {
  .footer::before {
    width: 170%;
    height: 100px;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%);
  }
}

.footer__inner {
  width: 1140px;
  background-color: #022a69;
  margin: 0 auto;
  position: relative;
  z-index: 30;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    width: 100%;
    padding: 0 20px;
  }
}

.footer__logo {
  width: 200px;
  margin: 0 auto 5rem;
}

.footer__logo a {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.footer__logo a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .footer__logo img {
    max-width: 200px;
    margin: 0 auto 4rem;
    padding-top: 1rem;
  }
}

.footer__company {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .footer__company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer__company p {
  width: 60%;
  font-size: 1rem;
  text-align: left;
  line-height: 2.14;
  font-weight: 600;
}

.footer__link {
  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;
  padding: 0 2rem;
}

@media screen and (max-width: 767px) {
  .footer__link {
    width: 100%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer__link--copy {
  font-size: 1.2rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .footer__link--copy {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
}

@media screen and (max-width: 767px) {
  .footer__link--copy {
    font-size: .8rem;
    margin-top: 2rem;
    text-align: center;
  }
}

.footer__link--privacy {
  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;
}

@media screen and (min-width: 768px) {
  .footer__link--privacy {
    -webkit-box-flex: 1.2;
    -webkit-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
  }
}

@media screen and (max-width: 767px) {
  .footer__link--privacy {
    width: 100%;
    padding: 0 2.4rem;
  }
}

.footer__link--privacy a {
  font-size: 1.4rem;
  color: #FFF;
  text-align: left;
  font-weight: 600;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.footer__link--privacy a:hover {
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .footer__link--privacy a {
    font-size: 1rem;
  }
}

/**
 * etc.
 */
/**
 * function.
 */
/* menu-open */
/* page-top */
.page-top {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(0%, -150%);
          transform: translate(0%, -150%);
}

.page-top a {
  display: block;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.page-top a:hover {
  opacity: .75 !important;
}

@media screen and (max-width: 767px) {
  .page-top {
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
  }
}

/* Navigation */
.dropdown {
  position: relative;
}

.dropdown .nav-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  border: 5px solid transparent;
  border-top-color: #fff;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;
  width: 20rem;
  margin-left: -38px;
  margin-top: 12px;
  opacity: 0;
  -webkit-transform: translate(0, 0) scale(0.85);
          transform: translate(0, 0) scale(0.85);
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
  transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

.submenu-items {
  list-style: none;
  padding: 10px 0;
  display: block;
  text-align: left;
  position: relative;
}

.submenu-items::before {
  width: 14px;
  height: 14px;
  content: '';
  display: block;
  position: absolute;
  top: -2rem;
  left: 50%;
  background: url(../images/header-arrow.png) no-repeat center/contain;
  -webkit-transform: translateX(-18px);
          transform: translateX(-18px);
}

.show-submenu {
  opacity: 1;
  -webkit-transform: translate(0, 25px) scale(1);
          transform: translate(0, 25px) scale(1);
  pointer-events: auto;
}

/* people */
.people {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
}

.people:before {
  content: '';
  display: block;
}

.people__block {
  width: 100%;
  height: 100vh;
  position: relative;
}

.people--01 {
  width: 141px;
  height: 187px;
  -webkit-transform: translate(-370%, -130%);
          transform: translate(-370%, -130%);
  background: url(../images/parts_people_1.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .people--01 {
    width: 60px;
    height: 80px;
    -webkit-transform: translate(-260%, -100%);
            transform: translate(-260%, -100%);
    background-size: contain;
  }
}

.people--02 {
  width: 123px;
  height: 204px;
  -webkit-transform: translate(-150%, 30%);
          transform: translate(-150%, 30%);
  background: url(../images/parts_people_2.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .people--02 {
    display: none !important;
  }
}

.people--03 {
  width: 103px;
  height: 156px;
  -webkit-transform: translate(350%, -50%);
          transform: translate(350%, -50%);
  background: url(../images/parts_people_3.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .people--03 {
    width: 68px;
    height: 68px;
    -webkit-transform: translate(122%, -155%);
            transform: translate(122%, -155%);
    background-size: contain;
  }
}

/**
 * top.
 */
/**
 * common 共通指定
 */
.common {
  /* h2 */
}

.common__h2 {
  position: relative;
  z-index: 10;
  font-size: 3rem;
  color: #006f9b;
  text-align: center;
  letter-spacing: .1em;
  text-shadow: 1px 1px 0px #fff, 2px 2px 0px #fff, 3px 3px 0px #fff, 4px 4px 0px #fff;
}

@media screen and (max-width: 767px) {
  .common__h2 {
    font-size: 1.5rem;
  }
}

.common__h2--small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .common__h2--small {
    font-size: .8rem;
  }
}

.common__h2--large {
  display: block;
  font-size: 3rem;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .common__h2--large {
    font-size: 1.6rem;
  }
}

/* h2 */
h2.common__h2 {
  position: relative;
  margin: 0 auto;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  h2.common__h2 {
    width: 100%;
  }
}

h2.common__h2::after {
  content: '';
  margin: 0 auto;
  margin-top: -.5rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center top;
}

@media screen and (max-width: 767px) {
  h2.common__h2::after {
    width: 100%;
    background-size: contain;
  }
}

/* mv */
.mv {
  max-width: 1140px;
  margin: 0 auto 0;
  height: 75rem;
}

@media screen and (max-width: 767px) {
  .mv {
    width: calc(100% - 1.6rem);
    height: auto;
    margin: 0 auto 5rem;
  }
}

.mv__inner {
  position: relative;
  display: -ms-grid;
  display: grid;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .mv__inner {
    -ms-grid-columns: (19rem)[6];
        grid-template-columns: repeat(6, 19rem);
    -ms-grid-rows: (13rem)[6];
        grid-template-rows: repeat(6, 13rem);
    position: absolute;
    top: 2%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}

@media screen and (max-width: 767px) {
  .mv__inner {
    -ms-grid-columns: (50%)[2];
        grid-template-columns: repeat(2, 50%);
    -ms-grid-rows: (7rem)[6];
        grid-template-rows: repeat(6, 7rem);
  }
}

.mv__image {
  -ms-grid-column: 2;
  -ms-grid-column-span: 4;
  grid-column: 2 / span 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 4;
  grid-row: 1 / span 4;
}

@media screen and (max-width: 767px) {
  .mv__image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1 / span 4;
  }
}

.mv__image--img {
  width: 661px;
  margin: 0 auto;
  display: block;
}

.mv__contents {
  -ms-grid-column: 2;
  -ms-grid-column-span: 4;
  grid-column: 2 / span 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  grid-row: 2 / span 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .mv__contents {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 4;
    grid-row: 1 / span 4;
  }
}

.mv__contents h2 {
  margin-top: auto;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .mv__contents h2 {
    min-width: 67rem;
    height: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .mv__contents h2 {
    width: 100%;
    height: 3rem;
    margin: 5rem auto 1rem;
  }
}

.mv__contents h2::before {
  content: '';
  width: 76.4rem;
  height: 3.6rem;
  margin: 0 auto;
  display: block;
  background: url(../images/mv_catch.png) no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .mv__contents h2::before {
    width: 100%;
    background: url(../images/mv-sp_catch.png) no-repeat center/contain;
  }
}

.mv__contents p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.75;
  color: #fff;
  font-weight: 600;
  letter-spacing: .16em;
}

@media screen and (max-width: 767px) {
  .mv__contents p {
    font-size: 1rem;
  }
}

.mv__contents p.is-textshadow {
  text-shadow: 2px 2px 1px #0087c1, -2px 2px 1px #0087c1, 2px -2px 1px #0087c1, -2px -2px 1px #0087c1, 2px 0px 1px #0087c1, 0px 2px 1px #0087c1, -2px 0px 1px #0087c1, 0px -2px 1px #0087c1;
}

.mv__contents__catch {
  background-color: #fff;
  color: #0087c1 !important;
  display: table;
  font-size: 3rem !important;
  line-height: 1.3 !important;
  margin: 10rem auto 0;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .mv__contents__catch {
    font-size: 1.5rem !important;
  }
}

.mv__people1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 2;
  grid-row: 3 / span 2;
}

@media screen and (max-width: 767px) {
  .mv__people1 {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6 / span 1;
  }
}

.mv__people1:before {
  content: '';
  display: block;
  width: 20rem;
  height: 20rem;
  background: url(../images/parts_people_1.png) no-repeat center bottom/contain;
}

@media screen and (max-width: 767px) {
  .mv__people1:before {
    width: 10rem;
    height: 10rem;
  }
}

.mv__people2 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-row: 6;
  -ms-grid-row-span: 2;
  grid-row: 6 / span 2;
  margin-top: -8rem;
}

.mv__people2::before {
  content: '';
  display: block;
  width: 20rem;
  height: 20rem;
  background: url(../images/parts_people_2.png) no-repeat left bottom/contain;
}

.mv__people3 {
  -ms-grid-column: 5;
  -ms-grid-column-span: 2;
  grid-column: 5 / span 2;
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  grid-row: 4 / span 2;
}

@media screen and (max-width: 767px) {
  .mv__people3 {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / span 2;
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6 / span 1;
  }
}

.mv__people3::before {
  content: '';
  display: block;
  width: 20rem;
  height: 16rem;
  margin: 6rem 0 0 6rem;
  background: url(../images/parts_people_3.png) no-repeat right top/contain;
}

@media screen and (max-width: 767px) {
  .mv__people3::before {
    width: 10rem;
    height: 10rem;
    margin: -5rem auto 0;
  }
}

.mv__arrow {
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
  grid-column: 3 / span 2;
  -ms-grid-row: 5;
  -ms-grid-row-span: 2;
  grid-row: 5 / span 2;
}

@media screen and (max-width: 767px) {
  .mv__arrow {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4 / span 1;
  }
}

.mv__arrow::before {
  content: '';
  display: block;
  width: 4.4rem;
  height: 3.4rem;
  margin: 6rem auto 0;
  background: url(../images/mv-arrow.png) no-repeat center bottom/contain;
}

@media screen and (max-width: 767px) {
  .mv__arrow::before {
    width: 1.5rem;
    height: 1.5rem;
    margin: 8rem auto 0;
  }
}

/* onayami */
.onayami {
  max-width: 1140px;
  margin: 0 auto 0;
}

@media screen and (max-width: 767px) {
  .onayami {
    width: calc(100% - 1.6rem);
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .onayami__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (14.2rem)[8];
        grid-template-columns: repeat(8, 14.2rem);
    -ms-grid-rows: (15rem)[4];
        grid-template-rows: repeat(4, 15rem);
  }
}

.onayami h2 {
  -ms-grid-column: 3;
  -ms-grid-column-span: 4;
  grid-column: 3 / span 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}

@media screen and (max-width: 767px) {
  .onayami h2 {
    width: 80%;
    margin: 0 auto;
  }
}

.onayami__list {
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / span 4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / span 2;
  margin-left: 2rem;
}

.onayami__list li {
  margin-bottom: 3rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .onayami__list li {
    margin-bottom: 1.1rem;
  }
}

.onayami__list li::before {
  content: '・';
  margin: .5rem 1rem 0 -1.3rem;
  font-weight: 600;
}

.onayami__list p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: .25rem;
}

@media screen and (max-width: 767px) {
  .onayami__list p {
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.onayami__image {
  -ms-grid-column: 5;
  -ms-grid-column-span: 4;
  grid-column: 5 / span 4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1 / span 5;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .onayami__image {
    width: 80%;
    margin: 3rem auto;
  }
}

/* suggest */
.suggest {
  max-width: 1140px;
  margin: 0 auto 0;
}

@media screen and (max-width: 767px) {
  .suggest {
    margin: 5rem auto 0;
  }
}

.suggest__inner {
  background: url(../images/suggest_bg.png) no-repeat 22% 14rem/auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (16rem)[7];
      grid-template-columns: repeat(7, 16rem);
  -ms-grid-rows: (16rem)[8];
      grid-template-rows: repeat(8, 16rem);
  margin: -8rem 1rem 0;
}

@media screen and (max-width: 767px) {
  .suggest__inner {
    background: url(../images/suggest-sp_bg.png) no-repeat center 10rem/80%;
    -ms-grid-columns: (25%)[4];
        grid-template-columns: repeat(4, 25%);
    -ms-grid-rows: (4.5rem)[15];
        grid-template-rows: repeat(15, 4.5rem);
    margin: 0;
  }
}

.suggest__contents {
  background: url(../images/suggest_bg.png) no-repeat 22% 14rem/auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (16rem)[7];
      grid-template-columns: repeat(7, 16rem);
  -ms-grid-rows: (16rem)[7];
      grid-template-rows: repeat(7, 16rem);
}

@media screen and (max-width: 767px) {
  .suggest__contents {
    background: url(../images/suggest-sp_bg.png) no-repeat center 10rem/80%;
    -ms-grid-columns: (25%)[4];
        grid-template-columns: repeat(4, 25%);
    -ms-grid-rows: (4.5rem)[15];
        grid-template-rows: repeat(15, 4.5rem);
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1 / span 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 15;
    grid-row: 1 / span 15;
  }
}

.suggest h2 {
  display: table;
}

@media screen and (max-width: 767px) {
  .suggest h2 {
    width: 80%;
    margin: 0 auto -4rem;
  }
}

.suggest__box p {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: .25rem;
}

@media screen and (max-width: 767px) {
  .suggest__box p {
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: .05rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: inherit;
  }
}

.suggest__box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px #999;
          box-shadow: 0 0 8px #999;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

@media screen and (max-width: 767px) {
  .suggest__box {
    padding: .5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.suggest .box1 {
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-column: 6 / span 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  margin: 6rem 4rem 0 -5rem;
}

@media screen and (max-width: 767px) {
  .suggest .box1 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / span 2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 / span 2;
    margin: 0 0 0 1rem;
    height: 5rem;
  }
}

.suggest .box2 {
  -ms-grid-column: 6;
  -ms-grid-column-span: 2;
  grid-column: 6 / span 2;
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4 / span 1;
  margin: 10rem 8rem 0 -4rem;
  height: 10rem;
}

@media screen and (max-width: 767px) {
  .suggest .box2 {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3 / span 2;
    -ms-grid-row: 9;
    -ms-grid-row-span: 1;
    grid-row: 9 / span 1;
    margin: 0 0 0 1rem;
    height: 5rem;
  }
}

.suggest .box3 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 4;
  -ms-grid-row-span: 2;
  grid-row: 4 / span 2;
  height: 10rem;
  margin: 10rem 4rem 0 -3rem;
  padding: 2rem 2rem;
}

@media screen and (max-width: 767px) {
  .suggest .box3 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 9;
    -ms-grid-row-span: 2;
    grid-row: 9 / span 2;
    margin: 0rem 0 0 1rem;
    height: 5rem;
    padding: 1rem .5rem;
  }
}

.suggest .box4 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
  margin: 6rem 3rem 0 -4rem;
}

@media screen and (max-width: 767px) {
  .suggest .box4 {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 2;
    grid-row: 3 / span 2;
    margin: 0 0 0 1rem;
    height: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .suggest .suggest_bottom {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
    -ms-grid-row: 5;
    -ms-grid-row-span: 3;
    grid-row: 5 / span 3;
    width: 40rem;
    height: 40rem;
    background: url(../images/suggest_last--bg.png) no-repeat top left/contain;
    margin-top: 6rem;
    padding: 18rem 5.5rem 0;
  }
}

@media screen and (max-width: 767px) {
  .suggest .suggest_bottom {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 10;
    -ms-grid-row-span: 6;
    grid-row: 10 / span 6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 2rem 0 1rem;
    background: url(../images/suggest-sp_last--bg.png) no-repeat 0 2rem/contain;
  }
}

.suggest .suggest_bottom p {
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: .25rem;
}

@media screen and (max-width: 767px) {
  .suggest .suggest_bottom p {
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: .1rem;
  }
}

/* step */
.step {
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .step {
    margin-bottom: 16%;
  }
}

@media screen and (max-width: 767px) {
  .step h2.common__h2 {
    width: 80%;
    margin-bottom: 10%;
  }
}

.step__inner {
  margin-top: 5.8rem;
}

@media screen and (max-width: 767px) {
  .step__inner {
    margin-top: 4%;
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media screen and (min-width: 768px) {
  .step__inner li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 7rem;
  }
}

@media screen and (max-width: 767px) {
  .step__inner li {
    margin-bottom: 10%;
  }
}

.step__inner li:nth-child(2) {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.step__inner li:nth-child(2) h3 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.step__inner li:nth-child(2) .step__img {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 9rem;
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .step__inner li:nth-child(2) .step__img {
    margin-left: 0;
  }
}

.step__inner li:nth-child(2) .step__cont {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.step .step1::before {
  width: 9.5rem;
  height: 4rem;
  content: '';
  display: block;
  margin: 0 auto 3.3rem;
  background: url(../images/step_h3--step1.png) no-repeat center bottom/contain;
}

@media screen and (max-width: 767px) {
  .step .step1::before {
    width: 9.5rem;
    height: 1.5rem;
    margin: 0 auto 1.8rem;
  }
}

.step .step2::before {
  width: 9.5rem;
  height: 4rem;
  content: '';
  display: block;
  margin: 0 auto 3.3rem;
  background: url(../images/step_h3--step2.png) no-repeat center bottom/contain;
}

@media screen and (max-width: 767px) {
  .step .step2::before {
    width: 9.5rem;
    height: 1.5rem;
    margin: 0 auto 1.8rem;
  }
}

.step__img {
  width: 58rem;
  height: 34.5rem;
  margin-right: 3.6rem;
  border-radius: 6rem;
  overflow: hidden;
  background-color: #b6e9ff;
  /* dummy */
}

@media screen and (max-width: 767px) {
  .step__img {
    width: 100%;
    height: 17.2rem;
    border-radius: 30px;
    margin-right: 0;
  }
}

.step__cont {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .step__cont {
    margin-top: 0;
  }
}

.step__cont p {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: .25rem;
}

@media screen and (max-width: 767px) {
  .step__cont p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.step__h3 {
  padding: 11rem 0;
  font-size: 2rem;
  text-align: center;
  letter-spacing: .1em;
  color: #006f9b;
  line-height: 1.58;
}

@media screen and (max-width: 767px) {
  .step__h3 {
    padding: 2.4rem 0 1.6rem;
    font-size: 1.4rem;
  }
}

/* serviceList */
.serviceList {
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .serviceList {
    margin-bottom: 14%;
  }
}

.serviceList__inner {
  margin: 3.3rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .serviceList__inner {
    margin: 5% auto;
    padding-left: 6%;
    padding-right: 6%;
  }
}

.serviceList li {
  border: 0.5rem solid #ccc;
  width: calc((100% - 1.5rem * 6) / 7);
  color: #FFF;
  margin-bottom: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .serviceList li:not(:nth-child(7n + 1)) {
    margin-left: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .serviceList li {
    border: 0.3rem solid #ccc;
    width: calc((100% - .5rem * 4) / 5);
    margin-bottom: .5rem;
  }
  .serviceList li:not(:nth-child(5n + 1)) {
    margin-left: .5rem;
  }
}

/* staff */
.staff {
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 10rem;
}

.staff__inner {
  margin: 2rem auto 1rem;
  padding: 0 3.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .staff__inner {
    padding: 0 14%;
  }
}

.staff li {
  border-radius: 50%;
  width: 13rem;
  height: 13rem;
  color: #FFF;
  background: #ccc;
  margin-bottom: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .staff li {
    width: 8rem;
    height: 8rem;
    margin-bottom: 1.3rem;
  }
}

.staff p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .25rem;
  margin: auto 9.5rem;
}

@media screen and (max-width: 767px) {
  .staff p {
    font-size: 1.2rem;
    margin: auto 2.5rem;
  }
}

.staff__link {
  margin: 3rem auto 0 !important;
}

/* voice */
.voice {
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 10rem;
}

@media screen and (max-width: 767px) {
  .voice {
    margin-bottom: 6.5rem;
  }
}

.voice__inner {
  margin: 8rem auto;
  padding: 0 6%;
}

@media screen and (max-width: 767px) {
  .voice__inner {
    margin: 4rem auto;
  }
}

.voice li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5.5rem;
}

@media screen and (max-width: 767px) {
  .voice li {
    margin-bottom: 3rem;
  }
}

.voice li::before {
  content: '';
  display: block;
  width: 13rem;
  height: auto;
  background-size: 100%;
  background-position: 0 0;
}

@media screen and (max-width: 767px) {
  .voice li::before {
    width: 20%;
  }
}

.voice li.men .voice__cont--ttl {
  color: #022a69;
}

.voice li.men::before {
  background-image: url(../images/voice_circle--men.png);
}

.voice li.women .voice__cont--ttl {
  color: #ff90b7;
}

.voice li.women::before {
  background-image: url(../images/voice_circle--women.png);
}

.voice__cont {
  width: calc(100% - 13rem);
  padding-left: 4rem;
}

@media screen and (max-width: 767px) {
  .voice__cont {
    width: calc(100% - 20%);
    padding-left: 2rem;
  }
}

.voice__cont--ttl {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
}

@media screen and (max-width: 767px) {
  .voice__cont--ttl {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
}

.voice__cont--text {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .voice__cont--text {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 2;
  }
}

.voice__cont--position {
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .voice__cont--position {
    font-size: 1rem;
  }
}

/* question */
.question {
  max-width: 950px;
  margin: 0 auto;
  margin-bottom: 20rem;
}

@media screen and (max-width: 767px) {
  .question {
    margin-bottom: 8rem;
  }
}

.question__inner {
  margin: 5rem auto;
}

@media screen and (max-width: 767px) {
  .question__inner {
    margin: 4rem auto;
    padding: 0 2rem;
  }
}

.question li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.5rem;
}

.question__cont {
  margin-left: 3.5rem;
}

@media screen and (max-width: 767px) {
  .question__cont {
    margin-left: 0;
  }
}

.question__cont--question {
  font-size: 2.2rem;
  line-height: 2.27;
  color: #006f9b;
  font-weight: 600;
  margin-bottom: .7rem;
}

@media screen and (max-width: 767px) {
  .question__cont--question {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

.question__cont--answer {
  font-size: 1.6rem;
  margin-bottom: .6rem;
  line-height: 1.875;
  letter-spacing: .18em;
}

@media screen and (max-width: 767px) {
  .question__cont--answer {
    font-size: 1.2rem;
  }
}

/* book */
.book {
  color: #fff;
  position: relative;
  background-color: #0087c1;
  padding: 10rem 0 20rem;
}

@media screen and (max-width: 767px) {
  .book {
    padding: 4rem 0 8rem;
  }
}

.book::before {
  content: '';
  display: block;
  background-color: #0087c1;
  border-radius: 100%;
  width: 142%;
  height: 30rem;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -17%);
          transform: translate(-50%, -17%);
}

@media screen and (max-width: 767px) {
  .book::before {
    width: 170%;
    height: 100px;
  }
}

.book__inner {
  width: 88rem;
  background-color: #0087c1;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .book__inner {
    display: block;
    width: 100%;
  }
}

.book__img img {
  max-width: 490px;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}

.book__img a {
  display: block;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

.book__img a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  .book__img {
    width: 43%;
    position: relative;
    z-index: 10;
    margin: 0 auto;
  }
  .book__img img {
    max-width: 100%;
    margin-top: 6rem;
  }
}

.book__intro {
  width: 70%;
  margin: 9rem 0 0 6rem;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .book__intro {
    width: 85%;
    margin: 3rem auto;
  }
}

.book__intro h2 {
  font-size: 1.6rem;
  position: relative;
  letter-spacing: .15em;
}

@media screen and (max-width: 767px) {
  .book__intro h2 {
    margin-left: -9%;
    font-size: 1.4rem;
    position: absolute;
    top: 0;
    z-index: 10;
    left: 50%;
  }
}

.book__intro h2::before {
  content: '';
  display: block;
  width: 1.9rem;
  height: 3.2rem;
  position: absolute;
  left: 50%;
  margin-top: -.3rem;
  margin-left: -9.5rem;
  background-image: url(../images/icon-book.png);
}

@media screen and (max-width: 767px) {
  .book__intro h2::before {
    width: 1.5rem;
    height: 3rem;
    margin-left: -7.5rem;
    background-size: contain;
  }
}

.book__intro p {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 600;
  letter-spacing: .15em;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .book__intro p {
    margin-top: 6%;
    font-size: 1.2rem;
  }
}

/* fixedBtn */
.fixedBtn {
  width: 100%;
  padding: 1rem 5rem;
  position: fixed;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
  .fixedBtn {
    background-color: transparent;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem 1rem;
  }
}

.fixedBtn ul {
  max-width: 100rem;
  margin: 0 auto;
  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;
}

@media screen and (max-width: 767px) {
  .fixedBtn ul {
    max-width: 100%;
  }
}

.fixedBtn li {
  border: 2px solid #0dc4b9;
  border-radius: 40px;
  position: relative;
}

.fixedBtn li::before {
  content: '';
}

@media screen and (min-width: 768px) {
  .fixedBtn li {
    width: 49%;
  }
}

@media screen and (max-width: 767px) {
  .fixedBtn li:first-child {
    width: 42%;
  }
  .fixedBtn li:last-child {
    margin-left: .5rem;
    width: 60%;
  }
}

.fixedBtn li a {
  font-size: 1.8rem;
  text-align: center;
  display: block;
  padding: 1.4rem 0;
  letter-spacing: .12em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .fixedBtn li a {
    font-size: 2vw;
    padding: .6rem 0;
  }
}

.fixedBtn li span {
  position: absolute;
  top: 1.6rem;
  right: 2rem;
}

.fixedBtn .bg-green {
  background-color: #0dc4b9;
}

.fixedBtn .bg-green a {
  color: #fff;
}

.fixedBtn .bg-green span.arrow-circle::before {
  border-color: #fff;
  background-color: #fff;
}

.fixedBtn li span {
  display: block;
}

.fixedBtn .bg-white {
  background-color: #fff;
}

.fixedBtn .bg-white a {
  color: #0dc4b9;
}

.fixedBtn .bg-white span.arrow-circle::before {
  background-color: #0dc4b9;
}

.fixedBtn .bg-white span.arrow-circle::after {
  border-color: #fff;
}

@media screen and (max-width: 767px) {
  .fixedBtn .arrow-circle {
    display: none;
  }
}

/* textlink button */
.textlinkBtn {
  text-align: center;
}

.textlinkBtn a {
  background-color: #006f9b;
  border: 0.2rem solid #006f9b;
  border-radius: 5rem;
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.textlinkBtn a:hover {
  background-color: #fff;
  color: #006f9b;
}

@media screen and (max-width: 767px) {
  .textlinkBtn a {
    font-size: 1.2rem;
    padding: .5rem 3rem;
  }
}

/* youtube */
.youtube {
  max-width: 720px;
  margin: 0 auto 10rem;
}

@media screen and (max-width: 767px) {
  .youtube {
    width: calc(100% - 1.6rem);
    margin: 0 auto 4rem;
  }
}

.youtube__inner {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.policy {
  max-width: 950px;
  margin: 0 auto 10rem;
}

.policy__box {
  margin-bottom: 3rem;
}

.policy__h2 {
  position: relative;
  z-index: 10;
  font-size: 3.2em;
  color: #006f9b;
  text-align: center;
  letter-spacing: .1em;
  margin-bottom: 4rem;
}

.policy__h3 {
  font-size: 1.6rem;
  margin-bottom: .8rem;
  letter-spacing: .1em;
}

.policy__txt {
  font-size: 1.4rem;
  letter-spacing: .15em;
}

.policy__list {
  margin: 1.5rem 0 1.5rem 5rem;
}

.policy__list li {
  font-size: 1.4rem;
  letter-spacing: .15em;
}

.policy__list.type-num li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
}

.policy__list.type-num li::before {
  content: "(" counter(cnt) ")";
  display: inline-block;
  margin-left: -3.5em;
  width: 3em;
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
}

.policy__list.type-str {
  margin: 1.5rem 0 1.5rem 4.5rem;
  text-indent: .6rem;
}

.policy__list.type-str li {
  list-style-type: katakana;
}
/*# sourceMappingURL=style.css.map */