@charset "UTF-8";
/* ===============
***
***	LAYOUT
***
=================*/
#container {
  position: relative;
  width: 100%;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  padding-top: 120px;
  min-width: 1170px;
}

#container #wrapper {
  position: relative;
  min-height: 500px;
}

@media screen and (max-width: 960px) {
  #container {
    overflow: hidden;
    padding-top: 20px;
    min-width: 1px;
  }
}

#fixed {
  position: fixed;
  right: 0;
  bottom: 50%;
  z-index: 10;
  width: 80px;
  height: 460px;
  margin-bottom: -230px;
  -webkit-box-shadow: 0 0 26px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.1);
  background: #fff;
}

#fixed a {
  display: block;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#fixed a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  #fixed {
    width: 86%;
    height: auto;
    right: 7%;
    bottom: 3%;
    margin-bottom: 0;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

#container .inner {
  width: 1170px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 960px) {
  #container .inner {
    width: 83%;
  }
}

h3.border {
  position: relative;
  padding-bottom: 30px;
}

h3.border:after {
  content: "";
  width: 100px;
  height: 6px;
  background: #009bdb;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 960px) {
  h3.border {
    padding-bottom: 20px;
  }
  h3.border:after {
    height: 4px;
    width: 30%;
  }
}

p {
  font-size: 12pt;
  line-height: 2em;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  p {
    font-size: 4vw;
  }
}

p.lead {
  text-align: center;
  font-weight: bold;
  margin-bottom: 100px;
  font-size: 17pt;
}

@media screen and (max-width: 960px) {
  p.lead {
    margin-bottom: 50px;
    text-align: left !important;
    font-size: 3.5vw;
  }
}

p.small {
  text-align: center;
  font-size: 9.6pt;
  line-height: 2em;
}

@media screen and (max-width: 960px) {
  p.small {
    text-align: left;
    font-size: 3.5vw;
  }
}

p.anno {
  font-size: 11.2pt;
}

@media screen and (max-width: 960px) {
  p.anno {
    font-size: 3vw;
  }
}

.btn_blue {
  display: inline-block;
  background: url(../IMAGES/COMMON/arrow_white_right.png) right 40px center/10px auto no-repeat #009bdb;
  padding: 0 40px;
  width: 410px;
  height: 100px;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}

.btn_blue img {
  height: 21px;
}

.btn_blue:hover {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  .btn_blue {
    width: 83% !important;
    padding: 0 10%;
    height: 15vw;
    background-position: right 10% center;
  }
  .btn_blue img {
    width: auto;
    height: 3.5vw;
  }
}

.btn_blue.btn_blue_border {
  border: solid 1px #009bdb;
  background-color: #fff;
  background-image: url(../IMAGES/COMMON/arrow_blue_down.png);
  background-size: 18px auto;
}

.btn_blue.btn_blue_w550 {
  width: 470px;
}

.link_border {
  display: block;
  padding: 24px 0;
  border-bottom: solid 6px #000;
  background: url(../IMAGES/COMMON/arrow_black_right.png) right center/9px auto no-repeat;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
  .link_border {
    padding: 3vw 0;
  }
}

.link_border:last-child {
  margin-bottom: 0;
}

.link_border img {
  height: 21px;
}

@media screen and (max-width: 960px) {
  .link_border img {
    height: 4vw;
  }
}

.link_border:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 1;
  width: 100px;
  height: 6px;
  display: block;
  background: #009bdb;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.link_border:hover:after {
  width: 100%;
}

@media screen and (max-width: 960px) {
  button.btn_blue {
    width: 100% !important;
  }
}

section, form {
  position: relative;
  box-sizing: border-box;
}

section.bg-gray, form.bg-gray {
  background: #f8f8f8;
}

section.p100, form.p100 {
  padding: 100px 0;
}

@media screen and (max-width: 960px) {
  section.p100, form.p100 {
    padding: 10vw 0;
  }
}

section.p160, form.p160 {
  padding: 160px 0;
}

@media screen and (max-width: 960px) {
  section.p160, form.p160 {
    padding: 16vw 0;
  }
}

section h2, form h2 {
  text-align: center;
  margin-bottom: 50px;
}

section h2 img, form h2 img {
  width: 510px;
}

.over {
  position: absolute;
  left: 50%;
  bottom: -50px;
  margin-left: -245px;
  z-index: 1;
}

.over > figure {
  margin-bottom: 20px;
  text-align: center;
}

.over.static {
  position: static;
  margin-left: 0;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .over {
    width: 83%;
    left: 8.5vw;
    bottom: -8vw;
    margin-left: 0;
  }
  .over.static {
    margin-left: 8.5vw;
  }
}

@media screen and (max-width: 960px) {
  .over_issp {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -8vw;
    margin-left: 0;
    z-index: 1;
  }
  .over_issp.static {
    margin-left: 8.5vw;
  }
}

.w550 {
  width: 550px;
}

@media screen and (max-width: 960px) {
  .w550 {
    width: 100%;
  }
}

.w585 {
  width: 585px;
}

@media screen and (max-width: 960px) {
  .w585 {
    width: 100%;
  }
}

/* ===============
***
***	ヘッダ
***
=================*/
#container header#glheader {
  width: 100%;
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 11;
  background: #fff;
  min-width: 1170px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (max-width: 960px) {
  #container header#glheader {
    height: 90px;
    min-width: initial;
  }
}

#container header#glheader.fixed {
  position: fixed;
  top: -120px;
}

#container header#glheader.open {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#container header#glheader h1 {
  width: 270px;
  padding-top: 30px;
  padding-left: 30px;
  margin-right: 30px;
}

@media screen and (max-width: 960px) {
  #container header#glheader h1 {
    width: 50%;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 11;
  }
}

#container header#glheader nav#glnav {
  padding-right: 30px;
}

#container header#glheader nav#glnav > div {
  width: 100%;
  height: 100%;
}

#container header#glheader nav#glnav ul {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#container header#glheader nav#glnav ul > li {
  margin-left: 25px;
}

#container header#glheader nav#glnav ul > li > a {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  height: 100%;
  position: relative;
}

#container header#glheader nav#glnav ul > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #009bdb;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#container header#glheader nav#glnav ul > li > a:hover:after {
  width: 100%;
}

#container header#glheader nav#glnav ul > li.on a:after {
  width: 100%;
}

@media screen and (max-width: 960px) {
  #container header#glheader nav#glnav {
    display: block !important;
    position: fixed;
    right: -100vw;
    top: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding-right: 0;
  }
  #container header#glheader nav#glnav > div {
    overflow: auto;
    margin-top: 90px;
    height: 85vh;
  }
  #container header#glheader nav#glnav ul {
    display: block;
    background: #fff;
    height: auto;
    padding-bottom: 5vw;
  }
  #container header#glheader nav#glnav ul li {
    margin-left: 0;
  }
  #container header#glheader nav#glnav ul li a {
    padding: 20px 0;
    text-align: left;
    display: block;
    padding-left: 10%;
  }
  #container header#glheader nav#glnav ul li a:after {
    width: 7px !important;
    height: 0;
  }
  #container header#glheader nav#glnav ul li:nth-child(odd) a {
    background: #EDF6FC;
  }
  #container header#glheader nav#glnav ul li.on a:after {
    display: none;
  }
  #container header#glheader nav#glnav ul li.menu {
    background: #009bdb;
  }
  #container header#glheader nav#glnav ul li.menu span {
    display: block;
    height: 100%;
    position: relative;
    background: #009bdb;
    padding: 20px 0;
    padding-left: 10%;
  }
  #container header#glheader nav#glnav ul li.menu span img {
    height: 15px;
  }
}

#container header#glheader a#header_login {
  display: none;
}

#container header#glheader a#spnav {
  z-index: 11;
}

@media screen and (max-width: 320px) {
  #container header#glheader {
    height: 60px;
  }
  #container header#glheader h1 {
    padding-top: 12px;
  }
  #container header#glheader a#spnav {
    top: 2vw;
  }
  #container header#glheader nav#glnav > div {
    margin-top: 60px;
  }
  #container header#glheader nav#glnav ul li a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.pankuzu {
  padding: 15px 40px;
  background: #009bdb;
}

.pankuzu ul li {
  padding-right: 30px;
  margin-right: 17px;
  background: url(../IMAGES/COMMON/arrow_white_right.png) right center/7px auto no-repeat;
  display: inline-block;
}

.pankuzu ul li a, .pankuzu ul li span {
  color: #fff;
  text-decoration: none;
  font-size: 11pt;
  line-height: 1em;
}

.pankuzu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
  background: none;
}

.glnav ul li {
  position: relative;
}

.glnav ul li .sub {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  z-index: 2;
  overflow: hidden;
  height: 0;
}

.glnav ul li .sub ol {
  display: block !important;
  padding: 0 !important;
}

.glnav ul li .sub ol li {
  background: #009bdb;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  margin-left: 0 !important;
  height: initial !important;
}

.glnav ul li .sub ol li:last-child {
  border-bottom: none;
}

.glnav ul li .sub ol li a {
  display: block !important;
  padding: 25px 20px !important;
  text-align: left;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.glnav ul li .sub ol li a:hover {
  opacity: 0.7;
}

.glnav ul li.nav-lineup .sub {
  width: 250px !important;
}

@media screen and (max-width: 960px) {
  .glnav ul li .sub {
    position: static;
    height: auto !important;
    width: 100% !important;
  }
  .glnav ul li .sub ol li {
    border-bottom: none;
  }
  .glnav ul li .sub ol li a {
    padding-top: 2vw !important;
    padding-bottom: 2vw !important;
    padding-left: 10% !important;
  }
  .glnav ul li .sub ol li a img {
    height: 2vw;
  }
  .glnav ul li .sub ol li:last-child a {
    padding-bottom: 4vw !important;
  }
  .glnav ul li.nav-lineup > a {
    padding-bottom: 8px !important;
  }
  .glnav ul li.nav-lineup .sub {
    width: 100% !important;
  }
}

/* ===============
***
***	フッタ
***
=================*/
footer ul#footer_alias {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

footer ul#footer_alias li {
  width: 100%;
}

footer ul#footer_alias li a {
  display: block;
  height: 340px;
  background: #2dbbf5;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

footer ul#footer_alias li a:hover {
  opacity: 0.7;
}

footer ul#footer_alias li a img {
  width: 202px;
}

footer ul#footer_alias li#footer_alias_faq a {
  background: #009bdb;
}

footer ul#footer_alias li#footer_alias_contact a {
  background: #0184ba;
}

footer ul#footer_alias li#footer_alias_contact a.sp-flex {
  display: none;
}

@media screen and (max-width: 960px) {
  footer ul#footer_alias li#footer_alias_contact a.wd-flex {
    display: none;
  }
  footer ul#footer_alias li#footer_alias_contact a.sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 960px) {
  footer ul#footer_alias {
    display: block;
  }
  footer ul#footer_alias li a {
    height: auto;
    padding: 5vw 0;
  }
  footer ul#footer_alias li a img {
    width: auto;
    width: 30vw;
  }
}

@media screen and (max-width: 960px) {
  footer #footer_regist a {
    width: 83%;
    display: inline-block;
  }
  footer #footer_regist a img {
    width: 100%;
  }
}

footer #footer_bottom {
  background: #000;
  padding: 100px 0 160px;
}

@media screen and (max-width: 960px) {
  footer #footer_bottom {
    padding: 50px 0 80px;
  }
}

footer #footer_bottom .footer_column {
  width: 340px;
}

@media screen and (max-width: 960px) {
  footer #footer_bottom .footer_column {
    width: 90%;
    margin: auto;
  }
}

footer #footer_bottom .inner {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

footer #footer_bottom .inner .sitemap {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 755px;
}

footer #footer_bottom .inner .sitemap #footer_nav ul li {
  border-bottom: solid 1px #ccc;
  margin-bottom: 26px;
}

footer #footer_bottom .inner .sitemap #footer_nav ul li a {
  display: block;
  padding: 20px 0;
  background: url(../IMAGES/COMMON/arrow_white_right.png) right center/9px auto no-repeat;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

footer #footer_bottom .inner .sitemap #footer_nav ul li a img {
  height: 16px;
}

footer #footer_bottom .inner .sitemap #footer_nav ul li a:hover {
  opacity: 0.7;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra ul {
  margin-bottom: 80px;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra ul li {
  margin-bottom: 30px;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra ul li:last-child {
  margin-bottom: 0;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra ul li a {
  color: #999;
  text-decoration: none;
  font-size: 10.5pt;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra #footer_link a {
  display: block;
  background: #464646;
  text-align: center;
  height: 70px;
  margin-bottom: 30px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  border-radius: 5px;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra #footer_link a:last-child {
  margin-bottom: 0;
}

footer #footer_bottom .inner .sitemap #footer_nav_extra #footer_link a img {
  height: 16px;
}

footer #footer_bottom .inner #copyright > a {
  display: inline-block;
  width: 184px;
  margin-bottom: 50px;
}

footer #footer_bottom .inner #copyright > p img {
  height: 15px;
}

