@charset "utf-8";

/*******************
 ***   base   ******
 ******************* */

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    /* 1.2rem = 12px */
    /* スムーズスクロール */
    /* 対応ブラウザが少し限定的。主なブラウザではChrome(Android含む)とFirefox */
    scroll-behavior: smooth;
}
body{
    width:100%;
}
.ferry-body {
    color: #333;
    font-size: 1.6rem!important;
    font-family: "ヒラギノ明朝 Pro W6","ＭＳ Ｐ明朝", "MS PMincho", "Hiragino Mincho Pro",serif;
    /*min-width: 320px;*/
    height: 100%;
    /* htmlに設定したいが、組み込まれるhtmlなどでコンフリクトが起きて効かない。 */
    line-height: 1.5;
}
/*
*, *::before, *::after {
    box-sizing: border-box;
}
*/
a:link, a:visited, a:hover, a:active {
    /* color: #d03c56; */
    text-decoration: none;
}
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}
/*******************
 ***   font装飾   ***
 ******************* */

/* スペースが欲しいとき */
.space-tab {
    margin-left:10px;
}

/* 太字にしたいとき */
.font-bold {
    font-weight: bold;
}

/* 文字上下間隔が欲しいとき */
/* で適用していたが、仕様の変更多すぎて */
.line-height {
    line-height: 2.5;
    /*font-weight: bold;*/
    font-size: 1.8rem;
}


/*******************
 ***   body   ******
 ******************* */

.header {
    width: 100%;
}

.header-image {
    min-width: 320px;
    width: 100%;
    max-width: 1080px;
    text-align: center;
}

/*
.wrapper {
    width: 970px;
    margin: 35px auto 40px;
    position: relative;
} */

/* title animation */
/* 使用したい時に以下cssを付与 */
.main-title {
    position: absolute;
    top: -3%;
    left: 48%;
    transform: translate(-50%, -50%);
}

.main-heading {
    color: #777;
    text-transform: uppercase;
}

.main-heading-primary {
    font-family: "ヒラギノ明朝 Pro W6","ＭＳ Ｐ明朝", "MS PMincho", "Hiragino Mincho Pro",serif;
    display: block;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 1px;
    animation: moveInLeft 3s ease-out;
    white-space: nowrap;
}

.main-heading-secondary {
    font-family: sans-serif;
    display: block;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 31px;
    color: hotpink;
    animation: moveInRight 1s ease-out;
}

@keyframes moveInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px);
    }

    80% {
      transform: translateX(10px);
    }

    100% {
      opacity: 1;
      transform: translate(0);
    }
}

@keyframes moveInRight {
    0% {
      opacity: 0;
      transform: translateX(100px);
    }

    80% {
      transform: translateX(-10px);
    }

    100% {
      opacity: 1;
      transform: translate(0);
    }
}

/* title end */

/*******************
 *****  main   *****
 ******************* */

.main {
    display: block;
    width: auto;
    /* margin: 140px auto 40px; */
}

.main-post-box {
    text-align: center;
    margin: 20px auto;
}

.main-post-title {
    font-size: 4rem;
    letter-spacing: 2px;
    /* font-family: "ヒラギノ明朝 Pro W6","ＭＳ Ｐ明朝", "MS PMincho", "Hiragino Mincho Pro",serif; */
    color: #666666;
    font-weight: bold;
    position: relative;
}

.main-post-title:before {
    position: absolute;
    bottom: -15px;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #3cb3e4;
}


.ferry-discription-box {
    margin: 30px auto 40px;
    /* height: 500px;
    background: url(../img/blog/blog_flex.jpg?20201013) no-repeat center / cover;
    background-attachment: fixed; */
}

.ferry-discription-box .ferry-discription-title {
    /* text-align: center; */
    margin: 20px auto !important;
    font-size: 6rem;
    padding-top: 50px;
    color: #fff;
    font-weight: bold;
    /* font-family: "ヒラギノ明朝 Pro W6","ＭＳ Ｐ明朝", "MS PMincho", "Hiragino Mincho Pro",serif; */
}

.ferry-discription-box .ferry-discription {
    font-size: 2rem;
    color: #fff;
    line-height: 40px;
    /* font-family: "ヒラギノ明朝 Pro W6","ＭＳ Ｐ明朝", "MS PMincho", "Hiragino Mincho Pro",serif; */
    text-align: center;
    margin: 20px auto;
    padding: 15px;
    color: #000;
    background-color: rgba(255,255,255,0.8);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    /*max-width: 750px;*/
}

/* toc */

.toc-box{
    border: 2px solid #0094D6;
    text-align: center;
}

.toc-box .toc-title {
    color: #0094D6;
    text-align: center;
    margin: 1.2em auto;
    width: calc(100% - 30em);
    border-bottom: 2px solid #0094D6;
    font-size: 2.5rem;
    font-weight: bold;
}

.toc-box .toc-title::before{
    content: "\f0f6\00a0";
    font-family: FontAwesome;
}

.toc-box .toc-list {
    padding: .5em 1.5em;
    font-size: 1.5rem;
    /* display: inline-block; */
    text-align: left;
}

.toc-box .toc-list ol{
    margin-left: 20px;
}

.toc-box .toc-list ol li a{
    line-height: 2.5;
    font-weight: bold;
    font-size: 1.5rem;
}

.toc-bottom-border {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.toc-bottom-border::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #3cb3e4;
    /* scale === ショートハンドラ X軸 Y軸 */
    transform: scale(0, 1);
    /* transform-origin は CSS のプロパティで、要素の変形transformにおける原点を設定 */
    transform-origin: left top;
    /* transition プロパティは、 transition-property、 transition-duration、 transition-timing-function、 transition-delay のショートハンドラ */
    transition: transform .3s;
}
.toc-bottom-border:hover::after {
    transform: scale(1, 1);
}


/* toc end */


.ferry-recommend {
    width: 600px;
    margin: 0 auto;
    padding: 10px 0;
    font-family: sans-serif;
    font-size: 20px;
    color:#3cb3e4;
}
  .recommend-heading {
    margin: 10px 0
}
  .demo .recommend-heading {
    position: relative;
    height: 50px;
    padding: 0;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #3cb3e4;
    line-height: 50px;
}
.demo .recommend-heading .caption{
    position: absolute;
    right: 0;
    top: 0px;
    padding: 0px 40px 1px 25px;
    background: #3cb3e4;
    color: #fff;
    line-height: 48px;
}
.demo .recommend-heading .caption:before{
    display: block;
    content: ' ';
    width: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
    right: 99.9%;
    top: 0;
    border: 0 solid transparent;
    border-width: 49px 37px 0 0;
    border-right-color:#3cb3e4;
}

