@charset "UTF-8";
@import 'reset.css';
@import url("https://fonts.googleapis.com/css?family=Dancing+Script");
/*--------------------------------------

共通設定

--------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 13px;
  line-height: 19px;
  font-weight: 400;
  font-family: "Noto Sans Japanese", sans-serif;
}
@media screen and (min-width: 1100px) {
  body {
    font-size: 16px;
    line-height: 35px;
  }
}

.freeze {
  overflow: hidden;
  height: 100%;
}

.serif {
  font-family: "Sawarabi Mincho", serif;
}
.serif p, .serif a {
  font-family: "Sawarabi Mincho", serif;
}

.dc {
  font-family: "Dancing Script", cursive;
}

.round {
  font-family: "Rounded Mplus 1c";
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-weight: 300;
}

a {
  color: #5186b9;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.tac {
  text-align: center;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 20px;
}
@media screen and (min-width: 980px) {
  .wrap {
    padding: 0;
  }
}

.mv_wrap {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  padding: 0;
}
@media screen and (min-width: 1100px) {
  .mv_wrap {
    padding: 0 60px;
  }
}

.pg_lead_box {
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  .pg_lead_box {
    margin-bottom: 40px;
  }
}

.pg_lead {
  text-align: center;
  font-size: 1.7em;
  color: #5186B9;
  margin-bottom: 10px;
}
@media screen and (min-width: 1100px) {
  .pg_lead {
    margin-bottom: 0;
    font-size: 2.55em;
  }
}

.pg_sub {
  text-align: center;
  font-size: 0.9em;
  color: #5186B9;
}

.hov_1 {
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.hov_1:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #5186b9;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.hov_1:hover:after {
  width: 100%;
}

.hov_2 {
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.hov_2:after {
  position: absolute;
  top: 0%;
  left: 50%;
  content: "";
  width: 2px;
  height: 0px;
  background-color: #5186b9;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.hov_2:hover:after {
  height: 100%;
}

.anker {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 220px;
  overflow: hidden;
}
.anker a {
  letter-spacing: 0.1em;
  font-size: 1em;
  display: block;
  padding: 15px;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .anker a {
    ont-size: 1.15em;
    padding: 10px 0px;
  }
}
.anker .right_w {
  position: absolute;
  width: 19px;
  top: 42%;
  right: 15px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition-timing-function: cubic-bezier(0.195, 0.505, 0.195, 0.975);
       -o-transition-timing-function: cubic-bezier(0.195, 0.505, 0.195, 0.975);
          transition-timing-function: cubic-bezier(0.195, 0.505, 0.195, 0.975);
}
.anker .right_w.active {
  right: -20px;
}
.anker .right_hide {
  position: absolute;
  width: 19px;
  top: 42%;
  left: -30px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
.anker .right_hide.active {
  left: 15px;
}

.glad {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); 
}
.glad a {
  color: #FFF;
}
.glad.active {
  opacity: 0.9;
}

.simple {
  border: 1px solid #5186B9;
}
.simple a {
  color: #5186B9;
}
.simple.active {
  opacity: 0.9;
}

@media screen and (max-width: 1100px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .zoom img {
    -webkit-transition: -webkit-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  .zoom:hover img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
  }
}
/*----------------------------------------------------------

ローディング

----------------------------------------------------------*/
#loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: url(../img/common/load_bg.png);
  background-size: 20px;
}

#loading {
  letter-spacing: 0.1em;
  color: #5186B9;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
#loading h1 {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (min-width: 680px) {
  #loading h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
  }
}
#loading p {
  font-size: 0.8em;
}
@media screen and (min-width: 680px) {
  #loading p {
    font-size: 1.2em;
  }
}

#loader-compleate {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.percent {
  font-weight: 200;
  padding-top: 35px;
  width: 40px;
  height: 78px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #fff;
  background: url(../img/common/load_num.png) no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 680px) {
  .percent {
    padding-top: 50px;
    width: 60px;
    height: 98px;
    margin-bottom: 40px;
  }
}

/*----------------------------------------------------------

スクロールスライド

----------------------------------------------------------*/
@media screen and (min-width: 1100px) {
  .slideIn {
    position: relative;
    overflow: hidden;
    z-index: 0; }
    .slideIn:before {
      content: "";
      display: block;
      position: absolute;
      background-color: #f8f8f8;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 2;
      -webkit-transition-delay: .5s;
      -o-transition-delay: .5s;
      transition-delay: .5s;
      -webkit-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      -moz-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      -ms-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      -o-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99); }
    .slideIn:after {
      -webkit-transition-delay: 1s;
      -o-transition-delay: 1s;
      transition-delay: 1s;
      -webkit-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      -moz-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      -ms-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      -o-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
      content: "";
      width: 200%;
      height: 100%;
      display: block;
      position: absolute;
      left: -200%;
      top: 0;
      z-index: 3;
      background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
      background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
      background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }
    .slideIn.view:after {
      left: 100%; }
    .slideIn.view:before {
      left: 100%; }
  .dl2:before, .dl2:after {
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s; }
  .dl3:before, .dl3:after {
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s; }
  .dl4:before, .dl4:after {
    -webkit-transition-delay: .45s;
    -o-transition-delay: .45s;
    transition-delay: .45s; }
  .dl5:before, .dl5:after {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s; }
  .dl6:before, .dl6:after {
    -webkit-transition-delay: .85s;
    -o-transition-delay: .85s;
    transition-delay: .85s; } }

/*----------------------------------------------------------

ヘッダー

----------------------------------------------------------*/
header {
  height: 70px;
}
@media screen and (min-width: 1100px) {
  header {
    height: 100px;
  }
}

/*----------------------------------------------------------

ヘッダーメニュー

----------------------------------------------------------*/
#g_nav {
  overflow: hidden;
  width: 100%;
  padding: 15px 0px 10px 0px;
  background-color: #fff;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1100px) {
  #g_nav {
    padding: 30px 0px 22px 0px;
  }
}
#g_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
@media screen and (min-width: 1100px) {
  #g_nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#g_nav li {
  display: block;
}
@media screen and (min-width: 1100px) {
  #g_nav li a {
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 0 10px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
  }
  #g_nav li a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1441px) {
  #g_nav li a {
    font-size: 16px;
    margin: 0 10px;
  }
}
#g_nav .sp_menu {
  width: 40px;
}
#g_nav #g_logo {
  max-width: 128px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 1100px) {
  #g_nav #g_logo {
    max-width: 120px;
  }
}
@media screen and (min-width: 1441px) {
  #g_nav #g_logo {
    max-width: 170px;
  }
}
@media screen and (min-width: 1100px) {
  #g_nav.fixed {
    padding: 10px 0px 10px 0px;
  }
  #g_nav.fixed #g_logo {
    max-width: 110px;
    margin-bottom: -10px;
  }
  #g_nav.fixed #g_contact a {
    padding: 10px 30px;
  }
}

#g_contact {
  position: absolute;
  right: 60px;
  top: 0;
}
#g_contact a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  letter-spacing: 0.1em;
  font-size: 1.1em;
  display: block;
  padding: 20px 40px;
  color: #fff;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
}
#g_contact a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 1151px) {
  #g_contact a {
    padding: 20px 40px;
  }
}