@media screen and (max-width: 960px) {
  footer #footer_bottom .inner {
    display: block;
  }
  footer #footer_bottom .inner .sitemap {
    display: block;
    width: 100%;
  }
  footer #footer_bottom .inner .sitemap #footer_nav {
    margin-bottom: 60px;
  }
  footer #footer_bottom .inner .sitemap #footer_nav ul li {
    margin-bottom: 15px;
  }
  footer #footer_bottom .inner .sitemap #footer_nav ul li a {
    padding: 15px 0;
  }
  footer #footer_bottom .inner .sitemap #footer_nav ul li a img {
    height: 14px;
  }
  footer #footer_bottom .inner .sitemap #footer_nav_extra {
    margin-bottom: 50px;
  }
  footer #footer_bottom .inner .sitemap #footer_nav_extra ul {
    margin-bottom: 40px;
  }
  footer #footer_bottom .inner .sitemap #footer_nav_extra #footer_link a {
    height: 55px;
    margin-bottom: 20px;
  }
  footer #footer_bottom .inner .sitemap #footer_nav_extra #footer_link a img {
    height: 14px;
  }
  footer #footer_bottom .inner #copyright {
    width: 80%;
    margin: auto;
    text-align: center;
  }
  footer #footer_bottom .inner #copyright > a {
    text-align: center;
    margin-bottom: 20px;
  }
  footer #footer_bottom .inner #copyright > a img {
    width: 60%;
  }
  footer #footer_bottom .inner #copyright > p img {
    height: auto;
    width: 100%;
  }
}

/* ===============
***
***	トップページ
***
=================*/
.top#container {
  padding-top: 0;
}

.top#container header#glheader {
  display: none;
}

.top#container header#glheader.fixed {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background: #fff;
}

.top#container header#glheader.fixed h1 {
  display: block;
}

@media screen and (max-width: 960px) {
  .top#container header#glheader {
    display: block;
    background: none;
  }
  .top#container header#glheader h1 {
    display: none;
  }
}

.top .pankuzu {
  display: none;
}

.top #main {
  position: relative;
  margin-bottom: 190px;
}

@media screen and (max-width: 960px) {
  .top #main {
    margin-bottom: 50px;
  }
}

.top #main #main_image {
  background: #f8f8f8;
  min-width: 1170px;
  min-height: 600px;
  height: 50vw;
  overflow: hidden;
  position: relative;
}

.top #main #main_image ul {
  height: 100%;
}

.top #main #main_image ul#kvc li {
  display: none;
}

.top #main #main_image ul#kvc li:first-child {
  display: block;
}

.top #main #main_image ul li {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

.top #main #main_image ul li a {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  width: 100vw;
  height: 100%;
}

.top #main #main_image ul li > img, .top #main #main_image ul li a > img {
  max-width: 1000%;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .top #main #main_image ul li > img, .top #main #main_image ul li a > img {
    width: auto;
    height: 100%;
  }
}

.top #main #main_image ul li.keyvisual h2 {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  position: absolute;
  left: 0;
  top: 0;
}

.top #main #main_image #kvc_ui {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.top #main #main_image #kvc_ui #kvc_cursor {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

.top #main #main_image #kvc_ui #kvc_cursor a {
  display: block;
  border-left: 1px solid #fff;
  width: 80px;
  height: 60px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.top #main #main_image #kvc_ui #kvc_cursor a:hover {
  opacity: 0.7;
}

.top #main #main_image #kvc_ui #kvc_cursor a img {
  height: 17px;
}

.top #main #main_image #kvc_ui #kvc_pager ol {
  text-align: center;
}

.top #main #main_image #kvc_ui #kvc_pager ol li {
  display: inline-block;
  margin: 0 4px;
  width: 10px;
  height: 10px;
  background: url(../IMAGES/TOP/kvc-off.png) center center/contain no-repeat;
}

.top #main #main_image #kvc_ui #kvc_pager ol li.on {
  background-image: url(../IMAGES/TOP/kvc-on.png);
}

@media screen and (max-width: 960px) {
  .top #main #main_image #kvc_ui {
    top: 22vw;
  }
  .top #main #main_image #kvc_ui #kvc_cursor {
    border-top: solid 1px #fff;
  }
  .top #main #main_image #kvc_ui #kvc_cursor a {
    width: 12vw;
    height: 10vw;
  }
}

@media screen and (max-width: 960px) {
  .top #main #main_image {
    min-width: 1px;
  }
  .top #main #main_image ul li.keyvisual h2 img {
    max-width: 75%;
  }
}

.top #main > header {
  position: absolute;
  left: 50%;
  top: 0;
  padding-top: 30px;
  padding: 30px 0 0;
  width: 1170px;
  margin-left: -585px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #main > header h1 {
  padding-top: 30px;
  position: relative;
}

.top #main > header #glnav {
  display: none;
}

.top #main > header a#header_login {
  display: inline-block;
  padding-top: 30px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.top #main > header a#header_login:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1170px) {
  .top #main > header {
    left: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 960px) {
  .top #main > header {
    padding-top: 20px;
    width: 100%;
    height: auto;
  }
  .top #main > header h1 {
    width: 50%;
    padding-top: 0;
    padding-left: 30px;
  }
  .top #main > header a#header_login {
    position: absolute;
    left: 8.5%;
    bottom: 11vw;
    display: block;
    width: 83%;
  }
  .top #main > header a#header_login img {
    width: 100%;
  }
}

.top #main nav#topnav {
  position: absolute;
  left: 50%;
  margin-left: -585px;
  z-index: 10;
  height: 120px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top #main nav#topnav .inner {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
  background: #EDF6FC;
}

.top #main nav#topnav .inner h3 {
  width: 160px;
  background: #009bdb;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

.top #main nav#topnav .inner ul {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0 15px;
}

.top #main nav#topnav .inner ul li a {
  display: block;
  height: 100%;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  padding: 0 20px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.top #main nav#topnav .inner ul li a:hover {
  opacity: 0.7;
}

.top #main nav#topnav .inner ul li.onmouse a {
  background: #009bdb;
}

.top #main nav#topnav .inner ul li#nav-lineup a:hover {
  background: #009bdb;
  opacity: 1;
}

.top #guide .inner {
  padding-bottom: 180px;
}

.top #guide h2 {
  text-align: center;
  margin-bottom: 90px;
}

.top #guide ol {
  list-style: none;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #guide ol li {
  width: 29%;
}

.top #guide ol li h3 {
  margin-bottom: 55px;
}

.top #guide ol li figure {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  height: 168px;
  margin-bottom: 60px;
}

@media screen and (max-width: 960px) {
  .top #guide .inner {
    padding-bottom: 60px;
  }
  .top #guide h2 {
    margin-bottom: 60px;
  }
  .top #guide h2 img {
    max-width: 80%;
  }
  .top #guide ol {
    display: block;
  }
  .top #guide ol li {
    width: 100%;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-end;
    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;
    margin-bottom: 50px;
  }
  .top #guide ol li h3 {
    width: 60%;
    margin-bottom: 20px;
  }
  .top #guide ol li figure {
    width: 30%;
    height: auto;
    margin-bottom: 20px;
  }
  .top #guide ol li figure img {
    max-height: 80px;
  }
}

.top #slideshow {
  padding: 340px 0;
}

.top #slideshow #slideshow_inner {
  position: relative;
  margin-bottom: 40px;
}

.top #slideshow #slideshow_inner .slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.top #slideshow #slideshow_inner .slider ul {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -465px;
  width: 5580px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #slideshow #slideshow_inner .slider ul li {
  width: 850px;
  margin: 0 40px;
  position: relative;
}

.top #slideshow #slideshow_inner .slider ul li:after {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.top #slideshow #slideshow_inner .slider ul li.active:after {
  opacity: 0;
}

.top #slideshow #slideshow_inner #slideshow_copy {
  position: absolute;
  left: 50%;
  top: -130px;
  background: #fff;
  padding: 35px;
  margin-left: -395px;
}

.top #slideshow #slideshow_inner #slideshow_copy img {
  height: 120px;
}

.top #slideshow #slideshow_inner #slideshow_counter {
  position: absolute;
  right: 50%;
  top: -30px;
  margin-right: -425px;
}

.top #slideshow #slideshow_inner #slideshow_counter #slide_counter_current img {
  height: 24px;
}

.top #slideshow #slideshow_inner #slideshow_ui {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.top #slideshow #slideshow_inner #slideshow_ui figure {
  position: absolute;
  margin-top: -35px;
  top: 50%;
}

.top #slideshow #slideshow_inner #slideshow_ui figure:hover {
  cursor: pointer;
  opacity: 0.7;
}

.top #slideshow #slideshow_inner #slideshow_ui figure.hidden {
  display: none;
}

.top #slideshow #slideshow_inner #slideshow_ui figure#slideshow_ui_left {
  left: 50%;
  margin-left: -540px;
}

.top #slideshow #slideshow_inner #slideshow_ui figure#slideshow_ui_right {
  right: 50%;
  margin-right: -540px;
}

.top #slideshow #slider_msg {
  position: relative;
  width: 850px;
  margin: auto;
}

.top #slideshow #slider_msg ul li {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  display: none;
}

.top #slideshow #slider_msg ul li.active {
  display: block;
  opacity: 1;
}

.top #slideshow #slider_msg ul li dl dt {
  font-weight: bold;
  font-size: 18pt;
  margin-bottom: 1em;
}

.top #slideshow #slider_msg ul li dl dd {
  font-size: 12pt;
  line-height: 2em;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  .top #slideshow #slider_msg ul li dl {
    width: 79vw;
  }
  .top #slideshow #slider_msg ul li dl dt {
    font-size: 4.5vw;
  }
  .top #slideshow #slider_msg ul li dl dd {
    font-size: 3.5vw;
    line-height: 1.7em;
  }
}

@media screen and (max-width: 960px) {
  .top #slideshow #slider_msg {
    width: 83vw;
  }
  .top #slideshow #slider_msg ul li dl dt {
    line-height: 1.4em;
  }
}

@media screen and (max-width: 960px) {
  .top #slideshow {
    padding: 200px 0 300px;
  }
  .top #slideshow #slideshow_inner .slider {
    height: 83vw;
  }
  .top #slideshow #slideshow_inner .slider ul {
    margin-left: -41.5vw;
    height: 100%;
    width: 516vw;
  }
  .top #slideshow #slideshow_inner .slider ul li {
    width: 83vw;
    padding: 0;
    margin: 0 1.5vw;
    height: 100%;
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    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;
    overflow: hidden;
  }
  .top #slideshow #slideshow_inner .slider ul li img {
    max-width: initial;
    width: auto;
    height: 100%;
  }
  .top #slideshow #slideshow_inner #slideshow_copy {
    margin-left: 0;
    top: -18vw;
    left: 8vw;
    padding: 5vw;
  }
  .top #slideshow #slideshow_inner #slideshow_copy img {
    height: 16vw;
    width: auto;
    max-width: 1000%;
  }
  .top #slideshow #slideshow_inner #slideshow_counter {
    right: 7vw;
    margin-right: 0;
  }
  .top #slideshow #slideshow_inner #slideshow_ui figure {
    width: 10vw;
    margin-top: -5vw;
  }
  .top #slideshow #slideshow_inner #slideshow_ui figure#slideshow_ui_left {
    left: 0vw;
    margin-left: 0;
  }
  .top #slideshow #slideshow_inner #slideshow_ui figure#slideshow_ui_right {
    right: 0vw;
    margin-right: 0;
  }
}

.top #price {
  padding: 160px 0 230px;
}

.top #price #basecost {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #price #basecost > div {
  width: 48%;
}

.top #price #basecost > div dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.top #price #basecost > div dl dt, .top #price #basecost > div dl dd {
  width: 50%;
  height: 140px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

.top #price #basecost > div dl dt {
  background: #009bdb;
}

.top #price #basecost > div dl dt img {
  width: 189px;
}

.top #price #basecost > div dl dd {
  background: #f8f8f8;
}

.top #price #basecost > div dl dd img {
  width: 147px;
}

.top #price #basecost > div p {
  text-align: center;
  padding-top: 15px;
  font-weight: bold;
}

.top #price .over figure img {
  width: 374px;
}

@media screen and (max-width: 960px) {
  .top #price {
    padding: 100px 0 200px;
  }
  .top #price p.lead {
    text-align: left;
  }
  .top #price p.lead br {
    display: none;
  }
  .top #price #basecost {
    display: block;
  }
  .top #price #basecost > div {
    width: 100%;
    margin-bottom: 40px;
  }
  .top #price #basecost > div:last-child {
    margin-bottom: 0;
  }
  .top #price #basecost > div dl dt, .top #price #basecost > div dl dd {
    height: auto;
    padding: 30px 0;
  }
  .top #price #basecost > div dl dt img {
    width: 80%;
  }
  .top #price #basecost > div dl dd img {
    width: 60%;
  }
  .top #price #basecost > div p {
    font-size: 10pt;
  }
  .top #price .over figure img {
    width: 90%;
  }
}

.top #lineup {
  padding: 206px 0 160px;
}

.top #lineup ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #lineup ul li {
  width: 32%;
  position: relative;
  padding-bottom: 120px;
}

.top #lineup ul li h3 {
  width: 90%;
  margin: 0 auto 30px;
}

.top #lineup ul li h3 img {
  width: 81%;
}

.top #lineup ul li figure {
  margin-bottom: 30px;
  height: 260px;
  text-align: center;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

.top #lineup ul li figure img {
  max-width: 100%;
  width: 100%;
}

.top #lineup ul li p {
  width: 90%;
  margin: auto;
}

.top #lineup ul li a {
  display: block;
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 90%;
}