.demo .recommend-heading .title{
    float: left;
    padding-left: 20px;
    line-height: 47px;
}



.toc-title-box {
    margin: 30px auto 40px;
}

.toc-title-menu {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    font-size: 3rem;
    color: #000;
    font-weight:bold;
    border-bottom: 2px dashed rgb(0, 147, 214);
}

.toc-title-menu::before,
.toc-title-menu::after{
    content: "□";
    position: absolute;
}

.toc-title-menu::before{
    left:0;
    top:-3px;
}

.toc-title-menu::after{
    left: 5px;
    top: 3px;
    color: #A1B8D1;
}

.toc-title-sub {
    padding: 1rem 2rem;
    border-left: 5px dashed rgb(0, 147, 214);
    background: #f4f4f4;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 30px 0 20px;
}

.toc-title-sub2 {
    border-bottom: 3px solid #bfe2f2;
    position: relative;
    max-width: 100%;
    margin: 15px 0;
    padding-bottom: 3px;
    font-size: 2rem;
    font-weight: bold;
}
.toc-title-sub2:after {
    position:absolute;
    content: '';
    width: 30%;
    height: 3px;
    background-color: #6ac6f0;
    top: 31px;
    left: 1px;
    z-index: 3;
  }


.wrapRoomPhoto {
    margin:5px 0 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

.wrapRoomPhoto img {
    width: 32%;
    margin-bottom:10px;
  }

/* 注釈用 */
.title_in_toc {
    border-bottom: 3px solid #bfe2f2;
    position: relative;
    max-width: 100%;
    margin: 15px 0;
    padding-bottom: 3px;
    font-size: 2rem;
    font-weight: bold;
}
 .title_in_toc:after {
   position:absolute;
   content: '';
   width: 30%;
   height: 3px;
   background-color: #6ac6f0;
   top: 31px;
   left: 1px;
   z-index: 3;
 }

 .title_in_toc a{
    font-size: 2rem;
    font-weight: bold;
 }

 .title_in_h5 {
    border-bottom: 2px dotted #6ac6f0;
    position: relative;
    max-width: 100%;
    margin: 10px 0;
    padding-bottom: 3px;
    font-size: 1.6rem;
    font-weight: bold;
}

.title_in_h5 a{
    font-size: 1.6rem;
    font-weight: bold;
 }

.toc-title-box .toc-ferry-discription,
.toc-title-box p.toc-ferry-discription,
.toc-title-box p {
    font-size: 1.8rem;
    margin-bottom: 20px;
    /* なぜbodyにfont-size指定しているのに効かない。。 */
    line-height: 1.8;
}

/* tableがある場合以下を使用 */

.table-title {
    margin: 30px 0 30px 38px;
    letter-spacing: 1px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
}

.table-title::before,
.table-title::after {
    content: '';
    display: inline-block;
    width: 140px;
    height: 2px;
    margin: 0 30px;
    background: #000;
    vertical-align:middle;
}

.table-body {
    border-collapse: collapse;
    border-spacing: 5px;
    /* margin: 0 auto; */
    padding: 0;
    width: 100%;
    /* margin-left: auto; */
    /* margin-right: auto; */
}

table th,
table td {
    padding: 10px 0;
    /* border-bottom: 1px solid #eee; */
}

table th {
    padding: 15px 0;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
}

table tr {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
    color: #000000;
}

/* tbody:hover td,tbody:hover th {
    color: transparent;
    text-shadow: 0 0 3px #aaa;
    background:#eee
}
tbody:hover tr:hover td,
tbody:hover tr:hover th {
    color: #444;
    text-shadow: 0 1px 0 #fff;
    background:#fff;
}
*/
.terminalBox-list2 td,.tablepress td,.terminalBox-list td{
    font-size: 15px;
}
.table-simple tbody{
    border-collapse: collapse;
    border-spacing: 0;
}
.table-simple > tbody th,
.table-simple > thead th,
.table-simple > thead tr,
.table-simple > tbody td ,
.table-simple > tbody tr{
    padding: 10px!important;
    /* font-size: 18px; */
    font-size: 1.6rem!important;
    border: 1px solid #333!important;
    text-align:center!important;
}
/*
.table-simple tbody:hover td,.table-simple tbody:hover th {
    color: #000!important;
    text-shadow: none!important;
    background: #fff!important;
}
.table-simple tbody:hover tr:hover td,
.table-simple tbody:hover tr:hover th {
    color: #000!important;
    text-shadow: none!important;
    background: #fff!important;
}
*/
.table-simple th.case01 {
    color: white!important;
    background-color: #00afc9!important;
    font-weight: bold!important;
}
.table-simple td div.sp-right{
    text-align:center;
}

/* end */

/* 予約へ遷移用バナー */

.corse-reservation {
    width:100%;
    background:#3cb3e4;
    text-align: center;
    border:none;
    position:relative;
    height:60px;
    font-size:2.4em;
    padding:0 2em;
    margin: 15px;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
}

.corse-reservation .corse-reservation-title {
    color:#fff;
    line-height: 60px;
}

.corse-reservation .corse-reservation-title:hover {
    color: #3cb3e4;
}

.corse-reservation:hover{
    background:#fff;
}

.corse-reservation:before,
.corse-reservation:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:2px;
    width:0;
    background: #3cb3e4;
    transition:400ms ease all;
}
.corse-reservation:after{
    right:inherit;
    top:inherit;
    left:0;
    bottom:0;
}
.corse-reservation:hover:before,
.corse-reservation:hover:after{
    width:100%;
    transition:800ms ease all;
}

/* PCRキット販売ページへ誘導 */

.pcrlink {
    text-align: center;
    border:3px #3cb3e4 solid;
    position:relative;
    padding:15px;
    margin: 25px 0;
    cursor:pointer;
    transition:800ms ease all;
    outline:none;
}

.pcrlink a {
    color:rgb(30, 2, 155);
    font-size:1.8em;
    text-decoration: dotted;
}

.pcrlink a:hover {
    color: #3cb3e4;
    text-decoration: underline;
}

.pcrlink br.sp{
    display:none;
}

.tel-box {
    margin-left: 100px;
    position: relative;
}

.tel-text {
    font-size: 6rem;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 150px;
    padding: 0.1em 0.3em;
    background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(255,152,0,0.8) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
    color: #ff9800;
}
.tel-text:hover {
    background-position: -100% 0;
    color: #fff;
}

.font-red {
    color: red;
    font-weight: bold;
}

.tel-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    border: 4px solid;
    border-radius: 50%;
    color: #f1b400;
    font-size: 8rem;
    line-height: 142px;
    text-align: center;
}