#sp_menu_list {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition-timing-function: cubic-bezier(0.19, 0.15, 0.58, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 0.15, 0.58, 1);
          transition-timing-function: cubic-bezier(0.19, 0.15, 0.58, 1);
  padding: 70px 0 70px 0;
  width: 260px;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 102;
  background-color: #fff;
}
#sp_menu_list #sp_link_lists {
  border-top: 1px solid #F3F7FB;
  padding: 20px 10px;
  height: 500px;
  -ms-overflow-y: scroll;
  overflow-y: scroll;
}
#sp_menu_list .sp_list {
  border-bottom: 1px solid #F3F7FB;
  background: url(../img/common/sp_right.png) no-repeat right center;
  background-size: 18px;
}
#sp_menu_list .sp_list .link {
  color: #5186B9;
  display: block;
  padding: 15px 20px 15px 20px;
  background: url(../img/common/sp_menu_icon.png) no-repeat left center;
  background-size: 8px;
}
#sp_menu_list .aco_open {
  background: url(../img/common/sp_open.png) no-repeat right center;
  background-size: 18px;
}
#sp_menu_list.active {
  right: 0;
}

.sub_link {
  display: none;
}
.sub_link a {
  display: block;
  padding: 15px 20px;
  background: url(../img/common/sp_menu_icon.png) no-repeat 6px center;
  background-size: 6px;
}

#overlay {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: #464646;
  opacity: 0.3;
  -webkit-transition-timing-function: cubic-bezier(0.19, 0.15, 0.58, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 0.15, 0.58, 1);
          transition-timing-function: cubic-bezier(0.19, 0.15, 0.58, 1);
  -webkit-transition: 0.2s all;
  -o-transition: 0.2s all;
  transition: 0.2s all;
}
#overlay.active {
  right: 0;
}

#close_bt {
  width: 40px;
  position: absolute;
  right: 15px;
  top: 15px;
}

.side_nav {
  position: fixed;
  padding: 0 20px;
}

#g_left {
  left: 0;
  top: 40%;
}
#g_left a {
  padding-top: 15px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
#g_left a:hover {
  opacity: 0.6;
}
#g_left img {
  width: 12px;
}

#g_right {
  right: 0;
  top: 45%;
}
#g_right a {
  padding-top: 15px;
}
#g_right img {
  width: 12px;
}

.lang {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  right: 65px;
  bottom: 0;
  margin: auto 0;
}
@media screen and (min-width: 1100px) {
  .lang {
    top: inherit;
    bottom: -5px;
    right: 190px;
    margin: 0;
  }
}
@media screen and (min-width: 1151px) {
  .lang {
    right: 230px;
  }
}

.lang ul {
  padding: 0 !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.lang a {
  font-size: 13px;
  padding: 0 !important;
  margin: 0 15px 0 0 !important;
}
@media screen and (min-width: 1151px) {
  .lang a {
    font-size: 15px;
  }
}

.lang .ja a {
  position: relative;
}
.lang .ja a::before {
  content: "/";
  position: absolute;
  display: block;
  top: 0;
  right: -11px;
}
@media screen and (min-width: 1100px) {
  .lang .ja a::before {
    top: -8px;
  }
}
@media screen and (min-width: 1151px) {
  .lang .ja a::before {
    top: -6px;
  }
}

#g_nav.fixed .lang {
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 1100px) {
  #g_nav.fixed .lang {
    right: 210px;
  }
}
@media screen and (min-width: 1151px) {
  #g_nav.fixed .lang {
    right: 215px;
  }
}

@media screen and (min-width: 1100px) {
  header.en #g_nav > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1299px) {
  header.en #g_nav > ul {
    margin: 0 130px 0 0px;
  }
}
@media screen and (min-width: 1300px) {
  header.en #g_nav > ul {
    margin: 0 120px 0 0px;
  }
}
@media screen and (min-width: 1551px) {
  header.en #g_nav > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header.en #g_nav > ul #g_logo {
  max-width: 100px;
}
@media screen and (min-width: 1441px) {
  header.en #g_nav > ul #g_logo {
    max-width: 170px;
  }
}
header.en #g_nav > ul li a {
  font-size: 14px;
  padding: 0;
  margin: 0 5px;
}
@media screen and (min-width: 1151px) {
  header.en #g_nav > ul li a {
    margin: 0 10px;
  }
}
@media screen and (min-width: 1441px) {
  header.en #g_nav > ul li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1651px) {
  header.en #g_nav > ul li a {
    padding: 0 10px;
  }
}
header.en #g_contact a {
  font-size: 14px;
  padding: 20px 15px;
}
@media screen and (min-width: 1151px) {
  header.en #g_contact a {
    padding: 20px;
  }
}
@media screen and (min-width: 1441px) {
  header.en #g_contact a {
    font-size: 1.1em;
  }
}
header.en #g_nav.fixed #g_contact a {
  padding: 10px;
}
@media screen and (min-width: 1441px) {
  header.en #g_nav.fixed #g_contact a {
    padding: 10px 30px;
  }
}
@media screen and (min-width: 1100px) {
  header.en .lang {
    top: inherit;
    bottom: -5px;
    right: 170px;
    margin: 0;
  }
}
@media screen and (min-width: 1151px) {
  header.en .lang {
    right: 175px;
  }
}
@media screen and (min-width: 1441px) {
  header.en .lang {
    right: 195px;
  }
}
@media screen and (min-width: 1100px) {
  header.en .lang .ja a::before {
    top: -8px;
  }
}
@media screen and (min-width: 1441px) {
  header.en .lang .ja a::before {
    top: -6px;
  }
}
@media screen and (min-width: 1100px) {
  header.en #g_nav.fixed .lang {
    bottom: 0;
    right: 150px;
  }
}
@media screen and (min-width: 1151px) {
  header.en #g_nav.fixed .lang {
    bottom: 0;
    right: 155px;
  }
}
@media screen and (min-width: 1441px) {
  header.en #g_nav.fixed .lang {
    right: 210px;
  }
}

/*----------------------------------------------------------

トップ

----------------------------------------------------------*/
#main_mv_area {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  background-color: #eee;
}
@media screen and (min-width: 1100px) {
  #main_mv_area {
    overflow: hidden;
  }
}

#video-background {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

#top_mv_slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-size: cover;
}

#top_mv {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background: url(../img/top/mv_single.jpg) no-repeat center center;
  background-size: cover;
}
#top_mv:after {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  content: url(../img/top/22716_4_logo.png);
}

#scroll_anime {
  width: 11px;
  height: 30px;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
  background: url(../img/top/anime_bg.png) no-repeat center center;
  background-size: 1px;
}
#scroll_anime img {
  width: 11px;
  display: block;
}
@media screen and (min-width: 1100px) {
  #scroll_anime {
    margin-bottom: 80px;
  }
}

#mv_catch {
  position: absolute;
  left: 5%;
  bottom: 5%;
  z-index: 2;
  color: #fff;
  font-size: 1.3em;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  #mv_catch {
    font-size: 1.8em;
    left: 5%;
    bottom: 5%;
    text-align: left;
  }
}

