@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese");
/* ===============================================================
 base
=============================================================== */
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body, input, textarea, select, button {
  font-family: 'Noto Sans JP',"メイリオ", sans-serif;
  font-weight: 400;
}

body {
  color: #414148;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  letter-spacing: -0.04em;
}

/* ===============================================================
 utility
=============================================================== */
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}


/* ===============================================================
 common
=============================================================== */
.wrap {
  overflow: hidden;
}

.section {
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.section .container {
  padding-top: 90px;
  padding-bottom: 100px;
}

.section-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
}

.section-title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-image: url(/selfknowledge/images/title_bar.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.section-desc {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  font-size: 16px;
  text-align: center;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .section .container {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  .section-title {
    font-size: 23px;
  }
}

/* ===============================================================
 header
=============================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  height: 90px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(4, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(4, 0, 0, 0.1);
  z-index: 100;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.nav .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .logo {
  width: 195px;
}

.header .logo img {
  width: 100%;
}

.local-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.local-nav li {
  display: block;
  margin-right: 28px;
}

.local-nav li a {
  color: #264B99;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.local-nav li a:hover {
  opacity: 0.7;
}

.local-nav li .en {
  display: none;
}

.account-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

.account-nav li {
  display: block;
  margin-right: 10px;
  padding: 0;
  width: 120px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
}

.account-nav li:last-child {
  margin-right: 0;
}

.account-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  background-color: #FF5F32;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.account-nav li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 100;
  }
  .menu-btn {
    position: relative;
    width: 36px;
    height: 25px;
  }
  .menu-btn .line {
    position: absolute;
    top: 12px;
    left: 0;
    width: 36px;
    height: 1px;
    background-color: #000;
    -webkit-transition: 200ms ease-out;
    -o-transition: 200ms ease-out;
    transition: 200ms ease-out;
  }
  .menu-btn .line:nth-of-type(1) {
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-name: close-menu1;
    animation-name: close-menu1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .menu-btn .line:nth-of-type(2) {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-animation-name: close-menu2;
    animation-name: close-menu2;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .is-open .menu-btn .line:nth-of-type(1) {
    -webkit-animation-name: open-menu1;
    animation-name: open-menu1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .is-open .menu-btn .line:nth-of-type(2) {
    -webkit-animation-name: open-menu2;
    animation-name: open-menu2;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  .menu-btn .text {
    position: absolute;
    width: 34px;
    top: 16px;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-align: center;
    -webkit-transition: 300ms ease-out;
    -o-transition: 300ms ease-out;
    transition: 300ms ease-out;
  }
  .menu-btn .text img {
    display: block;
    width: 100%;
  }
  .is-open .menu-btn .text {
    opacity: 0;
  }
  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
  }
  .is-open .nav {
    pointer-events: auto;
  }
  .nav .inner {
    display: block;
    height: calc(100vh - 66px);
    padding-top: 5vh;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 200ms ease-out;
    -o-transition: 200ms ease-out;
    transition: 200ms ease-out;
  }
  .is-open .nav .inner {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.8);
  }
  .local-nav {
    /*border-top: 1px solid #d2d2d2;*/
    display: block;
  }
  .local-nav li {
    margin: 0;
    margin-bottom: 5vh;
  }
  .local-nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    color: #000;
    font-size: 14px;
    text-align: center;
  }
  .local-nav li .en {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
    letter-spacing: 0.1em;
  }
  .account-nav {
    display: block;
  }
  .account-nav li:first-child,
  .account-nav li:last-child {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    width: 170px;
    height: 40px;
    max-height: 40px;
    border-radius: 20px;
  }
  .account-nav li:last-child {
    margin-bottom: 0;
  }
  .nav .close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 56px;
    color: #fff;
    background-color: #414148;
  }
  .nav .close .icon {
    position: relative;
    top: 1px;
    margin-right: 10px;
    width: 10px;
    height: 10px;
  }
  .nav .close .icon img {
    display: block;
    width: 100%;
    vertical-align: bottom;
  }
}

@-webkit-keyframes open-menu1 {
  0% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
}

@keyframes open-menu1 {
  0% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
}

@-webkit-keyframes open-menu2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}

@keyframes open-menu2 {
  0% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}