.tel-businessday-text {
    font-size: 3rem;
    font-weight: bold;
    position: absolute;
    top: 95px;
    left: 173px;
}

/*******************
 *****  footer   ***
 ******************* */


.footer {
    width: 100%;
    /* 今後何か入れるとき */
}

.recommend-banner {
    background-color: #F7F7F7;
    color: #071E6A;
    padding: 4px 16px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: bold;
    border-top: 2px solid #071E6A;
    border-bottom: 2px solid #071E6A;
}

.recommend-box {
    min-width: 320px;
    width: 100%;
    max-width: 1080px;
}
/* 乗船の確認事項 */
.confirmation-term {
    max-width: 100%;
}

/* 予約ボタン */

.btn-reservation,
a.btn-reservation {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 2rem 9rem;
    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.8rem;
}

/*背景*/
.btn-wrap {
    margin: 20px;
    text-align: center;
}

a.btn-c {
    font-size: 2rem;
    position: relative;
    padding: 1.5rem 6rem 1.5rem 8rem;
    color: #000;
    border: 2px solid #000;
    border-radius: 100vh;
    background: #fff100;
    -webkit-box-shadow: 0 5px 0 #e6d900;
    box-shadow: 0 5px 0 #e6d900;
}

a.btn-c span {
    font-size: 1.3rem;
    line-height: 1.3;
    position: absolute;
    top: -10px;
    left: -20px;
    width: 64px;
    height: 64px;
    padding-top: 15px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    background: #fff;
}

a.btn-c span em {
    font-style: normal;
    color: #d20010;
}

a.btn-c small {
    font-weight: bold;
}

a.btn-c i {
    margin-right: 1rem;
}

a.btn-c:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    color: #000;
    background: #fff21a;
    -webkit-box-shadow: 0 2px 0 #e6d900;
    box-shadow: 0 2px 0 #e6d900;
}

a.btn-c:hover span {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
}

.ferryDescriptionText{
    text-align: center;
    font-size: 16px;
    margin-top: 35px;
    line-height: 2.4rem;
}

.ec-headerBusTourGoTo {
    background: #4472c4;
    width: 100%;
}

.ec-headerBusTourGoTo .ec-headerBusTourGoTo__inner {
    display: flex;
    max-width: 1040px;
    height: 50px;
    flex-flow: wrap;
    justify-content: center;
    margin-top: 30px;
}

.ec-headerBusTourGoTo__title {
    background: url(../img/ferry/goto_logo.png) 0 center no-repeat;
    background-size: 100px auto;
    padding-left: 110px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    align-items: center;
    display: flex;
}

.ec-headerBusTourGoTo__title a, .ec-headerBusTourGoTo__title a:hover {
    color: #fff;
}

.ferryNav{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    text-align: center;
    margin: 30px auto;
}

.ferryNav a{
    position: relative;
    display: inline-block;
    transition: .3s;
    margin-right: 10px;
    padding-left: 10px;
    color: #31aae2;
    font-weight: bold;
}

.ferryNav a::after {
    position: absolute;
    bottom: -5px;
    left: 51%;
    content: '';
    width: 0;
    height: 2px;
    background-color: #31aae2;
    transition: .3s;
    transform: translateX(-50%);
}

.ferryNav a::before {
    content: "\f107\00a0";
    font-family: FontAwesome;
}

.ferryNav a:hover::after{
    width: 90%;
}

.ferryNav a + a {
    border-left: 1px solid #333;
}

.main section{
    background: #fffdeb82;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    margin: 10px auto;
}

.main h2.green{
    position: relative;
    padding: 1rem 2rem;
    text-align: center;
    color: #22ac38;
    border-radius: 0 10px 10px 10px;
    background: #e3f5d8;
    font-weight: bold;
    font-size: 2.1rem;
}

.main h2.green:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    font-size: 1.5rem;
    position: absolute;
    top: -24px;
    left: 0;
    height: 24px;
    padding: 0 1em;
    content: '\f002  探す';
    color: #fff;
    border-radius: 10px 10px 0 0;
    background: #22ac38;
}

.main h2.orange{
    position: relative;
    padding: 1rem 2rem;
    text-align: center;
    color: #ed6f15;
    border-radius: 0 10px 10px 10px;
    background: #fff0da;
    font-weight: bold;
    font-size: 2.1rem;
}

.main h2.orange:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    font-size: 1.5rem;
    position: absolute;
    top: -24px;
    left: 0;
    height: 24px;
    padding: 0 1em;
    content: '\f002  探す';
    color: #fff;
    border-radius: 10px 10px 0 0;
    background: #ed8e00;
}

.main h2.blue{
    position: relative;
    padding: 1rem 2rem;
    text-align: center;
    color: #0075a9;
    border-radius: 0 10px 10px 10px;
    background: #d8ecf5;
    font-weight: bold;
    font-size: 2.1rem;
}

.main h2.blue:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    font-size: 1.5rem;
    position: absolute;
    top: -28px;
    left: 0;
    height: 28px;
    padding: 0 1em;
    content: '\f002  探す';
    color: #fff;
    border-radius: 10px 10px 0 0;
    background: #0075a9;
}

.main h3.h3blue{
    position: relative;
    padding: 0.6em;
    background: #e0edff;
    font-weight: bold;
    display: inline-block;
    font-size: 1.7rem;
    border-radius: 5px;
    color: #4472c4;
    margin-bottom: 18px;
}

.main h3.h3blue:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #e0edff;
    width: 0;
    height: 0;
}

.h3fas{
    color: #4472c4;
}

.main h4.h4blue{
    padding: 0.25em 0.5em;/*上下 左右の余白*/
    color: #494949;/*文字色*/
    background: transparent;/*背景透明に*/
    border-left: solid 10px #4472c4;/*左線*/
    font-weight: bold;
    font-size: 1.7rem;
}

.featurelist__areas{
    margin: 10px auto;
}