.block_effect {
  overflow: hidden;
  position: relative;
  left: 0;
  padding: 15px 25px;
  margin-bottom: 10px;
  -webkit-transition: 0.9s all;
  -o-transition: 0.9s all;
  transition: 0.9s all;
}
.block_effect span {
  opacity: 0;
}
.block_effect:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
  left: 0;
  top: 0;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.85, 0.04, 0.31, 0.98);
       -o-transition-timing-function: cubic-bezier(0.85, 0.04, 0.31, 0.98);
          transition-timing-function: cubic-bezier(0.85, 0.04, 0.31, 0.98);
}
.block_effect:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.block_effect:nth-of-type(2):before {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.block_effect:nth-of-type(2) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.block_effect:nth-of-type(2):before {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.block_effect.loaded {
  left: 10px;
}
.block_effect.loaded:before {
  width: 100%;
}

.block_effect.clip {
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }
.block_effect.clip span {
  opacity: 1;
}
.block_effect.clip:before {
  left: 100%;
}

.point_anime {
  -webkit-animation-name: moveScrollPointer;
          animation-name: moveScrollPointer;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
  }
  60% {
    -webkit-transform: translate(0px, 28px);
    -moz-transform: translate(0px, 28px);
  }
  100% {
    -webkit-transform: scale(0, 0);
    -webkit-transform: translate(0px, 30px);
    -moz-transform: translate(0px, 30px);
  }
}

@keyframes moveScrollPointer {
  0% {
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
  }
  60% {
    -webkit-transform: translate(0px, 28px);
    -moz-transform: translate(0px, 28px);
  }
  100% {
    -webkit-transform: scale(0, 0);
    -webkit-transform: translate(0px, 30px);
    -moz-transform: translate(0px, 30px);
  }
}
#info {
  width: 100%;
  max-width: 810px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 680px) {
  #info .pg_lead_box {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 680px) {
  #info {
    margin-bottom: 80px;
  }
}

#info_list {
  margin-bottom: 35px;
}
#info_list li {
  border-bottom: 1px solid #dbdfe3;
}
#info_list a {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  color: #464646;
  padding: 10px 20px;
}
@media screen and (min-width: 680px) {
  #info_list a {
    padding: 20px;
  }
}
@media screen and (max-width: 680px) {
  #info_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#info_list .date {
  display: inline-block;
  font-size: 0.9em;
  margin-right: 20px;
  margin-bottom: 5px;
}
@media screen and (min-width: 680px) {
  #info_list .date {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1100px) {
  #info_list .date {
    background: url(../img/common/li_icon.png) no-repeat right center;
    background-size: 11px;
    margin-bottom: 0;
    width: auto;
  }
}
#info_list .name {
  padding-right: 30px;
  background-size: 11px;
  width: 100%;
  line-height: 1.4;
}
@media screen and (min-width: 1100px) {
  #info_list .name {
    padding-right: 40px;
    width: auto;
  }
}
#info_list .right {
  display: block;
  position: absolute;
  right: 20px;
  top: 35%;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transition-timing-function: cubic-bezier(0.195, 0.505, 0.195, 0.975);
       -o-transition-timing-function: cubic-bezier(0.195, 0.505, 0.195, 0.975);
          transition-timing-function: cubic-bezier(0.195, 0.505, 0.195, 0.975);
  background: url(../img/common/right_g.png) no-repeat;
  background-size: 20px;
}
@media screen and (min-width: 1100px) {
  #info_list .right {
    width: 30px;
    right: 20px;
    top: 30%;
    height: 30px;
    background: url(../img/common/right_g.png) no-repeat;
    background-size: 30px;
  }
  #info_list .right.active {
    background: url(../img/common/right_g_active.png) no-repeat;
    background-size: 30px;
  }
}

#strong {
  margin-bottom: 30px;
}
@media screen and (min-width: 680px) {
  #strong {
    margin-bottom: 120px;
  }
}
#strong .wrap {
  max-width: 1246px;
  overflow: hidden;
  padding: 0 20px;
}
@media screen and (min-width: 1100px) {
  #strong .wrap {
    padding: 0;
  }
}
#strong .strong_slide {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 700px;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  #strong .strong_slide {
    margin-right: auto;
    margin-left: 0;
    height: 0;
  }
}
#strong .tex_box {
  margin: 0 auto;
  max-width: 650px;
  background-color: #f3f7fb;
  opacity: 0.9;
  padding: 20px 20px;
}
@media screen and (min-width: 1100px) {
  #strong .tex_box {
    margin-left: auto;
    margin-right: 0;
    padding: 60px 100px;
    margin-top: 70px;
  }
}
#strong h2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 680px) {
  #strong h2 {
    margin-bottom: 25px;
  }
}
#strong .tex {
  margin-bottom: 20px;
}
@media screen and (min-width: 680px) {
  #strong .tex {
    margin-bottom: 30px;
  }
}

#banner {
  margin-bottom: 30px;
}
@media screen and (min-width: 1100px) {
  #banner {
    margin-bottom: 120px;
  }
}
#banner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  #banner ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#banner li {
  width: 48%;
  padding: 5px;
  overflow: hidden;
}
@media screen and (min-width: 680px) {
  #banner li {
    padding: 0;
    max-width: 235px;
    max-height: 137px;
    margin: 0 10px;
  }
}
#banner li img {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
#banner li img:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/*----------------------------------------------------------

footer

----------------------------------------------------------*/
footer {
  background: url(../img/common/f_bg.png) no-repeat center top;
  background-size: cover;
  padding-top: 26vw;
}
@media screen and (min-width: 480px) {
  footer {
    padding-top: 20vw;
  }
}
@media screen and (min-width: 680px) {
  footer {
    padding-top: 14vw;
  }
}
footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media screen and (min-width: 680px) {
  footer .wrap {
    margin-bottom: 70px;
  }
}
footer #f_left {
  width: 100%;
  color: #5186B9;
  font-size: 0.9em;
  line-height: 1.8;
}
@media screen and (min-width: 1100px) {
  footer #f_left {
    max-width: 230px;
  }
}
footer #f_left .f_logo {
  max-width: 170px;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 1100px) {
  footer #f_left .f_logo {
    margin: 0;
    margin-bottom: 20px;
  }
}
footer #f_left .f_info {
  text-align: center;
}
@media screen and (min-width: 1100px) {
  footer #f_left .f_info {
    text-align: left;
    margin-bottom: 20px;
  }
}
footer #f_left .sns_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer #f_left .sns_logo a {
  margin: 0 15px 0 0;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
footer #f_left .sns_logo a:hover {
  opacity: 0.6;
}
footer #f_left #sp_pg_top {
  width: 35px;
  margin: 0 auto;
  margin-bottom: 10px;
}
footer #f_right {
  letter-spacing: 0.05em;
  margin-left: auto;
  width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .lists_box {
  font-size: 0.9em;
}
footer .lists_box a {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
footer .lists_box a:hover {
  opacity: 0.6;
}
footer .pg_name a {
  display: block;
  padding-left: 20px;
  background: url(../img/common/li_icon.png) no-repeat left 50%;
  background-size: 6px;
}
footer .opt {
  padding-left: 20px;
  font-size: 0.9em;
}
footer .opt_icon {
  background: url(../img/common/li_icon_2.png) no-repeat left 50%;
  background-size: 7px;
  line-height: 1.8;
}

#copy {
  display: block;
  padding: 15px 0;
  text-align: center;
  font-size: 0.6em;
  color: #5186B9;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 680px) {
  #copy {
    font-size: 0.8em;
    border-top: 1px solid #D4DDE5;
  }
}

#pg_top {
  width: 0;
  opacity: 0;
  position: fixed;
  right: 60px;
  bottom: 5%;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
#pg_top:hover {
  opacity: 0.6;
}
#pg_top.fixed {
  width: 54px;
  display: block;
  opacity: 1;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
