@charset "utf-8";
/* CSS Document */

/* //////////////////////////////////////////
  PC
  ////////////////////////////////////////// */

  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:     100%;
    background: #fff;
  }

  body{
    font-family: 'Roboto Condensed', 'Oswald', "Noto Sans JP", sans-serif;
    letter-spacing: 0.1rem;
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: #fff;
  }

  button, input, select, textarea {
    font-family : inherit;
    font-size : 100%;
  }

  *:focus {
    outline:none;
  }
  /*WordPressネイティブCSS*/
  em { font-style: italic; }
  blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
  }
  .aligncenter {
    display: block;
    margin: 0 auto;
  }
  .alignright { float: right; }
  .alignleft { float: left; }

  img[class*="wp-image-"],
  img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
  }
  .clearfix {
    /*overflow: hidden;*/
    zoom: 1;
  }
  .clearfix:after {
    content: ""
    display: block;
    clear: both;
  }

  a {
    text-decoration: none;
    color: #3e3e3e;
  }
  a:hover {
    text-decoration: underline;
  }

  a:link, a:visited, a:active {
    /*color: #0000ff;*/
    text-decoration: none;
  }

  selector {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: bottom;
    line-height: 0px;
  }

  svg {
    vertical-align: middle;
  }

  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }

/********************
animation setting
********************/
@-webkit-keyframes loadingAnim{
  0%{
    width: 0;
  }
  100%{
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@keyframes loadingAnim{
  0%{
    width: 0;
  }
  100%{
    width: 100%;
    -webkit-transform: translate(100%);
    transform: translate(100%);
  }
}
@-webkit-keyframes loadingAnim_text{
  0%{
    opacity: 1;
    color: #fff;
  }
  50%{
    color: #fff;

  }
  100%{
    opacity: .5;
    color: #fff;
  }
}
@keyframes loadingAnim_text{
  0%{
    opacity: 1;
    color: #fff;
  }
  50%{
    color: #fff;
  }
  100%{
    opacity: .5;
    color: #fff;
  }
}

  /********************
loading effects
********************/
.loadingAnim{
  position: fixed;
  z-index: 1000000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
.loadingAnim_line{
  line-height: 1;
  position: fixed;
  z-index: 1000000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: auto;
  height: 1.25em;
  margin: auto;
  transition: all .6s cubic-bezier(.785, .135, .15, .86) 0s;
  transition-delay: .6s;
  text-align: center;
}
.loadingAnim_line:after{
  position: absolute;
  z-index: 1000000;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  margin: auto  auto auto 0;
  content: ' ';
  -webkit-animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
  background-color: #009977;
  will-change: transform, width;
}
.loadingAnim_line:before{
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: 'YUSUKE SHIBUYA';
  -webkit-animation: loadingAnim_text .5s ease .1s infinite alternate both;
  animation: loadingAnim_text .5s ease .1s infinite alternate both;
  letter-spacing: .5em;
  color: #fff;
  will-change: opacity;
}
.loaded .loadingAnim_line{
  overflow: hidden;
  height: 0;
}
.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before{
  -webkit-animation: none;
  animation: none;
}
.loaded .loadingAnim_line:before{
  display: none;
}
.loadingAnim:before{
  line-height: 1;
  position: fixed;
  z-index: 999999;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  content: ' ';
  transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
  transition-delay: .3s;
  background-color: #009977;
}
.loadingAnim:before{
  top: 0;
}
.loaded .loadingAnim:before{
  height: 0;
  -webkit-transform: translateY(-1%);
  -ms-transform: translateY(-1%);
  transform: translateY(-1%);
}

header {
  position: relative;
  z-index: 99999;
}

header .logo {
  display: inline-block;
}

header .logo a {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  color: #000;
  padding: 15px;
}

header .logo a span {
  font-size: 16px;
  padding-left: 8px;
}

.nav {
  position: absolute;
  top: 0;
  right: 0;
}

.nav .nav_box {
  display: flex;
  overflow: hidden;
}

.nav .nav_box li {
  padding: 25px 20px;
}

.nav .nav_box li a {
  color: #000;
  display: inline-block;
  font-weight: 600;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}

.nav .nav_box li a:hover {
  color: #009977;
}

.nav .nav_box li:last-child {
  padding: 0;
}

.nav .nav_box li:last-child a {
  padding: 26px;
  background: #f4f4f4;
}

.nav .nav_box li:last-child a:hover {
  background: #009977;
}

article　{
  position: relative;
}

.kv {
  background: url("img/kv_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 556px;
  width: 100%;
  margin-bottom: 80px;
}

.kv .inner {
  background: url("img/kv_omote.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 576px;
  width: 100%;
  transform: translate(0px, -20px);
  -webkit-transform: translate(0px, -20px);
}

.slogan .inner {
  max-width: 770px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 0;
}

.slogan .inner > svg {
  position: absolute;
  z-index: -1;
  top: -50px;
  left: 10px;
  fill: #009977;
  opacity: .3;
}

.slogan .inner > p {
  font-size: 36px;
  font-weight: 600;
  z-index: 0;
  padding-left: 0;
  text-align: center;
  margin: 85px 0;
  line-height: 4rem;
}

.blog {
  padding-bottom: 90px;
}

.blog .inner {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
}

.ttl b {
  font-weight: 600;
  font-size: 70px;
  color: #009977;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
}

.ttl span {
  font-size: 18px;
  color: #000;
  display: block;
  line-height: 1;
  font-weight: 600;
}

.ttl_center {
  text-align: center;
}

.ttl_line {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}

.ttl_line b {
  background: #fff;
  padding: 0 40px;
}

.ttl_line::after {
  content: "";
  height: 2px;
  width: 100%;
  background: #f1f1f1;
  position: absolute;
  display: block;
  top: 55px;
}

.color_black b {
  color: #000;
}

.color_white b {
  color: #fff;
}

.blog .inner ul {
  display: flex;
  justify-content: start;
  -webkit-justify-content: start;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.blog .inner ul li {
  /*width: 30%;*/
  padding: 18px;
  box-sizing: border-box;
  width: 33%;
}

.blog .inner ul li a:hover .musk{
 transform: scale(0.97);
 transition: all .5s ease;
}

.blog .inner ul li a .musk {
 overflow: hidden;
 position: relative;
 background: #f5f5f5;
 margin-bottom: 20px;
 transform: scale(1);
 transition: all .5s ease;
}

.blog .inner ul li a .musk img {
 transform: scale(1.1);
 transition: all .5s ease;
 width: 100%;
 height: 200px;
 object-fit: cover;
}

.blog .inner ul li a:hover .musk img {
 transform: scale(1.2);
 transition: all .5s ease;
}

.blog .inner ul li a .data {
  color: #009977;
  display: block;
  margin-bottom: 10px;
}

.blog .inner ul li a h3 {
  color: #000;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
}

.no_post {
  width: 100%;
  text-align: center;
  padding: 80px 0;
}

/*ボタンホバーアニメーション*/
.bt_slide {
  z-index: 1;
}
.bt_slide:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #000;
  transition: all 0.3s ease;
}
.bt_primary > .bt_slide:after {
  background: #009977;
}
.bt_slide:hover {
  color: #fff;
}
.bt_slide:hover:after {
  left: 0;
  width: 100%;
}
.bt_slide:active {
  top: 2px;
}

/*defaultボタン 黒*/
.bt {
  text-align: center;
  line-height: 1.6;
  margin: 0 auto;
}

.bt a {
  display: inline-block;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 20px 0;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  min-width: 330px;
  text-align: center;
  position: relative;
}

.bt input[type="submit"] {
  background: none;
  display: inline-block;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 0;
  border-right: 0;
  padding: 20px 0;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  min-width: 330px;
  text-align: center;
  position: relative;
  border-radius: 0;
}

.bt a .circle {
  display: inline-block;
  border: 1px solid #000;
  border-radius: 100px;
  position: absolute;
  top: 25%;
  right: 0;
  z-index: 1;
  transition: all .8s ease;
}

.bt a .circle > svg {
  padding: 10px 11px;
  fill: #000;
  transition: all .8s ease;
}

.bt a:hover .circle > svg {
  fill: #fff;
}

.bt a:hover .circle {
  border: 1px solid transparent;
}


/*Primaryボタン*/
.bt_primary a {
  border-top: 2px solid #009977;
  border-bottom: 2px solid #009977;
  color: #009977;
}
.bt_primary a .circle {
  border: 1px solid #009977;
}
.bt_primary a .circle > svg {
  fill: #009977;
}

.profile {
  background: #f4f5f9;
  padding: 50px 0;
}

.profile .inner {
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: start;
  -webkit-align-items: start;
}

.profile .inner img {
 max-width: 350px;
 width: 100%;
 margin-right: 70px;
 height: 100%;
 vertical-align: middle;
}

.profile .inner .profile_text {
  max-width: 440px;
}

.ttl_default {
  margin-bottom: 40px;
}

.profile .inner .profile_text p {
  margin-bottom: 60px;
}

.sns {
  padding: 70px 0;
}

.sns .inner {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 0;
  border-top: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
}

.sns .inner ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  -webkit-justify-content: space-evenly;
  -webkit-align-items: center;
}

.sns .inner ul li a {
 display: inline-block;
 width: 34px;
 transition: all .2s ease;
 -webkit-transition: all .2s ease;
}

.sns .inner ul li a:hover {
  transform: scale(1.14);
  -webkit-transform: scale(1.14);
}

/*Otherアイコン*/
.bg_circle {
  fill:#009977;
  enable-background:new;
}
.main_circle {
  fill:#FFFFFF;
}

.movie {
  padding: 0;
}

.movie .inner {
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
}

.movie .inner .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie .inner .youtube > iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.policy {
  padding: 100px 0;
}

.policy .inner {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
}

.policy .inner ul {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.policy .inner ul li {
  line-height: 1.2;
  margin-bottom: 60px;
  max-width: 830px;
}

.policy .inner ul li:nth-child(even) {
  padding-left: 18%;
}

.policy .inner ul li .box {
  position: relative;
  margin-left: 90px;
}

.policy .inner ul li .box::before {
  content: "";
  background: #009977;
  width: 20px;
  height: 85%;
  position: absolute;
  left: -70px;
  top: 15%;
}

.policy .inner ul li .box .number {
  font-size: 130px;
  font-weight: 700;
  color: #009977;
}

.policy .inner ul li .box h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 2.8rem;
}

.policy .inner ul li p {
  font-size: 18px;
  padding: 30px 0 30px 95px;
  line-height: 2rem;
}

.policy .inner .sub_info {
  margin: 60px auto;
  font-size: 38px;
  text-align: center;
  max-width: 880px;
  width: 100%;
}

.support {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.support > div {
  width: 50%;
  overflow: hidden;
}

.support .l_box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.support .r_box {
  width: 50%;
  background: url("img/bg_support.jpg");
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.support .r_box .inner .ttl {
  margin-bottom: 60px;
}

.support .r_box .inner .bt {
  margin-bottom: 40px;
}

.office {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  min-height: 40.6vw;
}

.office .l_box {
  width: 50%;
  background: url("img/bg_office.jpg");
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}

.office .l_box .inner {
  text-align: left;
}

.office .l_box .inner .ttl {
  margin-bottom: 40px;
}

.office .l_box .inner .ttl span {
  font-size: 30px;
}

.office .l_box .inner p {
  font-size: 18px;
  margin-bottom: 15px;
}

.office .r_box {
  width: 50%;
  overflow: hidden;
}

.contact {
  background: #009977;
  padding: 60px 0 0;
}

.contact .name_bottom {
 color: #009977;
 text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
 -1px 1px 0 #FFF, 1px -1px 0 #FFF,
 0px 1px 0 #FFF,  0-1px 0 #FFF,
 -1px 0 0 #FFF, 1px 0 0 #FFF;
 font-size: 165px;
 padding: 70px 0 0;
 text-align: center;
 line-height: 0.7em;
}

.contact .inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.contact .inner .ttl {
  margin-bottom: 40px;
}

.contact .inner .ttl span {
  color: #000;
}

.contact.done .inner h2 {
  text-align: center;
  color: #fff;
}
.contact.done {
  background: #009977;
  padding: 40px 0;
  margin-bottom: 20px;
}

.contact .inner dl + span {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.contact .inner span a {
  color: #fff;
}

.contact .inner span a:hover {
  text-decoration: none;
}

.contact .inner dl dt {
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.contact .inner dl dt .required{
  color: red;
  vertical-align: sub;
  padding: 5px;
}

.contact .inner dl dd {
  margin-bottom: 25px;
}

.contact .inner dl dd .text_info {
  display: block;
  font-size: 12px;
  padding: 10px 0;
  color: #fff;
  line-height: 1.3rem;
  letter-spacing: 1px;
}

.contact .inner dl dd input {
  border: none;
  width: 100%;
  padding:15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.contact .inner dl dd select {
  border: none;
  width: 50%;
  padding:15px;
  box-sizing: border-box;
  border-radius: 5px;
}

.contact .inner dl dd textarea {
  border: none;
  width: 100%;
  height: 290px;
  padding:15px;
  box-sizing: border-box;
  border-radius: 5px;
}

/*コンタクトフォーム7 CheckBox*/
.contact .inner .checkbox {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.contact .inner .checkbox .label-checkbox span {
  color: #333;
}

.wpcf7-list-item-label span a {
  text-decoration: underline;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: .3;
  pointer-events: none;
}

.wpcf7 .ajax-loader {
  display: none !important;
}
.wpcf7-validation-errors, .wpcf7-acceptance-missing {
  display: none !important;
}
.wpcf7-mail-sent-ok {
  border: none;
  color: #d600b0;
  text-align: center;
}
span.wpcf7-not-valid-tip {
  padding-top: 8px;
  font-size: .8em;
}
.contact .inner input[type=checkbox] {
  display: none;
}
.contact .inner .wpcf7-list-item-label {
  margin-top: 15px;
  margin-right: 40px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  display: block;
  height: 26px;
  font-size: 18px;
  line-height: 26px;
}
.contact .inner .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 4px;
}
.contact .inner input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("img/icon_check.svg") center center no-repeat;
}

.contact2 {
  background: #F8F8F8;
  padding: 100px 0;
}

.contact2 .inner {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.contact2 .inner .ttl {
  margin-bottom: 90px;
}

.contact2 .inner .ttl > span {
  margin: -28px auto 0;
}

.contact2.done .inner h2 {
  text-align: center;
  color: #000;
}
.contact2.done {
  background: #F8F8F8;
  padding: 40px 0;
  margin-bottom: 20px;
}
.contact2 .form-layout {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.contact2 .inner dl {
  width: 100%;
}
.contact2 .inner dl + span {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}

.contact2 .inner span a {
  color: #000;
}

.contact2 .inner span a:hover {
  text-decoration: none;
}

.contact2 .inner dl dt {
  font-weight: 700;
  color: #000;
}

.contact2 .inner dl dt .required{
  color: red;
  vertical-align: sub;
  padding: 5px;
}

.contact2 .inner dl dd {
  margin-bottom: 50px;
}

.contact2 .inner dl dd .text_info {
  display: block;
  font-size: 12px;
  padding: 10px 0;
  color: #000;
  line-height: 1.3rem;
  letter-spacing: 1px;
}

.contact2 .inner dl dd input {
  border: none;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid #000;
}

.contact2 .inner dl dd select {
  border: none;
  width: 50%;
  padding:15px;
  box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid #000;
}

.contact2 .inner dl dd textarea {
  border: none;
  width: 100%;
  height: 50px;
  padding:15px;
  box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid #000;
}
.bt .bt-input {
  border: 2px solid #000 !important;
  border-radius: 100px !important;
  transition: all .3s ease;
}
.bt .bt-input:hover {
  background: #000;
  color: #fff;
}

/*コンタクトフォーム7 CheckBox*/
.contact2 .inner .checkbox {
  text-align: center;
  margin-bottom: 30px;
  color: #000;
  width: 100%;
}

.contact2 .inner .checkbox .label-checkbox span {
  color: #333;
}

.wpcf7-list-item-label span a {
  text-decoration: underline;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: .3;
  pointer-events: none;
}

.wpcf7 .ajax-loader {
  display: none !important;
}
/*.wpcf7-validation-errors, .wpcf7-acceptance-missing {
  display: none !important;
  }*/
  .wpcf7-mail-sent-ok {
    border: none;
    color: #d600b0;
    text-align: center;
  }
  span.wpcf7-not-valid-tip {
    padding-top: 8px;
    font-size: .8em;
  }
  .contact2 .inner input[type=checkbox] {
    display: none;
  }
  .contact2 .inner .wpcf7-list-item-label {
    margin-top: 15px;
    margin-right: 40px;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    display: block;
    height: 26px;
    font-size: 16px;
    line-height: 26px;
  }
  .contact2 .inner .wpcf7-list-item-label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid;
  }
  .contact2 .inner input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: url("img/icon_check.svg") center center no-repeat;
  }

/*コンタクトフォームCSS*/

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  background: #ffb900;
  color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #00ab10;
  color: #fff;
  border: solid #00ab10;
}
.wpcf7 span.wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: #ffdce2;
  border: 2px solid red !important;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 8px 35px 8px 14px !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px !important;
  -moz-border-radius: 4px !important;
  border-radius: 4px !important;
}
.wpcf7 .wpcf7-validation-errors {
  color: #B94A48 !important;
  background-color: #F2DEDE !important;
  border: 1px solid #EED3D7 !important;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD !important;
  background-color: #D9EDF7 !important;
  border: 1px solid #BCE8F1 !important;
}

footer {
  text-align: center;
  padding: 65px 0 40px;
  position: relative;
}

footer .logo {
  white-space: nowrap;
  font-size: 30px;
  color: #009977;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}

footer .logo:hover {
  opacity: .8;
}

footer .logo span {
  font-size: 16px;
  color: #009977;
}

footer ul {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
  -webkit-justify-content: center;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

footer ul li {
  padding: 10px;
}

footer ul li a {
  color: #000;
  font-size: 15px;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}

footer ul li a:hover {
  opacity: .7;
}

footer span {
  color: #838383;
  font-size: 12px;
}

.page_footer {
  background: #f9f9f9 !important;
}

/*スムーススクロール*/

.page-top {
  position: relative;
}

#page_top {
  height: 50px;
  width: 50px;
  display: block;
  position: fixed;
  background: #000;
  bottom: 0px;
  right: 20px;
  z-index: 999;
  text-align: center;
  line-height: 0;
  border-radius: 100px;
}

#page_top:hover {
  opacity: .8;
  transition: all .6s ease;
  -webkit-transition: all .6s ease;
}

#page_top span {
 background: url('img/top_arrow.svg');
 background-repeat: no-repeat;
 background-size: contain;
 display: inline-block;
 height: 18px;
 width: 18px;
 margin: 16px;
}

.page_kv {
  background: url('img/kv_bg_page.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  -webkit-justify-content: center;
  -webkit-align-items: flex-end;
  margin-bottom: 30px;
}

.page {
    padding: 40px 0 80px;
}

.page .inner {
  max-width: 800px;
  width: 86%;
  margin: 0 auto;
  line-height: 36px;
  letter-spacing: 0.15rem;
  font-size: 18px;
}

.page .inner .inner_text a {
  color: #009977;
  text-decoration: underline;
}

.page .inner .inner_text a:hover {
  text-decoration: none;
}

.page .inner .wp-post-image {
  width: 100%;
}

.page .inner ul {
  background: #f9f9f9;
  padding: 20px 20px 20px 50px;
  border-radius: 6px;
  list-style-type: disc;
  margin-bottom: 20px;
}

.page .inner ol {
  background: #f9f9f9;
  padding: 20px 20px 20px 50px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page .inner ul li,
.page .inner ol li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 10px 0;
  box-sizing: border-box;
  float: none;
  display: list-item;
  list-style-type: disc;
}

.page .inner ol li {
  list-style-type: decimal !important;
}

.page .inner .data {
  color: #8e8e8e;
}

.page .inner .ttl_page {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: left;
}

.page .inner h2 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 0px;
  display: block;
  padding-top: 10px;
  padding-bottom: 5px;
  /*border-bottom: 2px solid #f5f5f5;*/
}

.page .inner h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
}

.page .inner h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.page .inner p {
  /*line-height: 2rem;*/
  margin-bottom: 20px;
}

.single_data {
  color: #a0a0a0;
  font-weight: 400;
  font-size: 14px;
}
.single_bottom_link {
  display: flex;
  align-items: baseline;
  font-weight: 600;
}
.single_bottom_link a:hover {
  opacity: .6;
  transition: all .2s ease;
}
.single_bottom_link .bt_slide:hover {
  opacity: 1;
}
.single_bottom_link svg {
  width: 15px;
  height: 15px;
  vertical-align: baseline;
  padding: 0 10px;
}
.single_bottom_link span {
  white-space: nowrap;
}

.page .inner > a {
  color: #ff8dc9;
  transition: all .2s ease;
  -webkit-transition: all .2s ease;
}

.page .inner img {
  margin-bottom: 30px;
}

.page .inner > a:hover {
  opacity: .5;
}

strong {
  font-weight: 700;
}

.mb30 {
  margin-bottom: 30px;
}

.mt50 {
  margin-top: 50px;
}

.page .ttl b {
  font-size: 36px;
}




/* //////////////////////////////////////////
  TABLET / SP
  ////////////////////////////////////////// */

  /*iPad縦 / iPhone 8 Plus横*/
  @media screen and (max-width: 1035px) {

    /*スマフォボタンリセット*/
    * { -webkit-appearance: none; }

    body {
      font-size: 16px;
      -webkit-overflow-scrolling: touch;
      -webkit-text-size-adjust: 100%;
    }
    .sp {
      display: block !important;
    }
    .pc {
      display: none !important;
    }
    .kv {
      background-repeat: no-repeat;
      background-size: cover;
      height: 522px;
      width: 100%;
      background-position: center;
    }
    /*.kv .inner {
      background: url(img/kv_sp.png) no-repeat;
      background-size: contain;
      background-position: bottom;
      height: 667px;
      width: 100%;
      transform: translate(0px);
      -webkit-transform: translate(0px);
    }*/

    /*グローバルメニュー*/
    .burger {
      top: 10px;
      right: 10px;
    }
    .burger {
      width: 40px;
      height: 40px;
      cursor: pointer;
      position: fixed;
      z-index: 10000;
      transform: scale(1.3);
    }
    .burger_line {
      -webkit-transition-duration: .6s;
      transition-duration: .6s;
      -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
      transition-timing-function: cubic-bezier(.19,1,.22,1);
    }
    .burger_line01 {
      top: 12px;
      left: 11px;
    }
    .burger_line {
      width: 18px;
    }
    .burger_line {
      height: 2px;
      overflow: hidden;
      position: absolute;
    }
    .burger_line-in01 {
      -webkit-transition-delay: .15s;
      transition-delay: .15s;
    }
    .burger_line-in {
      -webkit-transition-duration: .6s;
      transition-duration: .6s;
      -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
      transition-timing-function: cubic-bezier(.19,1,.22,1);
    }
    .burger_line-in {
      width: 72px;
      height: 2px;
      position: absolute;
      top: 0;
      left: 0;
    }
    .burger_line-in:after,
    .burger_line-in:before {
      -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
      transition-timing-function: cubic-bezier(.19,1,.22,1);
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform,-webkit-transform;
    }
    .burger_line-in:before {
      left: -48px;
    }
    .burger_line-in:after,
    .burger_line-in:before {
      width: 24px;
      height: 2px;
      content: '';
      display: block;
      position: absolute;
      top: 0;
      background-color: #009977;
    }
    .burger_line-in:after {
      left: 0;
    }
    .burger_line02 {
      top: 19px;
      left: 11px;
    }
    .burger_line03 {
      top: 26px;
      left: 11px;
      width: 9px;
    }
    .burger_line-cross01 {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .burger_line-in-cross01 {
      -webkit-transition-delay: 0ms;
      transition-delay: 0ms;
    }
    .burger_line-in-cross01,
    .burger_line-in-cross02 {
      -webkit-transform: translateX(-33.3%);
      transform: translateX(-33.3%);
    }
    .burger_line-cross01,
    .burger_line-cross02 {
      top: 19px;
      left: 11px;
    }
    .burger_line-cross02 {
      -webkit-transform: rotate(135deg);
      transform: rotate(135deg);
    }
    .burger_line-in-cross02 {
      -webkit-transition-delay: 50ms;
      transition-delay: 50ms;
    }
    .burger_line-in02 {
      -webkit-transition-delay: .25s;
      transition-delay: .25s;
    }
    .burger_line-in02:after,
    .burger_line-in02:before {
      -webkit-transition-delay: 50ms;
      transition-delay: 50ms;
    }
    .burger_line-in:after,
    .burger_line-in:before {
      -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
      transition-timing-function: cubic-bezier(.19,1,.22,1);
      -webkit-transition-property: -webkit-transform;
      transition-property: -webkit-transform;
      transition-property: transform;
      transition-property: transform,-webkit-transform;
    }
    .burger_line-in03 {
      -webkit-transition-delay: .2s;
      transition-delay: .2s;
    }
    .burger_line-in03:after,
    .burger_line-in03:before {
      -webkit-transition-delay: .1s;
      transition-delay: .1s;
    }
    .burger_line-in-cross02:after,
    .burger_line-in-cross02:before {
      -webkit-transition-delay: .1s;
      transition-delay: .1s;
    }
    .burger:hover .burger_line-in01:after,
    .burger:hover .burger_line-in01:before,
    .burger:hover .burger_line-in02:after,
    .burger:hover .burger_line-in02:before,
    .burger:hover .burger_line-in03:after,
    .burger:hover .burger_line-in03:before {
      -webkit-transition-duration: 1s;
      transition-duration: 1s;
    }
    .burger:hover .burger_line-in:after,
    .burger:hover .burger_line-in:before {
      -webkit-transform: translateX(200%);
      transform: translateX(200%);
    }
    .burger:after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      width: 50px;
      height: 50px;
      z-index: -1;
      display: block;
      background: #009977;
      -webkit-transform: scale(0);
      transform: scale(0);
    }
    .open .burger:after {
      content: "";
      border-radius: 100%;
      -webkit-transition-duration: .6s;
      transition-duration: .6s;
      -webkit-transition-timing-function: cubic-bezier(.175,.885,.32,1.275);
      transition-timing-function: cubic-bezier(.175,.885,.32,1.275);
      -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transition-delay: .2s;
      transition-delay: .2s;
    }
    .open .burger .burger_line-in-cross01 {
      -webkit-transition-delay: .15s;
      transition-delay: .15s;
    }
    .open .burger .burger_line-in-cross01,
    .open .burger .burger_line-in-cross02 {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    .open .burger .burger_line-in:after,
    .open .burger .burger_line-in:before {
      background-color: #fff;
      transition-duration: 0s;
    }
    .open .burger .burger_line-in-cross02 {
      -webkit-transition-delay: .2s;
      transition-delay: .2s;
    }
    .open.burger .burger_line-in-cross01,
    .open .burger .burger_line-in-cross02 {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    .open .burger .burger_line-in01 {
      -webkit-transition-delay: 0s;
      transition-delay: 0s;
    }
    .open .burger .burger_line-in01,
    .open .burger .burger_line-in02,
    .open .burger .burger_line-in03 {
      -webkit-transform: translateX(33.3%);
      transform: translateX(33.3%);
    }
    .open .burger:hover .burger_line-in-cross01::after,
    .open .burger:hover .burger_line-in-cross01::before,
    .open .burger:hover .burger_line-in-cross02::after,
    .open .burger:hover .burger_line-in-cross02::before {
      transition-duration: 2s;
    }
    .open .burger .burger_line-in01 {
      transition-delay: 0s;
    }
    .open .burger .burger_line-in02 {
      transition-delay: 0.1s;
    }
    .open .burger .burger_line-in03 {
      transition-delay: 50ms;
    }
    .open .burger .burger_line-in-cross01 {
      transition-delay: 0.15s;
    }
    .open .burger .burger_line-in-cross02 {
      transition-delay: 0.2s;
    }
    header {
      height: 60px;
    }
    header .logo  {
      position: fixed;
      width: 100%;
      z-index: 10;
        top: 0;
      }
      header .logo a {
        padding: 10px 20px;
      }
      .kv .inner {
        width: 100%;
        margin: 0 auto;
      }
    .open header .logo {
      z-index: 9999;
      position: fixed;
    }
    .nav {
      top: 100px;
      right: 0;
      width: 100%;
    }
    .nav .nav_box {
      display: block;
    }
    .nav .nav_box li {
      padding: 0;
    }
    .nav .nav_box li a {
      padding: 30px 0px 30px 130px;
      width: 100%;
      position: relative;
      font-size: 14px;
    }
    .nav .nav_box li:last-child a {
      background: none;
      padding: 30px 0px 30px 130px;
      width: 100%;
    }
    .nav .nav_box li a span {
     position: absolute;
     font-size: 50px;
     color: #009977;
     opacity: 0.22;
     top: -6px;
     left: 30px;
     z-index: -1;
   }
   .overlay {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    min-height: 100vh;
    overflow: scroll;
  }
  .overlay-scale {
    -webkit-transition: all .5s 0s cubic-bezier(1,0,0,1);
    transition: all .5s 0s cubic-bezier(1,0,0,1);
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
    opacity: 0;
    z-index: 999;
    visibility: hidden;
  }
  .open .overlay-scale {
    -webkit-transition: all .5s 0s cubic-bezier(1,0,0,1);
    transition: all .5s 0s cubic-bezier(1,0,0,1);
    -webkit-transform: scale(1) translate3d(0,0,0);
    transform: scale(1) translate3d(0,0,0);
    z-index: 999;
    visibility: visible;
    opacity: 1;
  }
  .overlay_inner {
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   text-align: center;
 }
 .overlay_inner li {
  padding: 15px 0;
}
.overlay_inner li a {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  transition: all .3s cubic-bezier(.78,.07,0,1) .1s;
  position: relative;
}
.overlay_inner li a span {
  position: relative;
}
.overlay_inner li a:before {
  content: '';
  display: block;
  position: absolute;
  left: auto;
  right: -1px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: inherit;
}
.overlay_inner li a:hover:before {
  left: -1px;
  right: auto;
  width: calc(100% + 2px);
}
.support .l_box,
.support .r_box {
  width: 100%;
}

.office .l_box,
.office .r_box {
  width: 100%;
}
.office .r_box,
.support .l_box {
  height: 300px;
}
.support .l_box img {
  object-position: center;
}
.office {
  flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
}
.page {
  padding: 10px 0 80px;
}
.page.single {
  padding: 0;
}
.slogan .inner > svg {
  position: absolute;
  z-index: -1;
  top: -70px;
  left: 0;
}
.policy .inner {
  width: 90%;
}
.support .r_box .inner,
.office .l_box .inner {
  padding: 40px 0;
}
.profile .inner img {
  max-width: 380px;
  margin-right: 20px;
}
.profile .inner {
  padding: 0 15px;
}
.policy .inner .sub_info {
  font-size: 30px;
}
.contact .name_bottom {
  font-size: 95px;
}
.page .ttl b {
  line-height: 3rem;
}

}
/*media screen_end*/

/*iPhone 8横*/
@media screen and (max-width: 667px) {
  .contact .inner dl dd select {
    -webkit-appearance: revert;
  }
  .profile .inner {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    padding: 0 10%;
  }
  header .logo a {
    font-size: 20px;
    white-space: nowrap;
    padding: 15px;
  }
  header .logo a span {
    font-size: 10px;
    display: inline-block;
  }
  .kv {
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center;
    margin-bottom: 60px;
  }
  .kv .inner {
    background: url(img/kv_sp.png) no-repeat;
    background-size: contain;
    background-position: bottom;
    height: 0;
    padding-top: 177.86%;
    width: 100%;
    transform: translate(0px);
    -webkit-transform: translate(0px);
  }
  .slogan .inner > p {
    font-size: 25px;
    padding: 0 5%;
    margin: 75px 0;
    line-height: 2rem;
  }
  .ttl_line b {
    padding: 0 20px;
  }
  .ttl b {
    font-size: 50px;
  }
  .ttl span {
    font-size: 16px;
  }
  .ttl_line::after {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .blog .inner ul li {
    width: 90%;
  }
  .blog .inner ul {
    justify-content: center;
    -webkit-justify-content: center;
    margin-bottom: 0px;
  }
  .bt a {
    min-width: 280px;
  }
  .single_bottom_link {
    display: flex;
    align-items: baseline;
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 50px;
  }
  .single_bottom_link .bt a {
    min-width: 120px;
    font-size: 12px;
  }
  .single_bottom_link a {
    white-space: nowrap;
  }
  .single_bottom_link svg {
    width: 12px;
    height: 12px;
    vertical-align: text-top;
    padding: 0;
  }
  .blog {
    padding-bottom: 50px;
  }
  .profile .inner img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .profile .inner .profile_text p {
    margin-bottom: 40px;
    line-height: 2rem;
  }
  .sns {
    padding: 40px 0;
  }
  .sns .inner ul li a {
    width: 28px;
  }
  .sns .inner {
    width: 90%;
    padding: 0;
    border: none;
  }
  .sns .inner ul li {
    margin: 15px;
  }
  .sns .inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    --webkit-flex-wrap: wrap;;
  }
  .policy {
    padding: 50px 0;
  }
  .policy .inner ul li .box::before {
    width: 10px;
    left: -35px;
    height: 90%;
    top: 10%;
  }
  .policy .inner ul li .box {
    margin-left: 40px;
    margin-right: 10px;
  }
  .policy .inner ul li .box .number {
    font-size: 80px;
  }
  .policy .inner ul li .box h3 {
    font-size: 22px;
    line-height: 2rem;
  }
  .policy .inner ul li p {
    font-size: 16px;
    padding: 15px 15px 30px 20px;
    line-height: 1.8rem;
  }
  .policy .inner ul li .box_details p {
    margin-bottom: 10px;
  }
  .policy .inner ul li:nth-child(even) {
    padding-left: 0;
  }
  .policy .inner ul li {
    margin-bottom: 10px;
  }
  .support .l_box,
  .office .r_box {
    height: 200px;
  }
  .support .r_box .inner {
    width: 100%;
  }
  .support .r_box .inner .ttl {
    margin-bottom: 40px;
  }
  .support .r_box,
  .office .l_box {
    padding: 30px 30px 20px;
  }
  .office .l_box .inner .ttl span {
    font-size: 24px;
  }
  .contact {
    padding: 40px 20px 0;
  }
  .contact .name_bottom {
    font-size: 11vw;
    white-space: nowrap;
  }
  footer .logo {
    font-size: 25px;
  }
  footer .logo span {
    font-size: 12px;
  }
  footer ul li a {
    font-size: 13px;
  }
  footer ul li {
    padding: 5px 10px;
  }
  .bt input[type="submit"] {
    min-width: 85%;
    width: 85%;
  }
  .page .ttl b {
    font-size: 24px;
  }
  .page .inner {
    line-height: 30px;
    letter-spacing: 0.15rem;
    font-size: 16px;
  }
  .page .inner .ttl_page {
    line-height: 30px;
    font-size: 24px;
  }
  .page_kv {
    height: 100px;
    /*margin-top: 60px;*/
  }
  .page .inner .not_found {
    font-size: 24px;
    line-height: 2rem;
  }
  /*ページトップヘ*/
  .page-top {
    display: none;
  }
  /*コンタクトフォーム7checkBOX*/
  span.wpcf7-list-item {
    margin: 0;
  }
  .contact .inner .wpcf7-list-item-label {
    margin-right: 0;
    font-size: 13px;
  }
  .icon_note {
    height: 30px;
  }
  .support .r_box .inner .bt a {
    font-size: 16px;
  }
  .policy .inner .sub_info {
    margin: 40px auto;
    font-size: 22px;
    text-align: left;
    max-width: 880px;
    width: 90%;
    letter-spacing: 0;
  }
  .loadingAnim_line:before {
    font-size: 1em;
  }
}
/*media screen_end

/*iPhone 5/SE横*/
@media screen and (max-width: 568px) {
}
/*media screen_end*/

/*iPhone 8 Plus縦*/
@media screen and (max-width: 480px) {
}
/*media screen_end*/

/*iPhone 8縦*/
@media screen and (max-width: 375px) {
}
/*media screen_end*/

/*iPhone 5/SE/4以下縦*/
@media screen and (max-width: 320px) {
}
/*media screen_end*/



