@charset "utf-8";
/* CSS Document */
#cWrap {
  width: 100%;
}
/* header------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  width: 100%;
  z-index: 1000;
  height: 77px;
}
#header:after {
  display: none;
}
header .header-inner {
  height: 77px;
  margin: 0 auto;
  width: 100%;
}
header .header-inner .logo {
  margin-top: 13px;
  float: left;
  width: 330px;
  height: auto;
}
header .header-inner .logo a {
  display: block;
}
header .header-inner .logo-fs {
  margin: 16px 0 0 0;
  float: right;
  width: 200px;
  height: auto;
}
header .header-inner .logo-fs a {
  display: block;
}
@media screen and (max-width: 750px) { /*sp*/
  #header {
    box-sizing: border-box;
    border-bottom: 1px solid #f9f9f8;
    height: 51px;
  }
  header .header-inner {
    width: 100%;
    height: 51px;
  }
  header .header-inner .logo {
    margin: 0;
    position: absolute;
    left: 7px;
    top: 10px;
    width: 180px;
  }
  header .header-inner .logo-fs {
    margin: 0;
    position: absolute;
    right: 7px;
    top: 12px;
    width: 120px;
  }
}
@media screen and (min-width:981px) { /* pc + tb */
  header .header-inner {
    width: 980px;
  }
}
@media screen and (min-width:1201px) { /* pc wide */
  header .header-inner {
    width: 1200px;
  }
}
header .header-inner .logo img {
  width: 100%;
}
header .header-inner .logo-fs img {
  width: 100%;
}
header ul {
  padding: 0;
  float: right;
  margin-top: 18px;
}
header ul li {
  float: left;
  text-align: center;
  margin-left: 2px;
}
header ul li:first-child a {
  border-right: 1px solid #999;
}
header ul li a {
  height: 40px;
  color: #333;
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify;
  /*--- IE10 ---*/
  -webkit-justify-content: center;
  /*--- safari（PC）用 ---*/
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.6rem;
  padding: 0 25px;
}
header ul li a:hover {
  color: #000;
}
header ul li a i {
  margin-right: 10px;
}
header .menu {
  display: none;
}
@media screen and (max-width: 750px) { /*sp*/
  header ul {
    display: none;
    width: 100%;
    margin: 50px 0 0;
    padding: 0;
    float: none;
    clear: both;
    background: #FFF;
    border-left: none;
  }
  header ul li {
    height: auto;
    border-right: none;
    display: block;
    width: 100%;
    border-bottom: 1px solid #CCC;
  }
  header ul li:first-child a {
    border-right: none;
  }
  header ul li a {
    display: inline-block;
    position: relative;
    height: auto;
    padding: 3% 0;
    text-indent: -2.5em;
    margin-left: 2.5em;
    text-align: left;
  }
  header .menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    display: -webkit-flex;
    /* Safari */
    display: flex;
    -webkit-justify-content: center;
    /* Safari */
    justify-content: center;
    -webkit-align-items: center;
    /* Safari */
    align-items: center;
    background: #3397d5;
  }
  header .menu .line-wrap {
    position: relative;
    width: 17px;
    height: 12px;
  }
  header .menu .line-wrap .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-out;
  }
  header .menu .line-wrap .line:nth-child(2) {
    top: 5px;
  }
  header .menu .line-wrap .line:nth-child(3) {
    top: 10px;
  }
}
header.is-open ul {
  display: block;
}
header.is-open .menu .line-wrap .line:nth-child(1) {
  transform: translateY(5px) rotate(-225deg);
}
header.is-open .menu .line-wrap .line:nth-child(2) {
  display: none;
}
header.is-open .menu .line-wrap .line:nth-child(3) {
  transform: translateY(-5px) rotate(225deg);
}
/**#contents*********************************************/
#contents {
  width: 980px;
  margin: 30px auto -20px auto;
  padding: 0;
  text-align: left;
  background: url(/cmn/img/contents-bg.gif) left top repeat-y;
}
article a {
  color: #ef7a00;
  text-decoration: underline;
  overflow: hidden;
  outline: none;
}
article a:visited {
  color: #ef7a00;
}
article a:hover {
  color: #ef7a00;
  text-decoration: none;
}
/*リンク黒*/
article .alink-black a {
  color: #000;
  text-decoration: none;
  overflow: hidden;
  outline: none;
}
article .alink-black a:visited {
  color: #000;
}
article .alink-black a:hover {
  color: #000;
  text-decoration: underline;
}
article h3 {
  clear: both;
  border-left: 3px solid #ef7a00;
  border-bottom: 1px solid #a6a691;
  padding: 0 0 5px 15px;
  font-size: 115%;
  margin: 2em 0 1em 0;
}
article h3.h3none {
  border: none;
  padding: 0;
}
article .ttl {
  clear: both;
  border-left: none;
  border-bottom: none;
  background: #f4f1ed;
  padding: 5px 0 5px 13px;
  font-weight: bold;
  margin: 1em 0;
}
article .ttl:first-child {
  margin: 0 0 1em 0;
}
article h4, article .ttl02 {
  border-bottom: 1px solid #a6a691;
  padding-bottom: 5px;
  margin: 2em 0 1em 0;
  font-weight: bold;
}
article h4.h4none {
  border: none;
  padding-bottom: 0;
  margin-top: 0;
}
article h5, article .ttl03 {
  position: relative;
  clear: both;
  font-weight: bold;
  margin: 1em 0 1em 1.5em;
}
article h5:after, article .ttl03:after {
  display: block;
  content: '';
  position: absolute;
  top: 0.5em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #ea510e;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
article h5.h5none {
  position: static;
  margin: 1em 0;
}
article h5.h5none:after {
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  background: none;
}
article .ttl04 {
  clear: both;
  background: #f2902a;
  padding: 5px 0 5px 13px;
  color: #FFF;
  font-size: 105%;
  font-weight: bold;
  margin: 1em 0;
}
article p, article ul, article ol, article li, article dl, article table {
  margin-bottom: 1em;
}
article p:last-child, article ul:last-child, article ol:last-child, article dl:last-child, article table:last-child {
  margin-bottom: 0;
}
#contents {
  min-height: 1%;
}
#contents:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/*\*/
* html #contents {
  height: 1%;
}
#contents {
  display: block;
}
.txt-small04 {
    font-size: 60%;
    letter-spacing: 0;
}
.txt-small05 {
    font-size: 50%;
    letter-spacing: 0;
}
/**/
/****************************************
 singleLpベース
*****************************************/
body {
  overflow-x: hidden;
}
body.is-tb {
  min-width: auto;
}
#sidebar {
  display: none;
}
#cWrap {
  background: none;
  margin-top: 77px;
}
#contents {
  background: none;
  margin-top: 0;
}
#h1Wrap {
  display: none;
}
.column2.column2Box {
  width: 730px;
}
.inquiry-tel dd {
  font-size: 96%;
  padding: 7px 0 7px 0;
}
/****************************************
 h1見出し画像
*****************************************/
img.maxw100 {
  /*  width: 100%;*/
  max-width: 100%;
  height: auto;
}
#mainview h1.singleLp {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 2;
  width: 900px;
  height: auto;
  text-align: center;
}
#mainview h1.singleLp > img {
  width: 900px;
  height: auto;
}
h1.singleLp > img.only-pc {
  display: block;
}
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
#article #message h2.singleLp {
  color: #ef7a00;
}
#article #message p {
  text-align: center;
  font-weight: 500;
  color: #333;
}
#article #message strong {
  color: #ef7a00;
  font-size: 110%;
}
#mainview {
  position: relative;
}
@media screen and (max-width: 750px) { /*Sp*/
  #wrap #cWrap {
    margin-top: 51px !important;
  }
  #cWrap > #contents > #article {
    padding-top: 0 !important;
  }
  h1.singleLp {}
  h1.singleLp > img.only-pc {
    display: none;
  }
  h1.singleLp > img.only-sp {
    display: block;
    width: 100%;
    height: auto;
  }
  .column2.column2Box {
    width: 100%;
  }
  #article #message h2.singleLp, #article #message p {
    text-align: left;
  }
  #mainview .ferry, #mainview .suitcases {
    display: none;
  }
  #mainview h1.singleLp {
    max-width: 95%;
  }
  #mainview h1.singleLp > img {
    max-width: 100%;
  }
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
  body.singleLp #contents {
    margin: 0 auto -25px 0;
    width: 100% !important;
  }
  #article {
    width: 100%;
  }
  #article #message h2.singleLp {
    text-align: center;
  }
  #article #message p {
    text-align: left;
  }
  #mainview .ferry {
    position: absolute;
    top: 200px;
    left: -100px;
    z-index: 1;
    width: 100px;
  }
  #mainview .suitcases {
    position: absolute;
    top: 200px;
    right: 100px;
    z-index: 1;
    width: 100px;
  }
  #mainview .ferry img {
    width: 100px;
  }
  #mainview .suitcases img {
    width: 100px;
  }
  #mainview h1.singleLp {
    max-width: 95%;
  }
  #mainview h1.singleLp > img {
    max-width: 100%;
  }
}
@media screen and (min-width:981px) { /* pc wide */
  #article {
    width: 980px;
  }
}
@media screen and (min-width:900px) { /* pc wide wide */
  #mainview .ferry {
    position: absolute;
    top: 20rem;
    left: -50px;
    z-index: 1;
    width: calc(100vw / 4);
  }
  #mainview .suitcases {
    position: absolute;
    top: 24rem;
    right: 50px;
    z-index: 1;
    width: calc(100vw / 6);
  }
  #mainview .ferry img {
    width: calc(100vw / 4);
  }
  #mainview .suitcases img {
    width: calc(100vw / 6);
    max-width: 100%;
  }
}
@media screen and (min-width:1300px) { /* pc wide wide */
  #mainview .ferry {
    position: absolute;
    top: 13rem;
    left: -100px;
    z-index: 1;
    width: calc(100vw / 3);
  }
  #mainview .suitcases {
    position: absolute;
    top: 19rem;
    right: calc(100vw / 150);
    z-index: 1;
    width: calc(100vw / 5);
    max-width: 100%;
  }
  #mainview .ferry img {
    width: calc(100vw / 3);
  }
  #mainview .suitcases img {
    /*    width: calc(100vw / 5);*/
    max-width: 100%;
  }
}
/****************************************
 文字サイズ
*****************************************/
body.singleLp #contents {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 120%;
  letter-spacing: 1px;
  font-feature-settings: "palt";
  color: #333;
}
body.singleLp #contents article p {
  line-height: 1.9;
  font-size: 119%;
}
body.singleLp #contents article p.txt-small {
  line-height: 1.9;
  font-size: 100%;
}
body.singleLp #contents article p.txt-small02 {
  line-height: 1.9;
  font-size: 90%;
}
body.singleLp #contents article p.txt-small03 {
  line-height: 1.9;
  font-size: 80%;
}
body.singleLp #contents article p.txt-small04 {
  line-height: 1.9;
  font-size: 70%;
}
body.singleLp #contents article p.txt-big {
  line-height: 1.9;
  font-size: 110%;
}
body.singleLp #contents article p.txt-big02 {
  line-height: 1.9;
  font-size: 120%;
}
body.singleLp #contents article p.txt-big03 {
  line-height: 1.9;
  font-size: 140%;
}
body.singleLp #contents article p.txt-big04 {
  line-height: 1.9;
  font-size: 160%;
}
#article h2.singleLp {
  background: none;
  font-size: 202%;
  text-align: center;
  margin: 2rem 0 2.5rem 0 !important;
}
#article h2#ancOtoiawase {
  margin: 2rem 0 0.5rem 0 !important;
}
article .applyWrap h2 {
  color: #004176;
}
#article h3 {
  border-bottom: none;
  font-size: 125%;
}
#article h3.whiteBlue {
  background: #fff;
  border-radius: 4px;
  border-left: 3px solid #87CEFA;
  color: #004176;
  padding: 5px 0 7px 15px;
}
#article h3.whiteOrange {
  background: #fff;
  border-radius: 4px;
  border-left: 3px solid #f38c21;
  color: #004176;
  padding: 5px 0 7px 15px;
}
#article h3.whiteH3 {
  background: #fff;
  border-radius: 4px;
  border-left: none;
  color: #004176;
  padding: 5px 0 7px 15px;
}
#article h3.cabinListH3 {
  display: none;
  background: #fff;
  border-radius: 4px;
  border-left: none;
  color: #666;
  padding: 15px 0 8px 0;
  font-size: 110%;
  margin-bottom: 0;
  font-weight: 400;
}
#article #otoiawase h3 {
  background: #fff;
  border-radius: 4px;
  border: none;
  color: #ef7a00;
  padding: 5px 0 0 5px;
  margin: 0 auto 0.5em auto;
  font-size: 110%;
}
#otoiawase .col4 > li {
  background: #fff;
  padding: 10px;
  width: 22%;
}
#otoiawase ul li:last-child {
  margin-bottom: 1em !important;
}
#otoiawase .otoiawase-sptb {
  display: none;
}
#otoiawase .otoiawase-pc {
  display: block;
}
body.singleLp #contents article #otoiawase .col4 > li p {
  font-size: 12px;
  font-weight: bold;
}
body.singleLp #contents article #otoiawase .col4 > li p.areas {
  font-size: 70%;
  font-weight: normal;
  color: #666;
  margin-bottom: -3px;
}
#article .applyWrap h3 {
  border-left: 3px solid #87CEFA;
  color: #004176;
  padding: 5px 0 7px 15px;
}
#article .applyWrap h3#anc0831, #article .applyWrap h3#anc0901 {
  background: #fff;
  border-radius: 4px;
}
#article h3.checkpoint {
  font-size: 110%;
  border-left: none;
  border-bottom: none;
  padding: 0.5em 0.25em 0.5em 3.5em;
  background: #fff;
  margin: 3em 0 2em 0;
  border-radius: 6px;
  position: relative;
}
#article h3.checkpoint::before {
  content: url("/lp/group/img/ico-checkpoint-o.svg");
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0.25em;
  left: 0.75em;
  background-size: 30px 32px;
}
#article h3.checkpoint img.ico {
  margin: -10px 1em 0 4px;
}
#article h3.doc {
  border-left: none;
  border-bottom: none;
  padding: 0;
  margin-top: 0;
}
#article h3.doc img.ico {
  margin-right: 0.8em;
}
#article h4 {
  border-bottom: none;
  font-size: 125%;
  color: #004176;
}
body.singleLp #contents article #points > li p{
  font-size: 16px!important;
}
#points > li {
  position: relative;
}
#points > li:before {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 45px;
  height: 30px;
  margin: 0;
  padding: 15px 0 0 0;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  z-index: 1;
}
#points > li:nth-child(1):before {
  content: "1";
  background: #dcbd39;
}
#points > li:nth-child(2):before {
  content: "2";
  background: #abc2cb;
}
#points > li:nth-child(3):before {
  content: "3";
  background: #d1955f;
}
ul#cabinRecd.col3 > li {
  width: 310px;
}
ul#cabinRecd.col4 > li {
  width: 310px;
}
ul.cabinList {
  background: #fff;
  padding: 0;
}
#article ul.cabinList li:last-child {
  margin-bottom: 1.0em !important;
}
#article li.cabinKobeOita {
  border-top: 2px solid #d2cc72;
  border-left: 2px solid #d2cc72;
  border-right: 2px solid #d2cc72;
  border-bottom: 2px solid #d2cc72;
  background: #fff;
}
#article li.cabinKobeOita a {
  color: #a49c24;
}
#article li.cabinOsakaBeppu {
  border-top: 2px solid #9ec6cc;
  border-left: 2px solid #9ec6cc;
  border-right: 2px solid #9ec6cc;
  border-bottom: 2px solid #9ec6cc;
  background: #fff;
}
#article li.cabinOsakaBeppu a {
  color: #2fa4b4;
}
#article li.cabinOsakaShibushi {
  border-top: 2px solid #e3b0b0;
  border-left: 2px solid #e3b0b0;
  border-right: 2px solid #e3b0b0;
  border-bottom: 2px solid #e3b0b0;
  margin-bottom: 1.0em !important;
  background: #fff;
}
#article li.cabinOsakaShibushi a {
  color: #d07272;
}
ul.cabinList li {
  margin-bottom: 1.5em;
  background: #fff;
}
body.singleLp #contents article p.cap, article .cap {
  font-size: 90%;
}
article a.cboxElement {
  text-decoration: none;
}
article a.cboxElement:hover {
  opacity: 0.6;
  text-decoration: underline;
}
article a.cboxElement > img {
  /*width: calc(100% - 4px);
  height: auto;*/
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 306px;
  height: 195px;
  object-fit: cover;
}