#pg_top.fixed:hover {
  opacity: 0.6;
}

/*----------------------------------------------------------

common　共通設定

----------------------------------------------------------*/
#content {
  margin-bottom: 40px;
}
@media screen and (min-width: 1100px) {
  #content {
    margin-bottom: 100px;
  }
}
#content p {
  line-height: 19px;
}
@media screen and (min-width: 1100px) {
  #content p {
    line-height: 28px;
  }
}
#content.mb0 {
  margin-bottom: 0 !important;
}

.common_mv {
  overflow: hidden;
  width: 100%;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 680px) {
  .common_mv {
    min-height: 550px;
    height: 30vw;
  }
}

#mv_strong {
  background: url(../img/strong/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_ow {
  background: url(../img/orgalectwater/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_yc {
  background: url(../img/yeastcosme/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_com {
  background: url(../img/company/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_flow {
  background: url(../img/flow/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_faq {
  background: url(../img/faq/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_qua {
  background: url(../img/quality/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_case {
  background: url(../img/case/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_info {
  background: url(../img/infomation/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_contact {
  background: url(../img/contact/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_privacy {
  background: url(../img/privacy/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_sitemap {
  background: url(../img/sitemap/mv.jpg) no-repeat center center;
  background-size: cover;
}
#mv_single {
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }

#common_lead {
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  width: 100%;
}
#common_lead .common_inner {
  font-size: 1.6em;
  line-height: 1.4;
  margin-bottom: 10px;
  padding: 0 15px;
}
@media screen and (min-width: 680px) {
  #common_lead {
    margin: 0 auto;
    max-width: 1000px;
  }
  #common_lead .common_inner {
    font-size: 2.8em;
    line-height: 1.4;
    margin-bottom: 20px;
    padding: 0;
    padding-bottom: 20px;
    position: relative;
  }
  #common_lead .common_inner:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #fff;
    opacity: 0.5;
  }
  #common_lead .sub {
    font-size: 1.4em;
  }
  #common_lead .sub .cat {
    letter-spacing: 0;
    font-family: "Noto Sans Japanese", sans-serif;
    margin-left: 20px;
    font-size: 0.7em;
    color: #5186B9;
    display: inline-block;
    background-color: #fff;
    padding: 2px 25px;
    border-radius: 15px;
  }
}

.common_title {
  font-size: 1.3em;
  color: #5186B9;
  text-align: center;
  padding: 20px 10px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 680px) {
  .common_title {
    font-size: 1.7em;
    padding: 20px 10px;
  }
}
.common_title.bb {
  border-top: 2px solid #5186B9;
  border-bottom: 2px solid #5186B9;
}
.common_title .mini {
  font-size: 12px;
}
@media screen and (min-width: 680px) {
  .common_title .mini {
    font-size: 18px;
  }
}

.tex_pading {
  margin-left: 15px;
}

.list_temp {
  border-top: 1px solid #e1e1e1;
  font-size: 0.9em;
}
@media screen and (min-width: 680px) {
  .list_temp {
    font-size: 1em;
  }
}
.list_temp li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0;
}
@media screen and (min-width: 680px) {
  .list_temp li {
    padding: 22px;
  }
}
.list_temp .ttl {
  width: 20%;
  background: #FFF;
  padding-right: 15px;
}
@media screen and (min-width: 680px) {
  .list_temp .ttl {
    padding-right: 40px;
  }
}
@media screen and (max-width: 680px) {
  .list_temp .ttl {
    padding-right: 10px;
  }
}
.list_temp .tex {
  width: 80%;
  padding-left: 15px;
  line-height: 28px;
  background: url(../img/orgalectwater/dot.png) repeat-y left center;
  background-size: 2px;
}
@media screen and (min-width: 680px) {
  .list_temp .tex {
    padding-left: 40px;
  }
}
@media screen and (max-width: 680px) {
  .list_temp .tex {
    padding-left: 10px;
  }
}
.list_temp dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list_temp dl dt {
  width: 20%;
  max-width: 100px;
}
@media screen and (max-width: 680px) {
  .list_temp dl dt {
    min-width: 70px;
  }
}
.list_temp dl dd {
  font-family: "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif !important;
  font-weight: 500;
  width: 80%;
}
.list_temp dl dd span {
  vertical-align: -2px;
}
@media screen and (max-width: 680px) {
  .list_temp dl dd {
    width: 65%;
  }
}

.drop {
  font-size: 1.2em;
  padding-left: 20px;
  background: url(../img/orgalectwater/lead_icon.png) no-repeat left center;
  background-size: 10px;
}
.drop.selif {
  font-weight: 500 !important;
}
@media screen and (min-width: 680px) {
  .drop {
    font-size: 1.2em;
  }
}

#bread_crub {
  padding: 15px 0;
  text-align: center;
  margin-bottom: 20px;
}
#bread_crub .space {
  margin: 0 5px;
}
#bread_crub .current {
  color: #A5AFB9;
}
@media screen and (min-width: 680px) {
  #bread_crub {
    padding: 30px 0;
    margin-bottom: 50px;
  }
}

/*----------------------------------------------------------

強さ -トップ-

----------------------------------------------------------*/
#sec_1_head {
  margin-bottom: 40px;
}
@media screen and (min-width: 1100px) {
  #sec_1_head {
    margin-bottom: 80px;
  }
}
#sec_1_head h2.lead {
  font-size: 1.25em;
  text-align: center;
  color: #5186B9;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (min-width: 1100px) {
  #sec_1_head h2.lead {
    font-size: 2em;
  }
}
#sec_1_head .mini {
  font-size: 0.8em;
  color: #5186B9;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  #sec_1_head .mini {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
}
#sec_1_head .cap {
  line-height: 1.3;
}
@media screen and (min-width: 1100px) {
  #sec_1_head .cap {
    line-height: 32px;
    font-size: 16px;
  }
}

.st_box {
  overflow: hidden;
  max-width: 1246px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 1100px) {
  .st_box {
    margin-bottom: 100px;
    padding: 0;
  }
}
.st_box .bg {
  margin-top: 20px;
  background-color: rgba(243, 247, 251, 0.9);
  padding: 15px;
}
@media screen and (min-width: 1100px) {
  .st_box .bg {
    margin-top: 170px;
    padding: 60px;
    max-width: 600px;
    min-height: 460px;
  }
}
.st_box h3.lead {
  color: #5186B9;
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 12px;
}
@media screen and (min-width: 1100px) {
  .st_box h3.lead {
    font-size: 1.9em;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.st_box .cap {
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.st_box .cap .mini {
  font-size: 0.85em;
}
@media screen and (min-width: 1100px) {
  .st_box .cap {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .st_box_1 {
    background: url(../img/strong1/img_1.jpg) no-repeat right top;
    background-size: 970px;
  }
  .st_box_2 {
    background: url(../img/strong1/img_2.jpg) no-repeat left top;
    background-size: 970px;
  }
  .st_box_3 {
    background: url(../img/strong1/img_3.jpg) no-repeat right top;
    background-size: 970px;
  }
}

.right .bg {
  margin-right: 0;
  margin-left: auto;
}

/*----------------------------------------------------------

強さ -下層-

----------------------------------------------------------*/
.strong_nav {
  margin-bottom: 30px; }
  @media screen and (min-width: 1100px) {
    .strong_nav {
      margin-bottom: 90px; } }
  .strong_nav ul li {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #5186B9;
    margin-bottom: 10px; }
  .strong_nav ul a {
    position: relative;
    font-family: 'Noto Serif Japanese' , sans-serif;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    width: 100%;
    height: 100%;
    width: 100%;
    font-size: 1.0em;
    line-height: 1.25;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all; }
  @media screen and (min-width: 1100px) {
    .strong_nav ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .strong_nav ul li {
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 16.66%;
        max-width: 160px;
        min-height: 160px; }
        .strong_nav ul li:hover {
          background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
          background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
          background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }
          .strong_nav ul li:hover a {
            color: #fff; }
      .strong_nav ul a {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 1.1em; }
      .strong_nav ul p {
        text-align: center;
        margin: 0 auto; } }

.strong_block {
  margin-bottom: 40px; }
  @media screen and (min-width: 1100px) {
    .strong_block {
      margin: 0 60px;
      margin-bottom: 120px; } }
  .strong_block h2.lead {
    font-size: 1.6em;
    text-align: center;
    color: #5186B9;
    margin-bottom: 10px;
    line-height: 1.4; }
    @media screen and (min-width: 1100px) {
      .strong_block h2.lead {
        font-size: 2.3em;
        margin-bottom: 60px; } }
  .strong_block .mini {
    font-size: 0.8em;
    color: #5186B9;
    margin-bottom: 20px;
    text-align: center; }
    @media screen and (min-width: 1100px) {
      .strong_block .mini {
        font-size: 1.2em;
        margin-bottom: 30px; } }
  .strong_block .cap {
    line-height: 1.6; }
  .strong_block .head {
    background-color: #eee;
    min-height: 220px;
    height: 40vw; }
    @media screen and (min-width: 980px) {
      .strong_block .head {
        width: 100%;
        min-height: 500px;
        height: 30vw; } }
    .strong_block .head.mv_1 {
      background: url(../img/strong/img_1.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
    .strong_block .head.mv_2 {
      background: url(../img/strong/img_2.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
    .strong_block .head.mv_3 {
      background: url(../img/strong/img_3.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
    .strong_block .head.mv_4 {
      background: url(../img/strong/img_4.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
    .strong_block .head.mv_5 {
      background: url(../img/strong/img_5.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
    .strong_block .head.mv_6 {
      background: url(../img/strong/img_6.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
    .strong_block .head.mv_7 {
      background: url(../img/strong/img_7.jpg) no-repeat center;
      -webkit-background-size: cover;
      -o-background-size: cover;
      background-size: cover; }
  .strong_block .bottom {
    position: relative;
    z-index: 2;
    background: rgba(243, 247, 251, 0.9);
    padding: 20px; }
    .strong_block .bottom h3 {
      color: #5186B9;
      font-size: 1.2em;
      margin-bottom: 10px; }
      @media screen and (min-width: 980px) {
        .strong_block .bottom h3 {
          margin-bottom: 20px;
          font-size: 1.8em; } }
    @media screen and (min-width: 980px) {
      .strong_block .bottom {
        margin-top: -260px;
        margin-left: 50px;
        width: 100%;
        max-width: 570px;
        padding: 50px; }
        .strong_block .bottom.right {
          margin-left: auto;
          margin-right: 50px; } }

.tec_box {
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px; }
  .tec_box h3 {
    color: #5186B9;
    font-size: 1.4em;
    line-height: 1;
    margin-bottom: 10px; }
    @media screen and (min-width: 980px) {
      .tec_box h3 {
        font-size: 1.7em;
        margin-bottom: 40px; } }
  .tec_box .bg_text {
    font-size: 30px;
    color: #F3F7FB;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 15px; }
    @media screen and (min-width: 980px) {
      .tec_box .bg_text {
        font-size: 100px;
        margin-bottom: 0; } }
  @media screen and (min-width: 980px) {
    .tec_box {
      margin-top: 60px;
      margin-bottom: 100px; }
      .tec_box .left {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1; }
      .tec_box .right {
        margin-right: 0;
        margin-left: auto;
        max-width: 600px; } }

#evaluationtest .fx {
  margin-top: 20px; }
  #evaluationtest .fx .anker {
    margin-bottom: 20px; }

@media screen and (min-width: 680px) {
  #evaluationtest {
    margin-bottom: 60px; }
    #evaluationtest .fx {
      margin-top: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      #evaluationtest .fx .anker {
        margin-bottom: 0; } }

#facility {
  margin-bottom: 40px; }
  #facility h3 {
    font-size: 1.2em;
    margin-bottom: 20px; }
  @media screen and (min-width: 680px) {
    #facility {
      margin-bottom: 100px; }
      #facility h3 {
        font-size: 1.5em;
        margin-bottom: 40px; } }
  #facility .wrap {
    max-width: 1050px; }
    @media screen and (min-width: 680px) {
      #facility .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; } }
  #facility .box {
    margin-bottom: 20px; }
    #facility .box p {
      font-size: 0.9em; }
    @media screen and (min-width: 680px) {
      #facility .box {
        margin-bottom: 40px;
        padding: 0 25px;
        width: 33%;
        max-width: 350px; }
        #facility .box p {
          font-size: 14px;
          line-height: 24px; } }
  #facility .photo {
    background-color: #eee;
    margin-bottom: 15px; }
    #facility .photo img {
      display: block; }
  #facility h4 {
    color: #5186B9;
    font-size: 1.2em;
    margin-bottom: 10px; }
    @media screen and (min-width: 680px) {
      #facility h4 {
        margin-bottom: 0; } }

.right .bg {
  margin-right: 0;
  margin-left: auto; }

.vivo_lead {
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #5186B9; }
  @media screen and (min-width: 680px) {
    .vivo_lead {
      font-size: 34px;
      margin-bottom: 60px; } }

.vivo_box {
  width: 100%;
  margin-bottom: 100px; }
  .vivo_box h3 {
    font-size: 1.2em;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #51b3d0;
    color: #51b3d0; }
    @media screen and (min-width: 680px) {
      .vivo_box h3 {
        font-size: 24px;
        padding-bottom: 20px;
        margin-bottom: 30px; } }
  .vivo_box.vitro h3 {
    border-bottom: 1px solid #5186b9;
    color: #5186b9; }
  .vivo_box.vitro th {
    background-color: #5186b9;
    border: 1px solid #4475a4; }
  .vivo_box table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #4399b3; }
  .vivo_box tr {
    width: 100%; }
    .vivo_box tr:nth-child(odd) {
      background-color: #f6fbfd; }
  .vivo_box th, .vivo_box td {
    line-height: 1.45;
    text-align: center;
    padding: 20px 10px;
    vertical-align: middle; }
    .vivo_box th.tal, .vivo_box td.tal {
      text-align: left; }
      @media screen and (min-width: 321px) {
        .vivo_box th.tal, .vivo_box td.tal {
          min-width: 100px; } }
      @media screen and (min-width: 1100px) {
        .vivo_box th.tal, .vivo_box td.tal {
          min-width: 230px;
          max-width: 452px; } }
    @media screen and (min-width: 1100px) {
      .vivo_box th.num, .vivo_box td.num {
        min-width: 100px; } }
  .vivo_box th {
    letter-spacing: 0.1em;
    font-size: 1em;
    background-color: #51b3d0;
    color: #fff;
    border: 1px solid #4399b3; }
    @media screen and (min-width: 680px) {
      .vivo_box th {
        font-size: 0.95em; } }
  .vivo_box td {
    font-size: 1em;
    border: 1px solid #a5afb9;
    word-break: break-all; }
    .vivo_box td img {
      max-width: 24px; }
    .vivo_box td .mini {
      font-size: 0.9em;
      line-height: 1.75 !important;
      font-size: 0.85em; }
  .vivo_box .tex {
    margin-top: 10px; }
  @media screen and (min-width: 1100px) {
    .vivo_box a {
      -webkit-transition: 0.3s all;
      -moz-transition: 0.3s all;
      -ms-transition: 0.3s all;
      -o-transition: 0.3s all;
      transition: 0.3s all; }
      .vivo_box a:hover {
        opacity: 0.6; }
    .vivo_box .tex {
      font-size: 0.9em;
      margin-top: 20px; } }
      
/*----------------------------------------------------------

国産有機レモングラスのコスメ蒸留水

----------------------------------------------------------*/
.mb30 {
  margin-bottom: 10px;
}
@media screen and (min-width: 680px) {
  .mb30 {
    margin-bottom: 30px;
  }
}

.ow_content section {
  margin-bottom: 60px;
}

.info_block {
  padding: 20px;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  background: url(../img/orgalectwater/pt.png);
  background-size: 20px;
}
.info_block p {
  line-height: 25px;
  margin-bottom: 25px;
}
.info_block .info_list li {
  line-height: 24px;
  padding-left: 20px;
  font-size: 0.9em;
  background: url(../img/orgalectwater/lead_icon.png) no-repeat 20px 15px;
  background-size: 10px;
  border-bottom: 1px solid #dce7f1;
  padding: 10px 40px 10px 40px;
}
.info_block .right {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  .info_block {
    padding: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
  .info_block .right {
    width: 230px;
    margin: 0;
  }
  .info_block .right.wide {
    width: 240px;
    margin-right: 80px;
  }
  .info_block .left {
    margin-right: 60px;
    max-width: 600px;
  }
  .info_block .wide_lead {
    font-size: 1.8em;
    width: 100%;
    margin-bottom: 30px;
    font-weight: 200;
  }
}

.c_inner {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #5186B9;
  padding-left: 20px;
  background: url(../img/orgalectwater/lead_icon.png) no-repeat left center;
  background-size: 10px;
}
@media screen and (min-width: 1100px) {
  .c_inner {
    font-size: 1.35em;
  }
}

/*----------------------------------------------------------

酵母培養液90%以上配合

----------------------------------------------------------*/
.yc_content .lead_circle {
  margin-bottom: -30px;
}
.yc_content .mb {
  margin-bottom: 60px;
}

.lead_circle span {
  color: #fff;
  display: inline-block;
  font-size: 1.35em;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  border-radius: 30px;
  padding: 10px 50px;
}

#melit {
  margin-top: 35px;
}
#melit h3 {
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 680px) {
  #melit h3 {
    margin: 0;
  }
}
@media screen and (min-width: 680px) {
  #melit ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#melit li {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 60%;
  max-width: 280px;
}
@media screen and (min-width: 680px) {
  #melit li {
    margin: 10px;
    width: 20%;
  }
}

/*----------------------------------------------------------

会社情報

----------------------------------------------------------*/
.com_content section {
  margin-bottom: 30px;
}
@media screen and (min-width: 680px) {
  .com_content section {
    margin-bottom: 70px;
  }
}
.com_content #sec_3 h3 {
  font-size: 1em;
  color: #5186B9;
  margin-bottom: 20px;
  margin-top: 0px;
}
.com_content #sec_3 h3.drop {
  margin-top: 40px;
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 h3 {
    margin-top: 0;
    font-size: 1.25em;
  }
  .com_content #sec_3 h3.drop {
    margin-top: 0px;
  }
}
.com_content #sec_3 .left {
  margin-right: 10px;
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 .left {
    margin-right: 30px;
  }
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 .fx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.com_content #sec_3 .full, .com_content #sec_3 .half {
  padding: 20px 10px;
  border-top: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 30px;
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 .full, .com_content #sec_3 .half {
    padding: 20px 30px;
    margin-bottom: 50px;
  }
}
.com_content #sec_3 .full.bgb, .com_content #sec_3 .half.bgb {
  border: none;
  background-color: #f3f7fb;
  margin-bottom: 20px;
}
.com_content #sec_3 .full.bgb h3, .com_content #sec_3 .half.bgb h3 {
  margin-bottom: 12px;
}
@media screen and (max-width: 680px) {
  .com_content #sec_3 .full.bgb h3, .com_content #sec_3 .half.bgb h3 {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 .full.bgb p, .com_content #sec_3 .half.bgb p {
    line-height: 25px;
  }
}
.com_content #sec_3 .full.bgb .ttl, .com_content #sec_3 .half.bgb .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.com_content #sec_3 .full img, .com_content #sec_3 .half img {
  display: inline-block;
  width: 22px;
  margin-right: 15px;
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 .full img, .com_content #sec_3 .half img {
    width: 30px;
  }
}
.com_content #sec_3 .half {
  margin-bottom: 10px;
}
@media screen and (min-width: 680px) {
  .com_content #sec_3 .half {
    margin-bottom: 50px;
    width: 50%;
    max-width: 480px;
  }
}