.featurelist__areas ul {
    /* border-bottom: 7px solid #1c5db5; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.featurelist__areas li {
    margin: 0 1px 1px 0;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.featurelist__areas .nav__item {
    display: block;
    background-color: #f7f7f7;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 1em;
    width: 100%;
    border-radius: 0;
    color: #4472c4;
    font-weight: bold;
    border: 1px solid;
}
.featurelist__areas .nav__item:hover {
    background-color: #4472c4;
    color: #fff;
    font-weight: bold;
}

.h4blue_menu {
    display: inline-block;
    margin: 10px;
    font-size: 1.5rem;
    width: 200px;
}

.h4blue_menu label:after {
    content: "\f107\00a0";
    margin-left: 10px;
    font-family: FontAwesome;
}
.h4blue_menu label {
    display: block;
    margin: 0 0 4px 0;
    padding: 15px;
    line-height: 1;
    cursor: pointer;
    background-color: #f7f7f7;
    color: #4472c4;
    font-weight: bold;
    text-align: center;
}

.h4blue_menu input {
    display: none;
}

.h4blue_menu ul {
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    list-style: none;
}

.h4blue_menu li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.h4blue_menu li a{
    font-weight: bold;
    color: #000;
}

.h4blue_menu li a:after {
    content: "\f0da\00a0";
    margin-left: 10px;
    font-family: FontAwesome;
}

#hokkaido_route01:checked ~ #hokkaido_route_links01 li,
#hokkaido_route02:checked ~ #hokkaido_route_links02 li,
#hokkaido_route05:checked ~ #hokkaido_route_links05 li,
#hokkaido_terminal03:checked ~ #hokkaido_terminal_links03 li,
#tohoku_route01:checked ~ #tohoku_route_links01 li,
#tohoku_route02:checked ~ #tohoku_route_links02 li,
#tohoku_terminal01:checked ~ #tohoku_terminal_links01 li,
#tohoku_terminal02:checked ~ #tohoku_terminal_links02 li,
#kanto_route03:checked ~ #kanto_route_links03 li,
#kanto_route04:checked ~ #kanto_route_links04 li,
#kanto_terminal03:checked ~ #kanto_terminal_links03 li,
#kanto_terminal04:checked ~ #kanto_terminal_links04 li,
#kanto_terminal05:checked ~ #kanto_terminal_links05 li,
#kansai_terminal02:checked ~ #kansai_terminal_links02 li,
#kyushu_route01:checked ~ #kyushu_route_links01 li,
#kyushu_terminal11:checked ~ #kyushu_terminal_links11 li,
#kyushu_terminal13:checked ~ #kyushu_terminal_links13 li,
#kyushu_terminal14:checked ~ #kyushu_terminal_links14 li,
#kyushu_terminal15:checked ~ #kyushu_terminal_links15 li,
#kyushu_terminal16:checked ~ #kyushu_terminal_links16 li,
#kyushu_terminal17:checked ~ #kyushu_terminal_links17 li,
#kyushu_terminal18:checked ~ #kyushu_terminal_links18 li,
#kyushu_terminal19:checked ~ #kyushu_terminal_links19 li,
#shikoku_route06:checked ~ #shikoku_route_links06 li,
#shikoku_route07:checked ~ #shikoku_route_links07 li,
#shikoku_route08:checked ~ #shikoku_route_links08 li,
#shikoku_route09:checked ~ #shikoku_route_links09 li,
#shikoku_terminal01:checked ~ #shikoku_terminal_links01 li,
#shikoku_terminal03:checked ~ #shikoku_terminal_links03 li,
#shikoku_terminal05:checked ~ #shikoku_terminal_links05 li,
#shikoku_terminal08:checked ~ #shikoku_terminal_links08 li,
#shikoku_terminal09:checked ~ #shikoku_terminal_links09 li,
#shikoku_terminal10:checked ~ #shikoku_terminal_links10 li,
#shikoku_terminal12:checked ~ #shikoku_terminal_links12 li,
#okinawa_terminal11:checked ~ #okinawa_terminal_links11 li,
#okinawa_terminal12:checked ~ #okinawa_terminal_links12 li
{
    height: 35px;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#hokkaido_route02 ~ #hokkaido_route_links02 li,
#hokkaido_route03 ~ #hokkaido_route_links03 li,
#hokkaido_route04 ~ #hokkaido_route_links04 li,
#hokkaido_terminal01 ~ #hokkaido_terminal_links01 li,
#hokkaido_terminal02 ~ #hokkaido_terminal_links02 li,
#tohoku_terminal03 ~ #tohoku_terminal_links03 li,
#kanto_route01 ~ #kanto_route_links01 li,
#kanto_route02 ~ #kanto_route_links02 li,
#kanto_terminal01 ~ #kanto_terminal_links01 li,
#kanto_terminal02 ~ #kanto_terminal_links02 li,
#koushinetsu_route01 ~ #koushinetsu_route_links01 li,
#koushinetsu_terminal01 ~ #koushinetsu_terminal_links01 li,
#hokuriku_terminal01 ~ #hokuriku_terminal_links01 li,
#kansai_route01 ~ #kansai_route_links01 li,
#kansai_route02 ~ #kansai_route_links02 li,
#kansai_terminal01 ~ #kansai_terminal_links01 li,
#kansai_terminal03 ~ #kansai_terminal_links03 li,
#kansai_terminal05 ~ #kansai_terminal_links05 li,
#kyushu_route02 ~ #kyushu_route_links02 li,
#kyushu_route03 ~ #kyushu_route_links03 li,
#kyushu_terminal01 ~ #kyushu_terminal_links01 li{
    height: 35px;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f7f7f7;
}

#hokkaido_route02:checked ~ #hokkaido_route_links02 li,
#hokkaido_route03:checked ~ #hokkaido_route_links03 li,
#hokkaido_route04:checked ~ #hokkaido_route_links04 li,
#hokkaido_terminal01:checked ~ #hokkaido_terminal_links01 li,
#hokkaido_terminal02:checked ~ #hokkaido_terminal_links02 li,
#tohoku_terminal03:checked ~ #tohoku_terminal_links03 li,
#kanto_route01:checked ~ #kanto_route_links01 li,
#kanto_route02:checked ~ #kanto_route_links02 li,
#kanto_terminal01:checked ~ #kanto_terminal_links01 li,
#kanto_terminal02:checked ~ #kanto_terminal_links02 li,
#koushinetsu_route01:checked ~ #koushinetsu_route_links01 li,
#koushinetsu_terminal01:checked ~ #koushinetsu_terminal_links01 li,
#hokuriku_terminal01:checked ~ #hokuriku_terminal_links01 li,
#kansai_route01:checked ~ #kansai_route_links01 li,
#kansai_route02:checked ~ #kansai_route_links02 li,
#kansai_terminal01:checked ~ #kansai_terminal_links01 li,
#kansai_terminal03:checked ~ #kansai_terminal_links03 li,
#kansai_terminal05:checked ~ #kansai_terminal_links05 li,
#kyushu_route02:checked ~ #kyushu_route_links02 li,
#kyushu_route03:checked ~ #kyushu_route_links03 li,
#kyushu_terminal01:checked ~ #kyushu_terminal_links01 li{
    height: 0px;
    opacity: 0;
    padding: 10px;
}

.display_no ul{
    margin: 0;
    padding: 0;
    background-color: transparent;
    list-style: none;
}

.shipList{
    flex-wrap: wrap;
    margin: 15px auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* .shipList:after {
    display: block;
    content:"";
    width: 300px;
} */

.shipList div{
    width: 135px;
    margin: 10px 5px;
    text-align: center;
}

.shipList div a{
    color: #000;
}

.menu_block{
    display: flex;
    flex-flow: wrap;
    /* justify-content: space-around; */
    align-items: flex-start;
}

.nowrapper{
    width: 100%!important;
}

.prefecture{
    color: #494949;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 10px auto 0px;
}

.japanesemap{
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.map__btn {
    position: absolute;
    width: 140px;
}
.map__btn.is-hokkaido {
    top: 74px;
    left: 680px;
}

.map__btn.is-tohoku {
    top: 140px;
    left: 565px;
}

.map__btn.is-koshinetsu {
    top: 170px;
    left: 420px;
}

.map__btn.is-hokuriku {
    top: 230px;
    left: 420px;
}

.map__btn.is-kanto {
    top: 300px;
    left: 660px;
}

.map__btn.is-tokai {
    top: 380px;
    left: 550px;
}

.map__btn.is-kansai {
    top: 330px;
    left: 450px;
}

.map__btn.is-chugoku {
    top: 300px;
    left: 300px;
}

.map__btn.is-shikoku {
    top: 430px;
    left: 400px;
}

.map__btn.is-kyushu {
    top: 370px;
    left: 220px;
}

.map__btn.is-okinawa {
    bottom: 10px;
    left: 180px;
}

.map__btn button {
    position: relative;
    width: 100%;
    height: 44px;
    padding-left: 1em;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 2px -1px rgba(0,0,0,0.4);
    box-shadow: 2px 2px 2px -1px rgba(0,0,0,0.4);
    font-size: inherit;
    font-size: 16px;
    line-height: 44px;
    color: #1c5db5;
    text-align: center;
    letter-spacing: .7px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.map__btn button:after {
    content: "\f107\00a0";
    margin-left: 10px;
    font-family: FontAwesome;
}

.map__btn button + ul {
    position: absolute;
    top: 41px;
    left: 0;
    z-index: 1;
    display: none;
    min-width: 100%;
    padding: 0px 5px 5px;
    border-radius: 0 3px 3px 3px;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 2px -1px rgba(0,0,0,0.4);
    box-shadow: 2px 2px 2px -1px rgba(0,0,0,0.4);
}

.map__btn ul li{
    font-size: 15px;
    margin: 5px auto;
}

.ferry-goto-box{
    padding: 20px 0;
    background-color: #d8f9f9;
    text-align: center;
}

.ferry-discription.ferry-goto-txt{
    background-color: transparent;
    font-weight: bold;
    margin: 0 auto;
}

.header-day{
    font-size: 1.5em;
}
/* 関編 */

.new_ferry_product{
    margin: 20px auto;
    padding: 10px 0;
}
.new_ferry_product .new_ferry_product_title{
    position: relative;
    line-height: 1.4;
    padding: 0 1em;
    display: inline-block;
    top: 0;
    font-size: 2.8rem;
    color: #5fa814;
    font-weight: bold;
    margin-bottom: 0.3em;
}
.new_ferry_product.orange  .new_ferry_product_title{
     color: #ed6f15;
}

.new_ferry_product .new_ferry_product_title:before, .new_ferry_product .new_ferry_product_title:after { 
    position: absolute;
    top: 0;
    content:'';
    width: 8px;
    height: 100%;
    display: inline-block;
}
.new_ferry_product .new_ferry_product_title:before {
    border-left: solid 1px #17391e;
    border-top: solid 1px #17391e;
    border-bottom: solid 1px #17391e;
    left: 0;
}
.new_ferry_product.orange  .new_ferry_product_title:before {
    border-left: solid 1px #633706;
    border-top: solid 1px #633706;
    border-bottom: solid 1px #633706;
    left: 0;
}
.new_ferry_product .new_ferry_product_title:after {
    content: '';
    border-top: solid 1px #17391e;
    border-right: solid 1px #17391e;
    border-bottom: solid 1px #17391e;
    right: 0;
}
.new_ferry_product.orange  .new_ferry_product_title:after {
    border-top: solid 1px #633706;
    border-right: solid 1px #633706;
    border-bottom: solid 1px #633706;
}
#acMenu dd{
    padding: 1rem 2rem;
    border-radius: 10px;
    background: #e3f5d8;
    font-weight: bold;
    font-size: 2.1rem;
}
#acMenu.orange dd{
    background: #fff2db;
}
#acMenu dt{
    display:flex;
    justify-content:space-between;
    margin:3%;
    align-items: center;
}
.product_title .fa-angle-down{
        padding-left:10px;
        color: #38541b;
}
.orange .product_title .fa-angle-down{
    color: #bb7000;
}
#acMenu .product_title h2{
    font-size: 2.8rem;
    font-weight: bold;
    color: #5fa814;
}
#acMenu.orange .product_title h2{
    color: #ed6f15;
}
#acMenu .product_title h2 span{
    font-size: 2rem;
    font-weight: bold;
    color: #38541b;
}
#acMenu.orange .product_title h2 span{
        color: #bb7000;
}
#acMenu .product_title h2 span{
        color: #38541b;
}
#acMenu .product_title p{
    border:solid #5fa814;
    border-radius: 18px;
    padding: 5px 25px;
    font-weight:bold;
    color: #38541b;
    background: #e3f5d8;
    font-size: 2.8rem;
}
#acMenu.orange .product_title p{
    border:solid #e48800;
    border-radius: 18px;
    padding: 5px 25px;
    font-weight:bold;
    color: #bb7000;
    background: #fff2db;
    font-size: 2.8rem;
}
.product_title_tb li{
    display: inline-flex;
    margin: 5px 5px 10px;
    padding: 5px 25px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    border-radius: 12px;
    line-height: 24px;
}
.travel_expenses{
    padding: 1rem 2rem;
    border-radius: 10px;
    background: #f1f1f1;
    font-weight: bold;
    font-size: 2.1rem;
}
.product_wh_section{
    background-color: #ffffff;
    padding: 3%;
}
.new_ferry_product p {
    font-size: 1.8rem;
    line-height: 1.6;
    padding-top: 13px;
}
.new_ferry_product p strong, .new_ferry_product p strong span {
    font-size: 2rem;
    line-height: 1.6;
    padding-top: 13px;
    font-weight: bold;
}
.new_ferry_product h2.title{
    font-size: 2rem;
    color: #38541b;
    font-weight: bold;
    border-bottom: solid 2px #ca8b04;
    line-height: 1.5;
    padding-top:20px;
}
.new_ferry_product h2.title:first-letter{
    font-size: 2.7rem;
    color: #38541b;
    font-weight: bold;
}
.new_ferry_product h2{
    font-size: 2.5rem;
    color: #ca8b04;
    font-weight: bold;
    line-height: 2;
}
.new_ferry_product h2 span{
    font-size: 4.5rem;
    color: #ca8b04;
    font-weight: bold;
    line-height: 2;
}
.new_ferry_product  h3{
    font-size: 1.8rem;
    color: #ca8b04;
    font-weight: bold;
}
.new_ferry_product h4 strong{
    font-size: 1.8rem;
    color: #2b2521;
    font-weight: bold;
    line-height: 35px;
    border-left: solid 10px #5fa814;
    font-weight: bold;
    padding: 0.25em 0.5em;
}
.new_ferry_product h5 {
    font-size: 2rem;
    color: #126f07;
    font-weight: bold;
    display: inline-block;
    padding: 0;
    background: linear-gradient(transparent 70%, #ecdd92 70%);
}
.oita{
    padding-top:10px;
}
#acMenu table th,table td,table dd{
    border:solid 1px;
}
#acMenu table th{
    background-color: #efefef;
}
#acMenu .list1{
    border: solid 2px #ffdaa5;
    padding: 0.5em;
    margin: 0.5em 0;
    -webkit-box-shadow: 2px 3px 5px -1px rgb(0 0 0 / 20%);
    box-shadow: 2px 3px 5px -1px rgb(0 0 0 / 20%);
}
#acMenu .list1 ul {
    padding: 0.5em 1em 0.5em 2.3em;
    position: relative;
}
#acMenu .list1 ul li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;
}
#acMenu .list1 ul li:before {
    font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    left : 1em;
    color: #ffb03f;
}
.list1 h4 {
    position: relative;
    padding: 0.5em 1em;
    font-size: 2.5rem;
    color: rgb(241 118 13);
    font-weight: bold;
}
.list1 h4:after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, rgb(255 176 63), transparent);
    background: linear-gradient(to right, rgb(255 176 63), transparent);
}
#acMenu .btn-box {
    margin: 30px 0;
    text-align: center;
}
#acMenu a.btn-inquiry {
    font-size: 2.2rem;
    position: relative;
    padding: 0.25rem 2rem 1.5rem 3.5rem;
    color: #fff;
    background: #e94919;
    -webkit-box-shadow: 0 5px 0 #d44114;
    box-shadow: 0 5px 0 #d44114;
}
#acMenu a.btn-inquiry span {
    font-size: 1.5rem;
    position: absolute;
    top: -1.25rem;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.2rem 0;
    color: #d44114;
    border: 2px solid #d44114;
    border-radius: 100vh;
    background: #fff;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-inquiry span:before,