@media screen and (max-width: 960px) {
  .top #lineup {
    padding: 120px 0 60px;
  }
  .top #lineup .lead {
    text-align: left;
  }
  .top #lineup .lead br {
    display: none;
  }
  .top #lineup ul {
    display: block;
  }
  .top #lineup ul li {
    width: 100%;
    margin-bottom: 30vw;
    padding-bottom: 0;
  }
  .top #lineup ul li h3 {
    margin-bottom: 0;
  }
  .top #lineup ul li figure {
    height: auto;
  }
  .top #lineup ul li figure img {
    width: 100%;
  }
  .top #lineup ul li p {
    margin-bottom: 5vw;
  }
  .top #lineup ul li a {
    padding: 3vw 0;
    position: relative;
  }
  .top #lineup ul li a img {
    height: 4vw;
  }
  .top #lineup ul li#lineup_leaf figure {
    text-align: center;
    padding-top: 30px;
  }
  .top #lineup ul li#lineup_leaf figure img {
    width: 90%;
  }
  .top #lineup ul li#lineup_note figure {
    padding-top: 30px;
  }
  .top #lineup ul li#lineup_serena figure {
    padding-top: 30px;
  }
  .top #lineup ul li#lineup_serena figure img {
    width: 100%;
  }
}

.top #extra {
  padding: 200px 0;
}

.top #extra .inner {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.top #extra .inner > div {
  width: 550px;
}

.top #extra .inner > div figure {
  margin-bottom: 50px;
}

.top #extra .inner > div p {
  margin-bottom: 50px;
}

@media screen and (max-width: 960px) {
  .top #extra {
    padding: 100px 0;
  }
  .top #extra .inner {
    display: block;
  }
  .top #extra .inner > div {
    width: 100%;
    margin-bottom: 80px;
  }
  .top #extra .inner > div h2 {
    margin-bottom: 30px;
  }
  .top #extra .inner > div figure {
    margin-bottom: 35px;
  }
  .top #extra .inner > div p {
    margin-bottom: 1em;
  }
  .top #extra .inner > div a {
    border-bottom: solid 4px #000;
    padding: 3vw 0;
  }
  .top #extra .inner > div a img {
    height: 4vw;
  }
  .top #extra .inner > div a:after {
    height: 4px;
    bottom: -4px;
  }
}

.top #service {
  padding: 160px 0;
}

.top #service h2 {
  margin-bottom: 130px;
}

.top #service ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top #service ul li {
  width: 47%;
  margin-bottom: 125px;
}

.top #service ul li h3 {
  margin-bottom: 40px;
}

.top #service ul li h3 img {
  height: 23px;
}

.top #service ul li a.link_border {
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .top #service {
    padding: 80px 0;
  }
  .top #service .inner {
    width: 100%;
  }
  .top #service h2 {
    margin-bottom: 40px;
    border-bottom: solid 1px #ccc;
    padding-bottom: 30px;
  }
  .top #service ul {
    width: 86%;
    margin: auto;
    display: block;
  }
  .top #service ul li {
    width: 100%;
    border-bottom: solid 1px #ccc;
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .top #service ul li h3 {
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .top #service ul li h3 img {
    height: auto;
    max-width: 90%;
  }
  .top #service ul li a.link_border {
    margin-top: 6vw;
  }
}

.top #info {
  padding: 200px 0;
}

.top #info ul {
  margin-bottom: 140px;
}

.top #info ul li {
  margin-bottom: 80px;
  padding-bottom: 3em;
  border-bottom: solid 1px #ccc;
}

.top #info ul li dl dt, .top #info ul li dl dd {
  font-size: 12pt;
}

.top #info ul li dl dt {
  color: #009bdb;
  margin-bottom: 1em;
}

.top #info ul li:last-child {
  margin-bottom: 180px;
}

@media screen and (max-width: 960px) {
  .top #info {
    padding: 140px 0 100px;
  }
  .top #info ul {
    margin-bottom: 70px;
  }
  .top #info ul li {
    margin-bottom: 30px;
    padding-bottom: 2em;
  }
  .top #info ul li dl dd {
    line-height: 1.8em;
    font-size: 12pt;
  }
  .top #info ul li:last-child {
    margin-bottom: 0;
  }
}

/* ===============
***
***	中面共通
***
=================*/
.inside #mainimage {
  height: 500px;
  background-size: cover;
  background-position: center center;
}

.inside #wrapper #pagetitle {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

.inside #pagetitle {
  padding: 0 15px;
}

.inside #wrapper #pagetitle #pagetitle_inner {
  width: 100%;
}

.inside #wrapper #pagetitle h2 span {
  display: inline-block;
  padding: 60px 0 40px;
  border-top: solid 10px #009bdb;
}

.inside #wrapper #pagetitle h2 span img {
  height: 32px;
}

.inside #wrapper #pagetitle h2 > img {
  height: 32px;
  margin: 60px 0;
}

.inside #wrapper #pagetitle h2 > p {
  padding: 60px 0;
  font-size: 28pt;
}

.inside #wrapper #pagetitle h2 > p.pb0 {
  padding-bottom: 0;
}

.inside #wrapper #pagetitle p {
  padding-bottom: 100px;
}

.inside #wrapper #pagetitle.border-fixed {
  position: relative;
}

.inside #wrapper #pagetitle.border-fixed:after {
  content: "";
  width: 140px;
  height: 10px;
  background: #009bdb;
  position: absolute;
  left: 0;
  top: 0;
}

.inside #wrapper #pagetitle.border-fixed h2 {
  padding: 60px 0 40px;
  font-size: 20pt;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 960px) {
  .inside #wrapper #pagetitle {
    display: block;
    padding: 40px 0 100px;
  }
  .inside #wrapper #pagetitle h2 span img {
    height: 5vw;
  }
  .inside #wrapper #pagetitle h2 > p {
    font-size: 5vw;
    padding: 8vw 0;
  }
  .inside #wrapper #pagetitle.border-fixed:after {
    width: 20%;
    height: 6px;
  }
  .inside #wrapper #pagetitle.border-fixed h2 {
    font-size: 4.5vw;
    padding: 1.5em 0 10vw;
  }
}

.inside #wrapper .pagetitle_link {
  padding-top: 65px;
}

.inside #wrapper section#contact {
  padding: 160px 0;
}

.inside #wrapper section#contact p.lead {
  margin-bottom: 70px;
}

.inside #wrapper section#contact dl {
  width: 850px;
  margin: auto;
  border: solid 1px #aaa;
  background: #fff;
}

.inside #wrapper section#contact dl dt, .inside #wrapper section#contact dl dd {
  text-align: center;
}

.inside #wrapper section#contact dl dt {
  padding: 40px 0;
  border-bottom: solid 1px #aaa;
}

.inside #wrapper section#contact dl dt img {
  width: 540px;
}

.inside #wrapper section#contact dl dd {
  padding: 60px 0;
}

.inside #wrapper section#contact dl dd img {
  width: 540px;
}

@media screen and (max-width: 960px) {
  .inside #wrapper section#contact {
    padding: 16vw 0;
  }
  .inside #wrapper section#contact p.lead br {
    display: none;
  }
  .inside #wrapper section#contact dl {
    width: 100%;
  }
  .inside #wrapper section#contact dl dt {
    padding: 7vw 0;
  }
  .inside #wrapper section#contact dl dd {
    padding: 10vw 0;
  }
}

/* ===============
***
***	ご利用案内
***
=================*/
.reserve .lead.lh-low {
  line-height: 1.5em;
}
.reserve .red_note {
	display: block;
	font-size: 18px;
	color: #c3002f;
	margin-left: 17pt;
}
@media screen and (max-width: 960px) {
	.reserve .red_note {
		margin-top: 0.25em;
		font-size: 3vw;
		line-height: 1.6;
	}
}

.reserve nav.reserve_nav ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.reserve nav.reserve_nav ul li {
  width: 31%;
  margin-bottom: 40px;
}

.reserve nav.reserve_nav ul li a {
  width: 76%;
  padding: 0 12%;
  background-image: url(../IMAGES/COMMON/arrow_blue_right.png);
  background-size: 10px auto;
  box-sizing: content-box;
}

.reserve nav.reserve_nav ul li.on a {
  background-image: none;
  background-color: #009bdb;
}

@media screen and (max-width: 960px) {
  .reserve nav.reserve_nav ul {
    display: block;
  }
  .reserve nav.reserve_nav ul li {
    width: 100%;
    margin-bottom: 4vw;
  }
  .reserve nav.reserve_nav ul li a.btn_blue {
    width: 76% !important;
  }
}

.reserve #pagetitle #pagetitle_inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reserve #pagetitle #pagetitle_inner .pdf p {
  margin-bottom: 1em;
  padding-bottom: 0;
}

.reserve #pagetitle > .btn_blue {
  width: 558px;
  margin-top: 70px;
  box-sizing: content-box;
}

.reserve section {
  padding: 150px 15px;
}

.reserve section.bottom_nav {
  padding: 160px 0;
}

@media screen and (max-width: 960px) {
  .reserve section {
    padding: 15vw 0;
  }
}

.reserve section h2 {
  margin-bottom: 130px;
}

@media screen and (max-width: 960px) {
  .reserve section h2 {
    margin-bottom: 15vw;
  }
}

.reserve section article {
  margin-bottom: 130px;
}

@media screen and (max-width: 960px) {
  .reserve section article {
    margin-bottom: 15vw;
  }
}

.reserve section article:last-child {
  margin-bottom: 0;
}

.reserve section article h3 {
  font-size: 20pt;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
  line-height: 1.8em;
}

@media screen and (max-width: 960px) {
  .reserve section article h3 {
    font-size: 4.5vw;
    letter-spacing: 0.1em;
  }
}

.reserve section article p {
  margin-bottom: 40px;
}

.reserve section article p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .reserve section article p {
    margin-bottom: 5vw;
  }
}

.reserve section article figure img {
  width: 585px;
}

@media screen and (max-width: 960px) {
  .reserve section article figure img {
    width: 100%;
  }
}

.reserve section article dl.extra dt {
  background: #009bdb;
  color: #fff;
  font-size: 16pt;
  text-align: center;
  padding: 1.5em 0px;
}

.reserve section article dl.extra dd {
  background: #fff;
  font-size: 16pt;
  text-align: center;
  padding: 1.5em 0px;
}

.reserve section article dl.extra.horizontal {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.reserve section article dl.extra.horizontal dt {
  padding-left: 2em;
  padding-right: 2em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
}

.reserve section article dl.extra.horizontal dd {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
  text-align: left;
  padding-left: 2.5em;
}

@media screen and (max-width: 960px) {
  .reserve section article dl.extra.horizontal {
    display: block;
  }
  .reserve section article dl.extra.horizontal dd {
    text-align: center;
    padding-left: 0;
  }
}

.reserve section article dl.extra.reserve6 dd {
  padding: 2em 4em;
}

.reserve section article dl.extra.reserve6 dd p {
  text-align: left;
  font-weight: bold;
}

.reserve section article dl.extra.reserve6 dd p small {
  display: inline-block;
  font-weight: normal;
  margin-top: 1em;
  line-height: 1.5em;
}

@media screen and (max-width: 960px) {
  .reserve section article dl.extra.reserve6 dd {
    padding: 1.5em;
  }
  .reserve section article dl.extra.reserve6 dd p {
    line-height: 1.5em;
  }
}

.reserve section article .detail {
  margin-top: 60px;
  border: solid 1px #2dbbf5;
}

.reserve section article .detail.nomargin {
  margin-top: 0;
}

.reserve section article .detail h4 {
  color: #2dbbf5;
  border-bottom: solid 1px #2dbbf5;
  font-size: 18pt;
  padding: 1.5em 0;
  text-align: center;
}

.reserve section article .detail .detail_inner {
  padding: 40px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (max-width: 960px) {
  .reserve section article .detail .detail_inner {
    padding: 6vw;
    display: block;
  }
}

.reserve section article .detail .detail_inner figure {
  width: 200px;
  margin-right: 25px;
}

@media screen and (max-width: 960px) {
  .reserve section article .detail .detail_inner figure {
    width: 100%;
    background: #efefef;
    text-align: center;
    margin-bottom: 5vw;
  }
  .reserve section article .detail .detail_inner figure img {
    width: auto;
  }
}

.reserve section article .detail .detail_inner ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.reserve section article .detail .detail_inner ul li {
  width: 100%;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.reserve section article .detail .detail_inner ul li.arrow {
  background: url(../IMAGES/DEPARTURE/detail_arrow_right.png) center center no-repeat;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reserve section article .detail .detail_inner ul li dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100%;
}

.reserve section article .detail .detail_inner ul li dl dt {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 20px;
}

.reserve section article .detail .detail_inner ul li dl dt h5 {
  font-size: 16pt;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
}

.reserve section article .detail .detail_inner ul li dl dt p {
  font-size: 13.5pt;
  line-height: 1.8em;
}

.reserve section article .detail .detail_inner ul li dl dt p strong {
  font-size: 15pt;
  font-size: inherit;
  letter-spacing: inherit;
  background: linear-gradient(transparent 50%, #f8fc3c 0%);;
}

.reserve section article .detail .detail_inner ul li dl dd {
  width: 90px;
  height: 100%;
  background: #ededed;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

.reserve section article .detail .detail_inner ul li dl dd img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .reserve section article .detail .detail_inner ul {
    display: block;
  }
  .reserve section article .detail .detail_inner ul li.arrow {
    height: 15vw;
    background-image: url(../IMAGES/DEPARTURE/detail_arrow_down.png);
    background-size: auto 50%;
  }
  .reserve section article .detail .detail_inner ul li dl dt h5 {
    font-size: 4vw;
  }
  .reserve section article .detail .detail_inner ul li dl dt p {
    font-size: 3.5vw;
  }
}

.reserve section article .detail .detail_inner ol {
  -ms-flex-preferred-size: 500px;
  flex-basis: 500px;
  list-style: none;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.reserve section article .detail .detail_inner ol li {
  width: 100%;
  margin: 15px 0;
}

.reserve section article .detail .detail_inner ol li dl {
  white-space: nowrap;
}

.reserve section article .detail .detail_inner ol li dl dt, .reserve section article .detail .detail_inner ol li dl dd {
  display: inline-block;
}

.reserve section article .detail .detail_inner ol li dl dt {
  font-size: 15pt;
  font-weight: bold;
  margin-right: 1em;
}

.reserve section article .detail .detail_inner ol li dl dd {
  font-size: 14pt;
}

@media screen and (max-width: 960px) {
  .reserve section article .detail .detail_inner ol li dl {
    white-space: normal;
  }
  .reserve section article .detail .detail_inner ol li dl dt {
    margin-bottom: 0.5em;
  }
}

.reserve section article .detail > p.flex-cc {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  padding: 40px;
}

.reserve section article .detail > p.flex-cc span {
  font-size: 16pt;
  font-weight: bold;
  display: block;
  margin: 0 15px;
}

@media screen and (max-width: 960px) {
  .reserve section article .detail > p.flex-cc {
    display: block;
    padding: 6vw;
  }
  .reserve section article .detail > p.flex-cc span {
    font-size: 4vw;
    margin: 0 0 1em;
  }
  .reserve section article .detail > p.flex-cc span:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 960px) {
  .reserve section article .detail p.align-c {
    text-align: left !important;
  }
}

.reserve section article .contact {
  margin-top: 60px;
  border: solid 1px #2dbbf5;
  padding: 40px;
}

.reserve section article .contact p {
  text-align: center;
}

.reserve section article .contact .tel {
  text-align: center;
}

.reserve section article .contact .tel img {
  width: 540px;
}

@media screen and (max-width: 960px) {
  .reserve section article .contact {
    padding: 6vw;
  }
  .reserve section article .contact p {
    text-align: left;
    font-size: 3.5vw;
  }
  .reserve section article .contact .tel img {
    width: 100%;
  }
}

.reserve section .accordion .slide_btn {
  display: block;
  color: #fff;
  font-size: 16pt;
  text-decoration: none;
  padding: 1.5em;
  background: url(../IMAGES/COMMON/arrow_white_down.png) right 1.5em center no-repeat;
  background-color: #009bdb;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.reserve section .accordion .slide_btn img {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .reserve section .accordion .slide_btn img {
    width: 100%;
  }
}

.reserve section .accordion .slide_btn:hover {
  opacity: 0.7;
}

.reserve section .accordion .slide_target {
  padding-top: 100px;
  padding-bottom: 160px;
}

@media screen and (max-width: 960px) {
  .reserve section .accordion .slide_target {
    padding-top: 10vw;
    padding-bottom: 16vw;
  }
}

.reserve section .accordion.active .slide_btn {
  background-image: url(../IMAGES/COMMON/arrow_white_up.png);
}

.reserve section .accordion.slider_color2 .slide_btn {
  background-color: #2dbbf5;
}

@media screen and (max-width: 960px) {
  .reserve.reserve_inside #pagetitle {
    padding: 4vw 0 10vw;
  }
  .reserve.reserve_inside section {
    padding-top: 24vw;
  }
}

/* ===============
***
***	料金プラン
***
=================*/
.price #mainimage {
  background-image: url(../images/price/main.jpg);
}

@media screen and (max-width: 960px) {
  .price #mainimage {
    background-image: url(../images/price/main_sp.jpg);
  }
}

.price .price_table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #fff;
}