#gmap {
  pointer-events: none;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  background-color: #f8f8f8;
}
@media screen and (min-width: 680px) {
  #gmap {
    height: 450px;
  }
}

#gmap_info {
  margin-bottom: 40px;
}
#gmap_info h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
}
#gmap_info a {
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 1100px) {
  #gmap_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #gmap_info .right {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #gmap_info a {
    font-size: 0.9em;
    padding: 0 15px;
    position: relative;
  }
  #gmap_info a:after {
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    background-color: #5186B9;
    left: 0;
    top: 10px;
  }
  #gmap_info a:first-child:after {
    background-color: #fff;
  }
  #gmap_info a:hover {
    text-decoration: underline;
  }
}

#gmap_list {
  margin-bottom: 40px;
}
#gmap_list a {
  display: block;
  width: 100%;
  border-bottom: 1px solid #E1E1E1;
  padding: 15px 30px 15px 10px;
  background: url(../img/common/right_g.png) no-repeat right center;
  background-size: 20px;
}
@media screen and (min-width: 680px) {
  #gmap_list {
    padding: 10px 20px;
  }
  #gmap_list a {
    background: url(../img/common/right_g.png) no-repeat right center;
    background-size: 30px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
  }
  #gmap_list a:hover {
    background: url(../img/common/right_g.png) no-repeat 99% center;
    background-size: 30px;
    border-bottom: 1px solid #5186B9;
  }
  #gmap_list span {
    display: block;
    padding: 10px 10px 10px 50px;
    background: url(../img/company/gmaplink_icon.png) no-repeat left center;
    background-size: 30px;
  }
}