article .applyWrap strong {
  color: #004176;
}
.horizontal-line {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  text-align: center;
}
.horizontal-line:before, .horizontal-line:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}
.horizontal-line:before {
  left: 0;
}
.horizontal-line:after {
  right: 0;
}
#article a.pdf {
  background: url(/cmn/img/ico/ico-pdf.gif) right 50% no-repeat;
  padding: 0 15px 0 0;
  margin-right: 3px;
}
#article a.window {
  background: url(/cmn/img/ico/ico-window-o.gif) right 50% no-repeat;
  padding: 0 15px 0 0;
  margin-right: 3px;
}
i.route-arrow {
  display: inline-block;
  vertical-align: middle;
  width: 33px;
  height: 8px;
  margin-top: -0.02em;
  background: url(/assets/common/img/icon_lr_arrow.png) center center no-repeat;
}
@media screen and (min-width:981px) and (max-width:1260px) {
  ul#cabinRecd.col4 > li {
    width: 24% !important;
  }
article a.cboxElement > img {
    border-left: none;
    border-right: none;
    width: 100%;
    height: 170px;
    object-fit: cover;
}
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
  ul#cabinRecd.col3 > li {
    width: 32% !important;
  }
  ul#cabinRecd.col4 > li {
    width: 24% !important;
  }