.price .price_table th, .price .price_table td {
  font-size: 15pt;
  line-height: 1.4em;
  text-align: center;
  vertical-align: middle;
  height: 100px;
  background: #fff;
  white-space: nowrap;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .price .price_table th, .price .price_table td {
    font-size: 3.8vw;
    height: auto;
    padding: 1.5em 0;
  }
}

.price .price_table th {
  color: #fff;
  background: #009bdb;
  font-size: 15pt;
}

.price .price_table th.rate, .price .price_table th.car {
  height: 70px;
  font-size: 13.5pt;
}

.price .price_table th.car {
  font-size: 12pt;
}

.price .price_table th.bg-blue2 {
  background: #0184ba;
}

.price .price_table th.bg-blue3 {
  background: #2dbbf5;
}

.price .price_table th.left {
  line-height: 1.5em;
  padding: 0 0.5em;
  font-size: 15pt;
}

@media screen and (max-width: 960px) {
  .price .price_table th {
    font-size: 3.8vw;
  }
}

.price .price_table thead th, .price .price_table thead td {
  border: solid 2px #fff;
}

.price .price_table tbody th, .price .price_table tbody td {
  border: solid 2px #f8f8f9;
}

.price .price_table tbody tr:nth-child(even) td {
  background: #EDF6FC;
}

.price .price_table tbody tr.bg-white td {
  background: #fff !important;
}

.price #wrapper .intro_option dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: solid 1px #009bdb;
  border-radius: 7px;
  background: #EDF6FC;
  margin-bottom: 25px;
}

.price #wrapper .intro_option dl dt, .price #wrapper .intro_option dl dd {
  padding-top: 40px;
  padding-bottom: 40px;
}

.price #wrapper .intro_option dl dt {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  width: 380px;
  border-right: solid 1px #009bdb;
}

.price #wrapper .intro_option dl dd {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 35px;
}

@media screen and (max-width: 960px) {
  .price #wrapper .intro_option dl {
    display: block;
    height: auto;
  }
  .price #wrapper .intro_option dl dt, .price #wrapper .intro_option dl dd {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding: 3vw 0;
  }
  .price #wrapper .intro_option dl dt img, .price #wrapper .intro_option dl dd img {
    max-width: 100%;
  }
  _:-ms-fullscreen, :root .price #wrapper .intro_option dl dt img, :root .price #wrapper .intro_option dl dd img {
    width: 100%;
  }
  .price #wrapper .intro_option dl dt {
    border-right: none;
    border-bottom: solid 1px #009bdb;
  }
  .price #wrapper .intro_option dl dt img {
    height: 3.5vw;
  }
  .price #wrapper .intro_option dl dd {
    text-align: center;
    display: block;
  }
  .price #wrapper .intro_option dl dd img {
    width: 100%;
  }
  .price #wrapper .intro_option p {
    padding-bottom: 7vw;
  }
}

.price #wrapper #pagetitle #pagetitle_inner > p {
  padding-bottom: 0;
}

@media screen and (max-width: 960px) {
  .price #wrapper #pagetitle #pagetitle_inner > p {
    padding-bottom: 10vw;
  }
}

.price #wrapper #pagetitle #pagetitle_inner > figure {
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .price #wrapper #pagetitle #pagetitle_inner > figure {
    margin-bottom: 10vw;
  }
  .price #wrapper #pagetitle #pagetitle_inner > figure img {
    width: 80%;
  }
  .price #wrapper #pagetitle #pagetitle_inner > figure img.w100 {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .price #wrapper #pagetitle {
    padding-bottom: 10vw;
  }
}

.price #wrapper section#price {
  padding: 160px 0;
}

.price #wrapper section#price p.anno {
  padding-top: 60px;
  text-align: left;
  font-weight: 12pt;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#price p.lead {
    margin-bottom: 15vw !important;
  }
}

.price #wrapper section#price .extend {
  padding-top: 100px;
}

.price #wrapper section#price .extend ul {
  border: solid 1px #ccc;
  background: #fff;
  padding: 60px 110px;
}

.price #wrapper section#price .extend ul li {
  font-size: 20pt;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: left;
  line-height: 2em;
}

.price #wrapper section#price .extend ul li p {
  display: block;
  font-size: 18pt;
  font-weight: normal;
  padding-top: 20px;
}

.price #wrapper section#price .extend ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#price .extend {
    padding-top: 0vw;
    margin-left: auto;
    margin-right: auto;
  }
  .price #wrapper section#price .extend ul {
    padding: 5vw;
  }
  .price #wrapper section#price .extend ul li {
    font-size: 3.5vw;
    margin-bottom: 3vw;
  }
  .price #wrapper section#price .extend ul li p {
    font-size: 3vw;
  }
}

.price #wrapper section#price .nav_buttons {
  display: table;
  table-layout: fixed;
  margin: 0 auto 2vw;
}

.price #wrapper section#price .nav_buttons > span {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}

.price #wrapper section#price .nav_buttons > span > a > img {
  width: 100% !important;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#price {
    padding: 16vw 0;
  }
  .price #wrapper section#price .sp > div {
    text-align: center;
  }
  .price #wrapper section#price .sp > div img {
    width: 83%;
  }
  .price #wrapper section#price .sp #price_sp_top {
    margin-bottom: 9vw;
  }
  .price #wrapper section#price .sp .price_slide {
    border-top: solid 1px #ccc;
    position: relative;
  }
  .price #wrapper section#price .sp .price_slide h3 {
    padding: 80px 0;
  }
  .price #wrapper section#price .sp .price_slide:after {
    content: url(../IMAGES/COMMON/arrow_black_down.png);
    position: absolute;
    right: 9vw;
    top: 87px;
  }
  .price #wrapper section#price .sp .price_slide#price_freeplan {
    border-bottom: solid 1px #ccc;
    margin-bottom: 80px;
  }
  .price #wrapper section#price .sp .price_slide.open p {
    padding-bottom: 100px;
  }
  .price #wrapper section#price .sp .price_slide.open:after {
    content: url(../IMAGES/COMMON/arrow_black_up.png);
  }
}

.price #wrapper section#planchange_anno, .price #wrapper section#planchange {
  padding: 160px 0;
}

.price #wrapper section#planchange_anno h2 img, .price #wrapper section#planchange h2 img {
  width: auto;
}

.price #wrapper section#planchange_anno ol, .price #wrapper section#planchange ol {
  list-style: none;
}

.price #wrapper section#planchange_anno ol li, .price #wrapper section#planchange ol li {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 80px 0;
  border-bottom: solid 1px #ccc;
}

.price #wrapper section#planchange_anno ol li:last-child, .price #wrapper section#planchange ol li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price #wrapper section#planchange_anno ol li .block, .price #wrapper section#planchange ol li .block {
  width: 550px;
}

.price #wrapper section#planchange_anno ol li .block p, .price #wrapper section#planchange ol li .block p {
  font-size: 12.8pt;
  margin-bottom: 1em;
}

.price #wrapper section#planchange_anno ol li .block p:last-child, .price #wrapper section#planchange ol li .block p:last-child {
  margin-bottom: 80px;
}

.price #wrapper section#planchange_anno ol li .block p.anno, .price #wrapper section#planchange ol li .block p.anno {
  font-size: 12pt;
}

.price #wrapper section#planchange_anno ol li figure, .price #wrapper section#planchange ol li figure {
  width: 550px;
}

.price #wrapper section#planchange_anno ol li .sp, .price #wrapper section#planchange ol li .sp {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#planchange_anno, .price #wrapper section#planchange {
    padding: 16vw 0;
  }
  .price #wrapper section#planchange_anno ol li, .price #wrapper section#planchange ol li {
    display: block;
  }
  .price #wrapper section#planchange_anno ol li .block, .price #wrapper section#planchange_anno ol li figure, .price #wrapper section#planchange ol li .block, .price #wrapper section#planchange ol li figure {
    width: 100%;
  }
  .price #wrapper section#planchange_anno ol li .block p, .price #wrapper section#planchange ol li .block p {
    margin-bottom: 5vw;
  }
  .price #wrapper section#planchange_anno ol li .wd, .price #wrapper section#planchange ol li .wd {
    display: none !important;
  }
  .price #wrapper section#planchange_anno ol li .sp, .price #wrapper section#planchange ol li .sp {
    margin-top: 8vw;
    display: block !important;
  }
}

.price #wrapper section#cancel {
  padding: 170px 0;
}

.price #wrapper section#cancel h2 img {
  width: auto;
}

.price #wrapper section#cancel table {
  width: 100%;
  border: solid 1px #aaa;
}

.price #wrapper section#cancel table caption {
  text-align: center;
  padding: 60px 0;
  border: solid 1px #aaa;
  border-bottom: none;
}

.price #wrapper section#cancel table tr th, .price #wrapper section#cancel table tr td {
  height: 184px;
  vertical-align: middle;
  border-bottom: solid 1px #ccc;
  text-align: left;
  width: 50%;
  background: none;
}

.price #wrapper section#cancel table tr th {
  padding-left: 100px;
  font-size: 12.8pt;
  font-weight: normal;
}

.price #wrapper section#cancel table tr td {
  padding-left: 100px;
  background: url(../images/price/arrow_right.png) left center no-repeat;
  font-size: 13.6pt;
  font-weight: bold;
  line-height: 1.8em;
}

.price #wrapper section#cancel table tr:last-child th, .price #wrapper section#cancel table tr:last-child td {
  border-bottom: solid 1px #aaa;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#cancel {
    padding: 16vw 0;
  }
  .price #wrapper section#cancel table caption {
    padding: 7vw 0;
  }
  .price #wrapper section#cancel table caption img {
    height: 3.8vw;
  }
  .price #wrapper section#cancel table tr {
    display: -webkit-flex;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 50vw;
    border-bottom: solid 1px #ccc;
  }
  .price #wrapper section#cancel table tr th, .price #wrapper section#cancel table tr td {
    display: block;
    width: 100%;
    padding-left: 0;
    height: auto;
    text-align: center;
    border-bottom: none !important;
  }
  .price #wrapper section#cancel table tr th img, .price #wrapper section#cancel table tr td img {
    max-width: 85%;
  }
  _:-ms-fullscreen, :root .price #wrapper section#cancel table tr th img, :root .price #wrapper section#cancel table tr td img {
    width: 80vw;
  }
  .price #wrapper section#cancel table tr th {
    padding-bottom: 8vw;
    margin-bottom: 5vw;
    background: url(../images/price/arrow_bottom.png) center bottom no-repeat;
    font-size: 3.5vw;
  }
  .price #wrapper section#cancel table tr td {
    background: none;
    font-size: 4vw;
  }
}