#company_photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (min-width: 680px) {
  #company_photo {
    margin-bottom: 70px;
  }
}
#company_photo .box {
  width: 33%;
  max-width: 300px;
}
#company_photo h3 {
  color: #5186B9;
  text-align: center;
  font-size: 1em;
}
@media screen and (min-width: 680px) {
  #company_photo h3 {
    font-size: 1.1em;
  }
}

/*----------------------------------------------------------

OEMの流れ

----------------------------------------------------------*/
.flow_content h2 {
  min-height: 80px;
  font-size: 1.2em;
  padding: 0 20px;
  color: #fff;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 680px) {
  .flow_content h2 {
    font-size: 1.75em;
    line-height: 1.7;
    width: 25%;
    min-height: 200px;
    max-width: 250px;
  }
}
.flow_content h2 img {
  width: auto;
  height: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 680px) {
  .flow_content h2 img {
    height: 32px;
  }
}
@media screen and (min-width: 680px) {
  .flow_content .en {
    font-size: 1.2em !important;
    max-width: 340px !important;
  }
}
.flow_content .cap {
  padding: 10px 0px;
  line-height: 30px;
}
@media screen and (min-width: 680px) {
  .flow_content .cap {
    padding: 20px 20px;
    width: 75%;
  }
}
@media screen and (min-width: 1100px) {
  .flow_content .cap {
    padding: 30px 60px;
  }
}