article a.cboxElement > img {
    border-left: none;
    border-right: none;
    width: 100%;
    height: 120px;
    object-fit: cover;
}
  #otoiawase .col4 > li {
    background: #fff;
    padding: 10px;
    width: 46%;
  }
  #otoiawase .col4 > li > img {
    width: 89px;
    height: 92px;
  }
  #otoiawase .otoiawase-sptb {
    display: block;
  }
  #otoiawase .otoiawase-pc {
    display: none;
  }
  body.singleLp #contents article #points > li p {
    text-align: left;
    font-size: 90%;
  }
}
@media screen and (max-width: 750px) { /*Sp*/
  #points > li:before {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 45px;
    height: 30px;
    margin: 0;
    padding: 15px 0 0 0;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    z-index: 1;
  }
  #cWrap > #contents > #article h2.singleLp {
    font-size: 18px !important;
    line-height: 1.5;
  }
  body.singleLp #contents {
    font-size: 100%;
    margin-bottom: -25px !important;
  }
  body.singleLp #contents article p {
    font-size: 100%;
  }
  #article h3.doc img.ico {
    width: 1.5em;
    height: auto;
    margin-right: 0.5em;
  }
  #article a.pdf {
    background: url(/cmn/img/ico/ico-pdf.gif) right 50% no-repeat;
    padding: 0 15px 0 0;
    margin-right: 3px;
  }
  #article a.window {
    background: url(/cmn/img/ico/ico-window-o.gif) right 50% no-repeat;
    padding: 0 15px 0 0;
    margin-right: 3px;
  }
  #article h3.checkpoint {
    font-size: 110%;
    border-left: none;
    border-bottom: none;
    padding: 0.75em 0.25em 0.75em 3.5em;
    background: #fff;
    margin: 3em 0 2em 0;
    border-radius: 6px;
    position: relative;
  }
  #article h3.checkpoint::before {
    content: url("/lp/group/img/ico-checkpoint-o.svg");
    display: inline-block;
    width: 24px;
    height: 28px;
    position: absolute;
    top: 0.4em;
    left: 0.5em;
    background-size: 30px 32px;
  }
  #article h3.cabinListH3 {
    display: block;
    background: #fff;
    border-radius: 0;
    border-left: none;
    padding: 5px;
    margin: 0.5em 0 1em 0;
    text-align: center;
    font-size: 100%;
    font-weight: bold;
  }
  #article .cabinKobeOita h3.cabinListH3 {
    color: #a49c24;
  }
  #article .cabinOsakaBeppu h3.cabinListH3 {
    color: #2fa4b4;
  }
  #article .cabinOsakaShibushi h3.cabinListH3 {
    color: #d07272;
  }
  ul#cabinRecd.col3 > li {
    width: 100%;
  }
  ul#cabinRecd.col4 > li {
    width: 100%;
  }
article a.cboxElement > img {
    border-left: none;
    border-right: none;
    width: calc(100% - 6px);
    height: auto;
    object-fit: cover;
}
  #otoiawase .col4 > li {
    background: #fff;
    padding: 0;
    width: 100%;
    margin-bottom: 1em;
  }
  #otoiawase .col4 > li > img {
    width: 89px;
    height: 92px;
  }
  #otoiawase .otoiawase-sptb {
    display: block;
  }
  #otoiawase .otoiawase-pc {
    display: none;
  }
  article h4.h4none {
    border: none;
    padding-bottom: 0;
    margin-top: 0;
  }
  ul.cabinList {
    background: #fff;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  ul.cabinList li {
    width: 48%;
  }
}
@media screen and (max-width: 374px) { /*mobile*/
article a.cboxElement > img {
    border-left: none;
    border-right: none;
    width: calc(100% - 6px);
    height: 110px;
    object-fit: cover;
}
}