.price #wrapper section#extend, .price #wrapper section#extend2 {
  padding: 160px 0 140px;
}

.price #wrapper section#extend h2, .price #wrapper section#extend2 h2 {
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#extend h2, .price #wrapper section#extend2 h2 {
    margin-bottom: 8vw;
  }
}

.price #wrapper section#extend p.lead, .price #wrapper section#extend2 p.lead {
  margin-bottom: 30px;
}

.price #wrapper section#extend .extend, .price #wrapper section#extend2 .extend {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.price #wrapper section#extend .extend > div, .price #wrapper section#extend2 .extend > div {
  width: 50%;
}

.price #wrapper section#extend .extend > div:first-child, .price #wrapper section#extend2 .extend > div:first-child {
  border-right: solid 1px #ccc;
  padding-right: 70px;
}

.price #wrapper section#extend .extend > div:last-child, .price #wrapper section#extend2 .extend > div:last-child {
  padding-left: 70px;
}

.price #wrapper section#extend .extend > div h3, .price #wrapper section#extend2 .extend > div h3 {
  margin-bottom: 50px;
}

.price #wrapper section#extend .extend > div p, .price #wrapper section#extend2 .extend > div p {
  height: 260px;
}

.price #wrapper section#extend .extend > div figure, .price #wrapper section#extend2 .extend > div figure {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#extend, .price #wrapper section#extend2 {
    padding: 16vw 0;
  }
  .price #wrapper section#extend .inner, .price #wrapper section#extend2 .inner {
    width: 100%;
  }
  .price #wrapper section#extend .inner h2, .price #wrapper section#extend .inner > p, .price #wrapper section#extend2 .inner h2, .price #wrapper section#extend2 .inner > p {
    width: 83%;
    margin-left: auto;
    margin-right: auto;
  }
  .price #wrapper section#extend .extend, .price #wrapper section#extend2 .extend {
    display: block;
    border-top: solid 1px #ccc;
  }
  .price #wrapper section#extend .extend > div, .price #wrapper section#extend2 .extend > div {
    width: 100%;
    border-right: none !important;
    border-bottom: solid 1px #ccc;
    padding: 10vw 0 !important;
  }
  .price #wrapper section#extend .extend > div:last-child, .price #wrapper section#extend2 .extend > div:last-child {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }
  .price #wrapper section#extend .extend > div h3, .price #wrapper section#extend .extend > div p, .price #wrapper section#extend .extend > div figure, .price #wrapper section#extend2 .extend > div h3, .price #wrapper section#extend2 .extend > div p, .price #wrapper section#extend2 .extend > div figure {
    width: 83%;
    margin-left: auto;
    margin-right: auto;
  }
  .price #wrapper section#extend .extend > div h3, .price #wrapper section#extend2 .extend > div h3 {
    margin-bottom: 20px;
  }
  .price #wrapper section#extend .extend > div p, .price #wrapper section#extend2 .extend > div p {
    height: auto;
    margin-bottom: 10vw;
  }
  .price #wrapper section#extend .extend > div figure img, .price #wrapper section#extend2 .extend > div figure img {
    max-width: 90%;
  }
}

.price #wrapper section#nas {
  padding: 160px 0;
}

.price #wrapper section#nas h2 img {
  width: auto;
}

.price #wrapper section#nas p.lead {
  margin-bottom: 80px;
}

.price #wrapper section#nas table {
  width: 100%;
  margin-bottom: 60px;
}

.price #wrapper section#nas table tr th, .price #wrapper section#nas table tr td {
  font-size: 12.8pt;
  padding: 2em;
  border-bottom: solid 4px #fff;
}

.price #wrapper section#nas table tr th {
  background: #ededed;
  width: 31%;
}

.price #wrapper section#nas table tr td {
  padding-left: 3em;
  background: #fff;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#nas {
    padding: 16vw 0;
  }
  .price #wrapper section#nas table tr {
    display: block;
  }
  .price #wrapper section#nas table tr th, .price #wrapper section#nas table tr td {
    display: block;
    width: 100%;
    padding: 1.5em 0;
    text-align: center;
    font-size: 3.5vw;
    line-height: 1em;
  }
  .price #wrapper section#nas table tr th img {
    width: 55%;
  }
  .price #wrapper section#nas table tr td {
    margin-bottom: 5vw;
  }
}

.price #wrapper section#trouble {
  padding: 160px 0;
}

.price #wrapper section#trouble table {
  width: 100%;
  margin-bottom: 60px;
}

.price #wrapper section#trouble table tr th, .price #wrapper section#trouble table tr td {
  padding: 2em;
  border-bottom: solid 4px #f8f8f8;
  text-align: left;
  line-height: 1.8em;
}

.price #wrapper section#trouble table tr th {
  background: #ededed;
  width: 35%;
  vertical-align: middle;
  font-size: 12.8pt;
}

.price #wrapper section#trouble table tr th img {
  height: 19px;
}

.price #wrapper section#trouble table tr td {
  font-size: 12pt;
  padding-left: 3em;
  background: #fff;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#trouble {
    padding: 16vw 0;
  }
  .price #wrapper section#trouble table {
    margin-bottom: 5vw;
  }
  .price #wrapper section#trouble table tr {
    display: block;
  }
  .price #wrapper section#trouble table tr th, .price #wrapper section#trouble table tr td {
    display: block;
    width: 84%;
    padding: 1.5em 8%;
    text-align: center;
  }
  .price #wrapper section#trouble table tr th {
    text-align: left;
    font-size: 3.5vw;
  }
  .price #wrapper section#trouble table tr th img {
    height: 3vw;
  }
  .price #wrapper section#trouble table tr td {
    margin-bottom: 5vw;
    font-size: 3.2vw;
    text-align: left;
  }
}

.price #wrapper section#noc {
  padding: 160px 0;
}

.price #wrapper section#noc .hoshou h3 {
  margin-bottom: 50px;
}

.price #wrapper section#noc table {
  width: 100%;
  margin-bottom: 60px;
}

.price #wrapper section#noc table tr th, .price #wrapper section#noc table tr td {
  font-size: 12.8pt;
  padding: 2em;
  border-bottom: solid 4px #fff;
  text-align: left;
  vertical-align: middle;
  line-height: 1.8em;
}

.price #wrapper section#noc table tr th {
  background: #ededed;
  vertical-align: middle;
}

.price #wrapper section#noc table tr td {
  padding-left: 3em;
  background: #f8f8f8;
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#noc {
    padding: 16vw 0;
  }
  .price #wrapper section#noc table tr {
    display: block;
  }
  .price #wrapper section#noc table tr th, .price #wrapper section#noc table tr td {
    display: block;
    width: 84%;
    padding: 1.5em 8%;
    text-align: center;
    font-size: 3.5vw;
    text-align: left;
  }
  .price #wrapper section#noc table tr td {
    margin-bottom: 5vw;
  }
}

.price #wrapper section#ihan {
  padding: 160px 0;
}

.price #wrapper section#ihan dl {
  margin-bottom: 60px;
}

.price #wrapper section#ihan dl dt {
  background: #fff72a;
  padding: 1.5em -0px;
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.price #wrapper section#ihan dl dd {
  background: #f8f8f9;
  font-size: 12pt;
  letter-spacing: 0.3em;
  padding: 2em 0;
}

.price #wrapper section#ihan dl dd p {
  font-size: inherit;
  letter-spacing: inherit;
  width: 90%;
  margin: 0 auto 1.5em;
}

.price #wrapper section#ihan dl dd span.arrow {
  display: block;
  font-size: 17pt;
  height: 20px;
  margin-bottom: 1.5em;
  background: url(../images/price/arrow_bottom.png) center center/22px auto no-repeat;
}

.price #wrapper section#ihan dl dd strong {
  font-size: inherit;
  background: url(../images/price/ihan_border.png) left bottom repeat-x;
  letter-spacing: inherit;
}

.price #wrapper section#ihan dl#ihan1 dd p {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#ihan {
    padding: 16vw 0;
  }
}

.price #wrapper section#tekiyougai {
  padding: 160px 0;
}

@media screen and (max-width: 960px) {
  .price #wrapper section#tekiyougai {
    padding: 16vw 0;
  }
}

/* ===============
***
***	カーラインアップ
***
=================*/
.lineup section {
  padding: 160px 0;
}

.lineup section h2 {
  margin-bottom: 80px;
}

@media screen and (max-width: 960px) {
  .lineup section {
    padding: 16vw 0;
  }
  .lineup section h2 {
    margin-bottom: 12vw;
  }
}

.lineup section#carimage {
  padding: 100px 0;
}

.lineup section#carimage h3 {
  margin-bottom: 65px;
}

@media screen and (max-width: 960px) {
  .lineup section#carimage {
    padding: 0 0 10vw;
  }
  .lineup section#carimage .inner {
    width: 100% !important;
  }
  .lineup section#carimage h3 {
    margin-bottom: 10vw;
  }
  .lineup section#carimage p {
    width: 83%;
    margin: auto;
  }
  .lineup section#carimage p img {
    width: 60%;
  }
}

.lineup section#spec .spec_table {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lineup section#spec .spec_table dl {
  width: 50%;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 1px;
  height: 130px;
}

.lineup section#spec .spec_table dl dt, .lineup section#spec .spec_table dl dd {
  line-height: 1.6em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.5em;
}

.lineup section#spec .spec_table dl dt span, .lineup section#spec .spec_table dl dd span {
  font-size: inherit;
  line-height: inherit;
}

.lineup section#spec .spec_table dl dt img, .lineup section#spec .spec_table dl dd img {
  vertical-align: middle;
  margin-left: 0.5em;
}

.lineup section#spec .spec_table dl dt {
  background: #ededed;
  width: 60%;
  font-size: 15pt;
  font-weight: bold;
}

.lineup section#spec .spec_table dl dd {
  background: #f8f8f8;
  width: 40%;
  font-size: 14pt;
}

@media screen and (max-width: 960px) {
  .lineup section#spec .spec_table {
    display: block;
  }
  .lineup section#spec .spec_table dl {
    width: 100%;
    display: block;
    margin-bottom: 5vw;
    height: auto;
  }
  .lineup section#spec .spec_table dl dt, .lineup section#spec .spec_table dl dd {
    width: 100%;
    padding: 1em 0;
    text-align: center;
    display: block;
  }
}

.lineup section#equipment .equipment_list {
  margin-bottom: 85px;
}

.lineup section#equipment .equipment_list ul {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.lineup section#equipment .equipment_list ul li {
  width: 44.8%;
  background: #fff;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  font-size: 14pt;
  height: 140px;
  padding-left: 5%;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}

.lineup section#equipment .equipment_list ul li:nth-child(odd) {
  border-left: solid 1px #ccc;
}

.lineup section#equipment .equipment_list ul li:first-child {
  border-top: solid 1px #ccc;
}

.lineup section#equipment .equipment_list ul li:nth-child(2) {
  border-top: solid 1px #ccc;
}

.lineup section#equipment .equipment_list ul li p {
  font-size: inherit;
  font-weight: bold;
}

.lineup section#equipment .equipment_list ul li.empty {
  border: none;
  background: none;
}

@media screen and (max-width: 960px) {
  .lineup section#equipment .equipment_list ul {
    display: block;
    margin-bottom: 10vw;
    border-bottom: solid 1px #ccc;
  }
  .lineup section#equipment .equipment_list ul li {
    display: block;
    width: 100%;
    border: solid 1px #ccc;
    border-bottom: none;
    text-align: center;
    padding: 1.5em 0;
    height: auto;
  }
}

.lineup section#equipment .equipment dl, .lineup section#feature .equipment dl {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 70px;
  margin-bottom: 80px;
  border-bottom: solid 1px #ccc;
}

.lineup section#equipment .equipment dl:last-child, .lineup section#feature .equipment dl:last-child {
  margin-bottom: 0;
}

.lineup section#equipment .equipment dl dt, .lineup section#feature .equipment dl dt {
  width: 750px;
}

.lineup section#equipment .equipment dl dt h3, .lineup section#feature .equipment dl dt h3 {
  margin-bottom: 40px;
}

.lineup section#equipment .equipment dl dt h4, .lineup section#feature .equipment dl dt h4 {
  color: #009bdb;
  font-size: 15pt;
  margin-bottom: 1em;
  line-height: 1.6em;
}

.lineup section#equipment .equipment dl dt h4 sup, .lineup section#feature .equipment dl dt h4 sup {
  color: inherit;
}

.lineup section#equipment .equipment dl dd, .lineup section#feature .equipment dl dd {
  width: 365px;
}

.lineup section#equipment .equipment dl dd.anno, .lineup section#feature .equipment dl dd.anno {
  width: 100%;
  font-size: 11.2pt;
  line-height: 1.8em;
  padding-top: 50px;
}

@media screen and (max-width: 960px) {
  .lineup section#equipment .equipment dl dd.anno, .lineup section#feature .equipment dl dd.anno {
    padding-top: 5vw;
    font-size: 3vw;
  }
}

.lineup section#equipment .equipment dl.noflex, .lineup section#feature .equipment dl.noflex {
  display: block;
}

.lineup section#equipment .equipment dl.noflex dt, .lineup section#equipment .equipment dl.noflex dd, .lineup section#feature .equipment dl.noflex dt, .lineup section#feature .equipment dl.noflex dd {
  width: 100%;
}

.lineup section#equipment .equipment dl.noflex dt, .lineup section#feature .equipment dl.noflex dt {
  margin-bottom: 60px;
}