a.btn-inquiry span:after {
    position: absolute;
    left: calc(50% - 10px);
    content: "";
}
a.btn-inquiry span:before {
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #d44114 transparent transparent transparent;
}
a.btn-inquiry span:after {
    bottom: -7px;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
a.btn-inquiry i {
    margin-right: 1rem;
    color: #fff;
    left: 1.5rem;
    top: calc(50% - 0.3em);
}
a.btn-inquiry:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    color: #fff;
    background: #eb5b30;
    -webkit-box-shadow: 0 2px 0 #d44114;
    box-shadow: 0 2px 0 #d44114;
}
.fa-file-pdf{
    padding-right: 10px;
    color: #5fa814
}
#acMenu .pdf{
    border: solid #5fa814;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 1rem;
}
.product_title{
    transition: all 1.5s ease;
    background-image: linear-gradient(to right,transparent 50%,#fff134 50%);
    background-repeat: repeat-x;
    background-position: 0 5.7em;
    background-size: 200% 1.9em;
    }
.product_title:hover{
    background-position: -65% 5.7em;
}

/*****   simple_link　※SIMPLEなicon使用した外部リンクCSSです。変更する場合は新しくクラス名を追加してください  ****/

.simple_link a,.simple_link i{
    color: dodgerblue;
}
.simple_link a{
    /*display: inline-block;*/
    display: inline;
}
.simple_link a:hover{
    text-decoration: underline!important;
    color: rgba(30, 144, 255,0.5);
}
.simple_link i{
    padding: 0 5px 0 10px;
}
/* inner用  simple_link  Pタグの中で使いたい場合はコチラを使ってください*/
a.simple_inner_link,.simple_inner_link i{
    color: dodgerblue;
}
a.simple_inner_link{
   /*display: inline-block;*/
    display: inline;
}

 a:hover.simple_inner_link{
    text-decoration: underline!important;
    color: rgba(30, 144, 255,0.5);
  }
 .simple_inner_link i{
    padding: 0 5px 0 10px;
 }

.ferry_movie{
    margin: 0 auto;
    text-align: center;
    display: flex;
}
.ferry_movie img{
    width: 520px;
    height: 290px;
}
.ferry_movie iframe{
    width: 100%;
    height: 290px;
}

/*******************
 *****  sphone   ***
 ******************* */

@media screen and (max-width: 480px) {

    .sp-image-size {
        width: 100%!important;
        height:auto;
        margin:0!important;
    }
    .sp-image-height-size {
        height: 300px;

    }
    .main-post-title {
        font-size: 4rem;
        font-weight: bold;
    }
    .line-height {
        font-size: 3rem;
    }
    .toc-box .toc-list ol li a{
        font-size: 2.8rem;
    }

    .ferry-discription-box .ferry-discription {
        font-size: 2.8rem;
        /*font-weight: bold;*/
    }
    .ferry-recommend {
        width: 75%;
        font-size: 2.5rem;
    }

    .demo .recommend-heading {
        height: 100px;
    }

    .demo .recommend-heading .title {
        line-height: 100px;
        font-size: 2.5rem;
        font-weight: bold;
    }

    .demo .recommend-heading .caption {
        line-height: 99px;
        font-weight: bold;
    }
    .demo .recommend-heading .caption:before {
        border-width: 100px 32px 0 0;
    }

    /* 目次項目  */
    .toc-box {
        margin: 0 10vw;
    }
    .toc-box .toc-title {
        font-size: 3rem;
        font-weight: bold;
        width: calc(100% - 20px);
    }

    .toc-box .toc-title::before{
        content: "\f0f6\00a0";
        font-family: FontAwesome;
    }

    .toc-box .toc-list {
        font-size: 3.5rem;
    }
    .toc-title-box {
        margin: 30px 40px;
    }
    .toc-title-menu {
        font-size: 4rem;
        font-weight: bold;
        border-bottom: 4px dashed rgb(0, 147, 214);
    }
    .toc-title-sub {
        font-size: 3.2rem;
        letter-spacing: 1px;
    }
    .toc-title-sub2 {
        font-size: 2.8rem;
        border-bottom: 7px solid #bfe2f2;
    }

    .toc-title-sub2:after {
        height: 7px;
        top: 50px;
    }

    .toc-title-box .toc-ferry-discription,
    .toc-title-box p.toc-ferry-discription,
    .toc-title-box p {
        font-size: 1.1em!important;
        line-height: 1.8;
        /*font-weight: bold;*/
        margin-bottom: 20px;
    }

    .wrapRoomPhoto img {
        width: 100%;
      }
      .wrapRoomPhoto img:not(:last-child) {
        margin-bottom: 30px;
      }

    /* table */

    .table-body {
        border-collapse: collapse;
        border-spacing: 5px;
        margin: 0 auto 30px;
        padding: 0;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .table-title {
        margin: 30px 0 30px 50px;
        font-size: 4.2rem;
        width: 100%;
    }

    .table-title::before, .table-title::after {
        width: 80px;
    }

    table th {
        font-size: 2.8rem;
    }

    table td {
        font-size: 3rem;
    }
    .table-simple th.case01 {
        color: white!important;
        background-color: #00afc9!important;
        font-weight: bold!important;
    }
    .table-simple td div.sp-right{
        text-align:right;
        padding-right:20px;
    }

    /* end */

    /* 注釈部分 */
    .title_in_toc {
        font-size: 4rem;
        border-bottom: 7px solid #bfe2f2;
    }

    .title_in_toc:after {
        height: 7px;
        top: 50px;
    }

    .title_in_h5 {
        font-size: 3rem;
        border-bottom: 2px solid #6ac6f0;
    }


    .corse-reservation {
        height: 110px;
        margin: 40px auto;
    }
    .corse-reservation .corse-reservation-title {
        line-height: 100px;
        white-space: nowrap;
    }


    /* 予約ボタン */
    a.btn-c {
        font-size: 4rem;
        padding: 2.5rem 6rem 2.5rem 8rem;
    }

    a.btn-c span {
        font-size: 2.7rem;
        top: -40px;
        width: 110px;
        height: 110px;
    }

    /* 乗船の確認事項 */
    .confirmation-term {
        max-width: 100%;
    }

    /* どうしてもリンクが真ん中にならない場合 */
    /**
    *   corse-reservation-titleと一緒にクラス付与し
    *   leftで移動させる。
    */
    .corse-reservation-relative {
        position: relative;
    }

    .corse-reservation-absolute {
        position: absolute;
        left: 80px;
    }

    .ec-headerBusTourGoTo .ec-headerBusTourGoTo__inner {
        height: 100%;
        padding: 20px;
    }
    .ec-headerBusTourGoTo__title {
        background: url(../img/ferry/goto_logo.png) 0 center no-repeat;
        background-size: 150px auto;
        padding-left: 160px;
        font-size: 2em;
        font-weight: bold;
        color: #fff;
        align-items: center;
        display: flex;
    }
    .ferryNav {
        font-size: 2rem;
        margin: 30px auto 70px;
    }
    .main h2.blue {
        font-size: 3.5rem;
    }
    .main h2.blue{
        font-size: 3.5rem;
    }
    .main h2.blue:before{
        font-size: 3rem;
        top: -40px;
        left: 0;
        height: 40px;
    }
    .featurelist__areas li{
        flex: 300px;
    }
    .featurelist__areas .nav__item{
        font-size: 2rem;
        padding: 20px;
    }
    .main h3.h3blue{
        font-size: 2rem;
    }
    .main h4.h4blue{
        font-size: 2rem;
    }
    .h4blue_menu{
        font-size: 2rem;
        width: 46%;
    }
    .shipList div {
        width: 300px;
        margin: 15px 5px;
    }
    .shipList div a img{
        width: 240px;
        height: 50px;
    }
    h2.new_launch_title{
        font-size: 2rem!important;
    }
    h3.new_launch_title{
        font-size: 2rem!important;
    }
    .new_launch_p{
        font-size: 3rem!important;
    }
    .h4blue_menu label{
        margin: 15px auto;
        padding: 25px;
    }

    #hokkaido_route01:checked ~ #hokkaido_route_links01 li,
    #hokkaido_terminal01:checked ~ #hokkaido_terminal_links02 li {
        padding: 40px;
    }
    .map_area{
        display: none;
    }
    .prefecture{
        font-size: 2rem;
    }
    .main h2.green,.new_ferry_product .new_ferry_product_title,#acMenu .product_title h2,#acMenu .product_title p,.product_title_tb li,.list1 h4,.new_ferry_product h5,#acMenu a.btn-inquiry{
        font-size: 2rem!important;
    }
    #acMenu .product_title p{
        text-align:center;
    }
    #acMenu .product_title h2 span,.new_ferry_product h2,.new_ferry_product h4 strong,.new_ferry_product p strong, .new_ferry_product p strong span,.new_ferry_product h2.title,#acMenu a.btn-inquiry span{
        font-size: 2rem!important;
    }
    .new_ferry_product p,#acMenu .list1 ul li{
        font-size: 2rem;
    }
    #acMenu dt{
        display: block;
        }
    .main h2.green:before{
        font-size: 2rem;
        top: -40px;
        left: 0;
        height: 40px;
    }
    .product_title_tb li{
        padding: 10px 25px;
    }
    #acMenu a.btn-inquiry {
        padding: 0.25rem 2rem 1.5rem 5.5rem!important;
    }
    #acMenu .list1 ul li:before{
        left: 0.5em;
    }
    .product_title{
        background-position: 0 4.7em;
        background-size: 200% .6em;
        }
    .product_title:hover{
        background-position: -100% 4.7em;
    }
    .ferry_movie{
        margin: 0 auto;
        text-align: center;
        display: block;
    }
    .ferry_movie img{
        width: 80%;
        height: auto;
    }
    .ferry_movie iframe{
        width: 80%;
        height: 290px;
    }
    .ferry_line_text {
        font-size: 24px !important;
        width: 90% !important;
    }
    .ferry_line_text:after {
        bottom: -15% !important;
    }
    .ferry_line_text:before {
        top: -15% !important;
    }
}