.flow_block {
  border-bottom: 1px solid #a5afb9;
  padding: 25px 0;
}
@media screen and (min-width: 680px) {
  .flow_block {
    margin: 0 20px;
  }
}
@media screen and (min-width: 1100px) {
  .flow_block {
    padding: 35px 0;
    margin: 0 60px;
  }
}
@media screen and (min-width: 680px) {
  .flow_block .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url(../img/flow/anker.png) no-repeat right center;
    background-size: 12px;
  }
}

/*----------------------------------------------------------

FAQ

----------------------------------------------------------*/
#acodion dt, #acodion dd {
  border: 1px solid #5186B9;
  padding: 20px 20px 20px 40px;
  position: relative;
}
#acodion dt .dc, #acodion dd .dc {
  font-size: 1.2em;
  position: absolute;
  left: 10px;
  top: 20px;
}
@media screen and (min-width: 680px) {
  #acodion dt .dc, #acodion dd .dc {
    font-size: 2em;
    left: 30px;
    top: 20px;
  }
}
@media screen and (min-width: 680px) {
  #acodion dt, #acodion dd {
    padding: 20px 30px 20px 80px;
  }
}
#acodion dt {
  font-size: 1.15em;
  color: #5186B9;
  margin-bottom: 15px;
  margin-top: 25px;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
@media screen and (min-width: 1100px) {
  #acodion dt:after {
    content: "";
    display: block;
    position: absolute;
    right: 30px;
    top: 22px;
    width: 30px;
    height: 30px;
    background: #FFF;
    background: url(../img/faq/close.png) no-repeat;
    background-size: 30px;
  }
}
#acodion dt.open {
  border: none;
  color: #fff;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); 
}
@media screen and (min-width: 1100px) {
  #acodion dt.open:after {
    background: url(../img/faq/open.png) no-repeat;
    background-size: 30px;
  }
}
#acodion dd {
  margin-left: 50px;
  display: none;
  line-height: 25px;
}
@media screen and (max-width: 680px) {
  #acodion dd {
    margin-left: 0;
    padding: 10px 20px 10px 50px;
  }
}
#acodion dd .dc {
  font-size: 1.2em;
  color: #fff;
  top: 10px;
  padding: 0px 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }
@media screen and (min-width: 680px) {
  #acodion dd .dc {
    padding: 6px 11px;
    ont-size: 1.6em;
  }
}

/*----------------------------------------------------------

品質方針

----------------------------------------------------------*/
.qua_content .fx {
  margin-top: 30px;
}
@media screen and (min-width: 680px) {
  .qua_content .fx {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.qua_content .fx .box {
  margin-bottom: 30px;
}
@media screen and (min-width: 680px) {
  .qua_content .fx .box {
    margin-bottom: 0;
    width: 48%;
    max-width: 470px;
  }
}
.qua_content .fx p {
  line-height: 25px !important;
}
.qua_content h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #5186B9;
}
@media screen and (min-width: 680px) {
  .qua_content h2 {
    font-size: 1.35em;
  }
}
.qua_content h3 {
  margin-top: 40px;
  font-size: 1.15em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #5186B9;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 680px) {
  .qua_content h3 {
    font-size: 1.35em;
  }
}
.qua_content h3 img {
  margin-right: 15px;
  height: 18px;
  width: auto;
  display: block;
}
@media screen and (min-width: 680px) {
  .qua_content h3 img {
    margin-right: 25px;
    height: 26px;
  }
}
.qua_content .left h3 {
  color: #c64d6a;
}
.qua_content .mb {
  margin-bottom: 40px;
}
.qua_content .photo_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.qua_content .photo_flex div {
  width: 30%;
  max-width: 310px;
}
.qua_content .photo_flex img {
  display: block;
  height: auto;
}

/*----------------------------------------------------------

事例紹介

----------------------------------------------------------*/
@media screen and (min-width: 680px) {
  .case_content .fx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.case_content .fx .box {
  margin-bottom: 20px;
}
@media screen and (min-width: 680px) {
  .case_content .fx .box {
    width: 48%;
    max-width: 475px;
    margin-bottom: 0;
  }
}
.case_content h2 {
  font-size: 1.25em;
  min-height: 80px;
  margin-bottom: 30px;
  width: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
          background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
          background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }
.case_content h2 span {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 680px) {
  .case_content h2 {
    font-size: 1.65em;
    min-height: 150px;
  }
}
.case_content h3 {
  color: #5186B9;
}
@media screen and (max-width: 680px) {
  .case_content h3 {
    margin-bottom: 10px;
  }
}
.case_content p {
  margin-bottom: 20px;
}
@media screen and (min-width: 680px) {
  .case_content p.lh {
    line-height: 25px !important;
  }
}

/*----------------------------------------------------------

プライバシーポリシー

----------------------------------------------------------*/
.privacy_content h2, .quality_tax h2 {
  color: #5186B9;
  font-size: 1.1em;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.privacy_content h2 img, .quality_tax h2 img {
  width: auto;
  height: 20px;
  margin-right: 10px;
}
@media screen and (min-width: 680px) {
  .privacy_content h2, .quality_tax h2 {
    margin-top: 50px;
    font-size: 1.2em;
  }
  .privacy_content h2 img, .quality_tax h2 img {
    height: 27px;
    margin-right: 20px;
  }
}

.quality_tax h2 {
  margin-top: 30px;
}
.quality_tax h2:first-child {
  margin-top: 50px;
}

/*----------------------------------------------------------

お知らせ　一覧

----------------------------------------------------------*/
#info_all {
  padding: 0 20px;
  margin: 0 auto;
}
#info_all .info_post {
  display: block;
}
#info_all .info_post:first-child a {
  border-top: 1px solid #eee;
}
#info_all .info_post a {
  color: #464646;
  display: block;
  border-bottom: 1px solid #eee;
  background: url(../img/common/right_g.png) no-repeat center right;
  background-size: 20px;
  padding: 15px 0;
}
#info_all .info_post a .right {
  padding-right: 30px;
}
@media screen and (min-width: 680px) {
  #info_all {
    max-width: 1000px;
  }
  #info_all .info_post {
    display: block;
  }
  #info_all .info_post a {
    padding: 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url(../img/common/right_g.png) no-repeat center right;
    background-size: 30px;
  }
  #info_all .info_post a .left {
    padding-right: 40px;
    background: url(../img/common/li_icon.png) no-repeat center right;
    background-size: 11px;
  }
  #info_all .info_post a .right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1100px) {
  #info_all {
    padding: 0;
  }
  #info_all .info_post a {
    position: relative;
  }
  #info_all .info_post a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0%;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    background-color: #5186B9;
  }
  #info_all .info_post a:hover:after {
    max-width: 100%;
    width: 100%;
  }
}
#info_all .cat {
  margin-left: auto;
  color: #fff;
  background-color: #5186B9;
  display: inline-block;
  padding: 0 10px;
  border-radius: 20px;
}
#info_all .head {
  margin-bottom: 10px;
}
@media screen and (min-width: 980px) {
  #info_all .head {
    margin-bottom: 15px;
  }
}
#info_all .head img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 980px) {
  #info_all .head img {
    width: auto;
  }
}
#info_all .date {
  font-size: 0.9em;
}
#info_all .title {
  line-height: 24px;
}