.lineup section#equipment .equipment dl.noflex dd ul, .lineup section#feature .equipment dl.noflex dd ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.lineup section#equipment .equipment dl.noflex dd ul li, .lineup section#feature .equipment dl.noflex dd ul li {
  width: 48%;
}

.lineup section#equipment .equipment dl.noflex dd ul li figure, .lineup section#feature .equipment dl.noflex dd ul li figure {
  margin-bottom: 40px;
}

.lineup section#equipment .equipment dl.noflex dd ul li h5, .lineup section#feature .equipment dl.noflex dd ul li h5 {
  font-size: 15pt;
  margin-bottom: 1em;
}

.lineup section#equipment .equipment dl.noflex dd ul li p, .lineup section#feature .equipment dl.noflex dd ul li p {
  font-size: 11.2pt;
}

@media screen and (max-width: 960px) {
  .lineup section#equipment .equipment dl, .lineup section#feature .equipment dl {
    display: block;
  }
  .lineup section#equipment .equipment dl dt, .lineup section#feature .equipment dl dt {
    margin-bottom: 7vw;
    width: 100%;
  }
  .lineup section#equipment .equipment dl dt h3, .lineup section#feature .equipment dl dt h3 {
    margin-bottom: 5vw;
  }
  .lineup section#equipment .equipment dl dt p, .lineup section#feature .equipment dl dt p {
    font-size: 3.5vw;
  }
  .lineup section#equipment .equipment dl dd, .lineup section#feature .equipment dl dd {
    width: 100%;
  }
  .lineup section#equipment .equipment dl.noflex dt, .lineup section#feature .equipment dl.noflex dt {
    margin-bottom: 60px;
  }
  .lineup section#equipment .equipment dl.noflex dd ul, .lineup section#feature .equipment dl.noflex dd ul {
    display: block;
  }
  .lineup section#equipment .equipment dl.noflex dd ul li, .lineup section#feature .equipment dl.noflex dd ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
  .lineup section#equipment .equipment dl.noflex dd ul li:last-child, .lineup section#feature .equipment dl.noflex dd ul li:last-child {
    margin-bottom: 0;
  }
  .lineup section#equipment .equipment dl.noflex dd ul li figure, .lineup section#feature .equipment dl.noflex dd ul li figure {
    margin-bottom: 6vw;
  }
  .lineup section#equipment .equipment dl.noflex dd ul li h5, .lineup section#feature .equipment dl.noflex dd ul li h5 {
    font-size: 4vw;
  }
  .lineup section#equipment .equipment dl.noflex dd ul li p, .lineup section#feature .equipment dl.noflex dd ul li p {
    font-size: 3.5vw;
  }
}

.lineup section#feature .equipment {
  margin-bottom: 100px;
}

.lineup section#feature .equipment dl dt h3 img {
  width: auto;
}

.lineup section#feature .links {
  margin-bottom: 90px;
}

.lineup section#feature .links ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.lineup section#feature .links ul li {
  width: 100%;
  margin-right: 3%;
}

.lineup section#feature .links ul li:last-child {
  margin-right: 0;
}

.lineup section#feature .links ul li a.btn_blue {
  width: 90%;
  padding: 0 5%;
}

.lineup section#feature .links ul li a.btn_blue img {
  height: auto;
  width: auto;
}

@media screen and (max-width: 960px) {
  .lineup section#feature .links ul {
    display: block;
  }
  .lineup section#feature .links ul li {
    width: 100%;
    margin-bottom: 5vw;
  }
  .lineup section#feature .links ul li a.btn_blue img {
    width: 100%;
  }
}

.lineup section#feature .annotation p {
  font-size: 10.4pt;
}

@media screen and (max-width: 960px) {
  .lineup section#feature .annotation p {
    font-size: 3.2vw;
  }
}

.lineup section .more {
  display: none;
}

@media screen and (max-width: 960px) {
  .lineup section .more {
    display: block;
    background: url(../IMAGES/COMMON/icon-plus.png) right 5vw center no-repeat #009bdb;
    padding: 5vw;
    margin: 3vw 0 5vw;
  }
  .lineup section .more.active {
    background-image: url(../IMAGES/COMMON/icon-minus.png);
  }
}

/* ===============
***
***	ステーション
***
=================*/
.station .btn_blue.btn_search_location {
  width: 470px;
}

.station .btn_blue.btn_search_location img {
  height: 38px;
}

@media screen and (max-width: 960px) {
  .station .btn_blue.btn_search_location img {
    height: 6.5vw;
  }
}

.station .btn_blue.btn_search {
  width: 550px;
}

.station .btn_blue.btn_search img {
  height: 38px;
}

@media screen and (max-width: 960px) {
  .station .btn_blue.btn_search img {
    height: 6.5vw;
  }
}

.station .btn_blue.btn_refine {
  width: 550px;
}

.station .btn_blue.btn_refine img {
  height: 22px;
}

@media screen and (max-width: 960px) {
  .station .btn_blue.btn_refine img {
    height: 4.2vw;
  }
}

.station .btn_blue.btn_search_station {
  width: 340px;
}

.station .btn_blue.btn_search_station img {
  height: 38px;
}

@media screen and (max-width: 960px) {
  .station .btn_blue.btn_search_station img {
    height: 6.5vw;
  }
}

.station #mainimage {
  background-image: url(../images/station/main.jpg);
}

@media screen and (max-width: 960px) {
  .station #mainimage {
    background-image: url(../images/station/main_sp.jpg);
  }
}

.station.list #mainimage {
  background-image: url(../images/station/list_main.jpg);
}

@media screen and (max-width: 960px) {
  .station.list #mainimage {
    background-image: url(../images/station/list_main_sp.jpg);
  }
}

.station #pagetitle h2.blue {
  color: #009bdb;
}

.station #pagetitle h2 dl.address dt {
  font-size: 22pt;
  margin-bottom: 1.5em;
}

.station #pagetitle h2 dl.address dd {
  font-size: 16pt;
}

@media screen and (max-width: 960px) {
  .station #pagetitle h2 dl.address dt {
    font-size: 4vw;
  }
  .station #pagetitle h2 dl.address dd {
    font-size: 3.5vw;
  }
}

.station #pagetitle .notice {
  background: #2dbbf5;
  color: #fff;
  padding: 0.7em 2em !important;
  line-height: 1em;
  margin-bottom: 100px;
}

.station #pagetitle .notice.open {
  background: #2dbbf5;
}

.station #pagetitle .notice.close {
  background: #0184ba;
}

.station #pagetitle .notice.closed {
  background: #414141;
}

@media screen and (max-width: 960px) {
  .station #pagetitle .notice {
    margin-bottom: -10vw;
    padding: 0.7em 10%;
    width: 83%;
  }
}

.station #search_pref {
  padding: 160px 0 190px;
}

.station #search_pref h2 {
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .station #search_pref {
    padding: 25vw 0 20vw;
  }
  .station #search_pref h2 {
    margin-bottom: 12vw;
  }
}

.station .search_service {
  margin-bottom: 140px;
}

.station .search_service ul li {
  display: inline-block;
  margin-right: 40px;
}

.station .search_service ul li:last-child {
  margin-right: 0;
}

.station .search_service ul li label {
  font-size: 15pt;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .station .search_service {
    margin-bottom: 18vw;
  }
  .station .search_service ul li {
    margin-right: 0;
    margin-bottom: 3vw;
    display: block;
  }
  .station .search_service ul li label {
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.4em;
    font-size: 3.5vw;
  }
}

.station #search_station {
  padding: 210px 0 160px;
  position: relative;
}

.station #search_station h2 {
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .station #search_station {
    padding: 25vw 0 0;
  }
  .station #search_station h2 {
    margin-bottom: 12vw;
  }
  .station #search_station .serch_station {
    margin-bottom: 15vw;
  }
  .station #search_station .serch_station li {
    margin-bottom: 0;
  }
  .station #search_station .serch_station li:last-child {
    position: absolute;
    left: 0;
    bottom: -23vw;
    margin-bottom: 0;
    z-index: 1;
  }
}

.station #search_lineup {
  padding: 160px 0;
}

.station #search_lineup h2 {
  margin-bottom: 100px;
}

.station #search_lineup .search_lineup {
  margin-bottom: 140px;
}

.station #search_lineup h3 {
  margin-bottom: 60px;
}

.station #search_lineup h3 img {
  height: 24px;
}

.station #search_lineup .search_pref {
  margin-bottom: 120px;
}

@media screen and (max-width: 960px) {
  .station #search_lineup {
    padding: 25vw 0;
  }
  .station #search_lineup h2 {
    margin-bottom: 12vw;
  }
  .station #search_lineup h3 {
    margin-bottom: 6vw;
  }
  .station #search_lineup .search_lineup {
    margin-bottom: 14vw;
  }
  .station #search_lineup .search_pref {
    margin-bottom: 12vw;
  }
}

.station #station_list {
  padding: 160px 0;
}

.station #station_list h2 {
  margin-bottom: 70px;
}

.station #station_list ul.station_list {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.station #station_list ul.station_list li {
  width: 47%;
  margin-bottom: 60px;
  position: relative;
}

.station #station_list ul.station_list li a {
  position: relative;
  display: block;
  text-decoration: none;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.station #station_list ul.station_list li a dl.address {
  padding: 40px 80px 40px 40px;
}

.station #station_list ul.station_list li a dl.address dt {
  margin-bottom: 0.8em;
}

.station #station_list ul.station_list li a dl.address dd.train {
  margin-bottom: 1em;
}

.station #station_list ul.station_list li a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  background: url(../IMAGES/COMMON/arrow_white_right.png) center center/11px auto no-repeat #009bdb;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.station #station_list ul.station_list li a:hover {
  opacity: 0.7;
}

_:-ms-fullscreen:after, :root .station #station_list ul.station_list li a:hover:after {
  opacity: 0.7;
}

.station #station_list ul.station_list li .extend {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.station #station_list ul.station_list li .extend p {
  line-height: 1em;
}

.station #station_list ul.station_list li .extend .notice {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #fff;
  line-height: 1em;
  padding: 1.2em 1.4em;
}

.station #station_list ul.station_list li .extend .notice.open {
  background: #2dbbf5;
}

.station #station_list ul.station_list li .extend .notice.close {
  background: #0184ba;
}

.station #station_list ul.station_list li .extend .new {
  background: #fff72a;
  vertical-align: middle;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  padding: 0 40px;
}

.station #station_list ul.station_list li.closed a:after {
  background-color: #6b6b6b;
}

.station #station_list ul.station_list li.closed .notice {
  background-color: #414141;
}

@media screen and (max-width: 960px) {
  .station #station_list {
    padding: 15vw 0;
  }
  .station #station_list.map2 {
    padding-top: 25vw;
  }
  .station #station_list ul.station_list {
    display: block;
  }
  .station #station_list ul.station_list li {
    width: 100%;
    margin-bottom: 7vw;
  }
  .station #station_list ul.station_list li a:after {
    width: 8%;
  }
  .station #station_list ul.station_list li a dl {
    padding: 8vw 16% 8vw 8vw;
  }
  .station #station_list ul.station_list li .extend .notice {
    font-size: 3.5vw;
  }
  .station #station_list ul.station_list li .extend .new {
    width: 13%;
    padding: 0 3vw;
  }
}

.station .flex {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.station .flex li {
  width: 47%;
}

.station .flex li .btn_blue {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .station .flex {
    display: block;
  }
  .station .flex li {
    width: 100%;
    margin-bottom: 5vw;
  }
}

.station .search_pref {
  background: url(../images/station/arrow_right.png) center center no-repeat;
}

@media screen and (max-width: 960px) {
  .station .search_pref {
    background: none;
  }
}

.station .search_lineup {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.station .search_lineup li {
  width: 33%;
}

.station .search_lineup li label dl dt {
  height: 230px;
}

.station .search_lineup li label dl dt img {
  max-width: 90%;
}

.station .search_lineup li label dl dd {
  font-size: 16pt;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .station .search_lineup {
    display: block;
  }
  .station .search_lineup li {
    width: 100%;
    margin-bottom: 7vw;
  }
  .station .search_lineup li label dl {
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .station .search_lineup li label dl dt {
    text-align: center;
    height: auto;
    width: 60%;
  }
  .station .search_lineup li label dl dd {
    width: 40%;
    white-space: nowrap;
    font-size: 4vw;
    display: -webkit-flex;
    -webkit-justify-content: flex-start;
    -webkit-align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .station .search_lineup li.lineup_leaf label dl dt img {
    width: 104%;
  }
  .station .search_lineup li.lineup_note label dl dt img {
    width: 97%;
    max-width: inherit;
  }
}

.station #search_keyword {
  padding: 160px 0;
}

.station #search_keyword h2 {
  margin-bottom: 100px;
}

.station #search_keyword .search_keyword {
  text-align: center;
}

.station #search_keyword .search_keyword input[type="text"] {
  margin-bottom: 150px;
  padding: 1.5em 3%;
  width: 94%;
}

.station #search_keyword .search_keyword textarea {
  width: 94%;
  height: 5em;
  padding: 1em 3%;
  font-size: 3.5vw;
  margin-bottom: 10vw;
}

@media screen and (max-width: 960px) {
  .station #search_keyword {
    padding: 18vw 0;
  }
  .station #search_keyword h2 {
    margin-bottom: 12vw;
  }
}

.station #station_detail {
  padding: 160px 0;
}

.station #station_detail #detail_image {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: flex-end;
  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;
  margin-bottom: 60px;
}

.station #station_detail #detail_image figure {
  width: 47%;
}

.station #station_detail #detail_image figure img {
  max-width: 100%;
}

.station #station_detail #detail_image .qr {
  background: #fff;
  width: 47%;
}

