@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  font: inherit;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
}

/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
  text-justify: distribute;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  min-width: 1000px;
  min-height: 100vh;
  position: relative;
}

.wrapper {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.sm {
  display: none !important;
}

@media (max-width: 750px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  .trans,
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  html {
    font-size: 13.33333vw;
  }

  body {
    font-size: 0.2rem;
  }

  .container {
    width: auto;
    min-width: 320px;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.header {
  padding: 20px 0 0;
  width: 100%;
  line-height: 1;
}

.header-inner {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.ie9 .header-inner, .ie10 .header-inner {
  height: 65px;
  display: block;
  position: static !important;
}
.ie9 .header-inner .logo, .ie10 .header-inner .logo {
  float: left;
  position: static !important;
}
.ie9 .header-inner .nav, .ie10 .header-inner .nav {
  float: right;
  display: block;
  position: static !important;
}
.header-inner .logo {
  margin-left: -9px;
  width: 8%;
}
.header-inner .logo img {
  width: 100%;
}

.nav {
  width: 92%;
  margin-bottom: 12px;
}
.ie9 .nav, .ie10 .nav {
  left: 25px !important;
  top: 35px !important;
  margin-top: 35px !important;
  width: 815px;
}

.list-menu {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ie9 .list-menu, .ie10 .list-menu {
  display: block;
  position: static !important;
}
.ie9 .list-menu .btn-nav, .ie10 .list-menu .btn-nav {
  float: left;
  position: static !important;
}
.list-menu .btn-nav .item {
  display: inline-block;
  padding: 2px 19px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
  border-right: 2px solid #383674;
  position: relative;
}
.safari .list-menu .btn-nav .item {
  padding: 2px 14px;
}
@media (min-width: 751px) {
  .list-menu .btn-nav .item:hover {
    color: #6a81bf;
  }
  .list-menu .btn-nav .item:hover span:after {
    left: 0;
    right: 0;
  }
}
.list-menu .btn-nav:last-child .item {
  padding: 0 0 0 13px;
  border-right: 0;
}
.list-menu .btn-nav:first-child {
  border-left: 2px solid #383674;
}
.list-menu .btn-nav span:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: -10px;
  background: #74bca5;
  height: 5px;
  margin: 0 10px;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.list-menu .btn-nav.current-page span:after {
  left: 0;
  right: 0;
}
.list-menu .btn-nav.btn-nav01 span:after {
  background: #6a81bf;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav01 .item:hover, .current-page .list-menu .btn-nav.btn-nav01 {
    color: #6a81bf;
  }
}
.list-menu .btn-nav.btn-nav02 span:after, .current-page .list-menu .btn-nav.btn-nav02 {
  background: #2e449c;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav02 span:after .item:hover, .current-page .list-menu .btn-nav.btn-nav02 span:after, .current-page .list-menu .btn-nav.btn-nav02 .item:hover, .current-page .current-page .list-menu .btn-nav.btn-nav02 {
    color: #2e449c;
  }
}
.list-menu .btn-nav.btn-nav03 span:after, .current-page .list-menu .btn-nav.btn-nav03 {
  background: #fba00e;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav03 .item:hover, .current-page .list-menu .btn-nav.btn-nav03 {
    color: #fba00e;
  }
}
.list-menu .btn-nav.btn-nav04 span:after, .current-page .list-menu .btn-nav.btn-nav04 {
  background: #009bbd;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav04 .item:hover, .current-page .list-menu .btn-nav.btn-nav04 {
    color: #009bbd;
  }
}
.list-menu .btn-nav.btn-nav05 span:after, .current-page .list-menu .btn-nav.btn-nav05 {
  background: #f47f68;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav05 .item:hover, .current-page .list-menu .btn-nav.btn-nav05 {
    color: #f47f68;
  }
}
.list-menu .btn-nav.btn-nav06 span:after, .current-page .list-menu .btn-nav.btn-nav06 {
  background: #d76228;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav06 .item:hover, .current-page .list-menu .btn-nav.btn-nav06 {
    color: #d76228;
  }
}
.list-menu .btn-nav.btn-nav07 span:after, .current-page .list-menu .btn-nav.btn-nav07 {
  background: #477573;
}
@media (min-width: 751px) {
  .list-menu .btn-nav.btn-nav07 .item:hover, .current-page .list-menu .btn-nav.btn-nav07 {
    color: #477573;
  }
}
.list-menu .btn-nav .icon-social {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  width: 17px;
}
.list-menu .btn-nav .icon-social:first-child {
  margin: 0;
}
.ie9 .list-menu, .ie10 .list-menu {
  width: 875px !important;
}

