@charset "UTF-8";
/* --------------------------------
[SCSSについて注意]
・/css-scss/styles.scss を /css/styles.css にコンパイルしてコーディングしているため、
  可能であればCSSを直接編集せずに、SCSS を編集＆コンパイルしてCSSを生成する
・または、CSSを直接編集した場合は、SCSS 内の記述も同様に編集する方法でも可
・もし、CSSのみ編集した形跡があった場合など、CSSとSCSSの保持ができなくなった場合はSCSS一式を削除しても良い
-------------------------------- */
/* --------------------------------
[コーディングルール]
・基本classのみ使用し、idはアンカーやJSで使用
・class名、フォルダ名、ファイル名はハイフン(-）区切り
・トップページはロゴを<h1>、他のページはロゴを<p>でページタイトルを<h1>にする
・メディアクエリーはPCファーストで、@media screen and (max-width: 767px) {}を使用
-------------------------------- */
/* reset -------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, th, td, address, small, i {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
  font-style: normal;
}

ol, ul, dl, dt, dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img, object, embed, video {
  border: 0;
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

th {
  text-align: left;
}

em {
  font-style: normal;
  font-weight: bold;
}

a {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    color: #000;
  }
}

/* body -------- */
body {
  line-height: 1.5;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 1.3rem;
  color: #333;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  text-align: justify;
  text-justify: inter-ideograph;
}

/* header -------- */
/* content -------- */
.content {
  line-height: 1.85;
  font-size: 1.4rem;
}

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

/* footer -------- */
.footer {
  position: relative;
}

.footer .gotop {
  position: absolute;
  left: 50%;
  top: -77px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.footer .gotop a {
  display: block;
  padding: 10px 20px;
}

@media screen and (max-width: 767px) {
  .footer .gotop {
    left: auto;
    right: -20px;
    top: 5px;
  }
}

.footer .footer-inner {
  position: relative;
  padding: 22px 15px;
  text-align: center;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .footer .footer-inner {
    padding: 8px 15px 8px;
    font-size: 1rem;
  }
}

.footer .by {
  position: absolute;
  left: 32px;
  top: 23px;
}

@media screen and (max-width: 767px) {
  .footer .by {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 4px;
  }
}

/* --------------------------------
[module.cssについて]
・共通レイアウトと共通タグを記述
-------------------------------- */
/* all -------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.over {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.7;
  }
}

.container {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-block {
  display: block;
}

.display-table {
  display: table;
}

.display-table-cell {
  display: table-cell;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.image-cover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

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

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .image-zoom {
    overflow: hidden;
  }
  .image-zoom img {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .image-zoom:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

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

/* wordpress editor -------- */
.format .aligncenter {
  display: block;
  margin: 0 auto;
}

.format .alignright {
  float: right;
}

.format .alignleft {
  float: left;
}

.format img[class*="wp-image-"],
.format img[class*="attachment-"] {
  max-width: 100%;
  height: auto;
}

/* format -------- */
.format a {
  color: #03c;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .format a:hover {
    color: #69f;
  }
}

.format h2 {
  margin: 30px 0 20px;
  font-size: 24px;
  font-weight: bold;
}

.format h3 {
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold;
}

.format p, .format ul, .format ol, .format table {
  margin-bottom: 20px;
}

.format li {
  margin-bottom: 10px;
}

.format ul {
  list-style-type: disc;
  padding-left: 1.5em;
}

.format ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}

.format hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #999;
}

.format table {
  width: 100%;
}

.format th {
  width: 150px;
  padding: 10px 20px;
  border: 1px solid #999;
  background-color: #eee;
}

.format td {
  padding: 10px 20px;
  border: 1px solid #999;
}

/* --------------------------------
[page.cssについて]
・各ページごとのCSSを記述
・必ず.page-homeなど各ページごとのclassを付ける
-------------------------------- */
/* page-home -------- */
.page-home .sec-kv {
  background-color: #c0d5da;
}

.page-home .sec-kv .sec-inner {
  position: relative;
  min-height: 790px;
}

@media screen and (max-width: 1000px) {
  .page-home .sec-kv .sec-inner {
    min-height: 800px;
  }
}

@media screen and (max-width: 560px) {
  .page-home .sec-kv .sec-inner {
    min-height: 666px;
  }
}

.page-home .sec-kv .logo {
  padding: 25px 0 0 45px;
  font-size: 1.6rem;
}

.page-home .sec-kv .logo span {
  display: inline-block;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .page-home .sec-kv .logo {
    padding: 19px 0 0 10px;
    font-size: 1.2rem;
  }
}

.page-home .sec-kv .bg {
  position: absolute;
  left: 0;
  top: 150px;
  z-index: 1;
  width: calc(50% + 415px);
}

.page-home .sec-kv .bg .bg-inner {
  height: 486px;
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .page-home .sec-kv .bg {
    top: 102px;
    width: calc(50% + 168px);
  }
  .page-home .sec-kv .bg .bg-inner {
    height: 584px;
  }
}

@media screen and (max-width: 560px) {
  .page-home .sec-kv .bg {
    top: 102px;
    width: calc(50% + 128px);
  }
  .page-home .sec-kv .bg .bg-inner {
    height: 474px;
  }
}

.page-home .sec-kv .map {
  position: absolute;
  left: 0;
  top: 237px;
  z-index: 1;
  width: calc(50% - 274px);
  padding: 0 15px;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.page-home .sec-kv .map.ani-show-on {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .page-home .sec-kv .map {
    right: 0;
    top: 440px;
    width: 400px;
    margin: 0 auto;
    padding: 0 5px;
    text-align: left;
  }
  .page-home .sec-kv .map img {
    width: 200px;
  }
}

@media screen and (max-width: 560px) {
  .page-home .sec-kv .map {
    right: 0;
    top: 360px;
    width: 292px;
    margin: 0 auto;
    padding: 0 5px;
    text-align: left;
  }
  .page-home .sec-kv .map img {
    width: 164px;
  }
}

.page-home .sec-kv .slider {
  position: absolute;
  left: 0;
  right: 0;
  top: 300px;
  z-index: 1;
  width: 100%;
  max-width: 546px;
  margin: 0 auto;
}

.page-home .sec-kv .slider .slide {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 546px;
}

@media screen and (max-width: 1000px) {
  .page-home .sec-kv .slider {
    top: 145px;
    max-width: 400px;
  }
  .page-home .sec-kv .slider .slide {
    width: 400px;
  }
}

@media screen and (max-width: 560px) {
  .page-home .sec-kv .slider {
    top: 145px;
    max-width: 292px;
  }
  .page-home .sec-kv .slider .slide {
    width: 292px;
  }
}

.page-home .sec-kv .title {
  position: absolute;
  left: calc(50% + 254px);
  top: 75px;
  z-index: 1;
}

.page-home .sec-kv .title span:nth-child(1) {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1s 2s;
  -o-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}

.page-home .sec-kv .title.ani-show-on span:nth-child(1) {
  opacity: 1;
}

.page-home .sec-kv .title span:nth-child(2) {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1s 2.5s;
  -o-transition: opacity 1s 2.5s;
  transition: opacity 1s 2.5s;
}

.page-home .sec-kv .title.ani-show-on span:nth-child(2) {
  opacity: 1;
}

.page-home .sec-kv .title:before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  bottom: -15px;
  width: 52px;
  height: 70%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 1s 2.5s;
  -o-transition: opacity 1s 2.5s;
  transition: opacity 1s 2.5s;
}