#info_cat, #info_archive {
  display: block;
}
#info_cat li, #info_archive li {
  display: inline-block;
  border-right: 1px solid #5186B9;
}
#info_cat li:first-child, #info_archive li:first-child {
  border-left: 1px solid #5186B9;
}
#info_cat li a, #info_archive li a {
  color: #464646;
  padding: 0 20px;
  line-height: 1;
  display: block;
}
@media screen and (min-width: 1100px) {
  #info_cat li a:hover, #info_archive li a:hover {
    color: #5186B9;
  }
}

#info_cat {
  margin-bottom: 10px;
}

#info_archive {
  margin-bottom: 20px;
}
@media screen and (min-width: 1100px) {
  #info_archive {
    margin-bottom: 40px;
  }
}

/*----------------------------------------------------------

お知らせ 詳細

----------------------------------------------------------*/
#single_content .wrap {
  background-color: #fff;
  margin-top: 20px;
}
@media screen and (min-width: 680px) {
  #single_content .wrap {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1100px) {
  #single_content .wrap {
    margin-top: -100px;
  }
  #single_content .wrap.none {
    margin-top: 40px;
  }
}
#single_content #thum {
  margin-bottom: 20px;
}
#single_content #thum img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  display: block;
}
@media screen and (min-width: 680px) {
  #single_content #thum {
    margin-bottom: 50px;
  }
}
#single_content #main {
  margin-bottom: 40px;
}
@media screen and (min-width: 680px) {
  #single_content #main {
    margin-bottom: 70px;
  }
}
#single_content #main img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/*----------------------------------------------------------

サイトマップ

----------------------------------------------------------*/
@media screen and (min-width: 680px) {
  .sitemap_content .fx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sitemap_content .half {
    width: 48%;
    max-width: 475px;
  }
}
.sitemap_content #sec_1 a {
  display: block;
  border-bottom: 1px solid #F3F7FB;
  padding: 30px 30px 30px 20px;
  position: relative;
  font-size: 1em;
}
@media screen and (min-width: 680px) {
  .sitemap_content #sec_1 a {
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    font-size: 1.1em;
    padding: 30px 30px 30px 20px;
  }
  .sitemap_content #sec_1 a:hover {
    opacity: 0.6;
  }
  .sitemap_content #sec_1 a:hover:after {
    right: 10px;
  }
}
.sitemap_content #sec_1 a:after {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  content: "";
  position: absolute;
  right: 20px;
  top: 35%;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/sitemap/anker.png) no-repeat;
  background-size: 24px;
}
.sitemap_content #sec_1 a.mini {
  font-size: 1em;
  padding-left: 35px;
  background: url(../img/orgalectwater/lead_icon.png) no-repeat 10px center;
  background-size: 8px;
}
.sitemap_content #sec_1 a.mini:after {
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/sitemap/anker.png) no-repeat;
  background-size: 20px;
}
.sitemap_content #sec_1 h2 {
  margin-top: 50px;
  background-color: #F3F7FB;
  height: 70px;
  padding: 20px;
  font-size: 1.1em;
  color: #5186B9;
}

/*----------------------------------------------------------

各種お問い合わせ

----------------------------------------------------------*/
.contact_content input[type=text], .contact_content input[type=submit], .contact_content textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  display: block;
  padding: 15px 20px;
  background-color: #f3f7fb;
  font-size: 1.1em;
}

/* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
:-moz-placeholder-shown {
  color: #c8c8c8;
}
:-ms-input-placeholder {
  color: #c8c8c8;
}
:placeholder-shown {
  color: #c8c8c8;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #c8c8c8;
}

/* Firefox 18- */
:-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
  color: #c8c8c8;
  opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
  color: #c8c8c8;
}

.form_box {
  border-bottom: 1px solid #e1e1e1;
  padding: 15px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form_box.first {
  margin-top: 60px;
  border-top: 1px solid #e1e1e1;
}
.form_box .title {
  width: 100%;
  margin-bottom: 10px;
}
.form_box .title .req {
  font-size: 0.8em;
  color: #C64D6A;
  vertical-align: 1em;
}
@media screen and (min-width: 680px) {
  .form_box .title {
    margin: 0;
    width: 25%;
  }
}
.form_box .form_input {
  width: 100%;
}
@media screen and (min-width: 680px) {
  .form_box .form_input {
    width: 75%;
  }
}
.form_box textarea {
  height: 220px;
}
.form_box .small input {
  max-width: 150px;
  display: inline-block;
  margin-right: 20px;
}
.form_box .op_text {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.85em;
}
.form_box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 680px) {
  .form_box {
    padding: 15px 20px;
  }
}

#submit_form, #back_submit {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 30px;
}
#submit_form:after, #back_submit:after {
  content: "";
  z-index: 10;
  display: block;
  width: 19px;
  height: 9px;
  position: absolute;
  right: 20px;
  top: 40%;
  background: url(../img/contact/arrow.png) no-repeat;
  background-size: 19px;
}
#submit_form input[type=submit], #back_submit input[type=submit] {
  color: #fff;
  font-family: "Noto Serif Japanese", sans-serif;
  background-image: -moz-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -webkit-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
  background-image: -ms-linear-gradient(0deg, #5db1bd 0%, #5186b9 100%); }
#submit_form input[type=submit]:hover, #back_submit input[type=submit]:hover {
  opacity: 0.7;
}

#back_submit:after {
  left: 20px;
  right: auto;
  top: 40%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

#check_input {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
#check_input a {
  text-decoration: underline;
}
#check_input p {
  text-align: center;
}
#check_input .mwform-checkbox-field {
  display: inline-block;
  width: auto;
  margin-top: 20px;
  font-size: 1.1em;
}

.mwform-checkbox-field {
  width: 100%;
  margin-left: 0 !important;
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 680px) {
  .mwform-checkbox-field {
    width: 50%;
    margin-bottom: 0;
  }
}

.mw_wp_form_complete {
  text-align: center;
  margin-bottom: 40px;
}
.mw_wp_form_complete h2 {
  font-size: 1.2em;
}

.pagenation {
  width: 100%;
  margin-top: 50px;
}
.pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagenation li {
  width: auto !important;
  margin-bottom: 0 !important;
  margin: 0 8px;
  padding: 10px !important;
  width: 24px;
  height: 36px;
  color: #fff;
  background: url(../img/infomation/off_bg.png) no-repeat center;
  background-size: 24px;
}
@media screen and (min-width: 980px) {
  .pagenation li {
    padding: 5px 10px !important;
  }
}
.pagenation li.active {
  background: url(../img/infomation/num_bg.png) no-repeat center;
  background-size: 24px;
}
.pagenation li a {
  color: #fff !important;
}
.pagenation li a:hover {
  color: #5186B9 !important;
}