/* 著者プロフィール---------------------------------------------------------------------*/
.profbox {
    border-top: 1px solid #ccc;
    padding: 30px 0;
    box-sizing: border-box;
    width:100%;
}
.profbox h2.profboxH2{
    padding: 0;
    display: inline-block;
    line-height: 1.3;
    background: none;
    vertical-align: middle;
    color: #333;
    font-size: 20px;
}
.profbox-wrap {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0px 0px 10px 0px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    box-sizing: border-box;
    /* width: 100%; */
    clear: both;
    display: block;
    overflow: hidden;
    word-wrap: break-word;
    position: relative;
}

.profbox-wrap .profbox-photo {
    float: left;
    padding: 0 20px 20px 20px;
}

.profbox-wrap .profbox-photo img {
    border-radius: 50%;
}

.profbox-wrap .profbox-authorname h3{
    font-size: 18px;
    line-height: 25px;
    margin: 20px 20px 0 20px;
    display: block;
    font-weight:bold;
}

.profbox-wrap .profbox-authorname .fn {
    line-height: 1.6;
    font-size: 14px;
}
.profbox-wrap .profbox-authorname br.sp{
    display:none;
}

.profbox-wrap .profbox-desc p,
.profbox-wrap .profbox-desc {
    font-size: 15px;
    line-height: 1.5;
}
.profbox-wrap .profbox-desc {
    display: block;
    margin: 5px 20px;
}

