@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese");
#container {
  padding-top: 0;
}

#header {
  position: absolute;
  padding-top: 7px;
  width: 100%;
}

#header:before, #header:after {
  content: none;
}

#header .logo {
  margin: 115px 0 20px;
}

@media only screen and (max-width: 767px) {
  #header {
    position: absolute;
    padding-top: 7px;
    width: 100%;
  }
  #header .logo {
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  #container {
    background: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■main_img
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main_img {
  position: relative;
  overflow: hidden;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  min-height: calc(576px + 70px);
}

#main_img .img {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -970px;
}

@media only screen and (min-width: 1900px) {
  #main_img {
    overflow: inherit;
  }
  #main_img .img {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  #main_img .img img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  #main_img {
    background: url(../img/sp/index/main.jpg) no-repeat right bottom;
    background-size: cover;
    min-height: inherit;
    height: 280px;
    overflow: inherit;
  }
  #main_img .img {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -200px;
  }
  #main_img .img img {
    width: auto;
    height: 284px;
  }
}

#main_img .catch {
  line-height: 1.1;
}

#main_img .catch span {
  display: inline-block;
  background: #00B1FF;
  padding: 1px 3px;
}

#main_img .catch.sub_catch {
  opacity: 0;
  -webkit-animation: SubCatch 1.3s ease 0.3s forwards;
  animation: SubCatch 1.3s ease 0.3s forwards;
}

#main_img .catch.main_catch {
  opacity: 0;
  font-size: 4rem;
  margin-top: 15px;
  -webkit-animation: MainCatch 2s ease 1.2s forwards;
  animation: MainCatch 2s ease 1.2s forwards;
}

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

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

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

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

#main_img .w1200 {
  padding: 227px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#main_img .sub_img {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-animation: SubImg 2s ease 2.2s forwards;
  animation: SubImg 2s ease 2.2s forwards;
}

#main_img .sub_img .txt {
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
  position: absolute;
  right: 0;
  top: -2.5em;
}

#main_img .sub_img .txt span {
  position: relative;
  display: inline-block;
  padding: 0 11px 0 20px;
}

#main_img .sub_img .txt span:before, #main_img .sub_img .txt span:after {
  content: "";
  display: block;
  width: 3px;
  height: 44px;
  background: #fff;
  position: absolute;
  top: 7px;
}

#main_img .sub_img .txt span:before {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  left: 0;
}

#main_img .sub_img .txt span:after {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  right: 0;
}

#main_img .sub_img img {
  margin-right: 5px;
}

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

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

@media only screen and (max-width: 767px) {
  #main_img .catch {
    font-size: 1.2rem;
    position: relative;
    z-index: 5;
  }
  #main_img .catch.main_catch {
    font-size: 2.4rem;
    margin-top: 8px;
  }
  #main_img .w1200 {
    padding-top: 170px;
  }
  #main_img .sub_img {
    right: -30px;
    bottom: -100px;
  }
  #main_img .sub_img .txt {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 100px;
    top: -105px;
    font-size: 1.2rem;
    line-height: 1.25;
    width: 100%;
  }
  #main_img .sub_img .txt span {
    padding: 0 11px;
  }
  #main_img .sub_img .txt span:before, #main_img .sub_img .txt span:after {
    height: 24px;
    top: 3px;
  }
  #main_img .sub_img img {
    margin-right: 0;
    width: 196px;
    height: auto;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■main_sec
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main_sec .main_txt {
  line-height: 2.25;
  margin: -42px 0 90px;
}

@media only screen and (max-width: 767px) {
  #main_sec .main_catch {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 10px 0 20px;
  }
  #main_sec .main_txt {
    font-size: 1.4rem;
    line-height: 1.92;
    margin: 0 0 37px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■sec
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  #sec {
    display: block;
  }
}

/*-------------------------
  news_sec
-------------------------*/
#sec #news_sec {
  width: 672px;
  border: 6px solid #A8E1FF;
  padding-bottom: 10px;
}

#sec #news_sec .hd01 {
  position: relative;
  top: -13px;
}

#sec #news_sec ul {
  margin-top: -10px;
  padding: 0 30px;
  height: 275px;
  overflow: auto;
}

#sec #news_sec li {
  font-size: 1.7rem;
  line-height: 1.66;
  margin-bottom: 18px;
}



#sec #news_sec p {
  word-wrap: break-word;
}

#sec #news_sec .day {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 3px;
}

#sec #news_sec .ttl {
  font-size: 2.3rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  #sec #news_sec {
    width: 100%;
    padding: 25px 0 10px;
    margin-bottom: 33px;
  }
  #sec #news_sec .hd01 {
    top: -11px;
  }
  #sec #news_sec ul {
    padding: 0 28px;
    margin-top: 0;
    height: auto;
  }
  #sec #news_sec li {
    font-size: 1.5rem;
    line-height: 1.78;
  }
  #sec #news_sec .day {
    font-size: 1.2rem;
    margin-bottom: 7px;
  }
#sec #news_sec .ttl {
  font-size: 2.0rem;
}
}

/*-------------------------
  face_book
-------------------------*/
#sec #face_book {
  width: 395px;
}

@media only screen and (max-width: 767px) {
  #sec #face_book {
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  #sec #face_book iframe {
    width: 100% !important;
    height: 280px !important;
  }
}