.page-home .sec-kv .title.ani-show-on:before {
  opacity: 1;
}

.page-home .sec-kv .title:after {
  content: '';
  display: block;
  position: absolute;
  right: -5px;
  bottom: 75px;
  width: 52px;
  height: 50%;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: opacity 1s 2s;
  -o-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}

.page-home .sec-kv .title.ani-show-on:after {
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .page-home .sec-kv .title {
    top: 58px;
    left: calc(50% + 54px);
  }
  .page-home .sec-kv .title:before {
    left: -8px;
    bottom: -15px;
    width: 42px;
    height: 80%;
  }
  .page-home .sec-kv .title:after {
    right: -3px;
    bottom: 65px;
    width: 42px;
    height: 50%;
  }
  .page-home .sec-kv .title img {
    width: 90px;
  }
}

@media screen and (max-width: 560px) {
  .page-home .sec-kv .title {
    top: 58px;
    left: calc(50% + 54px);
  }
  .page-home .sec-kv .title:before {
    left: -6px;
    bottom: -10px;
    width: 28px;
    height: 70%;
  }
  .page-home .sec-kv .title:after {
    right: -3px;
    bottom: 45px;
    width: 28px;
    height: 40%;
  }
  .page-home .sec-kv .title img {
    width: 60px;
  }
}