.station #station_detail #detail_image .qr dl {
  padding: 25px;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.station #station_detail #detail_image .qr dl dt {
  margin-right: 25px;
}

.station #station_detail #detail_image .qr dl dd p {
  font-weight: bold;
}

.station #station_detail #detail_info dl {
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 20px;
}

.station #station_detail #detail_info dl dt, .station #station_detail #detail_info dl dd {
  font-size: 12.8pt;
}

.station #station_detail #detail_info dl dt {
  width: 340px;
  background: #fff;
  color: #009bdb;
  border-right: solid 2px #009bdb;
  font-weight: bold;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

.station #station_detail #detail_info dl dd {
  padding: 40px 60px;
  background: #fff;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.8em;
}

@media screen and (max-width: 960px) {
  .station #station_detail {
    padding: 15vw 0;
  }
  .station #station_detail #detail_image {
    margin-bottom: 7vw;
  }
  .station #station_detail #detail_image figure {
    width: 100%;
  }
  .station #station_detail #detail_info dl {
    margin-bottom: 5vw;
    display: block;
  }
  .station #station_detail #detail_info dl dt, .station #station_detail #detail_info dl dd {
    font-size: 4vw;
  }
  .station #station_detail #detail_info dl dt {
    width: 100%;
    padding: 1em 0;
    border-right: none;
    border-bottom: solid 2px #009bdb;
  }
  .station #station_detail #detail_info dl dd {
    width: 80%;
    padding: 1.5em 10%;
    text-align: center;
  }
}

.station #station_way {
  padding: 160px 0;
}

.station #station_way h2 {
  margin-bottom: 120px;
}

.station #station_way ol {
  list-style: none;
}

.station #station_way ol li {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 55px;
}

.station #station_way ol li:after {
  content: "";
  width: 16px;
  height: 65px;
  background: url(../images/station/way_arrow.png) center top/contain no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -8px;
}

.station #station_way ol li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.station #station_way ol li:last-child:after {
  display: none;
}

.station #station_way ol li dl {
  background: #f8f8f8;
  padding: 20px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.station #station_way ol li dl dt {
  width: 320px;
  margin-right: 75px;
}

.station #station_way ol li dl dd {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16pt;
  line-height: 1.8em;
  display: -webkit-flex;
  -webkit-justify-content: flex-start;
  -webkit-align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.station #station_way ol li span {
  display: block;
  position: absolute;
  left: 50%;
  top: -40px;
  margin-left: -40px;
  background: #000;
  width: 80px;
  height: 80px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  border-radius: 50%;
}

@media screen and (max-width: 960px) {
  .station #station_way {
    padding: 15vw 0;
  }
  .station #station_way h2 {
    margin-bottom: 13vw;
  }
  .station #station_way ol li dl {
    display: block;
    padding: 0;
  }
  .station #station_way ol li dl dt {
    width: 100%;
  }
  .station #station_way ol li dl dt img {
    width: 100%;
  }
  .station #station_way ol li dl dd {
    width: 80%;
    padding: 4vw 10%;
    font-size: 4vw;
  }
}

.station.search_station #pagetitle {
  padding: 100px 0;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.station.search_station #pagetitle #pagetitle_inner {
  width: auto !important;
  margin-right: 70px;
}

.station.search_station #pagetitle #pagetitle_inner input[type="text"] {
  width: 440px;
  border: solid 1px #2dbbf5 !important;
  color: #009bdb;
}

.station.search_station #pagetitle .pagetitle_link {
  padding-top: 0;
}

@media screen and (max-width: 960px) {
  .station.search_station #pagetitle {
    padding: 14vw 0 12vw;
  }
  .station.search_station #pagetitle #pagetitle_inner {
    margin-right: 0;
  }
  .station.search_station #pagetitle #pagetitle_inner input[type="text"] {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.station dl.address dt {
  color: #009bdb;
  font-size: 16pt;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.station dl.address dd {
  font-size: 14pt;
  line-height: 1.6em;
}

@media screen and (max-width: 960px) {
  .station dl.address dt {
    font-size: 4vw;
  }
  .station dl.address dd {
    font-size: 3.5vw;
  }
}

.station .list_nav {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 100px;
}

.station .list_nav.list_nav_bottom {
  padding-bottom: 0;
  padding-top: 40px;
}

@media screen and (max-width: 960px) {
  .station .list_nav.list_nav_bottom {
    padding-top: 4vw;
  }
}

.station .list_nav ul {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 47%;
}

.station .list_nav ul li a, .station .list_nav ul li span {
  display: block;
  color: #2dbbf5;
  text-decoration: none;
  font-size: 16pt;
  line-height: 1em;
  width: 100%;
  height: 72px;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  background: #fff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.station .list_nav ul li a:hover {
  background: #EDF6FC;
}

.station .list_nav ul li.on a {
  background: #2dbbf5;
  color: #fff;
}

.station .list_nav ul.num li {
  width: 19%;
}

.station .list_nav ul.dir li {
  width: 49%;
}

@media screen and (max-width: 960px) {
  .station .list_nav {
    display: block;
    padding-bottom: 8vw;
    padding-top: 3vw;
  }
  .station .list_nav ul {
    width: 100%;
    margin-bottom: 10px;
  }
}

.station button, .station input[type="submit"], .station input[type="button"] {
  border: none;
}

.station select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  padding: 40px 7%;
  width: 100%;
  font-size: 18pt;
  font-weight: bold;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: url(../images/station/arrow_black_down.png) right 40px center/22px auto no-repeat #fff;
  border: solid 1px #ccc;
}

@media screen and (max-width: 960px) {
  .station select {
    font-size: 4.5vw;
    padding: 1em 7%;
  }
}

_:-ms-fullscreen, :root .station select {
  background: #fff;
}

.station .bg-gray select {
  border: none;
}

.station input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16pt;
  width: 86%;
  height: 100%;
  line-height: 1em;
  border: none;
  outline: solid 1px #ccc;
  padding: 0 7%;
}

@media screen and (max-width: 960px) {
  .station input[type="text"] {
    font-size: 4.5vw;
    height: auto;
    padding: 1em 7%;
  }
}

.station input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 35px;
  height: 35px;
  background: #fff;
  border: solid 1px #ccc;
}

.station input[type="checkbox"]:checked {
  border: solid 1px #009bdb;
  background: url(../IMAGES/COMMON/check.png) center center/60% auto no-repeat #009bdb;
}

@media screen and (max-width: 960px) {
  .station input[type="checkbox"] {
    width: 5vw;
    height: 5vw;
    margin-right: 2vw;
  }
}

/* ===============
***
***	サービス案内
***
=================*/
.service #mainimage {
  background-image: url(../images/service/main.jpg);
}

@media screen and (max-width: 960px) {
  .service #mainimage {
    background-image: url(../images/service/main_sp.jpg);
  }
}

.service section {
  padding: 160px 0;
}

.service section .inner > h2 {
  margin-bottom: 80px;
}

.service section .inner > h2 img {
  height: 28px;
}

.service section .inner > figure {
  margin-bottom: 55px;
}

.service section .inner h3.border {
  margin-bottom: 50px;
}

@media screen and (max-width: 960px) {
  .service section .inner > h2 img {
    height: auto;
  }
  .service section .inner h3.border {
    margin-bottom: 20px;
  }
}

.service #about .sub {
  text-align: center;
  margin-bottom: 55px;
}

@media screen and (max-width: 960px) {
  .service #about {
    padding: 16vw 0;
  }
  .service #about h3 img {
    height: auto;
  }
  .service #about p {
    width: 100%;
  }
}

.service #appeal .block {
  margin-bottom: 120px;
}

.service #appeal .block p {
  margin-bottom: 60px;
}

.service #appeal .block ul.links {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.service #appeal .block ul.links li a.btn_blue {
  width: 470px;
}

.service #appeal .block ul.terms {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service #appeal .block ul.terms li {
  margin-bottom: 20px;
  width: 550px;
  background: #f8f8f9;
}

.service #appeal .block ul.terms li dl dt img, .service #appeal .block ul.terms li dl dd img {
  max-width: 100%;
}

.service #appeal .block ul.terms li dl dt {
  border-bottom: solid 1px #009bdb;
  padding: 40px 0;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
}

_:-ms-fullscreen img, :root .service #appeal .block ul.terms li dl dt img {
  width: 530px;
}

.service #appeal .block ul.terms li dl dd {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 60px 0;
  text-align: center;
}

.service #appeal .block ul.terms li dl dd img {
  max-width: 80%;
}

@media screen and (max-width: 960px) {
  .service #appeal {
    padding: 16vw 0;
  }
  .service #appeal h2 img {
    height: auto;
  }
  .service #appeal .block ul.links {
    display: block;
  }
  .service #appeal .block ul.links li {
    margin-bottom: 4vw;
  }
  .service #appeal .block ul.links li a.btn_blue {
    width: 80% !important;
  }
  .service #appeal .block ul.terms li dl {
    display: block;
  }
  .service #appeal .block ul.terms li dl dt, .service #appeal .block ul.terms li dl dd {
    width: 100%;
    padding: 0;
    height: auto;
    padding: 6vw 0;
    display: block;
    text-align: center;
  }
  .service #appeal .block ul.terms li dl dt img, .service #appeal .block ul.terms li dl dd img {
    max-width: 90%;
  }
}

/* ===============
***
***	FAQ
***
=================*/
.faq #wrapper #pagetitle {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  -webkit-align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.faq #wrapper #pagetitle > div {
  width: 100%;
}

.faq #wrapper #pagetitle #pagetitle_inner h2 img {
  margin: 100px 0;
}

.faq #wrapper #pagetitle .pagetitle_link {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .faq #wrapper #pagetitle {
    display: block;
  }
  .faq #wrapper #pagetitle #pagetitle_inner h2 img {
    margin: 10vw 0 20vw;
  }
  .faq #wrapper #pagetitle .pagetitle_link {
    padding: 0;
  }
}

.faq #wrapper section#faq {
  padding: 160px 0;
}

.faq #wrapper section#faq article .cat {
  display: block;
  color: #fff;
  font-size: 16pt;
  text-decoration: none;
  padding: 1.5em;
  background: url(../IMAGES/COMMON/arrow_white_down.png) right 1.5em center no-repeat;
  background-color: #009bdb;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.faq #wrapper section#faq article .cat:hover {
  opacity: 0.7;
}

.faq #wrapper section#faq article:nth-child(even) .cat {
  background-color: #2dbbf5;
}

.faq #wrapper section#faq article .faq_container {
  opacity: 0;
}

.faq #wrapper section#faq article dl {
  margin-bottom: 30px;
  padding: 30px 60px;
  background: #fff;
}

.faq #wrapper section#faq article dl dt, .faq #wrapper section#faq article dl dd {
  padding-left: 65px;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  line-height: 1.6em;
  word-break: break-all;
}

.faq #wrapper section#faq article dl dt {
  font-size: 16pt;
  font-weight: bold;
  background: url(../images/faq/icon-q.png) left top/28px auto no-repeat;
  cursor: pointer;
}

.faq #wrapper section#faq article dl dt span {
  display: block;
  background: url(../IMAGES/COMMON/arrow_black_down.png) right center/24px auto no-repeat;
  font-size: inherit;
  padding-right: 40px;
  line-height: 1.6em;
}

.faq #wrapper section#faq article dl dt:hover {
  opacity: 0.7;
}

.faq #wrapper section#faq article dl dd {
  font-size: 11.2pt;
  background: url(../images/faq/icon-a.png) left 30px/28px auto no-repeat;
  margin-top: 30px;
  padding-top: 30px;
  border-top: solid 1px #ccc;
}

@media screen and (max-width: 960px) {
  .faq #wrapper section#faq {
    padding: 16vw 0;
  }
  .faq #wrapper section#faq article .cat {
    font-size: 4vw;
    margin-bottom: 3vw;
    background-size: 4vw auto;
  }
  .faq #wrapper section#faq article dl {
    padding: 4vw 5vw;
    margin-bottom: 3vw;
  }
  .faq #wrapper section#faq article dl dt, .faq #wrapper section#faq article dl dd {
    padding-left: 7vw;
    background-size: 5vw auto;
  }
  .faq #wrapper section#faq article dl dt {
    font-size: 3.5vw;
  }
  .faq #wrapper section#faq article dl dt span {
    background-size: 4vw auto;
  }
  .faq #wrapper section#faq article dl dd {
    font-size: 3.5vw;
  }
}

.guidance-block {
  font-size: 14px;
  margin: 0 20px;
  padding-top: 0 !important;
}

.guidance-block__title {
  font-size: 18px;
  font-weight: bold;
}

.guidance-block__text {
  font-size: 14px;
}

.guidance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  border: 1px solid #CCCCCC;
  border-top: 0;
}

.guidance .s-blue {
  font-weight: bold;
  color: #009BDB;
}

.guidance__inner {
  font-size: 16px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px;
  border-top: 1px solid #CCCCCC;
}

.guidance__inner:nth-child(odd) {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 10%;
  flex: 0 1 10%;
  max-width: 10%;
  font-size: 14px;
}

.guidance__inner:nth-child(even) {
  font-size: 14px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 90%;
  flex: 0 1 90%;
  max-width: 90%;
  text-align: left;
  border-left: 1px solid #CCCCCC;
}

.guidance__inner:nth-child(2) {
  text-align: center;
}

.guidance__inner .box {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-top: -6px;
}

/* ===============
***
***	会員規約 / 約款 / 特定商取引法に基づく表記
***
=================*/
.yakkan #yakkan {
  padding: 60px 0;
}

