@charset "UTF-8";
/* top_page compo
----------------------------------------------------*/
.ttl-section_top {
  font-family: "Roboto", sans-serif;
  font-size: 43px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
}
.contents_txt {
  font-size: 15px;
  text-align: center;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 750px) {
  .ttl-section_top {
    font-size: 32px;
  }
  .contents_txt {
    font-size: 12px;
  }
}
/* hero img
----------------------------------------------------*/
.hero_area {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.hero {
  width: 100vw;
  height: 100vh;
}
.hero {
  display: flex; /* 要素をflexboxに対応させる */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  flex-direction: column; /* 子要素の並びを上から下にする（要素の改行に対応） */
}
.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero_img_1 {
  background-image: url("../img/hero1.jpg");
  background-size: cover;
  background-position: center;
}
.hero_img_2 {
  background-image: url("../img/hero2.jpg");
  background-size: cover;
  background-position: center;
}
.hero_img_3 {
  background-image: url("../img/hero3.jpg");
  background-size: cover;
  background-position: center;
}
.hero_img_4 {
  background-image: url("../img/hero4.jpg");
  background-size: cover;
  background-position: center;
}
.hero_ttl {
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  text-align: center;
  color: #fff;
}
.hero_txt {
  font-size: 15px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .inner_hero_img {
    width: 80%;
  }
  .hero_ttl {
    line-height: 55px;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 120%
  }
  .hero_txt {
    font-size: 13px;
    text-align: left;
    color: #fff;
  }
}
@media only screen and (max-width: 320px) {
  .hero_ttl {
    font-size: 42px;
  }
}
/* scroll button
----------------------------------------------------*/
.scroll a {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -15px;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 55px;
  color: #fff;
}
.scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@media only screen and (max-width: 750px) {
  .scroll a {
    padding-top: 42px;
  }
  .scroll a span {
    width: 26px;
    height: 44px;
    margin-left: -13px;
  }
  .scroll a span::before {
    position: absolute;
    top: 10px;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
  }
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#contents_top {
  margin-top: -66px;
  padding-top: 66px;
}
/* section_service
----------------------------------------------------*/
.section_service {
  padding: 100px 0;
  background-color: #fff;
  max-width: 950px;
  margin: 0 auto;
}
.inner_service {
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 751px) {
  .wrap_cap {
    display: flex;
    justify-content: center;
  }
}
.wrap_cap li {
  text-align: center;
  margin: 15px;
}
.wrap_cap li img {
  width: 100%;
  padding: 0 0 10px 0;
}
.ttl_cap_en {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
}
.ttl_cap_ja {
  font-size: 16px;
}
@media only screen and (max-width: 750px) {
  .section_service {
    padding: 60px 0 30px 0;
    background-color: #fff;
  }
  .wrap_cap li {
    width: 100%;
    text-align: center;
    margin: 0 0 40px 0;
  }
  .ttl_cap_en {
    font-size: 20px;
    line-height: 1.5;
  }
  .ttl_cap_ja {
    font-size: 14px;
    line-height: 1;
  }
  .inner_service {
    width: 90%;
    min-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .section_service {
    width: 100%;
  }
}
/* section_news
--------------------------------------------*/
.section_news {
  background: #f6f6f6;
  padding: 80px 0 120px 0;
  clear: both;
  float: left;
  width: 100%;
}
.section_news_allbox {
  margin: 0px auto;
  clear: both;
  /*width: 1000px;*/
	width: 100%;
	max-width: 950px;
	padding: 0 10px;
}
.section_news .ttl-section_top {
  margin-bottom: 40px;
}
.section_news table {
  width: 100%;
  /*margin: 0 auto;*/
  float: left;
  clear: both;
}
.section_news tr {
  border-bottom: 1px solid #ccc;
}
.section_news th, .section_news td {
  padding: 18px 0;
}
.cloud_media_img_sz {
  width: 300px;
  height: 100px;
  float: left;
  margin-left: 10px;
}
.twt_x {
  width: 320px;
  float: left;
  padding: 0px 10px;
}
/*.instagram-gallery {
  width: 320px;
  margin: auto;
  padding: 30px;
  margin-bottom: 50px;
  float: left;
}
.instagram-gallery__list {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.instagram-gallery__item {
  min-width: 33.333%;
  width: 33.333%;
  padding: 0px;
}*/
.twitter-tweet {
  margin-top: 0;
}
.TwitBox {
  width: 300px;
  height: 560px;
  overflow-y: scroll;
  float: left;
  margin-left: 10px;
}
.wrap_news {
  border-top: 1px solid #ccc;
}
.wrap_news th {
  width: 20%;
  text-align: left;
}
.wrap_news a:hover {
  color: #222;
  transition: 0.8s color ease;
}
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #188dc8;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
.arrow::before, .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.ku::before {
  left: 3px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #188dc8;
  border-right: 1px solid #188dc8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .section_news_allbox {
    margin: 0px auto;
    clear: both;
    width: 100%;
  }
  .section_news table {
    width: 100%;
  }
  .section_news {
    padding: 80px 10px 120px 10px;
  }
  .TwitBox {
    height: 530px;
  }
}
@media only screen and (max-width:376px) {
  .section_news {
    padding: 60px 10px 80px 10px;
  }
  .section_news table {
    width: 100%;
    margin: 0 auto;
  }
  .section_news th {
    padding: 15px 0 0 0;
  }
  .section_news td {
    padding: 0 0 10px 0;
  }
  .wrap_news {
    margin: 0 -10px;
  }
  .wrap_news th, .wrap_news td {
    width: 100%;
    display: block;
    border-top: none;
  }
  .cloud_media_img_sz {
    width: 100%;
    margin-left: 0px;
  }
  .TwitBox {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    float: left;
    margin-left: 0px;
    margin-top: 30px;
  }
}
/* section_contact
----------------------------------------------------*/
.section_contact {
  background-image: url("img/contact.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0px;
  color: #000000;
  clear: both;
}
@media only screen and (min-width: 751px) {
  .wrap_contact {
    margin: 0 auto;
    padding: 0;
    width: 700px;
    text-align: center;
  }
  .button_wrap {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
}
.button {
  position: relative;
  display: inline-block;
  padding: .9em 3.6em;
  border: 2px solid #000000;
  color: #000000;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all .3s;
  margin: 0 15px
}
.button::before, .button::after {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: 2;
  content: '';
  transition: all .3s;
}
.button::before {
  border-top: 2px solid #188dc8;
  border-bottom: 2px solid #188dc8;
  transform: scale(0, 1);
}
.button::after {
  border-right: 2px solid #188dc8;
  border-left: 2px solid #188dc8;
  transform: scale(1, 0);
}
.button:hover {
  color: #188dc8;
}
.button:hover::after, .button:hover::before {
  transform: scale(1);
}
@media only screen and (max-width: 750px) {
  .wrap_contact {
    width: 80%;
    margin: 0 auto 50px auto;
    line-height: 200%
  }
  .section_contact {
    padding: 80px 0 40px 0;
  }
  .button_wrap {
    margin: 0 auto;
    text-align: center;
  }
  .button {
    margin: 0 5px 20px 5px;
  }
}