.sub-nav {
  overflow: hidden;
  width: 100%;
  height: 0;
  z-index: 0;
  position: absolute;
  top: 86px;
  left: 0;
  -webkit-transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ie9 .sub-nav, .ie10 .sub-nav {
  top: 85px;
}
.btn-nav01 .sub-nav {
  background-color: #6a81bf;
}
.btn-nav02 .sub-nav {
  background-color: #2e449c;
}
.btn-nav03 .sub-nav {
  background-color: #fba00e;
}
.sub-nav .wrapper {
  text-align: right;
}
.sub-nav.active {
  z-index: 99;
}
.current-page .sub-nav {
  z-index: 0;
}
.sub-nav.active, .current-page .sub-nav {
  height: 30px;
}
.sub-nav .inner-sub-menu {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 766px;
  float: right;
  margin-right: 48px;
  table-layout: fixed;
  padding: 10px 0;
}
.sub-nav .inner-sub-menu .back {
  display: none;
}
.ie9 .sub-nav .inner-sub-menu .back, .ie10 .sub-nav .inner-sub-menu .back {
  display: none !important;
}
.ie9 .sub-nav .inner-sub-menu, .ie10 .sub-nav .inner-sub-menu {
  display: inline-block;
}
.sub-nav .link-sub {
  padding: 0 13px;
  border-right: 2px solid #fff;
  color: #bcbbd6;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 12px;
}

.sub-nav .link-sub:nth-child(2) {
  border-left: 2px solid #fff;
}
.ie9 .sub-nav .link-sub, .ie10 .sub-nav .link-sub {
  float: left;
}

.current-page.btn-nav01 .sub-nav {
  background-color: #6a81bf;
}
.current-page.btn-nav01 span {
  color: #6a81bf;
}
.current-page.btn-nav02 .sub-nav {
  background-color: #2e449c;
}
.current-page.btn-nav02 span {
  color: #2e449c;
}
.current-page.btn-nav03 .sub-nav {
  background-color: #fba00e;
}
.current-page.btn-nav03 span {
  color: #fba00e;
}
.current-page.btn-nav04 span {
  color: #009bbd;
}
.current-page.btn-nav05 span {
  color: #f47f68;
}
.current-page.btn-nav06 span {
  color: #d76228;
}
.current-page.btn-nav07 span {
  color: #477573;
}

.btn-nav03 .sub-nav .link-sub {
  border-color: #383674;
}

@media (max-width: 750px) {
  .header {
    position: relative;
    padding-top: 0.2rem;
  }

  .hambuger {
    position: absolute;
    width: 0.6rem;
    height: 0.45rem;
    right: 0.25rem;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hambuger span {
    display: block;
    background-color: #2b296b;
    height: 0.09rem;
    width: 0.6rem;
  }
  .hambuger:before {
    content: "";
    display: block;
    background-color: #2b296b;
    height: 0.09rem;
    width: 0.6rem;
    margin: 0 0 0.08rem;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hambuger:after {
    content: "";
    display: block;
    background-color: #2b296b;
    height: 0.09rem;
    width: 0.6rem;
    margin: 0.08rem 0 0;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hambuger.active:before {
    content: "";
    display: block;
    background-color: #2b296b;
    height: 0.09rem;
    width: 0.6rem;
    margin: 0 0 0.08rem;
    -webkit-transform: translate3d(0, 0.1rem, 0) rotate3d(0, 0, 1, 45deg);
    transform: translate3d(0, 0.1rem, 0) rotate3d(0, 0, 1, 45deg);
  }
  .hambuger.active:after {
    content: "";
    display: block;
    background-color: #2b296b;
    height: 0.09rem;
    width: 0.6rem;
    margin: 0.06rem 0 0;
    -webkit-transform: translate3d(0, -0.21rem, 0) rotate3d(0, 0, 1, -45deg);
    transform: translate3d(0, -0.21rem, 0) rotate3d(0, 0, 1, -45deg);
  }
  .hambuger.active span {
    background-color: transparent;
  }

  .list-menu {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    text-align: left;
    border-left: 1px solid #2b296b;
    -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: #fff;
    display: block;
    min-height: 3rem;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .list-menu .btn-nav .item {
    padding: 0.2rem;
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 0.02rem solid #383674;
    text-align: left;
    position: relative;
  }
  .list-menu .btn-nav .item:after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    background: url(../img/common/arrow_right.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0.2rem;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .list-menu .btn-nav.drop .item:after {
    background-image: url(../img/common/sub_menu.png);
  }
  .list-menu .btn-nav:first-child {
    border: 0;
  }
  .list-menu .btn-nav:last-child {
    border: 0;
    padding: 0;
  }
  .list-menu .btn-nav:last-child .item {
    padding: 0.2rem;
    display: block;
  }
  .list-menu .btn-nav .icon-social {
    margin-left: 0.1rem;
    width: 0.3rem;
  }
  .list-menu .btn-nav span:after {
    content: none;
  }
  .list-menu.active {
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
    right: 0%;
    -webkit-overflow-scrolling: touch;
  }

  .main,
  .header,
  .footer {
    position: relative;
    right: 0;
    background-color: #fff;
    -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .main.active,
  .header.active,
  .footer.active {
    right: 80%;
  }

  .header-inner .logo {
    width: 100%;
    text-align: center;
  }
  .header-inner .link-logo {
    width: 1.43rem;
    margin: 0 auto;
    display: inline-block;
  }
  .header-inner .link-logo img {
    width: 100%;
  }

  .btn-nav02 .sub-nav {
    background-color: #fff;
  }

  .sub-nav {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .sub-nav.show-sub {
    left: 0;
  }
  .sub-nav.show-sub.active {
    z-index: 99;
  }
  .sub-nav.active {
    height: auto;
    z-index: 0;
    min-height: 9rem;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .sub-nav .wrapper {
    padding: 0;
  }
  .sub-nav .inner-sub-menu {
    width: 100%;
    padding: 0;
    display: block;
    margin-right: 0;
    background-color: #fff;
  }
  .sub-nav .inner-sub-menu .back {
    display: block;
  }
  .sub-nav .link-sub {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 0.2rem;
    padding: 0.2rem;
    border: 0;
    border-bottom: 0.02rem solid #383674;
    color: #000;
    font-weight: 700;
    position: relative;
  }

  .sub-nav .link-sub:after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    background: url(../img/common/arrow_right.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0.2rem;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .sub-nav .link-sub.active, .sub-nav .link-sub:hover, .sub-nav .link-sub:focus, .sub-nav .link-sub:active {
    color: #000;
  }
  .sub-nav .link-sub:first-child {
    border: 0;
    border-bottom: 0.02rem solid #383674;
  }
  .sub-nav .link-sub.back {
    padding-left: 0.4rem;
    color: #000;
  }
  .sub-nav .link-sub.back:after {
    background-image: url(../img/common/arrow_left.png);
    right: auto;
    left: 0.1rem;
  }

  .current-page.btn-nav01 span,
  .current-page.btn-nav02 span,
  .current-page.btn-nav03 span,
  .current-page.btn-nav04 span,
  .current-page.btn-nav05 span,
  .current-page.btn-nav06 span,
  .current-page.btn-nav07 span {
    color: #000;
  }

  .btn-nav03 .sub-nav .link-sub {
    border-color: #000;
  }

  .safari .list-menu .btn-nav .item {
    padding: 0.2rem;
  }

  .sub-nav .link-sub:nth-child(2) {
    border-left: 0;
  }

  .btn-nav01 .sub-nav,
  .btn-nav02 .sub-nav,
  .btn-nav03 .sub-nav,
  .current-page.btn-nav01 .sub-nav,
  .current-page.btn-nav02 .sub-nav,
  .current-page.btn-nav03 .sub-nav {
    background-color: transparent;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
.footer {
  background-color: #cccccc;
  width: 100%;
}

.content-footer {
  padding: 8px 0;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
.content-footer .menu-footer .item {
  padding: 3px 10px;
  float: left;
  border-left: 2px solid #fff;
  line-height: 1;
  font-weight: bold;
}
.content-footer .menu-footer .item:last-child {
  border-right: 2px solid #fff;
}

.logo-footer img {
  width: 82px;
}

.coopy-right {
  background-color: #fff;
  width: 100%;
}

.txt-coppyright {
  width: 100%;
  text-align: right;
  padding: 10px 0;
  line-height: 1;
  font-size: 8px;
}

@media (max-width: 750px) {
  .content-footer {
    display: block;
  }
  .content-footer .menu-footer {
    width: 100%;
    text-align: center;
  }
  .content-footer .menu-footer .item {
    float: none;
    display: inline-block;
    padding: 0.03rem 0.1rem;
  }
  .content-footer .logo-footer {
    width: 100%;
    text-align: center;
  }
  .content-footer .logo-footer img {
    width: 1.65rem;
    margin: 0.3rem auto 0;
  }

  .txt-coppyright {
    font-size: 0.16rem;
    text-align: center;
    line-height: 1.4;
  }
}
/* CLEARFIX
 * ----------------------------------------------- */
.clearfix {
  clear: both;
  *zoom: 1;
}

.clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

/* COMMON TITLES
 * ----------------------------------------------- */
.title-page {
  width: 100%;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 8px 20px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.title-page.bgd-pink {
  background-color: #96a1cd;
}
.title-page.bgd-yellow {
  background-color: #fec15f;
}

@media (max-width: 750px) {
  .title-page {
    padding: 0.15rem 0.2rem;
    font-size: 0.28rem;
  }
}
/* COMMON BUTTONS
 * ----------------------------------------------- */
/* COMMON BREADCRUMBS
 * ----------------------------------------------- */
/* COMMON FORMS
 * ----------------------------------------------- */
/* COMMON PAGINATIONS
 * ----------------------------------------------- */
/* COMMON TO TOP
 * ----------------------------------------------- */
.section-to-top {
  margin: 63px 0 37px;
  width: 100%;
  text-align: center;
}
.section-to-top .btn-to-top {
  width: 49px;
  margin: 0 auto;
  cursor: pointer;
}
.section-to-top .btn-to-top img {
  width: 100%;
}

@media (max-width: 750px) {
  .section-to-top {
    margin: 0.3rem 0;
  }
  .section-to-top .btn-to-top {
    width: 1rem;
  }
}
/* PAGES
 * ----------------------------------------------- */
/* SECTION BANNER TOP
 * ----------------------------------------------- */
.section-top-banner {
  margin-top: 40px;
}

.content-banner img {
  width: 100%;
}

.section-top-product {
  margin-bottom: 65px;
}
.ie9 .section-top-product .list-product:nth-child(2) .item:nth-child(3), .ie10 .section-top-product .list-product:nth-child(2) .item:nth-child(3), .ie9
.section-top-product .list-product:nth-child(2) .item:nth-child(4), .ie10
.section-top-product .list-product:nth-child(2) .item:nth-child(4) {
  width: 143px;
}

.list-product {
  margin-top: 12px;
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.list-product .item {
  margin-right: 8px;
}

.list-product .item .item-link {
  display: block;
  -webkit-transition: all ease .2s;
  -ms-transition: all ease .2s;
  transition: all ease .2s;
}
.list-product .item:last-child {
  margin-right: 0;
}
.list-product .item .thumb-item {
  width: 100%;
}
.ie9 .list-product .item, .ie10 .list-product .item {
  width: 294px;
}
.list-product .desc-product {
  margin-top: 7px;
  padding-left: 25px;
  position: relative;
  display: block;
}
.list-product .desc-product:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow01.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -2px;
  left: 0;
  opacity: 1;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
@media (min-width: 751px) {

  .list-product .item-link:hover .thumb-item {
    opacity: 0.8;
  }
  .list-product .desc-product.desc-product01:after {
    background-color: #6a81bf;
  }
  .list-product .item-link01:hover .desc-product.desc-product01:after {
    background-image: url(../img/common/arrow01_hover.png);
    background-color: #2c418f;
  }
  .list-product .item-link01:hover .desc-product.desc-product01 .title {
    color: #2c418f;
  }

  .list-product .desc-product.desc-product02:after {
    background-color: #6a81bf;
  }
  .list-product .item-link02:hover .desc-product.desc-product02:after {
    background-image: url(../img/common/arrow02_hover.png);
    background-color: #2e449c;
  }
  .list-product .item-link02:hover .desc-product.desc-product02 .title {
    color: #2e449c;
  }


  .list-product .desc-product.desc-product03:after {
    background-color: #fec15f;
  }
  .list-product .item-link03:hover .desc-product.desc-product03:after {
    background-image: url(../img/common/arrow03_hover.png);
    background-color: #fd9223;
  }
  .list-product .item-link03:hover .desc-product.desc-product03 .title {
    color: #fd9223;
  }


  .list-product .desc-product.desc-product04:after {
    background-color: #005e8c;
  }
  .list-product .item-link04:hover .desc-product.desc-product04:after {
    background-image: url(../img/common/arrow04_hover.png);
    background-color: #009bbd;
  }
  .list-product .item-link04:hover .desc-product.desc-product04 .title {
    color: #009bbd;
  }

  .list-product .desc-product.desc-product05:after {
    background-color: #f47f68;
  }
  .list-product .item-link05:hover .desc-product.desc-product05:after {
    background-image: url(../img/common/arrow05_hover.png);
    background-color: #f47f68;
  }
  .list-product .item-link05:hover .desc-product.desc-product05 .title {
    color: #f47f68;
  }


  .list-product .desc-product.desc-product06:after {
    background-color: #d76228;
  }
  .list-product .item-link06:hover .desc-product.desc-product06:after {
    background-image: url(../img/common/arrow06_hover.png);
    background-color: #d76228;
  }
  .list-product .item-link06:hover .desc-product.desc-product06 .title {
    color: #d76228;
  }


  .list-product .desc-product.desc-product07:after {
    background-color: #477573;
  }
  .list-product .item-link07:hover .desc-product.desc-product07:after {
    background-image: url(../img/common/arrow07_hover.png);
    background-color: #537e7c;
  }
  .list-product .item-link07:hover .desc-product.desc-product07 .title {
    color: #537e7c;
  }


  .sub-nav .link-sub:hover, .sub-nav .link-sub:active, .sub-nav .link-sub:focus, .sub-nav .link-sub.active {
    color: #fff !important;
  }

}
.list-product .desc-product .title {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: block;
}
.list-product .desc-product .txt-new {
  color: #f8130e;
  padding-right: 5px;
}
.list-product .desc-product .arr {
  margin-left: 5px;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #2c418f;
  display: inline-block;
}
.list-product .desc-product.desc-product02:after {
  background-image: url(../img/common/arrow02.png);
}
.list-product .desc-product.desc-product02 .arr {
  border-left: 4px solid #2c418f;
}
.list-product .desc-product.desc-product03:after {
  background-image: url(../img/common/arrow03.png);
}
.list-product .desc-product.desc-product03 .arr {
  border-left: 4px solid #fec15f;
}
.list-product .desc-product.desc-product04:after {
  background-image: url(../img/common/arrow04.png);
}
.list-product .desc-product.desc-product04 .arr {
  border-left: 4px solid #009bbd;
}
.list-product .desc-product.desc-product05:after {
  background-image: url(../img/common/arrow05.png);
}
.list-product .desc-product.desc-product05 .arr {
  border-left: 4px solid #f47f68;
}
.list-product .desc-product.desc-product06:after {
  background-image: url(../img/common/arrow06.png);
}
.list-product .desc-product.desc-product07:after {
  background-image: url(../img/common/arrow07.png);
}

.loading {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  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;
  opacity: 1;
}
.loading img {
  position: absolute;
  width: 638px;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
  .section-top-banner {
    margin-top: 0.2rem;
  }

  .section-top-product {
    margin-bottom: 0.35rem;
  }

  .list-product {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0.2rem;
  }
  .list-product .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
  .list-product .desc-product {
    margin-top: 0.2rem;
    padding-left: 0.5rem;
  }
  .list-product .desc-product:after {
    width: 0.4rem;
    height: 0.4rem;
  }
  .list-product .desc-product .title {
    font-size: 0.26rem;
  }
  .list-product:nth-child(2) .item:nth-child(3) {
    width: 48%;
  }
  .list-product:nth-child(2) .item:nth-child(4) {
    width: 48%;
  }

  .loading img {
    width: 80%;
  }
}
/* SECTION BANNER TOP
 * ----------------------------------------------- */
.section-content-q01 .desc-content {
  margin-top: 12px;
}
.section-content-q01 .desc-content.desc-bold {
  font-weight: bold;
}
.section-content-q01 .desc-content.desc-blue {
  color: #6a81bf;
}
.section-content-q01 .desc-content.desc-content01 {
  margin-bottom: 18px;
}
.section-content-q01 .desc-content.desc-content03 {
  margin-top: 35px;
}

.list-note {
  margin-top: 3px;
}

.list-q01-content {
  width: 100%;
}
.list-q01-content .item {
  margin-bottom: 5px;
  background-color: #d2d9ec;
  padding: 17px 16px 14px;
}
.list-q01-content .item .title img {
  width: 26px;
}
.list-q01-content .item .desc {
  padding-top: 5px;
}
.list-q01-content .item:nth-child(2) .list-note {
  width: 370px;
}
.list-q01-content .item:nth-child(2) .list-note .note-item {
  width: 174px;
}
.list-q01-content .list-note .note-item {
  display: inline-block;
  width: 123px;
  font-weight: bold;
}

.desc-author {
  width: 100%;
  text-align: left;
  padding-top: 2px;
}

.btn-q01 {
  width: 298px;
  height: 50px;
  margin: 57px auto 50px;
  display: block;
  text-align: center;
  background: url(../img/me/btn01.png) no-repeat center center;
  background-size: contain;
}
.btn-q01 .txt-btn {
  display: table-cell;
  vertical-align: middle;
  width: 298px;
  height: 50px;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

.desc-cntent-q02 {
  margin-top: 12px;
  border: 2px solid #6e84c1;
  width: 100%;
}
.desc-cntent-q02 .list-q01-content .item {
  background-color: transparent;
  padding-top: 12px;
}
.desc-cntent-q02 .list-q01-content .item .desc {
  padding-top: 0;
}
.desc-cntent-q02 .list-q01-content .item.item01 .desc02 {
  padding-top: 18px;
  margin-bottom: -6px;
}
.desc-cntent-q02 .list-q01-content .item .title img {
  width: 15px;
}

.section-content-q01 .desc-content02.desc-content {
  margin-top: 17px;
}

@media (max-width: 750px) {
  .section-content-q01 .list-q01-content .list-note .note-item {
    width: 46%;
  }
  .section-content-q01 .list-q01-content .item {
    padding: 0.15rem;
  }
  .section-content-q01 .list-q01-content .item .title img {
    width: 0.6rem;
  }
  .section-content-q01 .list-q01-content .item:nth-child(2) .list-note {
    width: 100%;
  }
  .section-content-q01 .list-q01-content .item:nth-child(2) .list-note .note-item {
    width: 46%;
    padding-left: 0;
  }
  .section-content-q01 .btn-q01 {
    width: 3.5rem;
    height: 0.6rem;
    margin: 0.5rem auto;
  }
  .section-content-q01 .btn-q01 .txt-btn {
    width: 3.5rem;
    height: 0.6rem;
    font-size: 0.16rem;
  }

  .section-content-q01 .desc-content {
    margin-top: 0.2rem;
  }

  .desc-cntent-q02 {
    padding: 0 0.15rem;
  }
  .desc-cntent-q02 .list-q01-content .item .title img {
    width: 0.4rem;
  }

  .btn-q01 {
    width: 3.5rem;
    height: 0.63rem;
    margin: 0.5rem auto;
  }
  .btn-q01 .txt-btn {
    width: 3.5rem;
    height: 0.63rem;
    font-size: 0.2rem;
  }

  .list-q01-content .item {
    margin-bottom: 0.2rem;
  }
}
.section-desc-exercise01 .list-product {
  margin-top: 35px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-desc-exercise01 .list-product .item {
  width: 32.5%;
  margin-right: 0;
  margin-bottom: 50px;
}
.ie9 .section-desc-exercise01 .list-product .item, .ie10 .section-desc-exercise01 .list-product .item {
  height: 193px;
}
.section-desc-exercise01 .list-product .item a {
  display: block;
}
.section-desc-exercise01 .list-product .desc-product {
  padding-left: 23px;
}
.section-desc-exercise01 .list-product .desc-product:after {
  background-image: url(../img/common/arrow02.png);
  background-color: #2e449c;
}
.section-desc-exercise01 .list-product .desc-product .title.title-blue {
  color: #2e449c;
}

.desc-exercise-bold {
  margin-top: 15px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 3px solid #a8a9aa;
}

.desc-doctor {
  padding-top: 30px;
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
}
.desc-doctor .thumb {
  width: 130px;
}
.desc-doctor .thumb img {
  width: 100%;
}
.desc-doctor .desc {
  padding-left: 15px;
  width: 750px;
}
.desc-doctor .author {
  font-size: 14px;
  font-weight: 500;
}

/*エクササイズ*/
.desc-exercise02 {
  margin: 14px 0 28px;
}
.desc-exercise02 .desc01 {
  font-weight: bold;
  padding-top: 15px;
}
.desc-exercise02 .author {
  width: 100%;
  text-align: right;
}
.desc-exercise02 .thumb {
  width: 100%;
  text-align: center;
  margin-top: 13px;
}
.desc-exercise02 .thumb img {
  width: 80%;
  margin: 0 auto;
}
.desc-exercise02 .desc-thumb {
  line-height: 2;
}
.desc-exercise02 .txt-blue {
  color: #2e449c;
  font-weight: bold;
}
.desc-exercise02 .video-block {
  margin-top: 46px;
  width: 100%;
  text-align: center;
}
.desc-exercise02 .video-block iframe {
  width: 640px;
  height: 360px;
  margin: 0 auto;
}
/*エクササイズ1-1small*/
.desc-exercise02 .block-small {
  margin: 42px auto 0;
  padding: 20px 13px 13px 22px;
  width: 288px;
  background-color: #eaecf5;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.desc-exercise02 .block-small .desc {
  width: 160px;
  padding-top: 10px;
}
.desc-exercise02 .block-small .thumb-small {
  width: 77px;
  display: block;
}
.desc-exercise02 .block-small .thumb-small img {
  width: 100%;
}
.desc-exercise02 .block-small .link-small {
  text-decoration: underline;
}
.desc-exercise02.block02 .thumb {
  margin-top: 20px;
}
.desc-exercise02.block02 .thumb img {
  width: 674px;
  margin-right: 35px;
}
.desc-exercise02.block02 .desc-thumb {
  margin-top: -13px;
}

/*PCページのサイズ指定*/
/*エクササイズ3*/
.desc-exercise02.block03 {
  margin-bottom: 45px;
}
.desc-exercise02.block03 .thumb {
  margin-top: 13px;
}
.desc-exercise02.block03 .thumb img {
  width: 617.5px;
  margin-right: 55px;
}
.desc-exercise02.block03 .desc-thumb {
  margin-top: -78px;
}
/*エクササイズ4*/
.desc-exercise02.block04 {
  margin-bottom: 30px;
}
.desc-exercise02.block04 .thumb {
  margin-top: 17px;
}
.desc-exercise02.block04 .thumb img {
  width: 633px;
  margin-right: 61px;
}
.desc-exercise02.block04 .desc-thumb {
  margin-top: -17px;
}
/*エクササイズ5*/
.desc-exercise02.block05 {
  margin-bottom: 30px;
}
.desc-exercise02.block05 .thumb img {
  width: 617px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block05 .desc-thumb {
  margin-top: 30px;
}
/*エクササイズ8*/
.desc-exercise02.block07 {
  margin-bottom: 30px;
}
.desc-exercise02.block08 .thumb img {
  width: 617px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block08 .desc-thumb {
  margin-top: 30px;
}
/*エクササイズ9*/
.desc-exercise02.block09 {
  margin-bottom: 30px;
}
.desc-exercise02.block09 .thumb img {
  width: 617px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block09 .desc-thumb {
  margin-top: 30px;
}
/*エクササイズ10*/
.desc-exercise02.block10 {
  margin-bottom: 30px;
}
.desc-exercise02.block10 .thumb img {
  width: 617px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block10 .desc-thumb {
  margin-top: 30px;
}
/*エクササイズ11*/
.desc-exercise02.block11 {
  margin-bottom: 30px;
}
.desc-exercise02.block11 .thumb img {
  width: 617px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block11 .desc-thumb {
  margin-top: 30px;
}
/*エクササイズ12*/
.desc-exercise02.block12 {
  margin-bottom: 30px;
}
.desc-exercise02.block12 .thumb img {
  width: 900px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block12 .desc-thumb {
  margin-top: 30px;
}
/*エクササイズ13*/
.desc-exercise02.block13 {
  margin-bottom: 30px;
}
.desc-exercise02.block13 .thumb img {
  width: 800px;
  margin-right: 54px;
  margin-top: 30px;
}
.desc-exercise02.block13 .desc-thumb {
  margin-top: 30px;
}

@media (max-width: 750px) {
  .section-desc-exercise01 .list-product:nth-child(2) .item:nth-child(3),
  .section-desc-exercise01 .list-product:nth-child(2) .item:nth-child(4) {
    width: 100%;
  }
  .section-desc-exercise01 .list-product .item {
    width: 100%;
    margin-bottom: 0.2rem;
  }

  .desc-doctor {
    display: block;
    padding-top: 0.15rem;
  }
  .desc-doctor .thumb {
    width: 100%;
    text-align: center;
  }
  .desc-doctor .thumb img {
    width: 2.6rem;
    margin: 0 auto;
  }
  .desc-doctor .desc {
    padding-top: 0.2rem;
    padding-left: 0;
    width: 100%;
  }
  .desc-doctor .author {
    font-size: 0.3rem;
  }

  .section-desc-exercise01 .list-product .desc-product {
    padding-left: 0.5rem;
  }

  .desc-exercise02 {
    margin: 0.15rem 0 0.28rem;
  }
  .desc-exercise02 .video-block {
    margin-top: 0.4rem;
  }
  .desc-exercise02 .video-block iframe {
    width: 100%;
    height: 4rem;
  }
  .desc-exercise02 .block-small {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.2rem;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .desc-exercise02 .block-small .desc {
    width: 50%;
  }
  .desc-exercise02 .block-small .thumb-small {
    width: 25%;
  }
  .desc-exercise02.block02 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block02 .thumb img {
    width: 6.74rem;
    margin-right: 0;
  }
  .desc-exercise02.block02 .desc-thumb {
    margin-top: 0;
  }

/*SPページのサイズ指定*/
/*エクササイズ3*/
  .desc-exercise02.block03 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block03 .thumb {
    margin-top: 0.15rem;
  }
  .desc-exercise02.block03 .thumb img {
    width: 6.17rem;
    margin-right: 0;
  }
  .desc-exercise02.block03 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ4*/
  .desc-exercise02.block04 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block04 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block04 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block04 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ5*/
  .desc-exercise02.block05 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block05 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block05 .thumb img {
    width: 6.17rem;
    margin-right: 0;
  }
  .desc-exercise02.block05 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ6*/
  .desc-exercise02.block06 {
    margin-bottom: 0.3rem;
  }
/*エクササイズ8*/
  .desc-exercise02.block08 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block08 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block08 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block08 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ9*/
  .desc-exercise02.block09 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block09 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block09 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block09 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ10*/
  .desc-exercise02.block10 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block10 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block10 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block10 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ11*/
  .desc-exercise02.block11 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block11 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block11 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block11 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ12*/
  .desc-exercise02.block12 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block12 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block12 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block12 .desc-thumb {
    margin-top: 0;
  }
/*エクササイズ13*/
  .desc-exercise02.block13 {
    margin-bottom: 0.3rem;
  }
  .desc-exercise02.block13 .thumb {
    margin-top: 0.2rem;
  }
  .desc-exercise02.block13 .thumb img {
    width: 6.33rem;
    margin-right: 0;
  }
  .desc-exercise02.block13 .desc-thumb {
    margin-top: 0;
  }

/*イラスト*/
}
.desc-illustration {
  margin-top: 7px;
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
}
.desc-illustration .thumb {
  width: 208px;
}
.desc-illustration .thumb img {
  width: 169px;
}
.desc-illustration .desc {
  line-height: 1.88;
}

.list-link-illustration {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.list-link-illustration .item {
  margin: 5px 0;
}
.list-link-illustration .link-item {
  display: inline-block;
  padding-left: 25px;
  position: relative;
  font-size: 13px;
  font-weight: bold;
}
.list-link-illustration .link-item:after {
  content: "";
  background: url(../img/common/arrow03.png) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.txt-large {
  font-size: 14px;
}

.txt-bold {
  font-weight: bold;
}

.txt-red {
  color: #da0915;
}

.txt-blue {
  color: #0953da;
}

.txt-darkgreen {
  color: #006400;
}

.txt-orange {
  color: #ffa500;
}

.txt-cornflowerblue {
  color: #6495ed;
}

.txt-vrbig {
  font-size: 20px;
}


.desc-illustration-q01 {
  margin-top: 15px;
}
.desc-illustration-q01 .desc-detail {
  padding-top: 10px;
  width: 100%;
  padding-left: 92px;
  line-height: 2;
}
.desc-illustration-q01 .desc-detail.desc-detail02, .desc-illustration-q01 .desc-detail.desc-detail03 {
  padding-top: 20px;
}
.desc-illustration-q01 .desc-detail.desc-detail04 {
  padding-top: 15px;
}
.desc-illustration-q01 .desc-detail.desc-detail05 {
  padding-top: 17px;
}
.desc-illustration-q01 .desc-detail.desc-detail06 {
  padding-top: 20px;
}
.desc-illustration-q01 .desc-detail.desc-detail08 {
  padding-top: 22px;
}
.desc-illustration-q01 .desc-detail.desc-detail09 {
  padding-top: 17px;
}
.desc-illustration-q01 .desc-detail.desc-detail10 {
  padding-top: 6px;
}
.desc-illustration-q01 .desc-detail.desc-detail11 {
  padding-top: 22px;
}
.desc-illustration-q01 .desc-detail.desc-detail12 {
  padding-top: 22px;
}
.desc-illustration-q01 .desc-detail.desc-detail13 {
  padding-top: 22px;
}
.desc-illustration-q01 .desc-detail.desc-detail14 {
  padding-top: 22px;
}
.desc-illustration-q01 .desc-detail.desc-detail15 {
  padding-top: 22px;
}
.desc-illustration-q01 .desc-detail.desc-detail16 {
  padding-top: 22px;
}

.desc-illustration-q01 .thumb {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}
.desc-illustration-q01 .thumb.thumb01 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb01 img {
  width: 203px;
  margin-left: 92px;
}
.desc-illustration-q01 .thumb.thumb02 {
  margin-top: -15px;
}
.desc-illustration-q01 .thumb.thumb02 img {
  width: 618px;
  margin-left: 31px;
}
.desc-illustration-q01 .thumb.thumb03 {
  margin-top: 27px;
}
.desc-illustration-q01 .thumb.thumb03 img {
  width: 284px;
  margin-left: 75px;
}
.desc-illustration-q01 .thumb.thumb04 {
  margin-top: 23px;
}
.desc-illustration-q01 .thumb.thumb04 img {
  width: 585px;
}
.desc-illustration-q01 .thumb.thumb05 {
  margin-top: 22px;
}
.desc-illustration-q01 .thumb.thumb06 {
  margin-top: 18px;
  margin-bottom: 18px;
}
.desc-illustration-q01 .thumb.thumb07 {
  margin-top: 22px;
}
.desc-illustration-q01 .thumb.thumb08 {
  margin-top: 20px;
}
.desc-illustration-q01 .thumb.thumb09 {
  margin-top: 20px;
}
.desc-illustration-q01 .thumb.thumb05 img, .desc-illustration-q01 .thumb.thumb06 img, .desc-illustration-q01 .thumb.thumb07 img, .desc-illustration-q01 .thumb.thumb08 img, .desc-illustration-q01 .thumb.thumb09 img {
  width: 583px;
}
.desc-illustration-q01 .thumb.thumb10 {
  margin-top: 5px;
}
.desc-illustration-q01 .thumb.thumb10 img {
  width: 395px;
  margin-left: 112px;
}
.desc-illustration-q01 .thumb.thumb12 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb12 img {
  width: 474px;
  margin-left: 92px;
}
.desc-illustration-q01 .thumb.thumb13 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb13 img {
  width: 400px;
  margin-left: 92px;
}
.desc-illustration-q01 .thumb.thumb13 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb13 img {
  width: 400px;
  margin-left: 92px;
}
.desc-illustration-q01 .thumb.thumb14 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb14 img {
  width: 400px;
  margin-left: 92px;
}
.desc-illustration-q01 .thumb.thumb15 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb15 img {
  width: 750px;
  margin-left: 10px;
}
.desc-illustration-q01 .thumb.thumb16 {
  margin-top: 15px;
}
.desc-illustration-q01 .thumb.thumb16 img {
  width: 400px;
  margin-left: 10px;
}


.flex-block {
  margin: 3px 0;
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.flex-block.flex-end {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-block.flex-block01 {
  margin-top: 15px;
  margin-bottom: 6px;
}
.flex-block.flex-block02 {
  margin-top: 26px;
}
.flex-block.flex-block03 {
  margin-top: 8px;
}
.flex-block.flex-block04 {
  margin-bottom: 22px;
}
.flex-block.flex-block05 {
  margin: 9px 0;
}
.flex-block.flex-block06 {
  margin: 17px 0 9px;
}
.flex-block.flex-block08 {
  margin: 9px 0 15px;
}
.flex-block.flex-block09 {
  margin: 12px 0 7px;
}
.flex-block.flex-block09 .desc-flex {
  padding-top: 10px;
}
.flex-block .icon {
  width: 44px;
  height: 44px;
}
.flex-block .desc-flex {
  padding-left: 10px;
}

@media (max-width: 750px) {
  .desc-illustration {
    display: block;
    margin-top: 0.2rem;
  }
  .desc-illustration .thumb {
    width: 100%;
    text-align: center;
  }
  .desc-illustration .thumb img {
    width: 3.38rem;
  }
  .desc-illustration .desc {
    margin-top: 0.2rem;
  }

  .list-link-illustration {
    margin-top: 0.2rem;
  }
  .list-link-illustration .item {
    margin: 0.1rem 0;
  }
  .list-link-illustration .link-item {
    padding-left: 0.3rem;
    font-size: 0.24rem;
  }
  .list-link-illustration .link-item:after {
    width: 0.3rem;
    height: 0.3rem;
  }

  .txt-large {
    font-size: 0.24rem;
  }

  .txt-vrbig {
    font-size: 0.3rem;
  }

  .desc-illustration-q01 {
    margin-top: 0.2;
  }
  .desc-illustration-q01 .desc-detail {
    padding-top: 0.1rem;
    padding-left: 0;
  }
  .desc-illustration-q01 .thumb {
    margin-top: 0.4rem;
  }
  .desc-illustration-q01 .thumb.thumb01 img {
    width: 2.03rem;
  }
  .desc-illustration-q01 .thumb.thumb02 img {
    width: 6.18rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb03 img {
    width: 2.84rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb04 img {
    width: 5.85rem;
  }
  .desc-illustration-q01 .thumb.thumb05 img, .desc-illustration-q01 .thumb.thumb06 img, .desc-illustration-q01 .thumb.thumb07 img, .desc-illustration-q01 .thumb.thumb08 img, .desc-illustration-q01 .thumb.thumb09 img {
    width: 5.83rem;
  }
  .desc-illustration-q01 .thumb.thumb10 img {
    width: 3.95rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb12 img {
    width: 5.85rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb13 img {
    width: 5.0rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb14 img {
    width: 5.0rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb15 img {
    width: 5.85rem;
    margin-left: 0;
  }
  .desc-illustration-q01 .thumb.thumb16 img {
    width: 5.85rem;
    margin-left: 0;
  }

  .flex-block .icon {
    width: 0.88rem;
    height: 0.88rem;
  }
  .flex-block .desc-flex {
    padding-left: 0.15rem;
    width: 85%;
  }
}
.txt-green {
  color: #009bbd;
}

.txt-black {
  color: #000;
}

.section-desc-present .title-present {
  margin-top: 17px;
  width: 100%;
  text-align: center;
}
.section-desc-present .title-present img {
  width: 541px;
}

.desc-detail-present {
  margin-top: 12px;
}

.list-step {
  margin-top: 15px;
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
}
.list-step .item {
  width: 286px;
  margin-right: 20px;
}
.list-step .item:last-child {
  margin-right: 0;
}
.list-step .item:nth-child(1) .thumb-step img {
  width: 96px;
}
.list-step .item:nth-child(1) .number-step img {
  width: 20px;
}
.list-step .item:nth-child(2) .thumb-step img {
  width: 284px;
}
.list-step .item:nth-child(2) .number-step img {
  width: 13px;
}
.list-step .item:nth-child(3) .thumb-step img {
  width: 284px;
}
.list-step .item:nth-child(3) .number-step img {
  width: 13px;
}
.list-step .item .thumb-step {
  width: 286px;
  height: 215px;
  border: 1px solid #ddddde;
  position: relative;
}
.list-step .item .thumb-step img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.list-step .item .desc-step {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
.list-step .item .name {
  width: 100%;
  height: 65px;
}
.list-step .item .name .txt-name {
  width: 286px;
  height: 62px;
  display: table-cell;
  vertical-align: middle;
  letter-spacing: -0.09em;
  white-space: nowrap;
  line-height: 1.5;
}
.list-step .item .number-step img,
.list-step .item .number-step span {
  display: inline-block;
  vertical-align: middle;
}
.list-step .item .number-step span {
  padding-left: 10px;
}

.content-bottom-block {
  width: 100%;
  text-align: center;
  margin-top: 44px;
}
.content-bottom-block .thumb-bottom {
  width: 496px;
}

.section-desc-present .btn-q01 {
  margin-top: 16px;
  background-image: url(../img/present/btn01.png);
}

@media (max-width: 750px) {
  .section-desc-present .title-present {
    margin-top: 0.15rem;
  }
  .section-desc-present .title-present img {
    width: 5.41rem;
  }

  .list-step {
    display: block;
  }
  .list-step .item {
    width: 100%;
    margin-right: 0;
  }
  .list-step .item:nth-child(1) .thumb-step img {
    width: 1.5rem;
  }
  .list-step .item:nth-child(1) .number-step img {
    width: 0.3rem;
  }
  .list-step .item:nth-child(2) .thumb-step img {
    width: 4.5rem;
  }
  .list-step .item:nth-child(2) .number-step img {
    width: 0.3rem;
  }
  .list-step .item:nth-child(3) .thumb-step img {
    width: 4.5rem;
  }
  .list-step .item:nth-child(3) .number-step img {
    width: 0.2rem;
  }
  .list-step .item .desc-step {
    font-size: 0.28rem;
    padding: 0.2rem 0;
  }
  .list-step .item .name {
    height: auto;
    padding: 0.2rem 0;
  }
  .list-step .item .name .txt-name {
    width: 100%;
    display: block;
    height: auto;
    letter-spacing: normal;
  }
  .list-step .item .thumb-step {
    width: 100%;
    height: 4rem;
  }

  .content-bottom-block {
    margin-top: 0.4rem;
  }
  .content-bottom-block .thumb-bottom {
    width: 100%;
  }

  .section-desc-present .btn-q01 {
    margin-top: 0.16rem;
  }
}
.desc-episode {
  margin-top: 15px;
}

.desc-detail-episode {
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}
.desc-detail-episode .item {
  width: 50%;
  margin-bottom: 43px;
}
.desc-detail-episode .item .thumb {
  float: left;
}
.desc-detail-episode .item .thumb img {
  width: 122px;
}
.desc-detail-episode .item .desc-item {
  float: left;
}
.desc-detail-episode .desc-item {
  padding-left: 10px;
}
.desc-detail-episode .desc-item .title {
  line-height: 1.4;
  font-weight: 500;
}
.desc-detail-episode .desc-item .desc {
  font-size: 9px;
  line-height: 1.4;
  padding-top: 15px;
}

@media (max-width: 750px) {
  .desc-episode {
    margin-top: 0.15rem;
  }

  .desc-detail-episode {
    display: block;
    margin-top: 0.3rem;
  }
  .desc-detail-episode .item {
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .desc-detail-episode .item .thumb {
    width: 30%;
    text-align: center;
  }
  .desc-detail-episode .item .thumb img {
    width: 1.8rem;
    max-width: 100%;
  }
  .desc-detail-episode .desc-item {
    width: 70%;
    padding-left: 0.1rem;
  }
  .desc-detail-episode .desc-item .desc {
    font-size: 0.15rem;
    padding-top: 0.1rem;
  }
}
/* STYLE P01 PAGE
 * ----------------------------------------------- */
.bgd-pink02 {
  background-color: #f9bfb3;
}

.section-topic-top {
  margin-top: 13px;
}

.content-topic-episode {
  width: 100%;
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
}
.content-topic-episode .thumb {
  width: 92px;
}
.content-topic-episode .thumb img {
  width: 100%;
}
.content-topic-episode .desc-topic {
  padding-left: 12px;
  padding-top: 22px;
}
.content-topic-episode .desc-topic .title-small {
  font-size: 10.5px;
  line-height: 1;
  padding-bottom: 5px;
}
.content-topic-episode .desc-topic .title {
  font-size: 18px;
  line-height: 1;
}
.content-topic-episode .desc-topic .desc {
  padding-top: 15px;
  font-size: 12px;
  line-height: 1.5;
}

.section-content-episode-p01 .desc-block {
  margin-top: 8px;
}
.section-content-episode-p01 .desc-episode-p01 {
  margin: 14px 0 17px;
  line-height: 1.7;
}
.section-content-episode-p01 .thumb {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.section-content-episode-p01 .thumb01 img {
  width: 784px;
}
.section-content-episode-p01 .thumb02 {
  margin-top: -16px;
}
.section-content-episode-p01 .thumb02 img {
  width: 595px;
}
.section-content-episode-p01 .thumb03 img {
  width: 595px;
}

.list-thumb {
  margin-top: 37px;
  width: 100%;
  text-align: center;
}
.list-thumb .thumb-item {
  display: inline-block;
  margin: 0 14px;
  width: 306px;
}

@media (max-width: 750px) {
  .section-topic-top {
    margin-top: 0.2rem;
  }

  .content-topic-episode .thumb {
    width: 1rem;
  }
  .content-topic-episode .desc-topic {
    padding-left: 0.1rem;
    padding-top: 0.1rem;
  }
  .content-topic-episode .desc-topic .title {
    font-size: 0.24rem;
  }
  .content-topic-episode .desc-topic .desc {
    padding-top: 0.1rem;
    font-size: 0.22rem;
  }

  .section-content-episode-p01 .desc-block {
    margin-top: 0.2rem;
  }
  .section-content-episode-p01 .desc-episode-p01 {
    margin-top: 0.2rem;
  }
  .section-content-episode-p01 .thumb {
    margin-bottom: 0.3rem;
  }
  .section-content-episode-p01 .thumb01 img,
  .section-content-episode-p01 .thumb02 img,
  .section-content-episode-p01 .thumb03 img {
    width: 100%;
  }

  .list-thumb {
    margin-top: 0.3rem;
  }
  .list-thumb .thumb-item {
    display: block;
    margin: 0.3rem auto;
    width: 80%;
  }
}
.desc-content-greeting {
  margin-top: 13px;
  position: relative;
  width: 100%;
}
.desc-content-greeting .thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 202px;
}
.desc-content-greeting .desc {
  padding-bottom: 19px;
}
.desc-content-greeting .desc.author {
  width: 100%;
  text-align: right;
}
.desc-content-greeting .desc .name-author {
  font-size: 16px;
}

.block-reeting-bottom {
  margin-top: 9px;
  padding: 16px 0 9px 13px;
  border: 3px solid #d8662e;
  width: 481px;
}
.block-reeting-bottom .title {
  font-size: 14px;
  line-height: 1;
  color: #d8662e;
}
.block-reeting-bottom .desc {
  padding-top: 15px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.block-reeting-bottom .thumb {
  margin: 11px auto 0;
  width: 100%;
  text-align: center;
}
.block-reeting-bottom .thumb img {
  width: 166px;
}

@media (max-width: 750px) {
  .block-reeting-bottom {
    margin-top: 0.3rem;
    padding: 0.2rem;
    width: 100%;
  }
  .block-reeting-bottom .title {
    font-size: 0.24rem;
  }
  .block-reeting-bottom .desc {
    padding-top: 0.15rem;
    white-space: normal;
  }
  .block-reeting-bottom .thumb {
    margin-top: 0.15rem;
  }
  .block-reeting-bottom .thumb img {
    width: 1.66rem;
  }

  .desc-content-greeting {
    width: 100%;
    text-align: center;
  }
  .desc-content-greeting .thumb {
    position: static;
    width: 2.02rem;
    margin: 0.3rem auto 0.2rem;
  }
  .desc-content-greeting .desc {
    padding-bottom: 0.15rem;
    text-align: left;
  }
  .desc-content-greeting .desc .name-author {
    font-size: 0.26rem;
  }
}
.section-content-history {
  width: 100%;
  /*tex-align: center;*/
}
.section-content-history .txt-history {
  width: 190px;
  margin: 100px auto;
}
.section-content-history .txt-history img {
  width: 100%;
}

@media (max-width: 750px) {
  .section-content-history .txt-history {
    margin: 1rem auto;
    width: 1.9rem;
  }
}
.bgd-grey {
  background-color: #ccc;
}

.section-content-sns {
  margin-top: 37px;
}

.list-link-social {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.list-link-social .link-item {
  display: block;
  margin-bottom: 10px;
}
.list-link-social .link-item a {
  display: inline-block;
}
.list-link-social .link-item img {
  width: 274px;
}

@media (max-width: 750px) {
  .section-content-sns {
    margin-top: 0.5rem;
  }

  .list-link-social {
    margin-top: 0.3rem;
  }
  .list-link-social .link-item {
    margin-bottom: 0.1rem;
  }
  .list-link-social .link-item img {
    width: 5.48rem;
  }

  .block-social {
    text-align: center;
  }

  .block-social .icon-social {
    width: 1.125rem;
  }
}

/* History update */


.section-content-history .explain {
  margin: 11px 0 6px;
}
.section-content-history .explain dt,
.section-content-history .explain dd {
  display: inline-block;
  vertical-align: top;
  font-weight: 600;
}
.section-content-history .explain dt {
  margin-left: 10px;
}
.section-content-history .explain .green-text {
  color: #378719;
}
.section-content-history .explain .blue-text {
  color: #2d64c3;
}
.history-period {
  margin-bottom: 35px;
}
.history-period .table {
  width: 100%;
}
.history-period .table td,
.history-period .table th {
  border: 1px solid #477573;
  vertical-align: middle;
}

.history-period .table td.no-border {
  border-bottom: 0;
}
.history-period .table thead th {
  color: #fff;
  background: #477573;
  border-color: #fff;
  text-align: center;
  padding: 8px;
  border-top: 0;
  border-bottom: 0;
}
.history-period .table thead th:first-child {
  border-left-color: #477573;
}
.history-period .table thead th:last-child {
  border-right-color: #477573;
}
.history-period .table tbody td {
  padding: 5px;
  height: 40px;

}
.history-period .table tbody td.col01 {
  vertical-align: top;
  padding-top: 13px;
}
.history-period .table tbody td.col01,
.history-period .table tbody td.col02 {
  color: #477573;
  font-weight: bold;
  text-align: center;
}
.history-period .table tbody td.col01,
.history-period .table tbody td.col05 {
  background-color: #e3eaea;
}
.history-period a {
  display: inline-block;
}
.history-period img {
  display: inline-block;
  vertical-align: middle;
  /*max-width: 100%;*/
}
.history-period .table .table-caption td {
  color: #fff;
  background: #f29c9f;
  padding: 0 6px;
  border-color: #f29c9f;
  /*border-right-color: #f29c9f;*/
}
.history-period .table-caption strong {
  font-size: 1.6em;
  display: inline-block;
  vertical-align: middle;
}
.history-period .table .col01 {
  width: 115px;
  padding-left: 0;
  padding-right: 0;
}
.history-period .table .col02 {
  width: 56px;
  padding-left: 0;
  padding-right: 0;
  white-space: nowrap;
}

.history-period .table .col03 {
  width: 320px;
}
.history-period .table .col04 {
  width: 227px;
}
.history-period tbody .col05 .month {
  color: #477573;
}
.history-period tbody .col03 {
  font-weight: 600;
  background: #fcf5d5;
}

.h-full {
  height: 536px;
}

.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .highlight {
  color: #2d64c3;
  cursor: pointer;
}
.tooltip .popup {
  /*content: attr(data-title);*/
  position: absolute;
  background: #fff;
  border: 1px solid #2d64c3;
  padding: 6px 10px;
  font-size: 10.5px;
  display: none;
  z-index: 999;
  width: auto;
  white-space: nowrap;
}

.txt-green {
  color: #378719;
  font-weight: bold;
}

.history-period a.txt-link {
  color: #2d64c3;
  font-weight: bold;
  display: inline;
  text-decoration: underline;
}
.history-period a.txt-link.txt-green {
  color: #378719;
}
.history-period a.txt-link.txt-black {
  color: #000;
}

.tooltip.right-mid .popup {
  left: 100%;
  margin-left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.left-bot .popup {
  left: 0;
  top: 100%;
  margin-top: 6px;
}
.tooltip:before {
  content: "";
  position: absolute;
  display: none;
}
.tooltip.right-mid:before {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 5px dashed #2d64c3;
  left: 100%;
  margin-left: 9px;
  top: 4px;
}
.tooltip.left-bot:before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 5px dashed #2d64c3;
  top: 100%;
  margin-top: 1px;
  left: 14px;
}
.tooltip:hover:before,
.tooltip:hover .popup {
  display: block;
}


.modal-open.pos-advance {
  position: relative;
}
.modal-open.pos-advance img {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: none;
}


.modal-overlay {
  z-index:2;
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;/*for old Safari*/
  height:100vh;
  background-color:rgba(0,0,0,.5)
}
.modal-overlay (:target) {height:100%\9} /* IE9,10 */

a.modal-open:hover {cursor:pointer}

.modal-content {
  position: fixed;
  display: none;
  z-index: 3;
  /*margin:10px;*/
  /*padding: 80px;*/
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal-content img {
  width:auto;
  /*max-height:70vh*/
}
.modal-content h1 {font-size:120%; margin-bottom:0.5em}
.modal-content p {max-width:565px; text-align:left}
a.modal-close {
  position:absolute;
  top:0;
  right:10px;
  color:#b29c33;
  font-size:35px;
  line-height:1;
  font-weight:bold;
  text-decoration:none
}
a.modal-close:hover {
  cursor:pointer;
  opacity:.6
}
@media screen and (max-height: 640px) {
  .modal-content {padding:10px}
  .modal-content h1 {font-size:100%; margin-bottom:3px}
  .modal-content p {font-size:75%;width:70%; margin:auto}
  a.modal-close:hover {opacity:1}
}
@media screen and (max-width: 640px) {
  .modal-content {padding:10px}
  .modal-content img {max-height:inherit; width:100%; height:auto}
  .modal-content p {font-size:75%; width:100%;}
  a.modal-close:hover {opacity:1}
}

.modal-open.pos-advance.pos06 img {
  left: 0px;
  top: -33px;
}

.modal-open.pos-advance.pos06-02 img {
  left: 40px;
  top: 0;
}


.modal-open.pos-advance.pos07 img {
  left: 25px;
  top: -9px;
}
.modal-open.pos-advance.pos31 img {
  bottom: -15px
}
.modal-open.pos-advance.pos32 img {
  bottom: -5px;
  left: 168px;
}
.modal-open.pos-advance.pos33 img {
  left: 23px;
  bottom: -16px;
}
.modal-open.pos-advance.pos35 img {
  bottom: -12px;
  left: -14px;
}
.modal-open.pos-advance.pos62 img {
  bottom: -14px;
}
.modal-open.pos-advance.pos54 img {
  bottom: -22px;
  left: 30px;
}
.modal-open.pos-advance.pos49 img {
  bottom: -4px;
  left: 153px;
}
.modal-open.pos-advance.pos66 img {
  bottom: -10px;
  left: -6px;
}
.modal-open.pos-advance.pos72 img {
  bottom: 0;
  left: 304px
}
.modal-open.pos-advance.pos73 img {
  bottom: -10px;
  left: 221px;
}
.modal-open.pos-advance.pos74 img {
  bottom: -15px;
  left: -12px;
}

.modal-open.pos-advance.pos76 {
  width: 100%;
  display: block;
}
.modal-open.pos-advance.pos76 img {
  bottom: -18px;
  left: auto;
  right: 40px
}
.modal-open.pos-advance.pos79 {
  margin-left: 50px;
}
.modal-open.pos-advance.pos99 {

  width: 80%
}

.modal-open.pos-advance.pos99 img {
  bottom: 10px;
  left: auto;
  right: 0;
}

.modal-open.pos-advance.pos49 {
  width: 80%;
}

.modal-open.pos-advance.pos49 img {
  left: auto;
  right: 0;
  bottom: 12px;
}

.history-period .table .col02.no-border {
  border-top: 0;
  border-bottom: 0;
}

/*update 07-12-2018*/

.list-menu {
  -ms-flex-pack: justify;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-justify-content: center;
  justify-content: center;
}


.sec-title {
  font-size: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
}

.content-anniversary {
  padding-top: 25px;
  width: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.content-anniversary .desc-left {
  width: 557px;
}

.content-anniversary .desc-left .desc {
  padding-top: 26px;
}
.content-anniversary .desc-left .desc p {
  text-indent: 13px;
}

.content-anniversary .author {
  margin-top: 37px;
}

.content-anniversary .author .name-author {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  margin-left: 9px;
}

.content-anniversary .desc {
  font-size: 12px;
  line-height: 1.667;
}

.content-anniversary .desc-right {
  margin-top: 50px;
  margin-right: 3px;
  padding: 21px 25px 31px;
  width: 320px;
  border: 2px solid #d76228;
}
.content-anniversary .desc-right .desc {
  padding-top: 38px;
}
.content-anniversary .thumb-desc {
  margin-top: 40px;
  display: block;
  text-align: center;
}

.content-anniversary .thumb-desc img {
  margin: 0 auto;
  width: 166px;
}


.section-content-history {
  margin-top: 68px;
}

.section-content-history .explain {
  font-size: 12px;
}


.flex-block .desc-flex {
  width: 768px;
}

.ie9 .list-menu, .ie10 .list-menu {
  padding-left: 25px
}

@media (max-width: 750px) {
  .flex-block .desc-flex {
      width: 85%;
  }
}