@media screen and (max-width: 648px){
    .pcrlink {
        margin: 25px 30px!important;
        padding: 10px;
    }

    .pcrlink a {
        color:rgb(30, 2, 155);
        font-size:20px;
        text-decoration: dotted;
    }

    .pcrlink  br.sp{
        display:block;
    }

    .tel-box {
        margin-left: 70px;
        position: relative;
    }

    .tel-text {
        font-size: 4rem!important;
        font-weight: bold;
        position: absolute;
        top: 20px;
        left: 150px;
        padding: 0.1em 0 0.1em 0.3em;
        background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(255,152,0,0.8) 50%);
        background-position: 0 0;
        background-size: 200% auto;
        transition: .3s;
        color: #ff9800;
    }

    .tel-text:hover {
        background-position: -100% 0;
        color: #fff;
    }

    .font-red {
        color: red;
        font-weight: bold;
    }

    .tel-icon {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
        border: 4px solid;
        border-radius: 50%;
        color: #f1b400;
        font-size: 8rem;
        line-height: 142px;
        text-align: center;
    }

    .tel-businessday-text {
        font-size: 2rem!important;
        font-weight: bold;
        position: absolute;
        top: 93px;
        left: 170px;
    }

    a.btn-c {
        font-size: 3rem!important;
        letter-spacing: 0!important;
    }

    /*.profbox {
        box-sizing: border-box;
        width:100%;
    }*/
    .profbox-wrap {
        border: 1px solid #ccc;
        padding: 10px 25px!important;
        margin: 5px 25px 5px 15px!important;
        /*box-sizing: border-box;
        width:100%;*/
    }
    .profbox-wrap .profbox-photo {
        float: none;
        padding: 20px 0 5px 0;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
    .profbox-wrap .profbox-authorname {
        text-align: center;
        margin: 10px 0 20px;
    }

    .profbox-wrap .profbox-authorname br.sp{
        display:block;
    }
    .profbox-wrap .profbox-desc {
        margin: 0 10px 20px;
        text-align: center;
    }
    .profbox-wrap .profbox-desc p,
    .profbox-wrap .profbox-authorname .fn,
    .profbox-wrap .profbox-authorname h3{
        text-align: center;
        font-size: 2.7rem;
    }
    .profbox h2.profboxH2 {
        padding: 0 0 5px 15px!important;
        display: inline-block;
        line-height: 1.3;
        background: none;
        vertical-align: middle;
        color: #333;
        font-size: 2.8rem;
    }
    .profbox-wrap .profbox-desc p.toc-ferry-discription{
        font-size:20px!important;
        line-height: 1.5;
    }
}
/* 著者プロフィール END-----------------------------------------------------------------------*/