@-webkit-keyframes close-menu1 {
  0% {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

@keyframes close-menu1 {
  0% {
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

@-webkit-keyframes close-menu2 {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes close-menu2 {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

/* ===============================================================
 mv
=============================================================== */
.mv {
  margin-top: 90px;
  padding-left: 15px;
  padding-right: 15px;
  height: 510px;
  background-image: url(/selfknowledge/images/background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mv .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.mv .title {
  margin-bottom: 18px;
  color: #404040;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}

.mv .desc {
  font-size: 22px;
  line-height: 1.75;
  color: #404040;
}

.mv .container .arrow {
  display: none;
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: 66px;
    height: 470px;
    background-image: url(/selfknowledge/images/background.png);
  }
  .mv .container {
    display: block;
    position: relative;
    padding-top: 110px;
  }
  .mv .container .arrow {
    display: block;
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 8px;
    height: 41px;
    overflow: hidden;
    -webkit-animation-name: arrow;
    animation-name: arrow;
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  .mv .container .arrow-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 8px;
    height: 41px;
    background-image: url(/selfknowledge/images/mv_arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-animation-name: arrow-inner;
    animation-name: arrow-inner;
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  .mv .title {
    margin-bottom: 10px;
    font-size: 50px;
    text-align: center;
    line-height: 1.1;
  }
  .mv .desc {
    font-size: 14px;
    text-align: center
  }
}

@media screen and (max-width: 320px) {
  .mv .title {
    font-size: 43px;
  }
}

@-webkit-keyframes arrow {
  0% {
    height: 41px;
  }
  50% {
    height: 0px;
  }
  51% {
    height: 41px;
  }
  100% {
    height: 41px;
  }
}

@keyframes arrow {
  0% {
    height: 41px;
  }
  50% {
    height: 0px;
  }
  51% {
    height: 41px;
  }
  100% {
    height: 41px;
  }
}

@-webkit-keyframes arrow-inner {
  0% {
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  51% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes arrow-inner {
  0% {
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  51% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ===============================================================
 conversion
=============================================================== */
.conversion {
  padding-left: 15px;
  padding-right: 15px;
}

.conversion .container {
  padding: 45px 0 50px;
}

.conversion .desc {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.conversion .container .desc2 {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.conversion-btn {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 350px;
  height: 70px;
  overflow: hidden;
  border-radius: 35px;
  -webkit-transition: 300ms ease-out;
  -o-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.conversion-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: -225px;
  left: -50px;
  width: 450px;
  height: 450px;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #268598), color-stop(70%, #264c98));
  background: -webkit-linear-gradient(left, #268598 20%, #264c98 70%);
  background: -o-linear-gradient(left, #268598 20%, #264c98 70%);
  background: linear-gradient(to right, #268598 20%, #264c98 70%);
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.conversion-btn:hover:after {
  opacity: 0.7;
}

.conversion-btn a {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.conversion-btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60px;
  height: 7px;
  background-image: url(/selfknowledge/images/icon_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 300ms ease-out;
  -o-transition: 300ms ease-out;
  transition: 300ms ease-out;
}

.conversion-btn:hover a:after {
  -webkit-transform: translateX(8px) translateY(-50%);
  -ms-transform: translateX(8px) translateY(-50%);
  transform: translateX(8px) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .conversion .desc {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .conversion-btn {
    width: 100%;
  }
  .conversion .conversion-btn {
    height: 70px;
  }
  .conversion-btn a {
    font-size: 16px;
  }
}

/* ===============================================================
 conversion
=============================================================== */
.feature {
  background-color: #f7f7f7;
}

.feature-block-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.feature-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  width: calc(100% / 3);
}

.feature-block:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 200px;
  background-color: #d2d2d2;
}

.feature-block:last-child:after {
  content: none;
}

.feature-block .image {
  margin-bottom: 10px;
  height: 120px;
}

.feature-block .title {
  margin-bottom: 20px;
  color: #264B99;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.feature-block .desc {
  width: 100%;
  font-size: 14px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .feature .section-title .ls1 {
    letter-spacing: -0.08em;
  }
  .feature-block-wrap {
    display: block;
    padding: 0 24px;
  }
  .feature-block {
    padding: 30px 0 25px;
    width: 100%;
  }
  .feature-block:first-child {
    padding-top: 0;
  }
  .feature-block:after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .feature-block:last-child {
    padding-bottom: 0;
  }
  .feature-block .title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .feature-block .desc {
    font-size: 14px;
  }
}

/* ===============================================================
 step
=============================================================== */
.step-block-wrap {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.step-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding: 50px 0 60px;
}

.step-block:first-child {
  padding-top: 0;
}

.step-block:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  width: 100%;
  height: 16px;
  background-image: url(/selfknowledge/images/step_border.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.step-block:last-child:after {
  content: none;
}

.step-block .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 55px;
  width: 110px;
  height: 68px;
  border-radius: 50%;
  background-color: #C3A87B;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.step-block .icon {
  min-width: 180px;
  width: 180px;
}

.step-block .title {
  margin-bottom: 25px;
  color: #264B99;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.step-block .desc {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -0.1em;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: left;
}

.step .btn-wrap-text {
  margin-bottom: 28px;
  color: #264B99;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .step .section-title .ls1 {
    letter-spacing: -0.08em;
  }
  .step .section-desc {
    letter-spacing: -0.1em;
  }
  .step-block-wrap {
    margin-bottom: 30px;
  }
  .step-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 24px 24px;
    width: 100%;
  }
  .step-block:first-child {
    padding-top: 5px;
  }
  .step-block:last-child {
    padding-bottom: 0;
  }
  .step-block:after {
    background-image: url(/selfknowledge/images/step_border_sp.png);
  }
  .step-block .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 55px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #219BA6;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
  .step-block .icon {
    margin-bottom: 25px;
    width: calc(100% - 125px);
    min-width: calc(100% - 125px);
  }
  .step-block .title {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.75;
  }
  .step-block .desc {
    font-size: 14px;
  }
  .step .btn-wrap-text {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: -0.06em;
  }
}

/* ===============================================================
 voice
=============================================================== */
.voice {
  background-color: #f7f7f7;
}

.voice-block-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.voice-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #d2d2d2;
}

.voice-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.voice-block .icon {
  width: 100px;
  min-width: 100px;
  height: 100px;
}

.voice-block:nth-child(even) .icon {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.voice-block .icon img {
  width: 100%;
}

.voice-block .comment {
  position: relative;
  padding: 25px 35px;
  width: calc(100% - 210px);
  font-size: 16px;
  line-height: 1.75;
  background-color: #fff;
  border-radius: 5px;
}

.voice-block:nth-child(even) .comment {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.voice-block .comment .name {
  font-size: 14px;
  font-weight: 700;
}

.voice-block:nth-child(odd) .comment:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 28px solid #fff;
}

.voice-block:nth-child(even) .comment:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 28px solid #fff;
}

@media screen and (max-width: 768px) {
  .voice-block {
    display: block;
  }
  .voice-block .icon {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
  .voice-block .icon img {
    width: 100%;
  }
  .voice-block .comment {
    margin-top: -4px;
    padding: 20px 20px 15px;
    width: 100%;
    font-size: 14px;
  }
  .voice-block:nth-child(odd) .comment:before,
  .voice-block:nth-child(even) .comment:before {
    top: auto;
    bottom: 100%;
    left: 50%;
    right: auto;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    border-top: none;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 20px solid #fff;
  }
}

/* ===============================================================
 theme
=============================================================== */
.theme-block-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.theme-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 30px;
}

.theme-block:first-child {
  padding-top: 0;
}

.theme-block .number-wrap {
  width: 100px;
  min-width: 100px;
  background-image: url(/selfknowledge/images/theme_dots.png);
  background-position: left 30px bottom 10px;
  background-repeat: no-repeat;
  background-size: 8px 41px;
}

.theme-block:last-of-type .number-wrap {
  background-image: none;
}

.theme-block .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  border-radius: 50%;
  background-color: #f5701e;
}

.theme-block .content {
  padding-bottom: 40px;
  width: 700px;
  border-bottom: 1px solid #d2d2d2;
}

.theme-block:last-of-type .content {
  border-bottom: none;
}

.theme-block .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.theme-block .desc {
  font-size: 14px;
  line-height: 1.75;
}

.theme-block-wrap .note {
  font-size: 14px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .theme-block-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .theme-block .number-wrap {
    width: 85px;
    min-width: 85px;
    background-position: left 30px top 100px;
  }
  .theme-block:last-of-type .content {
    padding-bottom: 0;
  }
  .theme-block .title {
    margin-bottom: 15px;
    padding-top: 10px;
    height: auto;
    font-size: 20px;
  }
  .theme-block .desc {
    font-size: 14px;
  }
  .theme-block-wrap .note {
    display: none;
  }
}

/* ===============================================================
 condition
=============================================================== */
.condition {
  background-color: #f7f7f7;
}

.condition .container {
  border-bottom: 1px solid #d2d2d2;
}

.condition .image {
  margin-left: auto;
  margin-right: auto;
  max-width: 809px;
  text-align: center;
}

.condition .image img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .condition .section-title {
    padding-bottom: 25px;
  }
}

/* ===============================================================
 feedback
=============================================================== */
.feedback {
  background-color: #f7f7f7;
}

.feedback .container {
  padding-top: 70px;
}

.feedback .section-desc {
  max-width: 830px;
  letter-spacing: -0.1em;
}

.feedback .section-desc .ls1 {
  letter-spacing: -0.4em;
}

.feedback .title {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.feedback .image {
  margin-left: auto;
  margin-right: auto;
  max-width: 926px;
  text-align: center;
}

.feedback .image img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .feedback {
    padding-left: 36px;
    padding-right: 36px;
  }
  .feedback .container {
    padding-top: 45px;
  }
  .feedback .image {
    margin-left: -24px;
    width: calc(100% + 48px);
  }
  .feedback .title {
    font-size: 18px;
    letter-spacing: -0.1em;
  }
}

.drop-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.drop-container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, rgba(255, 255, 255, 0)), to(white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 70%, white 100%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 70%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 70%, white 100%);
  pointer-events: none;
}

.drop-container.drop-open:after {
  background: none;
}

.drop-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-left: auto;
  margin-right: auto;
  width: 120px;
  height: 50px;
  color: #fff;
  font-size: 14px;
  border-radius: 25px;
  background-color: #fff;
  z-index: 1;
  cursor: pointer;
}

.drop-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #219BA6;
  border-radius: 25px;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.drop-open .drop-btn {
  bottom: 70px;
}

.drop-open .drop-btn,
.drop-open .drop-btn:before {
  background-color: transparent;
}

.drop-btn:hover:before {
  opacity: 0.7;
}

.drop-btn span {
  position: relative;
}

.drop-open .drop-btn {
  border: 2px solid #fff;
}

.drop-open .drop-btn:hover:before {
  background-color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
  .drop-open .drop-btn {
    bottom: 50px;
  }
}

/* ===============================================================
 heading
=============================================================== */
.heading {
  background-image: url(/selfknowledge/images/heading_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.heading .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 250px;
}

.heading .title {
  color: #018780;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}

.heading .subtitle {
  display: block;
  margin-top: 20px;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .heading {
    background-image: url(/selfknowledge/images/heading_bg_sp.jpg);
  }
  .heading .container {
    height: 160px;
  }
  .heading .title {
    font-size: 34px;
  }
  .heading .subtitle {
    font-size: 18px;
  }
}

/* ===============================================================
 measures
=============================================================== */
.measures {
  background-color: #f7f7f7;
}

.measures .container {
  max-width: 800px;
  padding-bottom: 120px;
}

.measures .section-title {
  margin-bottom: 50px;
}

.measures .desc {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.75;
}

.measures .desc em {
  font-weight: 700;
  background-color: #f7f080;
}

.measures .note {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .measures {
    padding-bottom: 0;
  }
  .measures .container {
    padding-bottom: 40px;
  }
  .measures .section-title {
    margin-bottom: 45px;
  }
  .measures .desc {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }
  .measures .note {
    padding-left: 24px;
    padding-right: 24px;
    line-height: 1.75;
  }
}

/* ===============================================================
 technology
=============================================================== */
.technology .container {
  padding-bottom: 75px;
  max-width: 930px;
  text-align: left;
  letter-spacing: -0.04em;
}

.technology .section-title {
  margin-bottom: 40px;
}

.technology .section-desc {
  text-align: left;
}

.technology .section-desc a {
  color: #219BA6;
  letter-spacing: -0.04em;
}


.equation {
  margin-bottom: 75px;
}

.equation .title {
  margin-bottom: 40px;
  color: #264B99;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.equation .element-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  max-width: 650px;
  height: 50px;
}

.equation .element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  /*width: calc(100% / 5);*/
  color: #264B99;
  text-align: center;
}

.equation .element:nth-child(1) {
  left: 0;
}

.equation .element:nth-child(2) {
  left: 21%;
}

.equation .element:nth-child(3) {
  left: 42%;
}

.equation .element:nth-child(4) {
  left: 63.5%;
}

.equation .element:nth-child(5) {
  left: 85%;
}

.equation .element .ja {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.equation .element .en {
  font-size: 16px;
}

.equation .main {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  max-width: 646px;
}

.equation .main img {
  width: 100%;
}

.equation .desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
}

.awards {
  margin-bottom: 60px;
}

.award-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.award {
  margin-right: 48px;
  width: 150px;
}

.award:last-child {
  margin-right: 0;
}

.award .image {
  max-width: 150px;
  text-align: center;
}

.award .image img {
  width: 100%;
}

.award .title {
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.technology .note {
  margin-bottom: 15px;
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}

.technology .btn {
  margin-left: auto;
  margin-right: 0;
  width: 180px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
}

.technology .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 25px;
  background-color: #C3A87B;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.technology .btn a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .technology .container {
    padding-bottom: 40px;
  }
  .technology .section-desc {
    padding-left: 24px;
    padding-right: 24px;
  }
  .equation {
    margin-bottom: 40px;
  }
  .equation .title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .equation .element-wrap {
    margin-bottom: 15px;
    height: 30px;
  }
  .equation .element .ja {
    margin-bottom: 8px;
    font-size: 10.76px;
  }
  .equation .element .en {
    font-size: 8.61px;
  }
  .equation .main {
    margin-bottom: 25px;
  }
  .equation .desc {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
  }
  .awards {
    margin-bottom: 10px;
  }
  .award-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 22px;
    padding-right: 22px;
  }
  .award {
    margin-right: 0;
    margin-bottom: 30px;
    width: calc(100% / 2);
  }
  .award .title {
    line-height: 1.5;
  }
  .technology .note {
    padding-left: 24px;
    padding-right: 24px;
    text-indent: 0;
    line-height: 1.75;
  }
  .technology .btn {
    margin-right: auto;
  }
}

/* ===============================================================
 type
=============================================================== */
.type {
  background-color: #f7f7f7;
}

.type .section-desc {
  text-align: left;
}

.type .section-desc a {
  color: #219BA6;
  letter-spacing: -0.04em;
}

.type .title {
  margin-bottom: 28px;
  color: #f5701e;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.type .image {
  margin-left: auto;
  margin-right: auto;
  max-width: 867px;
  text-align: center;
}

.type .image img {
  width: 100%;
}

.type .note {
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .type .section-title {
    margin-bottom: 46px;
  }
  .type .section-desc {
    padding-left: 24px;
    padding-right: 24px;
    letter-spacing: -0.075em;
  }
  .type .title {
    font-size: 18px;
  }
}

/* ===============================================================
 opportunity
=============================================================== */
.opportunity .container {
  max-width: 800px;
  padding-bottom: 120px;
  padding-top: 90px
}

.opportunity .title {
  padding-bottom: 30px;
  margin-bottom: 45px;
}

.opportunity .desc {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
  text-align: left;
}

.opportunity a {
  color: #219BA6;
  letter-spacing: -0.04em;
}

@media screen and (max-width: 768px) {
  .opportunity .desc {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px
  }
}

/* ===============================================================
 bottom conversion
=============================================================== */
.bottom-conversion {
  padding-left: 15px;
  padding-right: 15px;
  background-image: url(/selfknowledge/images/bottom_conversion_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bottom-conversion .container {
  position: relative;
  padding-top: 72px;
  padding-bottom: 160px;
}

.bottom-conversion .container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 30px solid #fff;
}

.bottom-conversion .conversion-btn {
  margin-bottom: 30px;
}

.bottom-conversion .conversion-btn a {
  color: #FF5510;
  background: #fff;
  border-radius: 35px;
}

.bottom-conversion .conversion-btn a:after {
  background-image: url(/selfknowledge/images/bottom_conversion_btn_icon.png);
}

.bottom-conversion .desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .bottom-conversion {
    background-image: url(/selfknowledge/images/bottom_conversion_bg_sp.jpg);
  }
  .bottom-conversion .container {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .bottom-conversion .container:after {
    border-left: 29px solid transparent;
    border-right: 29px solid transparent;
    border-top: 23px solid #fff;
  }
  .bottom-conversion .conversion-btn {
    width: 100%;
  }
  .bottom-conversion .desc {
    letter-spacing: -0.1em;
  }
}

/* ===============================================================
 footer
=============================================================== */
.footer {
  position: relative;
  background-color: #f7f7f7;
  z-index: 20;
}

.footer .container {
  padding-top: 60px;
  padding-bottom: 35px;
  max-width: 800px;
}

.footer .setsumei{
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.5em;
}

.footer .setsumei_sp{
  margin: 0 auto;
  max-width: 80%;
  font-size: 14px;
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.5em;
}


.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 50px;
  margin-bottom: 50px;
  clear: both;
}

.footer-nav .title,
.footer-nav .title a {
  margin-bottom: 20px;
  font-size: 16px;
  color: #414148;
  text-decoration: none;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.footer-nav .title a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-nav .name,
.footer-nav .name a {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: #414148;
  text-decoration: none;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
  line-height: 1.5em;
}


.footer-nav .block-mp {
  margin-right: 30px;
  width: 300px;
}

.footer-nav .block-others {
  margin-right: 25px;
  padding-left: 20px;
  width: 650px;
}

.footer-nav .block-other {
}

.footer-nav .list-wrap {
  padding-top: 25px;
  border-top: 1px solid #414148;
}

.footer-nav .block-others .list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav .block-others .list-wrap .list:first-child {
  width: 325px;
}

.footer-nav .list li {
  margin-bottom: 16px;
  font-size: 12px;
  color: #414148;
  letter-spacing: 1px;
  text-decoration: none;
}
.footer-nav .list li.gray {
  color: #888;
}

.footer-nav .list li a {
  font-size: 14px;
  color: #414148;
  letter-spacing: 1px;
  text-decoration: none;
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.footer-nav .list li a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.footer-nav .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 130px;
}

.footer-nav .share .button {
  width: 30px;
}

.footer-nav .share .button a {
  -webkit-transition: 200ms ease-out;
  -o-transition: 200ms ease-out;
  transition: 200ms ease-out;
}

.footer-nav .share .button a:hover {
  opacity: 0.7;
}

.footer-nav .share .button img {
  width: 100%;
}

.footer-nav .septeni-logo {
  margin-top: 30px;
}
.footer-nav .septeni-logo .image {
  margin-bottom: 15px;
}
.footer-nav .septeni-logo .image a:hover {
  opacity: 0.7;
}
.footer-nav .septeni-logo .text {
  color: #414148;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 100;
}

.footer .copyright {
  color: #414148;
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {

  .footer .container {
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 15
  }
  .footer-nav {
    display: block;
    margin-bottom: 40px;
    padding-left: 38px;
    padding-right: 38px;
    margin-top: 40px;
  }
  .footer-nav .block-mp {
    margin-right: 0;
    margin-bottom: 50px;
    width: 100%;
  }
  .footer-nav .block-others {
    padding-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
    width: 100%;
  }
  .footer-nav .block-other {
    width: 100%;
  }
  .footer-nav .list-wrap .list {
    margin-bottom: 20px;
  }
  .footer-nav .list-wrap .list:last-child {
    margin-bottom: 0;
  }
  .footer-nav .block-others .list-wrap {
    display: block;
  }
  .footer-nav .block-others .list-wrap .list:first-child {
    width: 100%;
  }
  .footer-nav .list li:last-child {
    margin-bottom: 0;
  }
  .footer-nav .share {
    margin-top: 20px;
    width: 190px;
  }
  .footer-nav .share .button {
    width: 50px;
  }
  .footer-nav .septeni-logo .image {
    width: 174px;
  }
  .footer-nav .septeni-logo .image a {
    width: 100%;
  }
  .footer-nav .septeni-logo .image img {
    width: 100%;
  }
  .footer-nav .septeni-logo .text {
    font-size: 12px;
  }

  .footer .copyright{
    width: 90%;
  }
}
/* ===============================================================
 sample_image
=============================================================== */

.sample_image {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 694.5px;
  text-align: center;
  background: #fff
}

.sample_image img {
  width: 100%;
  position: relative;
}

/* ===============================================================
 残骸


.sample_image:hover img {
  opacity:    0.6;
  transition-duration: 0.8s
}

.sample_image p {
  /aタグを画像の真ん中に/
  position: absolute;
  top: 60%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  /以下装飾/
  margin:0;/余計な隙間を除く/
  background: #264B99; /背景色/
  color: #fff; /文字色/
  border: solid 0.5px; /囲い線の太さ/
  border-color:#264B99; /囲い線の色/
  border-radius: 40px;
  padding: 20px; /文字と線の余白/
  font-size: 20px; /文字サイズ/
  font-family: 'Noto Sans JP',"メイリオ", sans-serif; /フォント/
  font-weight: 500; /文字の太さ/
  opacity: 0 /透明度/

}
.sample_image:hover p {
  opacity: 1
}
=============================================================== */

@media screen and (max-width: 768px) {
.sample_image {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 694.5px;
  text-align: center;
  }

.sample_image img {
  width: 100%;
  position: relative;
  }
}