/****************************************
 レイアウト
*****************************************/
.whatsnewWrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /*background: url(/cmn/img/bg-dot01.gif) left top;*/
  background: #3db3ea;
  color: #fff;
}
.whatsnew {
  width: 980px;
  font-size: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0.25em 0;
}
.whatsnew .list-frame {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
}
.whatsnew .list-frame > dt {
  color: #fff;
}
.whatsnew .list-frame > dt {
  font-weight: bold;
  letter-spacing: 0.04em;
  width: 6em;
  padding: 0.2em 1em 0 24px;
  margin-bottom: 0.2em !important;
  background: url("/lp/group/img/ico-arrow1-w.png") left 0.75em no-repeat;
  background-size: 10px 10px;
}
.whatsnew .list-frame > dd {
  width: 100%;
}
.whatsnew .list-frame > dd > ul > li {
  padding: 0.5em 0;
  margin-bottom: 0;
}
.whatsnew .list-frame li dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.whatsnew .list-frame li dl dt {
  color: #fff;
  /*font-weight: 600;*/
  margin-right: 1em;
  padding-top: 0.1em;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.whatsnew .list-frame li dl dd {
  padding-top: 0.1em;
}
.whatsnew .list-frame li dl dd > a {
  color: #fff;
}
.whatsnew .list-frame > dd > ul > li {
  padding: 0.1em 0 0.5em 0;
}
.whatsnew .list-frame > dd > ul > li:last-child {
  border-bottom: none;
}
body.singleLp #contents #article .accordion > .box-white p, body.singleLp #contents #article .accordion > p {
  font-size: 90%;
}
.bg00 {
  background: #fff; /*white*/
}
.bgLightgreen {
  background: #f5fbed; /*lightgreen*/
}
.bgLightpink {
  background: #fbefed; /*lightpink*/
}
.bgLightblue {
  background: #edf7fb; /*lightblue*/
}
.bgLightblue2 {
  background: #edf7fb; /*lightblue*/
  background-image: radial-gradient(#ffffff 0.75px, transparent 0.75px), radial-gradient(#ffffff 0.75px, #edf7fb 0.75px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
.bgLightorange {
  background: #fff5e3; /*lightorange*/
}
.bgLightorange2 {
  background-color: #fff5e3;
  background-image: radial-gradient(#ffffff 0.75px, transparent 0.75px), radial-gradient(#ffffff 0.75px, #fff5e3 0.75px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}
.bgLightorange3 {
  background-color: #fff5e3;
  background-size: 9px 9px;
  background-image: repeating-linear-gradient(45deg, #ffffff 0, #ffffff 0.9px, #fff5e3 0, #fff5e3 50%);
}
.bgLightorange4 {
  background-color: #fff1c3;
  background-size: 9px 9px;
  /*background-image: repeating-linear-gradient(45deg, #ffffff 0, #ffffff 0.9px, #fff6cc 0, #fff6cc 50%);*/
}
.contentsWrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.singleLpContents .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0 auto;
  padding: 60px 0 90px 0;
}
.contentsWrap > .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0 auto;
  padding: 5em 0 5em 0;
}
.otokuWrap {
  background: #fff5e3;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.applyWrap {
  background: #edf7fb;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.faqWrap {
  background: #fff5e3;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.firstWrap {
  background: #fff;
}
.planWrap {
  background: #fff;
}
.singleLpContents .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0 auto;
  padding: 60px 0 90px 0;
}
.singleLpContents #cabinsCol4 .inner {
  max-width: 1300px;
  padding-bottom: 0;
}
.faqWrap > .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto -60px auto;
  padding: 60px 0 90px 0;
}
.col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col2 > div, .col2 > li {
  width: 48%;
}
.col2 > div > img, .col2 > li > img {
  width: 100%;
}
.col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col3 > li {
  width: 32%;
  /*background: #faf7e1;*/
  text-align: center;
  padding: 0;
}
.col3 > li > img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.col3 > li a {
  display: block;
}
.col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col4 > li {
  width: 24%;
  /*background: #faf7e1;*/
  text-align: center;
  padding: 0;
}
.col4 > li > img {
  max-width: 100%;
  height: auto;
}
.col4 > li a {
  display: block;
}
.box-whitebg {
  padding: 2em;
  margin: 2em 0;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.01);
  border-radius: 6px;
  border: 2px solid #87CEFA;
}
.box-redline {
  padding: 1.5em 1em;
  margin: 2em 0;
  border-radius: 6px;
  border: 2px solid #dc0000;
}
body.singleLp #contents article .box-redline p {
  font-size: 100%;
}
body.singleLp #contents article .box-redline p.txt-red02 {
  font-size: 22px;
}
a:hover img.hoverBnr {
  opacity: 0.6;
  filter: alpha(opacity=60); /* ie lt 8 */
  -ms-filter: "alpha(opacity=60)"; /* ie 8 */
  -moz-opacity: 0.6; /* FF lt 1.5 */
  -khtml-opacity: 0.6; /* Safari 1.x */
  zoom: 1;
}
@media screen and (max-width: 750px) { /* SP */
  body.singleLp #contents article .box-redline p.txt-red02 {
    font-size: 120%;
  }
}
.procedure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.procedure li.col3-arrow {
  width: 422px;
  position: relative;
  margin-bottom: 0;
  background: #fff;
  text-align: center;
  padding: 1em;
  border-radius: 6px;
  border: 2px solid #87CEFA;
}
.procedure li.col3-arrow p.box-ttl {
  position: absolute;
  display: inline-block;
  top: -2px;
  left: -2px;
  padding: 0.25em 0.75em;
  background: #87CEFA;
  color: #ffffff;
  font-weight: bold;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 6px;
  font-size: 100%;
}
.procedure li.col3-arrow:not(:last-child):after {
  content: '';
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #6aa7cd;
  width: 12px;
  display: block;
  position: absolute;
  top: 45%;
  left: 485px;
}
.procedure li.col3-arrow > img#p1 {
  width: 140px;
  height: 59px;
  margin-bottom: 2em;
}
.procedure li.col3-arrow > img#p2 {
  width: 70px;
  height: 59px;
  margin-bottom: 2em;
}
.procedure li.col3-arrow > img#p3 {
  width: 140px;
  height: 59px;
  margin-bottom: 2em;
}
.procedure li.col3-arrow > img#p4 {
  width: 160px;
  height: 59px;
  margin-bottom: 2em;
}
.procedure li.col3-arrow .info {
  text-align: left;
}
.box-whitebg p {
  margin: 0;
  padding: 0;
}
/****************************************
 table
*****************************************/
table {
  width: 100%;
  font-size: 90%;
}
td.td-c {
  text-align: center;
}
td.td-r {
  text-align: center;
}
th.em-cell-t, td.em-cell-t {
  border-top: 6px solid #ffa600 !important;
}
th.em-cell-r, td.em-cell-r {
  border-right: 4px solid #ffa600 !important;
}
th.em-cell-b, td.em-cell-b {
  border-bottom: 6px solid #ffa600 !important;
}
th.em-cell-l, td.em-cell-l {
  border-left: 4px solid #ffa600 !important;
}
.underline01 {
  border-bottom: solid 2px #87CEFA;
}
.underline02 {
  border-bottom: solid 2px #dc0000;
}
.underline03 {
  border-bottom: solid 2px #999999;
}
.accordion-ttl {
  background: url(/cmn/img/ico/ico-plus.gif) 8px 16px no-repeat #ffffff;
  padding: 10px 5px 8px 47px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 1em;
  color: #ef7a00;
  border-radius: 6px;
}
#otoiawase .accordion-ttl {
  color: #333 !important;
}
#otoiawase .accordion-ttl:hover {
  color: #333 !important;
}
.accordion-active {
  background: url(/cmn/img/ico/ico-minus.gif) 8px 16px no-repeat #ffffff;
  padding: 10px 5px 8px 47px;
  margin-bottom: 0;
  margin-top: 1em;
}
#otoiawase .accordion-active {
  background: url(/cmn/img/ico/ico-minus.gif) 8px 10px no-repeat #ffffff;
  padding: 10px 5px 8px 47px;
  margin-bottom: 0;
  margin-top: 1em;
}
.accordion {
  display: none;
  background: #ffffff;
  padding: 1em 1.5em 1em 2em;
  margin-bottom: 2em;
}
#otoiawase .accordion {
  display: none;
  background: #ffffff;
  padding: 0 1em 0 1em;
  margin-bottom: 2em;
}
body.singleLp #contents article .whatsnew p {
  font-size: 90%;
}
.planWrap > .inner > img {
  margin-bottom: 0.5em;
  border-radius: 6px;
}
body.singleLp #contents article p.examplebox {
  background-color: #ffffff;
  margin: 0 2em 1em 2em;
  padding: 15px 5px 15px 15px;
  font-size: 90%;
  border-radius: 4px;
  display: block;
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
  article h4.h4none {
    border: none;
    padding-bottom: 0;
    margin-top: 0;
  }
  .contentsWrap > .inner {
    width: calc(100% - 2em);
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 60px 1em 60px 1em;
  }
  table {
    width: 100%;
    font-size: 99%;
  }
  .procedure li.col3-arrow {
    width: 300px;
    position: relative;
    margin-bottom: 0;
    background: #fff;
    text-align: center;
    padding: 1em;
    border-radius: 6px;
    border: 2px solid #87CEFA;
  }
  .procedure li.col3-arrow:not(:last-child):after {
    content: '';
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #6aa7cd;
    width: 12px;
    display: block;
    position: absolute;
    top: 45%;
    left: 380px;
  }
  .planWrap > .inner > img {
    margin-bottom: 1em;
    border-radius: 6px;
    width: 100%;
    height: auto;
  }
  body.singleLp #contents article p.examplebox {
    border: 2px solid #fff;
    background: #fff;
    padding: 15px 15px 15px 15px;
    margin-bottom: 1em;
    border-radius: 4px;
  }
  #otoiawase .col4 {
    justify-content: center;
  }
  .col4 > li {
    width: 49%;
  }
}
@media screen and (max-width: 750px) { /* SP */
  .accordion-ttl {
    background: url(/cmn/img/ico/ico-plus.gif) 8px 10px no-repeat #ffffff;
  }
  table {
    width: 100%;
    font-size: 89%;
  }
  .col2 {
    justify-content: center;
  }
  .col2 > div, .col2 > li {
    width: 100%;
    text-align: center;
  }
  .col2 > li {
    margin-bottom: 2.0em;
  }
  .col2 > div > img, .col2 > li > img {
    max-width: 100%;
    margin-bottom: 1em;
  }
  .col3 > li {
    /*display: flex;
		  flex-wrap: wrap;*/
    width: 100%;
    margin-bottom: 2em;
  }
  .col3 > li > img {
    max-width: 100%;
    height: auto;
  }
  .col3 > li > p {
    display: display;
  }
  .col4 > li {
    /*display: flex;
		  flex-wrap: wrap;*/
    margin-bottom: 0;
    width: 100%;
    padding: 0;
  }
  .col4 > li > img {
    width: 80%;
    height: auto;
  }
  .col4 > li > p {
    display: block;
  }
  .travelpoint > li {
    font-size: 90%;
    margin-bottom: 0.25em;
  }
  .whatsnewWrap {
    width: 100vw;
    /*background: url(/cmn/img/bg-dot01.gif) left top;*/
    background: #9dccff;
    color: #3b71ab;
    padding-left: 0;
    padding-right: 0;
  }
  .whatsnew {
    width: calc(100vw - 1em);
    margin-left: 0;
    font-size: 90%;
    padding-left: 0.5em;
    padding-right: 0.5em;
    justify-content: flex-start;
  }
  .whatsnew .list-frame {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    color: #3b71ab;
  }
  .whatsnew .list-frame > dt {
    color: #3b71ab;
  }
  .whatsnew .list-frame > dd {
    width: 100%;
    padding-left: 2em;
    color: #3b71ab;
  }
  .whatsnew .list-frame li dl dd > a {
    color: #3b71ab;
  }
  .whatsnew .list-frame li dl dt {
    color: #3b71ab;
    margin-right: 1em;
    padding-top: 0.1em;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .whatsnew .list-frame > dt {
    width: 5em;
    padding: 0.5em 1em 0 24px;
    margin-bottom: 0.2em !important;
    background: url(/lp/group/img/ico-arrow1-w.png) 0.5em 0.75em no-repeat;
    background-size: 12px 12px;
  }
  .planWrap {
    width: 100%;
  }
  .singleLpContents .inner {
    margin: 0 auto 0 auto;
    padding: 1em 1em 4em 1em;
    width: calc(100% - 2.0em);
  }
  .otokuWrap > .inner {
    margin: 0 auto 0 auto;
    padding: 1em 1em 3em 1em;
    width: calc(100% - 2em);
  }
  .faqWrap > .inner {
    margin: 0 auto -6em auto;
    padding: 1em 1em 9em 1em;
    width: calc(100% - 2em);
  }
  .contentsWrap > .inner {
    margin: 0 auto 0 auto;
    padding: 1em 1em 3em 1em;
    width: calc(100% - 2em);
  }
  #cabinsCol4 > .inner {
    margin: 0 auto 0 auto;
    padding: 1em 1em 3em 1em;
    width: calc(100% - 2em);
  }
  .procedure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
  }
  .procedure li.col3-arrow {
    max-width: 92%;
    width: 92%;
    position: relative;
    margin-right: 0;
    margin-bottom: 4em;
    text-align: center;
    border: 1px solid #87CEFA;
  }
  .procedure li.col3-arrow > img {
    width: 80px;
    height: 70px;
    margin: 0 auto 1em auto;
  }
  .procedure li.col3-arrow:not(:last-child):after {
    content: '';
    border-top: 8px solid #6aa7cd;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    width: 2px;
    display: block;
    position: absolute;
    top: 234px;
    left: 45%;
  }
  .box-whitebg {
    padding: 0.75em;
    border: 1px solid #87CEFA;
  }
  .planWrap > .inner > img {
    margin-bottom: 0.5em;
    border-radius: 0.25em;
    max-width: 100% !important;
  }
  body.singleLp #contents article p.examplebox {
    border: 1px solid #fff;
    background: #fff;
    padding: 0.25em 0.25em 0.25em 2em;
    margin: 1em 0 1.5em 0;
    border-radius: 2px;
  }
}
/****************************************
 only pc/tb/sp
*****************************************/
@media screen and (max-width: 750px) { /* SP */
  .only-pc, .only-pctb {
    display: none !important;
  }
  .only-pc-c-txt {
    text-align: left !important;
  }
  .only-tb {
    display: none !important;
  }
  .only-sp {
    display: block !important;
  }
  .only-spi {
    display: inline-block !important;
  }
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
  .only-tb {
    display: block !important;
  }
  .only-tbi {
    display: inline-block !important;
  }
  .only-pctb {
    display: block !important;
  }
  .only-pc {
    display: none !important;
  }
  .only-sp {
    display: none !important;
  }
  .scroll-hint-icon-wrap {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (min-width:981px) { /* pc wide */
  .only-pc {
    display: block !important;
  }
  .only-pctb {
    display: block !important;
  }
  .only-pci {
    display: inline-block !important;
  }
  .only-pc-c-txt {
    text-align: center;
  }
  .only-sp {
    display: none !important;
  }
  .only-tb {
    display: none !important;
  }
  .scroll-hint-icon-wrap {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  #otoiawase .chart-a {
    display: flex;
    justify-content: space-between;
  }
  #otoiawase .chart-a > div {
    background: #ffaa51;
    color: #fff;
    border-radius: 6px;
    padding: 10px;
    width: 300px;
    text-align: center;
    font-size: 13px;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	 margin-right: 0;
  }
  #otoiawase .chart-a > div.chartkinki {
    margin-right: 0;
  }
  #otoiawase .chart-a > div.chartkinki .chart-arrow, #otoiawase .chart-a > div.chartkanto .chart-arrow {
    content: "";
    background: #e4e4e4;
    width: 40px;
    height: 160px;
    position: absolute;
    top: 59px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
  }
  #otoiawase .chart-a > div.chartkinki .chart-arrow2, #otoiawase .chart-a > div.chartkanto .chart-arrow2 {
    top: 210px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-sizing: border-box;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #e4e4e4;
  }
  #otoiawase .chart-a > div.chartkyusyu {
    width: 640px;
    margin-right: 20px;
    margin-bottom: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
  }
  #otoiawase .chart-b {
    display: flex;
  }
  #otoiawase .chart-b > div {
    background: #ffaa51;
    color: #fff;
    border-radius: 6px;
    padding: 10px 3px 0 10px;
    width: 300px;
    height: 80px;
    margin-right: 20px;
    margin-bottom: 60px;
    font-size: 13px;
    position: relative;
    z-index: 2;
  }
  #otoiawase .chart-b > div .chart-arrow {
    content: "";
    background: #e4e4e4;
    width: 40px;
    height: 30px;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
  }
  #otoiawase .chart-b > div .chart-arrow2 {
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-sizing: border-box;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #e4e4e4;
  }
  #otoiawase .chart-b > div .chart-arrowline {
    content: "";
    background: #e4e4e4;
    width: 40px;
    height: 50px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 1;
  }
}
/****************************************
bnr
*****************************************/
.bnr_center {
  text-align: center;
  width: 100%;
}
.bnr_hover {
  max-width: 980px;
  margin: 0 auto;
}
.bnr_hover a {
  overflow: hidden;
  position: relative;
  text-decoration: none;
  display: block;
  z-index: 1;
}
.bnr_hover a .bnrtxt {
  position: absolute;
  color: #fff;
  /*margin: 0 0.5rem;*/
  text-align: center;
  top: 15%;
  left: 50%;
  ransform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 3;
  width: 98%;
}
#article .bnr_hover p.maintxt {
  color: #fff !important;
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 0;
  text-shadow: 4px 4px 2px #004b83;
}
.bnr_hover .subtxt {
  font-size: 1.3em;
  /*background-color: rgba(0,106,227,0.4);*/
  width: 80%;
  margin: -0.5em auto 1.5em auto;
  letter-spacing: 0.2em;
  /*padding: 5px;*/
  text-shadow: 3px 4px 6px #004b83;
}
.bnr_hover figure {
  background: #007ab3;
}
.bnr_hover figure img {
  opacity: .8;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  /*  max-width: 100%;*/
}
.bnr_hover a:hover img {
  opacity: .4;
}
@media screen and (max-width: 750px) { /* SP */
  .bnr_hover figure img {
    max-width: 100%;
  }
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
  .bnr_hover figure img {
    /*  max-width: 100%;*/
  }
}
ul#filterBtnList {
  list-style: none;
  margin: 0 0 1.5em 0;
  padding: 0;
  text-align: center;
}
ul#filterBtnList li {
  display: inline-block;
  font-size: 90%;
  border: solid 2px #ef7a00;
  cursor: pointer;
  color: #ef7a00;
  padding: 6px 16px;
  margin: 3px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  min-width: 4em;
  text-align: center;
}
ul#filterBtnList li:hover {
  background-color: #ef7a00;
  color: white;
}
ul#filterBtnList li.is_active {
  background-color: #ef7a00;
  color: white;
}
/****************btn***********************/
body.singleLp #contents article p#otoiawase {
  line-height: 2;
}
#otoiawase img.ico {
  width: 18px;
  height: 18px;
}
.btn, a.btn, button.btn {
  font-weight: normal;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.75rem 1rem 0.75rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  font-size: 110%;
}
.ancbtn, a.ancbtn {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.75rem 0 0.75rem 2.25rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  font-size: 13px;
}
#otoiawase a.btn {
  position: relative;
  color: #fff !important;
  background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
  -webkit-box-shadow: 0 5px 0 #ef7a00;
  box-shadow: 0 5px 0 #ef7a00;
  margin: 0.5em auto 1em auto;
  padding: 0.75rem 1rem 0.75rem 1rem;
  font-weight: bold;
}
#otoiawase a.btn span {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #ef7a00;
  border-radius: 4px;
  background: #fff;
}
#otoiawase a.btn:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #ef7a00;
  -webkit-box-shadow: 0 2px 0 #ef7a00;
  box-shadow: 0 2px 0 #ef7a00;
}
#otoiawase a.btn:hover:before {
  left: 2rem;
}
a.btn-plan {
  position: relative;
  color: #fff !important;
  background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
  -webkit-box-shadow: 0 5px 0 #ef7a00;
  box-shadow: 0 5px 0 #ef7a00;
  margin: 0.5em auto 1em 1em;
  width: 70%;
}
a.btn-plan-s {
  position: relative;
  color: #fff !important;
  background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
  -webkit-box-shadow: 0 5px 0 #ef7a00;
  box-shadow: 0 5px 0 #ef7a00;
  margin: 0.5em 1em 1em 1em;
  /*width: 70%;*/
  padding: 0.5em 1.25em 0.5em 3.0em;
}
a.btn-plan-s::before {
  content: url(/lp/group/img/ico-arrow1-w.png);
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 0.5em;
  left: 0.5em;
}
a.btn-plan span, a.btn-plan-s span {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #ef7a00;
  border-radius: 4px;
  background: #fff;
}
a.btn-plan:hover, a.btn-plan-s:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #ef7a00;
  -webkit-box-shadow: 0 2px 0 #ef7a00;
  box-shadow: 0 2px 0 #ef7a00;
}
.anclist {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.anclist li {
  width: 33%;
}
.anclist li a img.ico {
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.anclist li:nth-child(1) {
  margin-left: 1.6em;
}
.anclist li:nth-child(1) a::before {
  content: url(/lp/group/img/ico-anc01.svg);
  display: inline-block;
  width: 30px;
  height: 43px;
  position: absolute;
  top: 0.75em;
  left: 0.5em;
}
.anclist li:nth-child(2) a::before {
  content: url(/lp/group/img/ico-anc02.svg);
  display: inline-block;
  width: 24px;
  height: 43px;
  position: absolute;
  top: 0.75em;
  left: 1.25em;
}
.anclist li:nth-child(3) a::before {
  content: url(/lp/group/img/ico-anc03.svg);
  display: inline-block;
  width: 30px;
  height: 43px;
  position: absolute;
  top: 0.75em;
  left: 1em;
}
.anclist li:nth-child(1):hover a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1em;
  left: 0.25em;
  color: #fff;
}
.anclist li:nth-child(2):hover a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1em;
  left: 0.50em;
  color: #fff;
}
.anclist li:nth-child(3):hover a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1em;
  left: 0.50em;
  color: #fff;
}
.anclist2 {
  display: flex;
  flex-wrap: wrap;
/*  justify-content: space-between;*/
}
.anclist2 li {
  width: 33%;
}
.anclist2 li a img.ico {
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.anclist2 li {
  margin-left: 0;
  margin-right: 0;
}
.anclist2 li a {
  letter-spacing: 0;
  color: #fff;
}
.anclist2 li a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1.0em;
  left: 1.0em;
}
.anclist3 {
  display: flex;
  flex-wrap: nowrap;
/*  justify-content: space-between;*/
}
.anclist3 li {
  width: 45%;
}
.anclist3 li a img.ico {
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.anclist3 li:nth-child(1) {
  margin-left: 0;
  letter-spacing: 0;
}
.anclist3 li:nth-child(1) a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1em;
  left: 1em;
}
.anclist3 li:nth-child(2) a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1em;
  left: 1em;
}
.anclist3 li:nth-child(3) a::before {
  content: url("/lp/group/img/ico-arrow1-w.png");
  display: inline-block;
  width: 35px;
  height: 43px;
  position: absolute;
  top: 1em;
  left: 1em;
}
a.btn-anc {
  position: relative;
  color: #fff;
  background: #f09739;
  -webkit-box-shadow: 0 5px 0 #ef7a00;
  box-shadow: 0 5px 0 #ef7a00;
  margin: 0;
  width: 85%;
}
a.btn-anc:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #ef7a00;
  -webkit-box-shadow: 0 2px 0 #ef7a00;
  box-shadow: 0 2px 0 #ef7a00;
}
.feeplan {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.feeplan li {
  width: 30%;
  margin-right: 0.5em;
}
.feeplan li a img.ico {
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.feeplan li:nth-child(1) a img.ico {
  width: 48px;
  height: auto;
  margin: -6px 4px 0 4px;
}
.feeplan li:nth-child(2) a img.ico {
  width: 44px;
  height: auto;
  margin: -2px 4px 0 4px;
}
.feeplan li:nth-child(3) a img.ico {
  width: 40px;
  height: auto;
  margin: -2px 4px 0 4px;
}
.travelplan {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.travelplan li {
  width: 30%;
}
.travelplan li a img.ico {
  line-height: 1;
  position: absolute;
  top: calc(50% - 0.7rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.travelplan li:nth-child(1) a img.ico, .travelplan li:nth-child(2) a img.ico {
  width: 18px;
  height: auto;
  margin: 2px 4px 0 4px;
}
#article .youtubelist {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
}
#article .youtubelist li {
  width: 460px;
  font-size: 100%;
  line-height: 1.8;
}
#article .youtubelist .youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 7px;
}
#article .youtubelist .youtube iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
body.singleLp #contents article .youtubelist p {
  font-size: 95% !important;
}
.otokuplanlist1 {
  width: 490px;
  margin: 0 auto;
}
.otokuplanlist1 li {
  width: 490px;
  font-size: 100%;
  line-height: 1.8;
}
.otokuplanlist1 a {
  text-decoration: none;
  color: #333;
}
.otokuplanlist1 a:visited {
  color: #666;
}
.otokuplanlist1 a:hover {
  text-decoration: none;
  color: #ef7a00;
}
.otokuplanlist1 li img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.otokuplanlist1 a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60); /* ie lt 8 */
  -ms-filter: "alpha(opacity=60)"; /* ie 8 */
  -moz-opacity: 0.6; /* FF lt 1.5 */
  -khtml-opacity: 0.6; /* Safari 1.x */
  zoom: 1;
}
.otokuplanlist2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.otokuplanlist2 li {
  width: 460px;
  font-size: 100%;
  line-height: 1.8;
}
.otokuplanlist2 a {
  text-decoration: none;
  color: #333;
}
.otokuplanlist2 a:visited {
  color: #666;
}
.otokuplanlist2 a:hover {
  text-decoration: none;
  color: #ef7a00;
}
.otokuplanlist2 li img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.otokuplanlist2 a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60); /* ie lt 8 */
  -ms-filter: "alpha(opacity=60)"; /* ie 8 */
  -moz-opacity: 0.6; /* FF lt 1.5 */
  -khtml-opacity: 0.6; /* Safari 1.x */
  zoom: 1;
}
.bnr_hover .bnrbtn {
  width: 12em;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #fff;
  font-size: 115%;
  position: relative;
  transition: opacity .4s;
  opacity: 1;
  padding: 5px;
  margin: 0 auto;
}
.bnr_hover a:hover .bnrbtn {
  background-color: rgba(0, 106, 227, 0.3);
}
.bnr_hover .bnrbtn::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}
@media screen and (max-width: 750px) { /* SP */
  .btn, a.btn, button.btn {
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0.75rem 1rem 0.75rem 3rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.3rem;
    font-size: 110%;
  }
  #otoiawase a.btn {
    position: relative;
    color: #fff !important;
    background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
    -webkit-box-shadow: 0 5px 0 #ef7a00;
    box-shadow: 0 5px 0 #ef7a00;
    margin: 0.5em auto 1em auto;
    width: calc(100% - 4em);
    font-size: 150%;
  }
  #otoiawase a.btn span {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0.2rem 0.5rem;
    color: #ef7a00;
    border-radius: 4px;
    background: #fff;
  }
  #otoiawase a.btn:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    color: #fff;
    background: #ef7a00;
    -webkit-box-shadow: 0 2px 0 #ef7a00;
    box-shadow: 0 2px 0 #ef7a00;
  }
  #otoiawase a.btn:hover:before {
    left: 2rem;
  }
  a.btn.btn-plan {
    position: relative;
    color: #fff !important;
    background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
    -webkit-box-shadow: 0 5px 0 #ef7a00;
    box-shadow: 0 5px 0 #ef7a00;
    margin: 0.5em auto 0.25em auto;
    width: calc(100% - 4.5em);
  }
  a.btn.btn-plan-s {
    position: relative;
    color: #fff !important;
    background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
    -webkit-box-shadow: 0 5px 0 #ef7a00;
    box-shadow: 0 5px 0 #ef7a00;
    margin: 0.5em auto 0.25em auto;
    width: calc(100% - 4.5em);
    padding: 0.25em 0.5em;
  }
  a.btn.btn-plan-s::before {
    content: url("/lp/group/img/ico-arrow1-w.png");
    display: inline-block;
    width: 35px;
    height: 43px;
    position: absolute;
    top: 1.0em;
    left: 1.0em;
  }
  .btn, .ancbtn, a.ancbtn {
    text-align: left;
    font-size: 13px;
  }
  a.btn-anc {
    position: relative;
    color: #fff;
    background: #f09739;
    -webkit-box-shadow: 0 1px 0 #ef7a00;
    box-shadow: 0 1px 0 #ef7a00;
    /*width: 83%;*/
    width: calc(100% - 4em);
    padding: 0.75em 0 0.75em 2.9em;
    margin-bottom: 0.2em;
    font-size: 12px;
  }
  a.btn-anc:hover {
    color: #fff;
    background: #ef7a00;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    border-bottom: none;
    margin-bottom: 0.5em;
  }
  .anclist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2em;
  }
  .anclist li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .anclist li:nth-child(1) {
    margin-left: 0;
  }
  .anclist li a::after {
    content: url("/lp/group/img/ico-arrow1-w.png");
    display: inline-block;
    width: 35px;
    height: 43px;
    position: absolute;
    top: 1.25em;
    right: 0;
    color: #fff;
  }
  .anclist li:nth-child(1):hover a::before {
    content: url("/lp/group/img/ico-anc01.svg");
    display: inline-block;
    width: 35px;
    height: 43px;
    position: absolute;
    top: 0.75em;
    left: 0.5em;
  }
  .anclist li:nth-child(2):hover a::before {
    content: url("/lp/group/img/ico-anc02.svg");
    display: inline-block;
    width: 30px;
    height: 43px;
    position: absolute;
    top: 0.75em;
    left: 1em;
  }
  .anclist li:nth-child(3):hover a::before {
    content: url("/lp/group/img/ico-anc03.svg");
    display: inline-block;
    width: 40px;
    height: 43px;
    position: absolute;
    top: 0.75em;
    left: 0.75em;
  }
  .anclist2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .anclist2 li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .anclist2 li {
    margin-left: 0;
  }
  .anclist2 li a::before {
    content: url("/lp/group/img/ico-arrow1-w.png");
    display: inline-block;
    width: 35px;
    height: 43px;
    position: absolute;
    top: 1em;
    left: 1em;
  }
  .anclist3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .anclist3 li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .anclist3 li:nth-child(1) {
    margin-left: 0;
  }
  .feeplan {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .feeplan li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .feeplan li a img.ico {
    line-height: 1;
    position: absolute;
    top: calc(50% - 0.7rem);
    left: 1.5rem;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .travelplan {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .travelplan li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .travelplan li a img.ico {
    line-height: 1;
    position: absolute;
    top: calc(50% - 0.7rem);
    left: 1.5rem;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #article .youtubelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #article .youtubelist .youtube {
    margin-bottom: 0;
  }
  #article .youtubelist li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  #article .youtubelist li img {
    margin-bottom: 0.5em;
  }
  #article .youtubelist li:nth-child(1) {
    margin-bottom: 2em;
  }
  .otokuplanlist1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .otokuplanlist1 li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .otokuplanlist1 li img {
    margin-bottom: 0.5em;
  }
  .otokuplanlist1 li:nth-child(1) {
    margin-bottom: 2em;
  }
  .otokuplanlist2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .otokuplanlist2 li {
    width: 90%;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
  .otokuplanlist2 li img {
    margin-bottom: 0.5em;
  }
  .otokuplanlist2 li:nth-child(1) {
    margin-bottom: 2em;
  }
  .bnr_hover a .bnrtxt {
    top: 13%;
  }
  .bnr_hover a {
    max-width: 100%;
    height: 18em;
  }
  #article .bnr_hover p.maintxt {
    font-size: 1.5em;
    text-shadow: 2px 4px 6px #004b83;
    margin-bottom: 0.5em;
    width: 98%;
    line-height: 1.4;
  }
  #article .bnr_hover p.subtxt {
    margin-bottom: 0;
    font-size: 1em;
    margin-bottom: 1em;
    letter-spacing: 0;
    width: 98%;
    line-height: 1.4;
  }
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
  ul#filterBtnList {
    width: 80%;
    margin: 0 auto 1.5em auto;
  }
  .ancbtn, a.ancbtn {
    font-size: 10px;
  }
  .bnr_hover a {
    max-width: 100%;
  }
  #article .bnr_hover p.maintxt {
    font-size: 2.1em;
    text-shadow: 2px 4px 6px #004b83;
    margin-bottom: 0.5em;
    width: 98%;
    line-height: 1.4;
  }
  .bnr_hover .subtxt {
    margin-bottom: 2em;
  }
  .col3 > li img {
    width: 100%;
    height: auto;
  }
  .col4 > li img {
    width: 100%;
    height: auto;
  }
  .otokuplanlist1 li {
    font-size: 100%;
    line-height: 1.8;
  }
  .otokuplanlist2 li {
    width: 45% !important;
    font-size: 100%;
    line-height: 1.8;
  }
  #article .youtubelist li {
    width: 45% !important;
    font-size: 100%;
    line-height: 1.8;
  }
  a.btn-plan-s {
    position: relative;
    color: #fff !important;
    background: url(/cmn/img/bg-grade-w.png) left top repeat-x #f38c21;
    -webkit-box-shadow: 0 5px 0 #ef7a00;
    box-shadow: 0 5px 0 #ef7a00;
    margin: 0.5em auto 1em auto;
    /*width: 90%;*/
    padding: 0.5em 1.25em 0.5em 2.0em;
  }
}
h3#ancFee {
  position: relative;
  padding-left: 5em;
}
.tag01 {
  overflow: hidden;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.tag01 span {
  line-height: 26px;
  position: relative;
  display: inline-block;
  height: 26px;
  margin: 0 0px 10px 10px;
  padding: 0 20px 0 23px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #ffffff;
  border-radius: 0 3px 3px 0;
  background: #ef7a00;
  font-size: 14px;
}
.tag01 span::before, .tag01 span::after {
  background: #fff5e3; /*背景色*/
}
.tag01 span::before {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 6px;
  height: 6px;
  content: '';
  border-radius: 10px;
}
.tag01 span::after {
  position: absolute;
  top: -1px;
  left: -6px;
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 14px 8px 14px 0;
  border-color: transparent #ef7a00 transparent transparent;
  border-radius: 4px;
}
/************************************
** 棒グラフ
************************************/
.percentage-bar-wrap {
  width: 100%;
  /*max-width: 860px;*/
  margin: 0 auto 4.5em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.percentage-bar.bar2:before {
  content: "";
  position: absolute;
  top: 4.5em;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #3db3ea;
}
.percentage-bar.bar4:before {
  content: "";
  position: absolute;
  top: 4.5em;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #3db3ea;
}
.percentage-bar.bar5:before {
  content: "";
  position: absolute;
  top: 4.5em;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #3db3ea;
}
.percentage-bar-wrap > div:last-child {
  margin-right: 0;
}
.percentage-bar {
  height: 5em;
  margin-right: 2px;
  max-width: 800px;
  margin: 0 auto 10px auto;
  line-height: 1.4;
  font-size: 16px;
  color: #fff;
  padding: 0 0 0 10px;
  position: relative;
  z-index: 3;
}
.percentage-bar::after {
  content: '';
  background: #3ca3f1;
  height: 5em;
  transition: 0.7s;
  display: block;
  width: 100%;
  -webkit-animation: bar-before 1 1.8s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.percentage-bar-num {
  text-align: center;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}
.percentage-bar-item1 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  position: absolute;
  top: 6rem;
  left: 1rem;
  background: #3db3ea;
  border-radius: 4px;
  padding: 0.5em 0.5em;
  width: 90%;
  font-size: 90%;
}
.percentage-bar-item2 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  position: absolute;
  top: 6rem;
  left: 51%;
  background: #3db3ea;
  border-radius: 4px;
  padding: 0.5em 1em;
  width: 45%;
}
@media screen and (max-width: 750px) { /*SP*/
  h3#ancFee {
    position: relative;
    padding-left: 6.0em;
  }
  ul#filterBtnList li {
    font-size: 12px;
  }
  img.routemap {
    display: none;
  }
  .percentage-bar-wrap {
    width: 700px;
  }
  .percentage-bar {
    font-size: 14px;
  }
  .percentage-bar-item1 {
    font-size: 10px;
    top: 5.5rem;
    left: 0.15rem;
    width: 93%;
  }
  .percentage-bar-item2 {
    font-size: 10px;
    position: absolute;
    top: 5.4rem;
    left: 350px;
    width: 320px;
  }
}
.percentage-bar.bar1 {
  flex: 50;
  min-width: 350px;
  max-width: 485px;
}
.percentage-bar.bar2 {
  flex: 35;
}
.percentage-bar.bar3 {
  flex: 50;
  min-width: 300px;
  max-width: 485px;
}
.percentage-bar.bar4 {
  flex: 35
}
.percentage-bar.bar5 {
  flex: 15
}
.percentage-bar.bar6 {
  flex: 15
}
.percentage-bar.bar1::after {
  background: #ffa600;
}
.percentage-bar.bar2::after {
  background: #aad3ff;
}
.percentage-bar.bar3::after {
  background: #ffa600;
}
.percentage-bar.bar4::after {
  background: #aad3ff;
}
.percentage-bar.bar5::after {
  background: #c6e2ff;
}
.percentage-bar.bar6::after {
  background: #fff5e3;
}
.percentage-bar .bartxt1 {
  z-index: 3;
  position: relative;
  margin-top: 0.8em;
  display: block;
}
.percentage-bar .bartxt2 {
  z-index: 3;
  position: relative;
  margin-top: 0.8em;
  display: block;
  color: #3b71ab;
}
.percentage-bar .bartxt3 {
  z-index: 3;
  position: relative;
  margin-top: 0.8em;
  display: block;
}
.percentage-bar .bartxt4 {
  z-index: 3;
  position: relative;
  margin-top: 0.8em;
  display: block;
  color: #3b71ab;
}
.percentage-bar .bartxt5 {
  margin-top: 1.2em;
  z-index: 3;
  position: relative;
  font-size: 11px;
  color: #3b71ab;
  display: block;
}
@-webkit-keyframes bar-before {
  0% {
    width: 0px;
  }
  100% {
    width: 100%;
  }
}
img.br6 {
  /*border-radius: 6px;*/
}
/*****************************/
.fade-up, .fade-up-list li {
  opacity: 0;
  transition: all .5s;
  transform: translateY(20px);
}
.fade-up.is-show, .fade-up-list li.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-left, .fade-left-list li {
  opacity: 0;
  transition: all .5s;
  transform: translateX(-20px);
}
.fade-left.is-show, .fade-left-list li.is-show {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 750px) {
  .fade-left-list li {
    transform: translateX(0);
    transform: translateY(-20px);
  }
  .fade-left-list li.is-show {
    transform: translateX(0);
    transform: translateY(0);
  }
}
/************************/
@media all and (min-width: 481px) {
  .mv.c-section {
    overflow: hidden;
  }
  .mv .c-section__inner {
    position: relative;
  }
  .mv_img-top, .mv_img-bottom {
    width: 100%;
    height: 12rem;
    background-size: auto 12.5rem;
    backface-visibility: hidden;
    background-repeat: repeat-x;
  }
  .mv_img-top {
    background-position: 0 100%;
    background-image: url("/lp/group/img/img-travel1_pc.jpg");
    animation: loop-top 120s linear 3;
  }
  .mv_img-bottom {
    background-position: 0 0;
    background-image: url("/lp/group/img/img-travel2_pc.jpg");
    animation: loop-bottom 120s linear 3;
  }
}
@media all and (min-width: 980px) {
  .mv_img-top {
    background-size: 1086px 181px;
    animation: loop-top-s 120s linear 3;
    height: 11rem;
  }
  .mv_img-bottom {
    background-size: 1086px 181px;
    animation: loop-bottom-s 120s linear 3;
    height: 11rem;
  }
}
@media all and (min-width: 1366px) {
  .mv_img-top {
    background-size: auto 12.5rem;
    animation: loop-top 120s linear 3;
  }
  .mv_img-bottom {
    background-size: auto 12.5rem;
    animation: loop-bottom 120s linear 3;
  }
}
@media all and (min-width: 1600px) {
  .mv_img-top {
    background-size: auto 12.5rem;
    animation: loop-top-l 120s linear 3;
  }
  .mv_img-bottom {
    background-size: auto 12.5rem;
    animation: loop-bottom-l 120s linear 3;
  }
}
@media all and (min-width: 1920px) {
  .mv_img-top {
    background-size: auto 12.5rem;
    animation: loop-top-xl 120s linear 3;
  }
  .mv_img-bottom {
    background-size: auto 12.5rem;
    animation: loop-bottom-xl 120s linear 3;
  }
}
@keyframes loop-top-s {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1086px 0;
  }
}
@keyframes loop-top {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1200px 0;
  }
}
@keyframes loop-top-l {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1350px 0;
  }
}
@keyframes loop-top-xl {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1956px 0;
  }
}
@keyframes loop-bottom-s {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1086px 0;
  }
}
@keyframes loop-bottom {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1200px 0;
  }
}
@keyframes loop-bottom-l {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1350px 0;
  }
}
@keyframes loop-bottom-xl {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1956px 0;
  }
}
@media all and (min-width: 480px) and (max-width: 767px) {
  .mv.c-section--block {
    padding: 0;
  }
  #mainview h1.singleLp {
    max-width: 95%;
  }
  .mv_img-top, .mv_img-bottom {
    height: 12rem;
  }
}
@media all and (max-width: 480px) {
  .mv.c-section {
    overflow: hidden;
  }
  .mv .c-section__inner {
    position: relative;
    padding: 0;
  }
  .mv_img-top, .mv_img-bottom, .mv_img-bottom-sp {
    width: 100%;
    height: 8.83rem;
    background-size: auto 8.83rem;
    backface-visibility: hidden;
    background-repeat: repeat-x;
  }
  .mv_img-bottom-sp {
    margin-bottom: 0;
  }
  .mv_img-top {
    background-position: 0 100%;
    background-image: url("/lp/group/img/img-travel1_sp.jpg");
    animation: loop-top 120s linear 1;
  }
  .mv_img-bottom {
    background-position: 0 0;
    background-image: url("/lp/group/img/img-travel2_sp.jpg");
    animation: loop-bottom 120s linear 1;
  }
}
#article h2#ancOtoiawase2 {
  margin: 0 0 0.5rem 0 !important;
}
h2#ancOtoiawase2 > span {
  font-size: 16px;
}
h2#ancOtoiawase2 > img {
  margin-bottom: 9px;
}
#otoiawase .otoiawase2-box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-top: 60px;
}
#otoiawase img.ico2 {
  vertical-align: middle;
  margin: -1px 8px 0 4px;
  width: 34px;
  height: 34px;
}
@media screen and (max-width: 750px) { /* SP */
  h2#ancOtoiawase2 > img {
    max-width: 100%;
  margin-bottom: 4px;
  }
  #otoiawase .otoiawase2-box {
    padding: 1em;
    margin-top: 60px;
  }
  #otoiawase .otoiawase2-box .txt-big04 {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 750px) { /* SP */
}
@media screen and (min-width:751px) and (max-width:980px) { /* tb + pc nallow */
}
@media screen and (min-width:981px) { /* pc wide */
}