/* header下の枠およびアコーディオン
2022.08.08 kaieda ============*/

.blueline-block{
    border:2px solid #31aae2;
    padding:15px;
    text-align:center;
    font-size:20px;
    font-weight:bold;
    margin-top:15px;
}

.blueback-block {
    display: block;
    text-align:center;
    margin: 15px 0!important;
    width: 100%;
    background:#e0edff;
    box-sizing: border-box;
    border:2px solid #333;
}

.blueback-block_toggle {
    display: none;
}
.blueback-block .blueback-blockLabel {/*タイトル*/
    padding: 1em;
    display: block;
    color: #333;
    font-size:20px;
    font-weight:bold;
}
.blueback-block .blueback-blockLabel::before{	/*タイトル横の矢印*/
    content:"";
    width: 10px;
    height: 10px;
    border-top: 2px solid #31aae2;
    border-right: 2px solid #31aae2;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
}
.blueback-block .blueback-blockLabel,
.blueback-block .blueback-blockcontent {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.blueback-block .blueback-blockcontent {/*本文*/
    height: 0;
    margin-bottom:0px;
    padding:0px;
    overflow: hidden;
}
.blueback-block_toggle:checked + .blueback-blockLabel + .blueback-blockcontent {/*開閉時*/
    height: auto;
    padding:20px ;
    transition: all .3s;
}
.blueback-block_toggle:checked + .blueback-blockLabel::before {
    transform: rotate(-45deg) !important;
}


/*  オンラインでかんたん見積り依頼ボタン list.css からコピー */
.online_CV{
    background-color: #22b8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 105px;
    margin: 1rem auto;
    transition: all 0.3s;
    width: 70%;
    letter-spacing: 1px;
    box-shadow: 0 6px 0 #2e8bd1;
    filter: drop-shadow(2px 2px 4px rgb(0 0 0 / 20%));
}
.online_CV:hover {
    -webkit-transform: translate(0, 3px);
    transform: translate(0, 3px);
    background-color: #1eaaed;
    -webkit-box-shadow: 0 2px 0 #447ee8;
    box-shadow: 0 2px 0 #447ee8;
}
.ferry_contact_box a:hover {
    text-decoration: none;
}
.ferry_line_text {
    position: relative;
    margin: 50px auto;
    font-size: 16px;
    padding: 10px 0;
    width: 70%;
}
.ferry_line_text:after {
    position: absolute;
    bottom: -30%;
    left: 25%;
    width: 50%;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #447ee8;
}
.ferry_line_text:before {
    position: absolute;
    top: -30%;
    left: 25%;
    width: 50%;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: #447ee8;
}
.online_CV p{
    /*font-size: 1.5rem; フェリーのCSSだと15pxになってしまうので大きめにする ↓ */
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    padding-left: 30px;
}
.online_CV img{
    width: 60px;
}