.yakkan #yakkan h3 {
  background: #009bdb;
  color: #fff;
  font-size: 20pt;
  padding: 0.5em 1em;
  margin-bottom: 3em;
}

@media screen and (max-width: 960px) {
  .yakkan #yakkan h3 {
    margin-bottom: 1.5em;
  }
}

.yakkan #yakkan h4 {
  position: relative;
  padding-bottom: 30px;
  font-size: 16pt;
  margin-bottom: 2em;
}

.yakkan #yakkan h4:after {
  content: "";
  width: 100px;
  height: 6px;
  background: #009bdb;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 960px) {
  .yakkan #yakkan h4 {
    padding-bottom: 20px;
  }
  .yakkan #yakkan h4:after {
    height: 4px;
    width: 30%;
  }
}

.yakkan #yakkan p {
  margin-bottom: 1.5em;
}

.yakkan #yakkan p span {
  display: block;
  font-size: 12pt;
  padding-left: 1em;
  line-height: 2em;
}

@media screen and (max-width: 960px) {
  .yakkan #yakkan p span {
    font-size: 4vw;
  }
}

.yakkan #yakkan table.law {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #ccc;
}

.yakkan #yakkan table.law tbody tr th, .yakkan #yakkan table.law tbody tr td {
  border: solid 1px #ccc;
  font-size: 16pt;
  padding: 1em 1em;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6em;
}

.yakkan #yakkan table.law tbody tr th {
  background: #eaeaea;
  white-space: nowrap;
}

.yakkan #yakkan table.law tbody tr td {
  background: #fff;
}

@media screen and (max-width: 960px) {
  .yakkan #yakkan table.law {
    display: block;
    border: none;
    border-bottom: solid 1px #ccc;
  }
  .yakkan #yakkan table.law tbody, .yakkan #yakkan table.law tr, .yakkan #yakkan table.law th, .yakkan #yakkan table.law td {
    display: block;
    border-bottom: none !important;
    white-space: normal;
    font-size: 4vw;
  }
  .yakkan #yakkan table.law tbody tr th, .yakkan #yakkan table.law tbody tr td {
    font-size: 4vw;
  }
}

.yakkan #yakkan .yakkan_box {
  margin-bottom: 100px;
}

@media screen and (max-width: 960px) {
  .yakkan #yakkan {
    padding: 10vw 0;
  }
  .yakkan #yakkan h3 {
    font-size: 4.5vw;
  }
  .yakkan #yakkan .yakkan_box {
    margin-bottom: 10vw;
  }
}

.yakkan #sns {
  padding: 60px 0;
}

.yakkan #sns ul {
  margin: 0 auto 60px;
  text-align: center;
}

.yakkan #sns ul li {
  display: inline-block;
  margin: 0 30px;
}

.yakkan #sns ul li a img {
  width: 50px;
}

.yakkan #sns ul li a:hover {
  opacity: 0.7;
}

.yakkan #sns .btn {
  text-align: center;
}

.yakkan #sns .btn p {
  margin: 0 10px;
  display: inline-block;
}

.yakkan #sns .btn p a {
  background: #ebebeb;
  color: #000;
  height: 4em;
  width: 15em;
  text-decoration: none;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.yakkan #sns .btn p a:hover {
  background: #009bdb;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .yakkan #sns .btn p {
    margin: 1.5vw 0;
    width: 100%;
  }
  .yakkan #sns .btn p a {
    width: 100%;
  }
}

/* ===============
***
***	お知らせ
***
=================*/
.info #info {
  padding: 60px 0;
}

.info #info h3 {
  background: #009bdb;
  color: #fff;
  font-size: 20pt;
  padding: 0.5em 1em 0.4em;
  margin-bottom: 2em;
}

@media screen and (max-width: 960px) {
  .info #info h3 {
    margin-bottom: 1.5em;
    line-height: 1.4;
  }
}

.info #info h3.long_ttl {
  padding: 0.25em 1em 0.15em;
  line-height: 1.4;
}

.info #info h3.set_trigger {
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}

.info #info h3.set_trigger:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  right: 30px;
  bottom: 40%;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.info #info h3.set_trigger.open:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  right: 30px;
  top: 40%;
  right: 30px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.info #info h3.set_trigger:hover {
  opacity: 0.8;
}

.info #info h4 {
  position: relative;
  padding-bottom: 30px;
  font-size: 16pt;
  margin-bottom: 2em;
}

.info #info h4:after {
  content: "";
  width: 100px;
  height: 6px;
  background: #009bdb;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 960px) {
  .info #info h4 {
    padding-bottom: 20px;
  }
  .info #info h4:after {
    height: 4px;
    width: 30%;
  }
}

.info #info p {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .info #info p {
    font-size: 3.6vw;
  }
}

.info #info p span {
  display: block;
  font-size: 14pt;
  padding-left: 1em;
  line-height: 2em;
}

@media screen and (max-width: 960px) {
  .info #info {
    padding: 10vw 0;
  }
  .info #info h3 {
    font-size: 4.5vw;
  }
}

.info #info .middle_txt {
  font-size: 18px;
}

@media screen and (max-width: 960px) {
  .info #info .middle_txt {
    font-size: 3.8vw;
  }
}

.info #info .set_box {
  padding: 0 30px 40px;
}

@media screen and (max-width: 960px) {
  .info #info .set_box {
    padding: 0 4.5vw 6vw;
  }
}

.info #info .set_box time {
  display: block;
  margin: -1em 0 1em;
  font-size: 16px;
  line-height: 1.6;
  text-align: right;
}

@media screen and (max-width: 960px) {
  .info #info .set_box time {
    margin: -0.5em 0 0.75em;
    font-size: 3.6vw;
  }
}

.info #info .set_box h5 {
  margin: 1.5em 0 0.5em;
  font-size: 18px;
  line-height: 2;
  font-weight: normal;
}

@media screen and (max-width: 960px) {
  .info #info .set_box h5 {
    font-size: 3.8vw;
  }
}

.info #info .set_box a {
  color: #009bdb;
}

.info #info dl.set_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info #info dl.set_box dt {
  margin-bottom: 1vw;
  font-size: 3.6vw;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .info #info dl.set_box dt {
    width: 170px;
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.info #info dl.set_box dd {
  margin-bottom: 4vw;
  font-size: 3.6vw;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .info #info dl.set_box dd {
    width: 940px;
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.info #info .trigger_content {
  display: none;
}

.info #info .flex_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.info #info .flex_box span {
  padding: 0;
  font-size: 16px;
}

@media screen and (max-width: 960px) {
  .info #info .flex_box span {
    font-size: 3.6vw;
  }
  .info #info .flex_box span.area, .info #info .flex_box span.station {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .info #info .flex_box .area {
    width: 110px;
  }
  .info #info .flex_box .station {
    width: 1000px;
  }
}

.info #info .flex_box .title {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .info #info .flex_box li {
    width: 49%;
  }
}

.info #info .youtube_wrap {
  margin: 30px auto;
  max-width: 640px;
}

.info #info .youtube_wrap .youtube_inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.info #info .youtube_wrap .youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.info #info .youtube_wrap + div {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .info #info .inner.plus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .info #info .inner.plus .section_wrap {
    width: 900px;
    padding-right: 50px;
  }
  .info #info .inner.plus .section_wrap .set_box dd {
    width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .info #info .inner.plus .archive_wrap {
    width: 250px;
  }
}

.info #info .inner.plus .archive_wrap h4 {
  margin-bottom: 1.5em;
  padding: 10px 0 20px;
}

@media screen and (max-width: 960px) {
  .info #info .inner.plus .archive_wrap h4 {
    margin-bottom: 1em;
    padding: 2vw 0 4vw;
    font-size: 4.5vw;
  }
}

.info #info .inner.plus .archive_wrap h4:after {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .info #info .inner.plus .archive_wrap h4:after {
    height: 1vw;
  }
}

.info #info .inner.plus .archive_wrap .archive_list li {
  margin-bottom: 0.5em;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 960px) {
  .info #info .inner.plus .archive_wrap .archive_list li {
    margin-right: 1.5em;
    display: inline-block;
    font-size: 3.6vw;
  }
}

.info #info .inner.plus .archive_wrap .archive_list li a {
  padding-left: 0.5em;
  color: #000;
  text-decoration: none;
}

.info #info .inner.plus .archive_wrap .archive_list li a:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.5em;
  border-left: 6px solid #009bdb;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.info #info .inner.plus .archive_wrap .archive_list li a:hover {
  color: #009bdb;
}

.info #sns {
  padding: 60px 0;
}

.info #sns ul {
  margin: 0 auto 60px;
  text-align: center;
}

.info #sns ul li {
  display: inline-block;
  margin: 0 30px;
}

.info #sns ul li a img {
  width: 50px;
}

.info #sns ul li a:hover {
  opacity: 0.7;
}

.info #sns .btn {
  text-align: center;
}

.info #sns .btn p {
  margin: 0 10px;
  display: inline-block;
}

.info #sns .btn p a {
  background: #ebebeb;
  color: #000;
  height: 4em;
  width: 15em;
  text-decoration: none;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  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;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.info #sns .btn p a:hover {
  background: #009bdb;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .info #sns .btn p {
    margin: 1.5vw 0;
    width: 100%;
  }
  .info #sns .btn p a {
    width: 100%;
  }
}

.campaign {
  padding: 100px 0;
  line-height: 1.5;
}

.campaign dl, .campaign dt, .campaign dd {
  font-size: 12pt;
  line-height: 2em;
  letter-spacing: 0.1em;
}

.campaign ol, .campaign li {
  font-size: 12pt;
  line-height: 2em;
  letter-spacing: 0.1em;
  list-style: none;
}

.campaign .t_mb30 {
  margin-bottom: 30px;
}

.campaign__title {
  text-align: center;
  font-size: 20pt;
  margin-bottom: 60px;
  position: relative;
}

.campaign__title::after {
  content: '';
  display: inline-block;
  width: 300px;
  height: 5px;
  background: #009bdb;
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.campaign .tw-b-blur {
  font-weight: bold;
  font-size: 21pt;
  color: #009bdb;
}

.campaign .list {
  margin-bottom: 80px;
}

.campaign .list__title {
  font-weight: bold;
}

.campaign .list__block {
  margin-bottom: 20px;
}

.campaign .list__number li {
  text-indent: -4rem;
  padding-left: 4rem;
}

.campaign .tell {
  border: 1px solid #009bdb;
  display: inline-block;
  padding: 20px;
}

.campaign .disp_sp {
  display: none;
}

@media screen and (max-width: 960px) {
  .campaign__title {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }
  .campaign__title::after {
    content: '';
    width: 100px;
  }
  .campaign .disp_sp {
    display: block;
  }
}

.comment {
  width: 1170px;
	margin: 100px auto 0;
}

.comment p {
	margin-left: 1em;
}
.comment p::before {
	content: "※";
	margin-left: -1em;
}

@media screen and (max-width: 960px) {
	.comment {
  	width: 83%;
		margin-top: 10vw;
	}
}

section.self_contact {
	width: 900px;
	margin: 100px auto 0;
  margin-top: 100px;
  border: solid 2px #2dbbf5;
  padding: 40px;
	box-sizing: border-box;
}

.reserve .self_contact h2,
#wrapper section .callcenter_title {
	margin-bottom: 20px;
	font-size: 25pt;
	font-weight: normal;
}

.reserve .self_contact .accordion .slide_btn {
	text-align: left;
	margin-bottom: 0;
}

.reserve .self_contact .accordion h3 {
	margin-top: 80px;
}

.reserve .self_contact .accordion article:last-child {
	margin-bottom: 50px;
}

.self_contact br,
.callcenter_title br {
	display: none;
}

.self_contact .self_tel {
	text-align: center;
}

.self_contact .self_tel img {
	width: 388px;
}
	
.self_contact .self_tel_example {
	padding: 20px 0 0;
}

.reserve .self_contact .accordion .slide_target {
	padding: 0;
}

.self_contact h3 {
	font-size: 20pt;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
  line-height: 1.8em;
}

.self_contact dl {
	margin: 0 0 30px 20px;
	display: flex;
}

.self_contact dl:last-of-type {
	margin-bottom: 50px;
}

.self_contact dt {
	font-weight: bold;
	width: 150px;
}

.self_contact small {
display: block;
	margin: -25px 0 0 20px;
}

.self_contact .self_tel_example_accordion_comment::before {
	content: "※";
}

@media screen and (max-width: 960px) {
	section.self_contact {
  	width: 83%;
		margin-top: 10vw;
		padding: 4vw 3vw 3vw;
		border-width: 1px
	}
	
	.reserve .self_contact .accordion .slide_btn {
	  font-size: 4vw;
		text-align: left;
	}
	
	.self_contact br,
	.callcenter_title br {
		display: block;
	}

	.self_contact .self_tel img {
		width: 100%;
	}
	
	.reserve .self_contact h2,
	#wrapper section .callcenter_title {
		margin-bottom: 5vw;
		font-size: 5vw;
		line-height: 2;
	}
	.reserve .self_contact .accordion h3 {
		margin: 10vw 0 10vw;
	}
	
	.reserve .self_contact .accordion article:last-child {
		margin-bottom: 10vw;
	}
	
	.self_contact dl {
		display: block;
		margin: 0 0 4vw 5vw;
	}
	
	.self_contact dt {
		width: 100%;
		margin-bottom: 3vw;
	}
	
	.self_contact small {
	margin: -2vw 0 0 5vw;
	}
	
	.self_contact p {
  	font-size: 4vw;
		line-height: 1.4;
		margin-bottom: 1.5vw;
	}
	
	.self_contact .self_tel_example {
  	padding: 4vw 0;
		margin-top: 4vw;
		border-width: 1px
	}

}