.page-home .sec-kv .side-text {
  position: absolute;
  right: 20px;
  top: 300px;
  font-size: 1.3rem;
  font-family: "Quattrocento", serif;
  letter-spacing: .15em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.page-home .sec-kv .side-text:before {
  content: '';
  display: block;
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .page-home .sec-kv .side-text {
    top: 290px;
    right: 8px;
    font-size: .9rem;
  }
  .page-home .sec-kv .side-text:before {
    display: none;
  }
}

.page-home .sec-kv .words-wrap {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 25px;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .page-home .sec-kv .words-wrap {
    bottom: -11px;
    padding: 0;
  }
}

.page-home .sec-kv .words {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-home .sec-kv .words .word {
  position: relative;
  margin-right: 10%;
}

.page-home .sec-kv .words .word a {
  display: block;
  position: relative;
}

.page-home .sec-kv .words .word a small {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: -20px;
  font-size: 1rem;
  font-family: "Quattrocento", serif;
  color: #c0d5da;
  letter-spacing: .05em;
}

.page-home .sec-kv .words .word a .on {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.page-home .sec-kv .words .word a:hover .on {
  opacity: 1;
}

.page-home .sec-kv .words .word:nth-child(2) a small {
  bottom: -17px;
  padding-left: .5em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-kv .words {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: scale(0.55);
    -ms-transform: scale(0.55);
    transform: scale(0.55);
  }
  .page-home .sec-kv .words .word {
    margin: 0 10%;
  }
  .page-home .sec-kv .words .word small {
    bottom: -25px;
    font-size: 1.5rem;
  }
  .page-home .sec-kv .words:nth-child(2) a small {
    bottom: -25px;
    padding-left: .5em;
  }
}

.page-home .sec-kv .arrow {
  position: absolute;
  left: 50%;
  bottom: -38px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-animation: kv-arrow 1s ease 0s infinite normal;
  animation: kv-arrow 1s ease 0s infinite normal;
}

@-webkit-keyframes kv-arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes kv-arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.page-home .sec-kv .arrow a {
  display: inline-block;
  padding: 10px 30px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-kv .arrow {
    left: auto;
    right: -12px;
    bottom: 0;
  }
  .page-home .sec-kv .arrow a {
    padding: 5px 10px;
  }
}

.page-home .sec-ksh .sec-inner {
  overflow: hidden;
  padding-top: 154px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .sec-inner {
    padding-top: 78px;
  }
}

.page-home .sec-ksh img {
  max-width: none;
}

.page-home .sec-ksh .title {
  position: relative;
  width: 240px;
  text-align: center;
}

.page-home .sec-ksh .title:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 5px;
  background-color: #90B5BE;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 1s .2s;
  -o-transition: all 1s .2s;
  transition: all 1s .2s;
}

.page-home .sec-ksh .title.ani-show-on:before {
  width: 240px;
}

.page-home .sec-ksh .title small {
  display: block;
  position: absolute;
  left: 50%;
  bottom: -23px;
  z-index: 1;
  font-size: 1.2rem;
  color: #90B5BE;
  font-family: "Quattrocento", serif;
  letter-spacing: .1em;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .title {
    width: 165px;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    margin-bottom: 30px;
  }
  .page-home .sec-ksh .title img {
    width: 33px;
  }
  .page-home .sec-ksh .title:before {
    width: 0;
    height: 5px;
  }
  .page-home .sec-ksh .title.ani-show-on:before {
    width: 165px;
  }
  .page-home .sec-ksh .title small {
    bottom: -21px;
    font-size: 1rem;
  }
}

.page-home .sec-ksh .text {
  position: relative;
  font-size: 1.7rem;
  line-height: 2.64;
  margin-top: -.65em;
  padding-left: .8em;
  letter-spacing: .2em;
}

.page-home .sec-ksh .text:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: .65em;
  bottom: .65em;
  z-index: 1;
  width: 1px;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .text {
    font-size: 1.15rem;
  }
}

.page-home .sec-ksh .block1 {
  position: relative;
  height: 875px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 {
    height: auto;
    margin-bottom: 80px;
  }
}

.page-home .sec-ksh .block1 .title {
  position: absolute;
  left: calc(50% + 167px);
  top: 0;
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block1 .title {
    left: calc(50% + 127px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 .title {
    position: relative;
    left: auto;
    top: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-home .sec-ksh .block1 .lead {
  position: absolute;
  left: calc(50% - 291px);
  top: 22px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 .lead {
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    margin-bottom: 30px;
  }
}

.page-home .sec-ksh .block1 .images {
  position: absolute;
  top: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block1 .images {
    -webkit-transform: scale(0.85) translateX(-150px);
    -ms-transform: scale(0.85) translateX(-150px);
    transform: scale(0.85) translateX(-150px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 .images {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: scale(0.34) translateX(-30px);
    -ms-transform: scale(0.34) translateX(-30px);
    transform: scale(0.34) translateX(-30px);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    margin-bottom: -155px;
  }
}

.page-home .sec-ksh .block1 .images .image {
  position: relative;
  z-index: 2;
}

.page-home .sec-ksh .block1 .images .image:nth-child(1) {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  -o-transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.page-home .sec-ksh .block1 .images .image:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s .5s, -webkit-transform 1s .5s;
  transition: opacity 1s .5s, -webkit-transform 1s .5s;
  -o-transition: opacity 1s .5s, transform 1s .5s;
  transition: opacity 1s .5s, transform 1s .5s;
  transition: opacity 1s .5s, transform 1s .5s, -webkit-transform 1s .5s;
}

.page-home .sec-ksh .block1 .images .image:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 1s, -webkit-transform 1s 1s;
  transition: opacity 1s 1s, -webkit-transform 1s 1s;
  -o-transition: opacity 1s 1s, transform 1s 1s;
  transition: opacity 1s 1s, transform 1s 1s;
  transition: opacity 1s 1s, transform 1s 1s, -webkit-transform 1s 1s;
}

.page-home .sec-ksh .block1 .images.ani-show-on .image:nth-child(1) {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.page-home .sec-ksh .block1 .images.ani-show-on .image:nth-child(2) {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.page-home .sec-ksh .block1 .images.ani-show-on .image:nth-child(3) {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.page-home .sec-ksh .block1 .images .image-bg1 {
  position: absolute;
  z-index: 1;
  left: 138px;
  top: 210px;
  width: 419px;
  height: 37px;
  background-color: #c7dade;
}

.page-home .sec-ksh .block1 .images .image-bg2 {
  position: absolute;
  z-index: 1;
  left: 526px;
  top: -13px;
  width: 532px;
  height: 100px;
  background-color: #e9f0f2;
}

.page-home .sec-ksh .block1 .image4 {
  position: absolute;
  top: 475px;
  left: calc(50% - 408px);
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 1.5s, -webkit-transform 1s 1.5s;
  transition: opacity 1s 1.5s, -webkit-transform 1s 1.5s;
  -o-transition: opacity 1s 1.5s, transform 1s 1.5s;
  transition: opacity 1s 1.5s, transform 1s 1.5s;
  transition: opacity 1s 1.5s, transform 1s 1.5s, -webkit-transform 1s 1.5s;
}

.page-home .sec-ksh .block1 .image4.ani-show-on {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block1 .image4 {
    left: calc(50% - 328px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 .image4 {
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
  }
}

.page-home .sec-ksh .block1 .text {
  position: absolute;
  z-index: 2;
  top: 475px;
  left: calc(50% - 97px);
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block1 .text {
    left: calc(50% - 37px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 .text {
    position: relative;
    left: auto;
    top: auto;
    width: 280px;
    margin: 30px auto 35px;
  }
}

.page-home .sec-ksh .block1 .bg1 {
  position: absolute;
  z-index: 1;
  left: calc(50% + 151px);
  top: 601px;
  width: 154px;
  height: 81px;
  background-color: #e9f0f2;
  -webkit-animation: ksh-block1-bg1 2s ease 0s infinite normal;
  animation: ksh-block1-bg1 2s ease 0s infinite normal;
}

@-webkit-keyframes ksh-block1-bg1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ksh-block1-bg1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block1 .bg1 {
    display: block;
    left: 140px;
    top: 68px;
    z-index: -1;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.page-home .sec-ksh .block2 {
  position: relative;
  height: 814px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block2 {
    height: auto;
  }
}

.page-home .sec-ksh .block2 .title {
  position: absolute;
  left: calc(50% - 120px);
  top: 0;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block2 .title {
    position: relative;
    left: auto;
    top: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-home .sec-ksh .block2 .lead {
  position: absolute;
  left: calc(50% - 495px);
  top: 139px;
}

@media screen and (max-width: 1051px) {
  .page-home .sec-ksh .block2 .lead {
    left: calc(50% - 355px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block2 .lead {
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    margin-bottom: 30px;
  }
}

.page-home .sec-ksh .block2 .images {
  position: absolute;
  top: 82px;
  left: calc(50% - 89px);
  width: 584px;
  height: 555px;
}

@media screen and (max-width: 1051px) {
  .page-home .sec-ksh .block2 .images {
    top: 82px;
    left: calc(50% - 99px);
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block2 .images {
    position: relative;
    left: 50%;
    top: auto;
    -webkit-transform: scale(0.5) translateX(-98%);
    -ms-transform: scale(0.5) translateX(-98%);
    transform: scale(0.5) translateX(-98%);
    margin-bottom: -90px;
  }
}

.page-home .sec-ksh .block2 .images .image {
  border-radius: 50%;
}

.page-home .sec-ksh .block2 .images .image:nth-child(1) {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 99px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  -o-transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.page-home .sec-ksh .block2 .images .image:nth-child(2) {
  position: absolute;
  z-index: 2;
  left: 305px;
  top: 0;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 0.5s, -webkit-transform 1s 0.5s;
  transition: opacity 1s 0.5s, -webkit-transform 1s 0.5s;
  -o-transition: opacity 1s 0.5s, transform 1s 0.5s;
  transition: opacity 1s 0.5s, transform 1s 0.5s;
  transition: opacity 1s 0.5s, transform 1s 0.5s, -webkit-transform 1s 0.5s;
}

.page-home .sec-ksh .block2 .images .image:nth-child(3) {
  position: absolute;
  z-index: 2;
  left: 233px;
  top: 345px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 1s, -webkit-transform 1s 1s;
  transition: opacity 1s 1s, -webkit-transform 1s 1s;
  -o-transition: opacity 1s 1s, transform 1s 1s;
  transition: opacity 1s 1s, transform 1s 1s;
  transition: opacity 1s 1s, transform 1s 1s, -webkit-transform 1s 1s;
}

.page-home .sec-ksh .block2 .images .image:nth-child(4) {
  position: absolute;
  z-index: 2;
  left: 457px;
  top: 244px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 1.5s, -webkit-transform 1s 1.5s;
  transition: opacity 1s 1.5s, -webkit-transform 1s 1.5s;
  -o-transition: opacity 1s 1.5s, transform 1s 1.5s;
  transition: opacity 1s 1.5s, transform 1s 1.5s;
  transition: opacity 1s 1.5s, transform 1s 1.5s, -webkit-transform 1s 1.5s;
}

.page-home .sec-ksh .block2 .images.ani-show-on .image {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.page-home .sec-ksh .block2 .images .image-bg1 {
  position: absolute;
  z-index: 1;
  left: -4px;
  top: 94px;
  width: 261px;
  height: 261px;
  background-color: #e9f0f2;
  border-radius: 50%;
}

.page-home .sec-ksh .block2 .images .image-bg2 {
  position: absolute;
  z-index: 1;
  left: 310px;
  top: 6px;
  width: 208px;
  height: 208px;
  background-color: #c7dade;
  border-radius: 50%;
}

.page-home .sec-ksh .block2 .images .image-bg3 {
  position: absolute;
  z-index: 1;
  left: 225px;
  top: 406px;
  width: 136px;
  height: 136px;
  background-color: #e9f0f2;
  border-radius: 50%;
}

.page-home .sec-ksh .block2 .text {
  position: absolute;
  z-index: 2;
  top: 254px;
  left: calc(50% - 514px);
}

@media screen and (max-width: 1051px) {
  .page-home .sec-ksh .block2 .text {
    top: 254px;
    left: calc(50% - 364px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block2 .text {
    position: relative;
    left: auto;
    top: auto;
    width: 290px;
    margin: 0 auto -130px;
  }
}

.page-home .sec-ksh .block2 .bg1 {
  position: absolute;
  z-index: 1;
  left: calc(50% + -377px);
  top: 425px;
  width: 108px;
  height: 108px;
  background-color: #e9f0f2;
  border-radius: 50%;
  -webkit-animation: ksh-block2-bg1 2s ease 0s infinite normal;
  animation: ksh-block2-bg1 2s ease 0s infinite normal;
}

@-webkit-keyframes ksh-block2-bg1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ksh-block2-bg1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block2 .bg1 {
    display: block;
    left: 200px;
    top: 8px;
    z-index: -1;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.page-home .sec-ksh .block3 {
  position: relative;
  height: 690px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 {
    height: auto;
  }
}

.page-home .sec-ksh .block3 .title {
  position: absolute;
  left: calc(50% - 372px);
  top: 0;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .title {
    position: relative;
    left: auto;
    top: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-home .sec-ksh .block3 .lead {
  position: absolute;
  left: calc(50% - 1px);
  top: 26px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .lead {
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    margin-bottom: 30px;
  }
}

.page-home .sec-ksh .block3 .images {
  position: absolute;
  top: 157px;
  left: calc(50% - 476px);
  width: 685px;
  height: 391px;
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block3 .images {
    left: calc(50% - 476px);
    -webkit-transform: scale(0.7) translateX(-10%);
    -ms-transform: scale(0.7) translateX(-10%);
    transform: scale(0.7) translateX(-10%);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .images {
    position: relative;
    left: 50%;
    top: auto;
    -webkit-transform: scale(0.5) translateX(-100%);
    -ms-transform: scale(0.5) translateX(-100%);
    transform: scale(0.5) translateX(-100%);
    margin-bottom: -20px;
  }
}

.page-home .sec-ksh .block3 .images .image:nth-child(1) {
  position: absolute;
  z-index: 2;
  left: 181px;
  top: 12px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  -o-transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.page-home .sec-ksh .block3 .images .image:nth-child(2) {
  position: absolute;
  z-index: 2;
  left: 512px;
  top: 0;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s .5s, -webkit-transform 1s .5s;
  transition: opacity 1s .5s, -webkit-transform 1s .5s;
  -o-transition: opacity 1s .5s, transform 1s .5s;
  transition: opacity 1s .5s, transform 1s .5s;
  transition: opacity 1s .5s, transform 1s .5s, -webkit-transform 1s .5s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .images .image:nth-child(2) {
    -webkit-transform: translate(-35px, -40px);
    -ms-transform: translate(-35px, -40px);
    transform: translate(-35px, -40px);
  }
}

.page-home .sec-ksh .block3 .images .image:nth-child(3) {
  position: absolute;
  z-index: 2;
  left: 385px;
  top: 243px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 1s, -webkit-transform 1s 1s;
  transition: opacity 1s 1s, -webkit-transform 1s 1s;
  -o-transition: opacity 1s 1s, transform 1s 1s;
  transition: opacity 1s 1s, transform 1s 1s;
  transition: opacity 1s 1s, transform 1s 1s, -webkit-transform 1s 1s;
}

.page-home .sec-ksh .block3 .images .image:nth-child(4) {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 166px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 1s 1.5s, -webkit-transform 1s 1.5s;
  transition: opacity 1s 1.5s, -webkit-transform 1s 1.5s;
  -o-transition: opacity 1s 1.5s, transform 1s 1.5s;
  transition: opacity 1s 1.5s, transform 1s 1.5s;
  transition: opacity 1s 1.5s, transform 1s 1.5s, -webkit-transform 1s 1.5s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .images .image:nth-child(4) {
    -webkit-transform: translate(105px, 165px);
    -ms-transform: translate(105px, 165px);
    transform: translate(105px, 165px);
  }
}

.page-home .sec-ksh .block3 .images.ani-show-on .image {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .images.ani-show-on .image:nth-child(2) {
    -webkit-transform: translate(-35px, -60px);
    -ms-transform: translate(-35px, -60px);
    transform: translate(-35px, -60px);
  }
  .page-home .sec-ksh .block3 .images.ani-show-on .image:nth-child(4) {
    -webkit-transform: translate(105px, 145px);
    -ms-transform: translate(105px, 145px);
    transform: translate(105px, 145px);
  }
}

.page-home .sec-ksh .block3 .images .image-bg1 {
  position: absolute;
  z-index: 1;
  left: 371px;
  top: 7px;
  width: 49px;
  height: 208px;
  background-color: #c7dade;
}

.page-home .sec-ksh .block3 .images .image-bg2 {
  position: absolute;
  z-index: 1;
  left: 371px;
  top: 353px;
  width: 136px;
  height: 49px;
  background-color: #e9f0f2;
}

.page-home .sec-ksh .block3 .images .image-bg3 {
  position: absolute;
  z-index: 1;
  left: -10px;
  top: 177px;
  width: 58px;
  height: 140px;
  background-color: #e9f0f2;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .images .image-bg3 {
    -webkit-transform: translate(105px, 145px);
    -ms-transform: translate(105px, 145px);
    transform: translate(105px, 145px);
  }
}

.page-home .sec-ksh .block3 .text {
  position: absolute;
  z-index: 2;
  top: 363px;
  left: calc(50% + 119px);
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block3 .text {
    margin-right: 10px;
    top: 200px;
    left: calc(50% + 79px);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .text {
    position: relative;
    left: auto;
    top: auto;
    width: 260px;
    margin: 0 auto -65px;
  }
}

.page-home .sec-ksh .block3 .bg1 {
  position: absolute;
  z-index: 1;
  left: calc(50% + 288px);
  top: 418px;
  width: 108px;
  height: 108px;
  background-color: #e9f0f2;
  -webkit-animation: ksh-block3-bg1 2s ease 0s infinite normal;
  animation: ksh-block3-bg1 2s ease 0s infinite normal;
}

@-webkit-keyframes ksh-block3-bg1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ksh-block3-bg1 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block3 .bg1 {
    display: block;
    left: 78px;
    top: 38px;
    z-index: -1;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }
}

.page-home .sec-ksh .block4 {
  position: relative;
}

.page-home .sec-ksh .block4 h2 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block4 h2 {
    margin-bottom: 45px;
    font-size: 1rem;
  }
}

.page-home .sec-ksh .block4 .top-lines {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
  width: 100%;
}

.page-home .sec-ksh .block4 .top-lines .l {
  position: absolute;
  left: 0;
  top: 0;
  width: 98px;
  height: 3px;
  background-color: #90B5BE;
  -webkit-animation: ksh-l 2s ease 0s infinite normal;
  animation: ksh-l 2s ease 0s infinite normal;
}

@-webkit-keyframes ksh-l {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

@keyframes ksh-l {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

.page-home .sec-ksh .block4 .top-lines .r {
  position: absolute;
  right: 0;
  top: 0;
  width: 98px;
  height: 3px;
  background-color: #90B5BE;
  -webkit-animation: ksh-r 2s ease 0s infinite normal;
  animation: ksh-r 2s ease 0s infinite normal;
}

@-webkit-keyframes ksh-r {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

@keyframes ksh-r {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block4 .top-lines {
    top: 10px;
  }
  .page-home .sec-ksh .block4 .top-lines .l {
    width: 49px;
    height: 2px;
  }
  @-webkit-keyframes ksh-l {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
  @keyframes ksh-l {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
  .page-home .sec-ksh .block4 .top-lines .r {
    width: 49px;
    height: 2px;
  }
  @-webkit-keyframes ksh-r {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
  @keyframes ksh-r {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
}

.page-home .sec-ksh .block4 .images {
  position: relative;
  width: 980px;
  margin: 0 auto;
  height: 400px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.page-home .sec-ksh .block4 .images.ani-show-on {
  opacity: 1;
}

@media screen and (max-width: 1001px) {
  .page-home .sec-ksh .block4 .images {
    left: 50%;
    top: auto;
    height: 380px;
    -webkit-transform: scale(0.8) translateX(-63%);
    -ms-transform: scale(0.8) translateX(-63%);
    transform: scale(0.8) translateX(-63%);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block4 .images {
    left: 50%;
    top: auto;
    height: 330px;
    -webkit-transform: scale(0.5) translateX(-93%);
    -ms-transform: scale(0.5) translateX(-93%);
    transform: scale(0.5) translateX(-93%);
  }
}

.page-home .sec-ksh .block4 .images .image {
  position: absolute;
  z-index: 1;
  overflow: hidden;
}

.page-home .sec-ksh .block4 .images .image img {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.page-home .sec-ksh .block4 .images .image:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.page-home .sec-ksh .block4 .images .image:nth-child(1) {
  left: 0;
  top: 50px;
  opacity: 0;
  -webkit-transition: opacity 1s .5s;
  -o-transition: opacity 1s .5s;
  transition: opacity 1s .5s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block4 .images .image:nth-child(1) {
    -webkit-transform: translate(165px, -215px);
    -ms-transform: translate(165px, -215px);
    transform: translate(165px, -215px);
  }
}

.page-home .sec-ksh .block4 .images .image:nth-child(2) {
  left: 238px;
  top: 242px;
  opacity: 0;
  -webkit-transition: opacity 1s 2s;
  -o-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}

.page-home .sec-ksh .block4 .images .image:nth-child(3) {
  left: 395px;
  top: 50px;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.page-home .sec-ksh .block4 .images .image:nth-child(4) {
  right: 40px;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 1s 1.5s;
  -o-transition: opacity 1s 1.5s;
  transition: opacity 1s 1.5s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block4 .images .image:nth-child(4) {
    -webkit-transform: translate(-285px, -165px);
    -ms-transform: translate(-285px, -165px);
    transform: translate(-285px, -165px);
  }
}

.page-home .sec-ksh .block4 .images .image:nth-child(5) {
  right: 0;
  top: 242px;
  opacity: 0;
  -webkit-transition: opacity 1s 1s;
  -o-transition: opacity 1s 1s;
  transition: opacity 1s 1s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-ksh .block4 .images .image:nth-child(5) {
    -webkit-transform: translate(-355px, 55px);
    -ms-transform: translate(-355px, 55px);
    transform: translate(-355px, 55px);
  }
}

.page-home .sec-ksh .block4 .images.ani-show-on .image {
  opacity: 1;
}

.page-home .sec-tera1 {
  padding: 30px 0 40px;
  background-color: #c0d5da;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 {
    padding: 10px 0 35px;
  }
}

.page-home .sec-tera1 .sec-inner {
  position: relative;
  max-width: 1130px;
  margin: 0 auto;
}

.page-home .sec-tera1 .line1 {
  position: absolute;
  left: 10px;
  top: 20px;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .line1 {
    top: 10px;
    width: 0;
  }
}

.page-home .sec-tera1 .line2 {
  position: absolute;
  left: 30px;
  top: 0;
  width: 1px;
  height: 0;
  background-color: #fff;
  -webkit-transition: height 1s;
  -o-transition: height 1s;
  transition: height 1s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .line2 {
    left: 20px;
    height: 0;
  }
}

.page-home .sec-tera1 .line3 {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 0;
  height: 1px;
  background-color: #fff;
  -webkit-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .line3 {
    bottom: 10px;
    width: 0;
  }
}

.page-home .sec-tera1 .line4 {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: 1px;
  height: 0;
  background-color: #fff;
  -webkit-transition: height 1s;
  -o-transition: height 1s;
  transition: height 1s;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .line4 {
    right: 20px;
    height: 0;
  }
}

.page-home .sec-tera1 .sec-inner.ani-show-on .line1 {
  width: 260px;
}

.page-home .sec-tera1 .sec-inner.ani-show-on .line2 {
  height: 120px;
}

.page-home .sec-tera1 .sec-inner.ani-show-on .line3 {
  width: 410px;
}

.page-home .sec-tera1 .sec-inner.ani-show-on .line4 {
  height: 150px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .sec-inner.ani-show-on .line1 {
    width: 130px;
  }
  .page-home .sec-tera1 .sec-inner.ani-show-on .line2 {
    height: 60px;
  }
  .page-home .sec-tera1 .sec-inner.ani-show-on .line3 {
    width: 205px;
  }
  .page-home .sec-tera1 .sec-inner.ani-show-on .line4 {
    height: 75px;
  }
}

.page-home .sec-tera1 .cols {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 90px 60px 70px;
}

.page-home .sec-tera1 .cols .col:nth-child(1) {
  width: 25%;
  margin-right: 4%;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 1s .75s;
  -o-transition: opacity 1s .75s;
  transition: opacity 1s .75s;
}

.page-home .sec-tera1 .cols .col:nth-child(1).ani-show-on {
  opacity: 1;
}

.page-home .sec-tera1 .cols .col:nth-child(1) h2 {
  position: absolute;
  left: 50%;
  height: 300px;
  font-size: 4rem;
  letter-spacing: .1em;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.page-home .sec-tera1 .cols .col:nth-child(1) h2 small {
  display: block;
  position: absolute;
  left: -6px;
  top: 0;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Quattrocento", serif;
  letter-spacing: .15em;
}

.page-home .sec-tera1 .cols .col:nth-child(2) {
  width: 71%;
  padding-top: 45px;
  opacity: 0;
  -webkit-transition: opacity 1s 1.25s;
  -o-transition: opacity 1s 1.25s;
  transition: opacity 1s 1.25s;
}

.page-home .sec-tera1 .cols .col:nth-child(2).ani-show-on {
  opacity: 1;
}

.page-home .sec-tera1 .cols .col:nth-child(2) h3 {
  margin-bottom: 20px;
}

.page-home .sec-tera1 .cols .col:nth-child(2) .text {
  line-height: 2.8;
  font-size: 1.6rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .cols {
    padding: 90px 40px 90px;
  }
  .page-home .sec-tera1 .cols .col:nth-child(1) {
    width: 15%;
    margin-right: 4%;
  }
  .page-home .sec-tera1 .cols .col:nth-child(1) h2 {
    top: -50px;
    left: 50%;
    height: 200px;
    font-size: 2.2rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .page-home .sec-tera1 .cols .col:nth-child(1) h2 small {
    left: -6px;
    top: 0;
    font-size: .65rem;
  }
  .page-home .sec-tera1 .cols .col:nth-child(2) {
    width: 81%;
    padding-top: 45px;
  }
  .page-home .sec-tera1 .cols .col:nth-child(2) h3 {
    margin-bottom: 20px;
  }
  .page-home .sec-tera1 .cols .col:nth-child(2) .text {
    line-height: 2.5;
    font-size: 1.2rem;
    letter-spacing: .2em;
  }
}

.page-home .sec-tera1 .image1 {
  position: absolute;
  left: 70px;
  bottom: -170px;
  z-index: 1;
  overflow: hidden;
}

.page-home .sec-tera1 .image1 img {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.page-home .sec-tera1 .image1:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera1 .image1 {
    left: 20px;
    bottom: -60px;
  }
}

.page-home .sec-tera2 {
  background-color: #f0f0f0;
}

.page-home .sec-tera2 .sec-inner {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera2 .sec-inner {
    padding-top: 65px;
  }
}

.page-home .sec-tera2 .cols1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.page-home .sec-tera2 .cols1 .col:nth-child(1) {
  text-align: right;
}

.page-home .sec-tera2 .cols1 .col:nth-child(1) .image {
  width: 179px;
  margin-bottom: 8px;
  margin-left: 61px;
  overflow: hidden;
}

.page-home .sec-tera2 .cols1 .col:nth-child(1) .image img {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.page-home .sec-tera2 .cols1 .col:nth-child(1) .image:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.page-home .sec-tera2 .cols1 .col:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 20px;
  padding-left: 23%;
}

.page-home .sec-tera2 .cols1 .col:nth-child(2) h3 {
  position: relative;
  margin-top: 50px;
  margin-bottom: 2px;
  font-size: 2.4rem;
  letter-spacing: .1em;
}

.page-home .sec-tera2 .cols1 .col:nth-child(2) h3:before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  position: absolute;
  left: -35px;
  top: 20px;
  background-color: #888;
  -webkit-animation: tera2-h3 2s ease 0s infinite normal;
  animation: tera2-h3 2s ease 0s infinite normal;
}

@-webkit-keyframes tera2-h3 {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 18px;
    opacity: 1;
  }
  100% {
    width: 18px;
    opacity: 0;
  }
}

@keyframes tera2-h3 {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 18px;
    opacity: 1;
  }
  100% {
    width: 18px;
    opacity: 0;
  }
}

.page-home .sec-tera2 .cols1 .col:nth-child(2) p {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera2 .cols1 {
    display: block;
  }
  .page-home .sec-tera2 .cols1 .col:nth-child(1) .images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -25px;
  }
  .page-home .sec-tera2 .cols1 .col:nth-child(1) .image {
    width: 24%;
    margin-bottom: 0;
    margin-left: 0;
  }
  .page-home .sec-tera2 .cols1 .col:nth-child(2) {
    padding-top: 0;
    padding-left: 30px;
  }
  .page-home .sec-tera2 .cols1 .col:nth-child(2) h3 {
    margin-top: 35px;
    margin-bottom: 2px;
    font-size: 1.4rem;
  }
  .page-home .sec-tera2 .cols1 .col:nth-child(2) h3:before {
    width: 0;
    height: 1px;
    left: -27px;
    top: 11px;
  }
  @-webkit-keyframes tera2-h3 {
    0% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 16px;
      opacity: 1;
    }
    100% {
      width: 16px;
      opacity: 0;
    }
  }
  @keyframes tera2-h3 {
    0% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 16px;
      opacity: 1;
    }
    100% {
      width: 16px;
      opacity: 0;
    }
  }
  .page-home .sec-tera2 .cols1 .col:nth-child(2) p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.page-home .sec-tera2 .cols2-wrap {
  position: relative;
  padding-bottom: 135px;
  padding-top: 140px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera2 .cols2-wrap {
    padding: 70px 20px 40px 20px;
  }
}

.page-home .sec-tera2 .cols2-wrap h2 {
  position: relative;
  width: 450px;
  margin: 0 auto 60px;
  z-index: 1;
  font-size: 2.9rem;
  line-height: 1.48;
  letter-spacing: .1em;
  text-align: center;
  /* -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; */
}

.page-home .sec-tera2 .cols2-wrap h2:before {
  content: '';
  display: block;
  position: absolute;
  left: -70px;
  top: 49%;
  height: 1px;
  width: 60px;
  background-color: #000;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.page-home .sec-tera2 .cols2-wrap h2.ani-show-on:before {
}

.page-home .sec-tera2 .cols2-wrap h2:after {
  content: '';
  display: block;
  position: absolute;
  right: -70px;
  top: 49%;
  height: 1px;
  width: 60px;
  background-color: #000;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.page-home .sec-tera2 .cols2-wrap h2.ani-show-on:after {
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera2 .cols2-wrap h2 {
    width: 240px;
    font-size: 1.5rem;
  }
  .page-home .sec-tera2 .cols2-wrap h2:before {
    left: -30px;
    width: 30px;
  }
  .page-home .sec-tera2 .cols2-wrap h2.ani-show-on:before {
  }
  .page-home .sec-tera2 .cols2-wrap h2:after {
    right: -30px;
    width: 30px;
  }
  .page-home .sec-tera2 .cols2-wrap h2.ani-show-on:after {
  }
}

.page-home .sec-tera2 .cols2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  justify-content: center;
  max-width: 930px;
  margin: 50px auto 0;
}

.page-home .sec-tera2 .cols2:nth-of-type(1) {
  margin-top: 0;
}

.page-home .sec-tera2 .cols2 .col:nth-child(1) {
  width: 58%;
}

.page-home .sec-tera2 .cols2 .col:nth-child(1) h3 {
  margin-top: -5px;
  margin-bottom: 12px;
}

.page-home .sec-tera2 .cols2 .col:nth-child(1) .text {
  letter-spacing: .15em;
}

.page-home .sec-tera2 .cols2 .col:nth-child(2) {
  width: 30%;
}

.page-home .sec-tera2 .cols2 .col:nth-child(2) .prof {
  max-width: 240px;
  /* margin-left: 160px; */
  margin-right: 20px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
}

.page-home .sec-tera2 .cols2 .col:nth-child(2) .prof .name {
  margin-top: 15px;
  font-weight: 500;
}

.page-home .sec-tera2 .cols2 .col:nth-child(2) .prof .text {
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .page-home .sec-tera2 .cols2 {
    display: block;
    margin: 40px auto 0;
  }
  .page-home .sec-tera2 .cols2:nth-of-type(1) {
    margin-top: 40px;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(1) {
    width: auto;
    font-size: 1.2rem;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(1) h3 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(2) {
    width: auto;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(2) .prof {
    max-width: 200px;
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(2) .prof .image {
    text-align: center;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(2) .prof .name {
    margin-top: 10px;
    font-weight: 500;
  }
  .page-home .sec-tera2 .cols2 .col:nth-child(2) .prof .text {
    font-size: 1.1rem;
  }
}

.page-home .sec-about {
  position: relative;
  overflow: hidden;
}

.page-home .sec-about .sec-inner {
  padding: 40px 0 85px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-about .sec-inner {
    padding: 18px 0 1px;
  }
}

.page-home .sec-about .top-lines {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 1;
  width: 100%;
}

.page-home .sec-about .top-lines .l {
  position: absolute;
  left: 0;
  top: 0;
  width: 98px;
  height: 3px;
  background-color: #90B5BE;
  -webkit-animation: about-l 2s ease 0s infinite normal;
  animation: about-l 2s ease 0s infinite normal;
}

@-webkit-keyframes about-l {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

@keyframes about-l {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

.page-home .sec-about .top-lines .r {
  position: absolute;
  right: 0;
  top: 0;
  width: 98px;
  height: 3px;
  background-color: #90B5BE;
  -webkit-animation: about-r 2s ease 0s infinite normal;
  animation: about-r 2s ease 0s infinite normal;
}

@-webkit-keyframes about-r {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

@keyframes about-r {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 98px;
    opacity: 1;
  }
  100% {
    width: 98px;
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-about .top-lines {
    top: 25px;
  }
  .page-home .sec-about .top-lines .l {
    width: 0;
    height: 2px;
  }
  @-webkit-keyframes about-l {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
  @keyframes about-l {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
  .page-home .sec-about .top-lines .r {
    width: 0;
    height: 2px;
  }
  @-webkit-keyframes about-r {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
  @keyframes about-r {
    0% {
      width: 0;
      opacity: 0;
    }
    4% {
      width: 0;
      opacity: 0;
    }
    5% {
      width: 0;
      opacity: 1;
    }
    50% {
      width: 49px;
      opacity: 1;
    }
    100% {
      width: 49px;
      opacity: 0;
    }
  }
}

.page-home .sec-about .map {
  position: absolute;
  left: 50%;
  right: 0;
  top: 140px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1025px;
  margin: 0 auto;
}

.page-home .sec-about .map .name1 {
  position: absolute;
  left: 80px;
  top: -39px;
  z-index: 1;
  font-size: 1.3rem;
  font-family: "Quattrocento", serif;
  letter-spacing: .2em;
  text-align: center;
  line-height: 1.3;
}

.page-home .sec-about .map .line1 {
  position: absolute;
  left: 129px;
  top: -8px;
  z-index: 1;
  width: 40px;
  height: 1px;
  background-color: #ccc;
  -webkit-transform: rotate(53deg);
  -ms-transform: rotate(53deg);
  transform: rotate(53deg);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-animation: about-line1 2s ease 0s infinite normal;
  animation: about-line1 2s ease 0s infinite normal;
}

@-webkit-keyframes about-line1 {
  0% {
    width: 0;
    opacity: 0;
  }
  4% {
    width: 0;
    opacity: 0;
  }
  5% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 40px;
    opacity: 1;
  }
  100% {
    width: 40px;
    opacity: 0;
  }
}

@keyframes about-line1 {
  0% {
    width: 0;
    opacity: 0;
  }
  4% {
    width: 0;
    opacity: 0;
  }
  5% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 40px;
    opacity: 1;
  }
  100% {
    width: 40px;
    opacity: 0;
  }
}

.page-home .sec-about .map .name2 {
  position: absolute;
  right: 245px;
  top: 4px;
  z-index: 1;
  font-size: 1.3rem;
  font-family: "Quattrocento", serif;
  letter-spacing: .2em;
  text-align: center;
  line-height: 1.3;
}

.page-home .sec-about .map .line2 {
  position: absolute;
  right: 245px;
  top: 14px;
  z-index: 1;
  width: 33px;
  height: 1px;
  background-color: #ccc;
  -webkit-transform: rotate(-151deg);
  -ms-transform: rotate(-151deg);
  transform: rotate(-151deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-animation: about-line2 2s ease 0s infinite normal;
  animation: about-line2 2s ease 0s infinite normal;
}

@-webkit-keyframes about-line2 {
  0% {
    width: 0;
    opacity: 0;
  }
  4% {
    width: 0;
    opacity: 0;
  }
  5% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 33px;
    opacity: 1;
  }
  100% {
    width: 33px;
    opacity: 0;
  }
}

@keyframes about-line2 {
  0% {
    width: 0;
    opacity: 0;
  }
  4% {
    width: 0;
    opacity: 0;
  }
  5% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 33px;
    opacity: 1;
  }
  100% {
    width: 33px;
    opacity: 0;
  }
}

@media screen and (max-width: 1050px) {
  .page-home .sec-about .map {
    -webkit-transform: translateX(-50%) scale(0.7);
    -ms-transform: translateX(-50%) scale(0.7);
    transform: translateX(-50%) scale(0.7);
  }
}

@media screen and (max-width: 767px) {
  .page-home .sec-about .map {
    top: 50px;
    width: 620px;
    -webkit-transform: translateX(-50%) scale(0.6);
    -ms-transform: translateX(-50%) scale(0.6);
    transform: translateX(-50%) scale(0.6);
  }
  .page-home .sec-about .map .name1 {
    left: 40px;
    top: -25px;
  }
  .page-home .sec-about .map .line1 {
    left: 87px;
    top: 3px;
  }
  .page-home .sec-about .map .name2 {
    right: 162px;
    top: -9px;
  }
  .page-home .sec-about .map .line2 {
    right: 161px;
    top: 0px;
  }
}

.page-home .sec-about .title-en {
  margin-bottom: 88px;
  font-size: 1.3rem;
  text-align: center;
  font-family: "Quattrocento", serif;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-about .title-en {
    margin-bottom: 60px;
    font-size: .75rem;
  }
}

.page-home .sec-about .title-wrap {
  position: relative;
  height: 320px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-about .title-wrap {
    height: 190px;
  }
}

.page-home .sec-about h2 {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 320px;
  font-size: 4rem;
  letter-spacing: .1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  .page-home .sec-about h2 {
    height: 190px;
    font-size: 2.2rem;
  }
}

.page-home .sec-about .des {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 910px;
  margin: 0 auto;
}

.page-home .sec-about .des .image {
  width: 240px;
  margin-right: 50px;
}

.page-home .sec-about .des .text {
  line-height: 2.68;
  font-size: 1.6rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-about .des {
    display: block;
  }
  .page-home .sec-about .des .image {
    width: 120px;
    margin: 0 auto;
  }
  .page-home .sec-about .des .text {
    max-width: 260px;
    margin: 0 auto 25px;
    font-size: 1.2rem;
  }
}

.page-home .sec-about h3 {
  margin: 80px 0 50px;
  font-size: 2.9rem;
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-home .sec-about h3 {
    margin: 50px 0 30px;
    font-size: 1.6rem;
  }
}

.page-home .sec-about .shimabito {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-home .sec-about .shimabito .box {
  width: 25%;
  padding: 0 2%;
  text-align: center;
}

.page-home .sec-about .shimabito .box .photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
  max-width: 170px;
  margin: 0 auto 22px;
}

.page-home .sec-about .shimabito .box .photo img {
  max-width: 170px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.page-home .sec-about .shimabito .box .photo:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.page-home .sec-about .shimabito .box h4 {
  margin-bottom: 15px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.page-home .sec-about .shimabito .box .text {
  text-align: left;
  letter-spacing: .06em;
}

.page-home .sec-about .shimabito .box:nth-child(3) h4 {
  letter-spacing: -.1em;
}

@media screen and (max-width: 867px) {
  .page-home .sec-about .shimabito {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  .page-home .sec-about .shimabito .box {
    width: 50%;
    margin-bottom: 50px;
    padding: 0 3%;
  }
  .page-home .sec-about .shimabito .box .photo {
    max-width: 124px;
    margin-bottom: 10px;
  }
  .page-home .sec-about .shimabito .box .photo img {
    max-width: 124px;
  }
}

.page-home .sec-mes {
  background-color: #f0f0f0;
}

.page-home .sec-mes .sec-inner {
  padding: 80px 0 60px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-mes .sec-inner {
    padding: 28px 0 30px;
  }
}

.page-home .sec-mes .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 920px;
  margin: 0 auto;
}

.page-home .sec-mes .cols .col:nth-child(1) {
  width: 198px;
  margin-right: 60px;
}

.page-home .sec-mes .cols .col:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.page-home .sec-mes .cols h2 {
  font-size: 2.6rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
  padding: 10px 0 7px;
}

.page-home .sec-mes .cols .prof {
  text-align: center;
}

.page-home .sec-mes .cols .prof .name {
  margin-top: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.page-home .sec-mes .cols .prof .photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 14px;
}

.page-home .sec-mes .cols .prof .photo img {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.page-home .sec-mes .cols .prof .photo:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.page-home .sec-mes .cols .text {
  position: relative;
  padding: 50px 30px 20px;
  background-color: #fff;
}

.page-home .sec-mes .cols .text h3 {
  position: absolute;
  left: 0;
  top: -15px;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.page-home .sec-mes .cols .text p {
  line-height: 2;
  letter-spacing: .14em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-mes .cols {
    display: block;
  }
  .page-home .sec-mes .cols .col:nth-child(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    max-width: 320px;
    margin: 0 auto 25px;
  }
  .page-home .sec-mes .cols .col:nth-child(2) {
    padding-top: 10px;
  }
  .page-home .sec-mes .cols .title-wrap {
    width: 60%;
    padding-top: 28px;
  }
  .page-home .sec-mes .cols h2 {
    max-width: 110px;
    margin: 0 auto;
    padding: 4px 0 3px;
    font-size: 1.4rem;
  }
  .page-home .sec-mes .cols .prof {
    width: 40%;
  }
  .page-home .sec-mes .cols .prof .name {
    margin-top: 5px;
    font-size: .9rem;
  }
  .page-home .sec-mes .cols .text {
    padding: 20px 20px 15px;
  }
  .page-home .sec-mes .cols .text h3 {
    top: -15px;
  }
}

.page-home .sec-price {
  background-color: #c7dade;
  text-align: center;
}

.page-home .sec-price .sec-inner {
  padding: 60px 0 98px;
}

@media screen and (max-width: 767px) {
  .page-home .sec-price .sec-inner {
    padding: 20px 0 85px;
  }
}

.page-home .sec-price h2 {
  margin-bottom: 42px;
  font-size: 2.9rem;
  letter-spacing: .2em;
}

.page-home .sec-price h2 span {
  display: inline-block;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .page-home .sec-price h2 {
    margin-bottom: 22px;
    font-size: 1.6rem;
  }
}

.page-home .sec-price .course {
  position: relative;
  z-index: 1;
}

.page-home .sec-price .course:before, .page-home .sec-price .course:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  left: -6px;
  top: -6px;
  background-color: #aac7cd;
  width: 100%;
  height: 100%;
}

.page-home .sec-price .course:after {
  left: auto;
  top: auto;
  right: -6px;
  bottom: -6px;
}

.page-home .sec-price .course .course-inner {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 30px 15px 30px;
}

.page-home .sec-price .course h3 {
  margin-bottom: 5px;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: .1em;
}

.page-home .sec-price .course .text1 {
  margin-bottom: -10px;
  font-size: 3.4rem;
  font-weight: bold;
}

.page-home .sec-price .course .text2 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.page-home .sec-price .course .text3 {
  font-size: 1.6rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  .page-home .sec-price .course:before, .page-home .sec-price .course:after {
    left: -3px;
    top: -3px;
  }
  .page-home .sec-price .course:after {
    left: auto;
    top: auto;
    right: -3px;
    bottom: -3px;
  }
  .page-home .sec-price .course .course-inner {
    padding: 25px 15px 25px;
  }
  .page-home .sec-price .course h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
  }
  .page-home .sec-price .course .text1 {
    margin-bottom: -10px;
    font-size: 1.8rem;
  }
  .page-home .sec-price .course .text2 {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  .page-home .sec-price .course .text3 {
    font-size: 1.2rem;
  }
}

.page-home .sec-price .btn {
  max-width: 500px;
  margin: 0 auto;
}

.page-home .sec-price .btn a {
  display: block;
  background-color: #90b5be;
  color: #fff;
}

.page-home .sec-contact-wrap {
  position: relative;
}

.page-home .sec-contact {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  display: none;
}

.page-home .sec-contact.is-ab {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .page-home .sec-contact {
    left: 10px;
    text-align: center;
  }
}

/* --------------------------------
[post.cssについて]
・WordPressのindex.php、single.php内の記事出力HTMLで使用
-------------------------------- */
/* index-posts -------- */
/* single-posts -------- */
/* --------------------------------
[サンプルコード]
-------------------------------- */
/* 白文字が太いとき
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  */
/* 画像文字を縮小しべぼやけるとき
  backface-visibility;
  -webkit-backface-visibility;
  */
