*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    margin: 0px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
    background-color: white;
    _display: inline;
    _zoom: 1;
    -webkit-font-smoothing: antialiased;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}


/*wrap
-----------------------------------------------------*/
.wrap {
    display: block;
    overflow: hidden;
    clear: both;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}
.wrap:last-of-type {
    margin-bottom: 0;
}
.wrap_wide {
    width: 1366px;
}
.wrap_mid {
    width: 992px;
}
.wrap_narrow {
    width: 767px;
}
@media screen and (max-width:1365px) {
    .wrap_wide {
    width: 100%;
    }
    .wrap_mid {
    width: 992px;
    }
    .wrap_narrow {
    width: 767px;
    }
}
@media screen and (max-width:991px) {
    .wrap_wide {
    width: 100%;
    }
    .wrap_mid {
    width: 100%;
    }
    .wrap_narrow {
    width: 767px;
    }
}
@media screen and (max-width:767px) {
    .wrap {
    padding: 10px;
    margin-bottom: 40px;
    }
    .wrap_wide {
    width: 100%;
    }
    .wrap_mid {
    width: 100%;
    }
    .wrap_narrow {
    width: 100%;
    }
}

/*-----------------------------------------------------
***calendar***
-----------------------------------------------------*/
.only-sp {
    display: none;
}
@media screen and (max-width: 767px){
    .only-sp{
        display: inline;
    }
}

.container_ca {
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.ca_box {
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
    border: solid 3px #0092d8;
    margin-bottom: 30px;
}

@media screen and (max-width:767px) {
    .ca_box {
        width: 100%;
        padding: 5px;
        border: 0px;
    }
}

.ca_box p {
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width:767px) {
    .ca_box p {
        padding: 5px;
    }
}

.calendar-table {
    width: 90%;
    max-width: 1000px;
    border-collapse: collapse;
    table-layout: fixed;
    background-color: white;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    border-radius: 10px;
    margin-top: 20px;
}

@media screen and (max-width:767px) {
    .calendar-table {
        width: 100%;
    }
}

.calendar-table th,
.calendar-table td{
    padding: 10px;
}
@media screen and (max-width:767px) {
    .calendar-table td{
        padding: 3px;
    }
}

.calendar-table .header {
    background-color: #4c586f;
    color: white;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
}

.calendar-table .header a {
    width: 100%;
    color: white !important;
    font-weight: bold !important;
}

.date_cs {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px;
    width: 70%; 
    background-color: #eb6100;
    margin-left: 0px;
    margin-right: 0px;
}

.month_container {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    width: 100%;
}
.month_container a {
    color: #4a80d6;
    font-weight: bold;
    font-size: 2rem;
}
.month_container span {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
}
@media screen and (max-width:767px) {
    .month_container {
        margin: 5px 0;
    }
}

.left {
    text-align: center;
    width: 30%;
    margin: 10px;
    padding: 10px;
    background-color: lightskyblue;
    border-radius: 10px;
}
.right {
    text-align: center;
    width: 30%;
    margin: 10px;
    padding: 10px;
    background-color: lightskyblue;
    border-radius: 10px;
}
@media screen and (max-width:767px) {
    .left {
        margin: 0px;
        width: auto;
    }
    .right {
        margin: 0px;
        width: auto;
    }
}

.day {
    height: 100px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
}

.day span {
    font-weight: bold;
    font-size: 2rem;
}
@media screen and (max-width:767px) {
    .day span {
        font-size: 4vw;
    }
}

.day_time {
    height: 100px;
    border-radius: 10px;
    margin: 10px;
    background-color:#c4c4c4;
    text-align:start;
}

.day_time span {
    font-weight: bold;
    font-size: 2rem;
}
@media screen and (max-width:767px) {
    .day_time span {
        font-size: 4vw;
    }
}

.day_off {
    height: 100px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    background-color: rgb(244, 243, 234);
}
@media screen and (max-width:767px) {
    .day,
    .day_before,
    .day_off {
        height: auto !important;
    }
}

.day_off p {
    font-weight: bold;
    font-size: 2rem;
    color: rgb(134, 134, 134);
}
@media screen and (max-width:767px) {
    .day_off p {
        font-size: 4vw;
    }
}

.course_day_off {
    height: 30px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    background-color: rgb(244, 243, 234);
}

.course_day_off span {
    font-size: medium;
    color: rgb(134, 134, 134);
}
@media screen and (max-width:767px) {
    .course_day_off span {
        font-size: 4vw;
    }
}

.course_day_off a {
    font-size: medium;
    font-weight: bold;
    color: black !important;
}

.day_before {
    height: 100px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
}

.day_before p {
    font-weight: bold;
    font-size: 2rem;
    color: rgb(100, 100, 100);
}
@media screen and (max-width:767px) {
    .day_before p {
        font-size: 4vw;
    }
}

.overbtn {
    width: 100%;
    height: 100%;
    padding-block: 0;
    padding-inline: 0;
    border-width: 0;
    font-weight: bold;
    font-size: 2rem;
}
@media screen and (max-width:767px) {
    .overbtn {
        font-size: 4vw;
    }
}

.today {
    height: 100px;
    border-radius: 10px;
    margin: 5px;
    text-align: center;
    border: 2px gray;
    background-color: rgb(255, 243, 227);
}

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

.course_tr {
    padding: 5px;
}

/*-----------------------------------------------------
******
-----------------------------------------------------*/
.flex-row {
    display: flex;
    flex-direction: row;
    width: 100%;
}
@media screen and (max-width:767px) {
    .flex-row {
        flex-direction: column;
    }
}

.list table{
    border-collapse: collapse;
    margin: 20px 0;
    width: 100%;
	text-align: center;
    table-layout: fixed;
}

.list th,
.list td {
	border:1px solid #a2aab0;
	padding: 20px 10px;
}

.list th {
	background-color: #ebeced;
}

/*-----------------------------------------------------
*** only ***
-----------------------------------------------------*/
.pc_only {
    display: unset;
}
@media screen and (max-width:767px) {
    .pc_only {
        display: none;
    }
}

.sp_only {
    display: none;
}
@media screen and (max-width:767px) {
    .sp_only {
        display: unset;
    }
}

/*-----------------------------------------------------
*** btn ***
-----------------------------------------------------*/
.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    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;
}


.wrapper {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 1137px;
    max-width: 100%;
}

.wrapper2 {
    width: 70%;
    padding: 80px 0 30px;
    margin: 0 auto;
}

.cl_head {
    font-size: 3rem;
    font-weight: bold;
    color: black;
}

.wrapper-title {
    text-align: center;
    margin-bottom: 30px;
    width: 80%;
}

.wrapper-title p {
    color: #4c586f;
}

.last-wrapper {
    margin-bottom: 80px;
}

.wrapper2-body{
    text-align: center;
    background-color: #e6e6e64b;
    border-radius: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

/*header
-----------------------------------------------------*/
header {
    width: 100%;
    height: 110px;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    background-image: url(../img/g-nav_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: white;
    align-items: center;
    padding: 0 2%;
}
@media screen and (max-width:1365px) {
    header {
        width: 100%;
        background-color: white;
    }
}
@media screen and (max-width:991px) {
    header {
        width: 100%;
        padding: 10px 0 10px 0;
        background-color: white;
    }
}
@media screen and (max-width:767px) {
    header {
        width: 100%;
        background-color: white;
        justify-content: center;
        align-items: center !important;
        background-image: none;
        position: relative;
        height: 100px;
    }
}

.header_area {
    width: 100%;
    height: 80%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-items: center;
}
@media screen and (max-width:767px) {
    .header_area {
        height: 100%;
        margin-top: 0px;
    }
}

/*g_navi
-----------------------------------------------------*/
#g_navi {
    text-align: center;
    height: 90px;
    padding-top: 25px;
    box-sizing: border-box;
    margin-bottom: 0px;
    margin-left: auto;
}
#g_navi ul {
    padding-left:0;
    display: flex;
    justify-content: space-around;
}
#g_navi li span.jp {
    list-style:none;
    font-weight: bold;
    font-size: 13px;
    font-size: 1.3rem;
}
#g_navi li span.en {
    list-style: none;
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 3px;
    font-weight: bold;
}
#g_navi li {
    list-style: none;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.3;
    margin-left: 40px;
    font-weight: bold;
}
#g_navi li:nth-child(8) {
    margin-right: 0;
}
#g_navi li a {
    padding-bottom: 5px;
    display: block;
    position: relative;
}
#g_navi li a:before {
    content: '';
    width: 0;
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #fff;
    position: absolute;
    display: block;
}
#g_navi li a:hover:before {
    width: 50%;
    border-bottom: 1px solid #fff;
}
#g_navi li a:after {
    content: '';
    width: 0;
    right: 50%;
    bottom: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #fff;
    position: absolute;
    display: block;
}
#g_navi li a:hover:after {
    width: 50%;
    border-bottom: 1px solid #fff;
}
#g_navi .pc-no_navi{
    display: none;
}
@media screen and (max-width:991px) {
    #g_navi .pc-no_navi{
        display: block!important;
    }
}

@media screen and (max-width:991px) {
    #g_navi{
        display: none!important;
    }
}

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
	display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
	float: left;
	width: 100%;
	position: relative;
	background: #0c1923;
	padding: 4px 0;
	min-height: 42px;
	z-index: 999999;
}

.mean-container a.meanmenu-reveal {
	width: 22px;
	height: 22px;
	padding: 13px 13px 11px 13px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
	display: block;
	background: #fff;
	height: 3px;
	margin-top: 3px;
}

.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: #0c1923;
	margin-top: 44px;
}

.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
}

.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%;
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 90%;
	padding: 1em 5%;
	margin: 0;
	text-align: left;
	color: #fff;
	border-top: 1px solid #383838;
	border-top: 1px solid rgba(255,255,255,0.5);
	text-decoration: none;
	text-transform: uppercase;
}

.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 1em 10%;
	border-top: 1px solid #f1f1f1;
	border-top: 1px solid rgba(255,255,255,0.25);
	opacity: 0.75;
	filter: alpha(opacity=75);
	text-shadow: none !important;
	visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
	background: #252525;
	background: rgba(255,255,255,0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 1px;
	width: 26px;
	height: 32px;
	padding: 12px !important;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: rgba(255,255,255,0.1);
	border: none !important;
	border-left: 1px solid rgba(255,255,255,0.4) !important;
	border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
	background: rgba(0,0,0,0.9);
}

.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}

.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar, .mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.mean-remove {
	display: none !important;
}

.mean-container li span.en{
    display: none !important;
}

main {
    width: 100%;
}

/*progress navi
-----------------------------------------------------*/

.nav_reservation_process {
    margin-bottom: 22px;
}
.nav_reservation_process ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.2rem;
    list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
    unicode-bidi: isolate;
}
	.nav_reservation_process li {    
        width: 25%;
        background: #E2ECF3;
        text-align: center;
        color: #0756a0;
        font-weight: bold;
        line-height: 1.5;
        padding: 1em 0 .75em;
        position: relative;
    }
    .nav_reservation_process li.current {
        background: url(../img/bg_btn.jpg);
        background-size: cover;
        color: #FFF;
    }
    .nav_reservation_process li::marker {
        display: none;
        color: #ffffff00 !important;
    }
    .nav_reservation_process li.current::after {
        content: '';
        position: absolute;
        bottom: -11px;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 12px 7px 0 7px;
        border-color: #599BC5 transparent transparent transparent;
        margin-left: -7px;
    }
		.nav_reservation_process li span {
            position: relative;
            display: block;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            text-align: center;
            height: 100%;
            padding-top: 34px;
            line-height: 1.3;
            background-repeat: no-repeat;
            background-position: top center;
		}
		.nav_reservation_process li:nth-child(1) span {
			background-image: url(../img/icon/nav_search_blue.png);
		}
		.nav_reservation_process li:nth-child(1).current span {
			background-image: url(../img/icon/nav_search_white.png);
		}
		.nav_reservation_process li:nth-child(2) span {
			background-image: url(../img/icon/nav_ship_blue.png);
		}
		.nav_reservation_process li:nth-child(2).current span {
			background-image: url(../img/icon/nav_ship_white.png);
		}
		.nav_reservation_process li:nth-child(3) span {
			background-image: url(../img/icon/nav_info_blue.png);
		}
		.nav_reservation_process li:nth-child(3).current span {
			background-image: url(../img/icon/nav_info_white.png);
		}
		.nav_reservation_process li:nth-child(4) span {
			background-image: url(../img/icon/nav_check_blue.png);
		}
		.nav_reservation_process li:nth-child(4).current span {
			background-image: url(../img/icon/nav_check_white.png);
		}
		.nav_reservation_process li:nth-child(5) span {
			background-image: url(../img/icon/nav_fine_blue.png);
		}
		.nav_reservation_process li:nth-child(5).current span {
			background-image: url(../img/icon/nav_fine_white.png);
		}

        .nav_reservation_process li:nth-child(1) span {
            background-size: 30px auto;
        }
        .nav_reservation_process li:nth-child(2) span {
            background-size: 30px auto;
        }
        .nav_reservation_process li:nth-child(3) span {
            background-size: 30px auto;
        }
        .nav_reservation_process li:nth-child(4) span {
            background-size: 30px auto;
        }
        .nav_reservation_process li:nth-child(5) span {
            background-size: 30px auto;
        }
@media screen and (max-width:767px) {
	.nav_reservation_process li {    
        padding: 10px 0 1em;
    }
    .nav_reservation_process li span {
        padding-top: 32px;
    }
    .nav_reservation_process li:nth-child(1) span {
        background-size: 3rem auto;
    }
    .nav_reservation_process li:nth-child(2) span {
        background-size: 3rem auto;
    }
    .nav_reservation_process li:nth-child(3) span {
        background-size: 3rem auto;
    }
    .nav_reservation_process li:nth-child(4) span {
        background-size: 3rem auto;
    }
    .nav_reservation_process li:nth-child(5) span {
        background-size: 3rem auto;
    }
}
/*form
-----------------------------------------------------*/

form {
    width: 100%;
    padding: 40px;
}
@media screen and (max-width:767px) {
    form {
        padding: 5px;
    }
    ul {
        padding-inline-start: 5px;
    }
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width:767px) {
    .form-group {
        margin-bottom: 30px;
    }
}

.form-num {
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
}

.form-box {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-left: 50px;
    margin-right: 50px;
    width: 70%;
    margin-left: auto;
}

.course_list {
    width: 100%;
}

.course_list table {
    border-collapse: separate;
    border-spacing: 5px;
    margin: 20px 0;
    width: 100%;
	text-align: center;
    table-layout: fixed;
}
@media screen and (max-width:767px) {
    .course_list table {
        writing-mode:vertical-lr;
    }
}

.e {
    width: 15%;
}

.course_list th {
	padding: 5px 10px;
}
@media screen and (max-width:767px) {
    .course_list th {
        writing-mode: horizontal-tb;
    }
}

.course_list td {
	padding: 20px 10px;
    font-size: 2rem;
    font-weight: bold;
}
@media screen and (max-width:767px) {
    .course_list td {
        writing-mode: horizontal-tb;
    }
}

.course_list td.course_sl {
	background-color: #ebeced;
    border-radius: 10px;
    margin: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course_list td a {
    font-size: 2rem;
    font-weight: bold;
    border-radius: 10px;
    margin: 5px;
}


.course_list td.course_ship {
    height: 100px;
    width: 20%;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
    width: 30%;
}

label2 {
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
}

select {
    width: 100px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 0px;
    text-align: center;
    font-weight: bold;
}

textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 0px;
    text-align: left;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
input[type="int"],
input[type="time"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 0px;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="date"]::placeholder,
input[type="tel"]::placeholder,
input[type="int"]::placeholder,
input[type="time"]::placeholder {
    color: #999; /* グレー色 */
    opacity: 1; /* 不透明度（デフォルトは少し薄いので、1に設定） */
    font-style: italic; /* 斜体（任意） */
}

button[type="submit"],
#myForm ul button {
    width: 100%;
    background: url(../img/bg_btn.jpg);
    background-size: cover;
    color: #fff;
    padding: 25px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
}

.container {
    background-color: rgba(255, 255, 255, 0.3);
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.container2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px; 
}

.container_course {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(12px);
    margin-top: 20px;
    margin-left: 0 auto;
    margin-right: 0 auto;
    margin-bottom: 30px;
}

.course_select {
    width: 90%;
}

.box {
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 100px;
    background-color: #005BAC;
    margin: 20px;
    width: 45%;
    border-radius: 10% 10% 10% 10%;
}

.box img {
    width: 100%;
    margin: 0px 0;
    border-radius: 10% 10% 0% 0%;
}



.btn--orange{
    margin: auto;
}
a.btn--orange {
    color: #fff;
    background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
    color: #fff;
    background: #f56500;
}

/*-----------------------------------------------------
***btn icon***
-----------------------------------------------------*/

.btn_icon_main.iconMove {
	background-image: url(../img/icon/nav_move.png);
	background-position: right 14px center;
	background-size: 8px auto;
}

/*-----------------------------------------------------
***inner***
-----------------------------------------------------*/
#header_col_inner {
    width: 100%;
}
#main_col_inner {
    width: 100%;
}
#footer_col_inner {
    padding-top: 19px;
    background-image: url(../img/bg_footer.png);
    height: 19px;
    background-repeat: repeat-x;
    background-position: top center;
    text-align: center;
}

@media screen and (max-width:1365px) {
    #header_col_inner {
    width: 100%;
    }
    #main_col_inner {
    width: 100%;
    }
    #footer_col_inner {
    width: 100%;
    }
}
@media screen and (max-width:991px) {
    #header_col_inner {
    width: 100%;
    }
    #main_col_inner {
    width: 100%;
    }
    #footer_col_inner {
    width: 100%;
    }
}
@media screen and (max-width:767px) {
    #header_col_inner {
    width: 100%;
    }
    #main_col_inner {
    width: 100%;
    }
    #footer_col_inner {
    width: 100%;
    }
}

/*-----------------------------------------------------
***contents***
-----------------------------------------------------*/
#contents {
    clear: both;
    display: block;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
    margin: 0px auto 0px;
    width: 100%;
    box-sizing: border-box;
}

/*-----------------------------------------------------
***footer***
-----------------------------------------------------*/
footer {
    padding: 40px 0 10px 0;
    background-image: url(../img/bg_btn.jpg);
    /*background-color: #0092d8;*/
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}
footer #footer_site-logo {
    margin: 0 auto;
    width: 200px;
    height: 70px;
    margin-bottom: 10px;
}
footer #footer-info {
    margin-bottom: 30px;
}
@media screen and (max-width:767px) {
    footer {
        padding: 20px 10px 10px 10px;
    }
    footer #footer_site-logo {
        width: 140px;
        height: 49px;
        margin-bottom: 0;
    }
    footer #footer-info, footer #footer-nav {
        display: none;
    }
}

/*-----------------------------------------------------
***見出し要素***
-----------------------------------------------------*/
/*h1///site-logo
-----------------------------------------------------*/
h1 {
    width: 160px;
    height: 50px;
    position: absolute;
    top:10px;
    left: 20px;
}
@media screen and (max-width:991px) {
    h1 {
        position: static;
        margin: auto;
    }
}

.logo_pc {
    display: block;
    padding-top: 10px;
}
@media screen and (max-width:767px) {
    .logo_pc {
        display: none;
    }
}
.logo_mob {
    display: none;
}
@media screen and (max-width:767px) {
    .logo_mob {
        display:block;
        padding-top: 0px;
    }
}
/*h2
-----------------------------------------------------*/
h2 {
    font-size: 32px; 
    font-size: 3.2rem;
    text-align: center;
    position: relative;
    margin-bottom: 160px;
    font-weight: bold;
    line-height: 1;
    color: white;
}
h2 span {
    font-size: 24px;
    font-size: 2.4rem;
    position: absolute;
    bottom: -80px; /*線の上下位置*/
    text-align: center;
    left: 50%;
    transform: translateX(-50%); /*位置調整*/
    font-weight: bold;
}
h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -110px; /*線の上下位置*/
    transform: translateX(-50%); /*位置調整*/
    background-image: url(../img/bg_h2.png);
    height: 11px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    margin-bottom: 80px;
    width: 100%;
}
@media screen and (max-width:767px) {
h2 {
    font-size: 24px;
    font-size: 2.6rem;
    margin-bottom: 100px;
    line-height: 1;
}
h2 span {
    font-size: 16px;
    font-size: 1.6rem;
    bottom: -60px; /*線の上下位置*/
    text-align: center;
}
h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -110px; /*線の上下位置*/
    transform: translateX(-50%); /*位置調整*/
    background-image: url(../img/bg_h2.png);
    height: 11px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    margin-bottom: 80px;
    width: 100%;
}
}
/*h3
-----------------------------------------------------*/
h3 {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
    height: 73px;
    color: #fff;
    padding-top: 28px;
    line-height: 1;
    box-sizing: border-box;
    margin-bottom: 60px;
}
@media screen and (max-width:767px) {
    h3 {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    height: 60px;
    color: #fff;
    padding-top: 28px;
    line-height: 1;
    box-sizing: border-box;
    margin-bottom: 30px;
    }
}
/*h4
-----------------------------------------------------*/
h4 {
    font-size: 28px;
    font-size: 2.8rem;
    color: #3583C9;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
    line-height: 1.5;
    width: 100%;
    font-weight: bold;
}
h4:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px; /*線の上下位置*/
    transform: translateX(-50%); /*位置調整*/
    background-image: url(../img/bg_txt-lead.png);
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    width: 100%;
}
@media screen and (max-width:767px) {
h4 {
    font-size: 20px;
    font-size: 2.0rem;
    color: #3583C9;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    line-height: 1.3;
    width: 100%;
    font-weight: bold;
}
h4:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px; /*線の上下位置*/
    transform: translateX(-50%); /*位置調整*/
    background-image: url(../img/bg_txt-lead.png);
    height: 16px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: block;
    width: 100%;
}
}
/*h5
-----------------------------------------------------*/
h5 {
    font-size: 26px;
    font-size: 2.6rem;
    color: #3583C9;
    text-align: center;
    line-height: 1.3;
    width: 100%;
    font-weight: bold;
}
@media screen and (max-width:767px) {
h5 {
    font-size: 20px;
    font-size: 2.0rem;
    color: #3583C9;
    text-align: center;
    width: 100%;
    font-weight: bold;
    }
}
/*h6
-----------------------------------------------------*/
h6 {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
    background-image: url(../img/bg_h3.png);
    background-repeat: repeat-x;
    background-position: center center;
    height: 73px;
    color: #fff;
    padding-top: 28px;
    line-height: 1;
    box-sizing: border-box;
    margin-bottom: 30px;
}
@media screen and (max-width:767px) {
    h6 {
        font-size: 18px;
        font-size: 1.8rem;
        text-align: center;
        background-image: url(../img/bg_h3.png);
        background-repeat: repeat-x;
        background-position: center top;
        height: 60px;
        color: #fff;
        padding-top: 28px;
        line-height: 1;
        box-sizing: border-box;
        margin-bottom: 15px;
        margin-top: 10px;
    }
}
/*h7
-----------------------------------------------------*/
h7 {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
    height: 73px;
    color: #fff;
    padding-top: 28px;
    line-height: 1;
    box-sizing: border-box;
    margin-bottom: 10px;
}
@media screen and (max-width:767px) {
    h7 {
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    height: 60px;
    color: #fff;
    padding-top: 28px;
    line-height: 1;
    box-sizing: border-box;
    margin-bottom: 5px;
    }
}
/*-----------------------------------------------------
***ナビゲーション***
-----------------------------------------------------*/

/*footer_contact-btn-area
-----------------------------------------------------*/
.footer_contact-btn-area {
    text-align: center;
    padding-bottom: 60px;
    display: block;
    box-sizing: border-box;
}
.footer_contact-btn p {
    font-size: 20px;
    font-size: 2.0rem;
    margin: 0 0 0 134px;
    color: #fff;
    font-weight: bold;
    text-align: left;
    line-height: 1.8;
    box-sizing: border-box;
}
.footer_contact-btn p span {
    display: block;
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 1;
}
.footer_contact-btn {
    display: inline-block;
    box-sizing: border-box;
    border-radius: 3px;
    background: url(../img/bg_btn.jpg);
    background-size: cover;
    text-align: center;
    position: relative;
    padding: 20px;
}
.footer_contact-btn:before {
    content: "";
    width: 124px;
    height: 60px;
    background: url(../img/img-sunameri.png);
        background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 15px;
}
@media screen and (max-width:767px) {
/*.footer_contact-btn-area {}*/
.footer_contact-btn p {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;
    box-sizing: border-box;
}
.footer_contact-btn p span {
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 1;
}
.footer_contact-btn {
    padding: 20px;
}
.footer_contact-btn:before {
display: none;
}
}
/*footer-nav 
-----------------------------------------------------*/
#footer-nav ul {
    display: flex;
    margin: 0 auto;
    padding-left:0;
    justify-content: center;
    margin-bottom: 30px;
}

#footer-nav ul a {
    text-align: center;
}

#footer-nav ul li {
    list-style: none;
    margin-right: 50px;
}
#footer-nav ul li:last-child {
    list-style: none;
    margin-right: 0;
}
/*-----------------------------------------------------
***リンク***
-----------------------------------------------------*/
a {
    transition: all 0.3s ease;
}
/*通常リンク
-----------------------------------------------------*/
a:link, a:visited, a:active {
    color: #3583c9;
    text-decoration: none;
}
a:hover {
    color: #3583C9;
    text-decoration: none;
    filter: alpha(opacity=70);
    -moz-opacity: 0.70;
    opacity: 0.70;
}
/*ヘッダリンク
-----------------------------------------------------*/
#g_navi a:link, #g_navi a:visited, #g_navi a:active {
    color: #fff;
    text-decoration: none;
}
#g_navi a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
}
/*フッタリンク
-----------------------------------------------------*/
footer a:link, footer a:visited, footer a:active {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
    text-decoration: none;
}
/*sns_navi
-----------------------------------------------------*/
#sns_navi a:link, #sns_navi a:visited, #sns_navi a:active {
    color: #0092d8;
    text-decoration: none;
}
#sns_navi a:hover {
    color: #0092d8;
    text-decoration: none;
    filter: alpha(opacity=70);
    -moz-opacity: 0.70;
    opacity: 0.70;
}
/*画像リンク
-----------------------------------------------------*/
a img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover img {
    filter: alpha(opacity=70);
    -moz-opacity: 0.70;
    opacity: 0.70;
}
@media screen and (max-width:767px) {
    a img:hover {
    transition: all 0.3s ease;
    filter: alpha(opacity=100);
    opacity: 1;
    }
}



.su_btn {
    width: 50%;
    padding: 1px;
}
@media screen and (max-width:767px) {
    .su_btn {
        width: 90%;
    }
}

.su_btn a {
    line-height: 1;
    font-size: 2rem;
    font-weight: bold;
    padding: 15px 50px;
    box-sizing: border-box;
    background: url(../img/bg_btn.jpg);
    background-size: cover;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}

.grey_btn {
    width: 50%;
    padding: 1px;
}
@media screen and (max-width:767px) {
    .grey_btn {
        width: 90%;
    }
}

.grey_btn a {
    line-height: 1;
    font-size: 2rem;
    font-weight: bold;
    padding: 15px 50px;
    box-sizing: border-box;
    background-color: lightgray;
    text-align: center;
    color: #474747;
    border-radius: 3px;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}

/*link-no-color
-----------------------------------------------------*/
.link-no-color a:link, .link-no-color a:visited, .link-no-color a:active, .link-no-color a:hover {
    color: #595959;
    text-decoration: none;
    font-weight: normal;
}


/* floating btn
============================================================================= */
.float-wrapper {
    position: fixed;
    right: 0;
    bottom: 24px;
    width: 64px;
    z-index: 61;
}

.float-wrapper .float p {
    margin: 0px;
}
.float-wrapper a:hover {
    color: #fff !important;
    text-decoration: none;
    opacity: 0.8;
}

@media screen and (max-width: 989px) {
    .float-wrapper {
        width: 100%;
        height: 58px;
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 989px) {
    .float {
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 989px) {
    .float__contact-wrapper {
        /* width: 50%; */
        width: 100%;
        height: 58px;
        position: relative;
    }
}

.float__contact {
    display: block;
    width: 100%;
    writing-mode: vertical-rl;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff !important;
    background-color: #0069b3;
    padding-top: 62px;
    padding-right: 25px;
    padding-bottom: 28px;
    text-align: center;
    letter-spacing: 0.08em;
    position: relative;
}

.float__contact::before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background-image: url("../img/float-ic001@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px auto;
    position: absolute;
    left: 19px;
    top: 18px;
}

@media screen and (max-width: 989px) {
    .float__contact {
        writing-mode: horizontal-tb;
        height: 58px;
        padding: 19px 0 0 28px;
    }
    .float__contact::before {
        content: '';
        display: block;
        width: 26px;
        height: 26px;
        background-image: url("../img/float-ic001@2x.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 26px auto;
        position: absolute;
        left: calc(50% - 70px);
        top: 14px;
    }
}

.float__inquiry-wrapper {
    margin-bottom: 16px;
    display: none;
}

@media screen and (max-width: 989px) {
    .float__inquiry-wrapper {
        position: relative;
        margin-bottom: 0;
        width: 50%;
        height: 58px;
    }
}

.float__inquiry {
    display: block;
    width: 100%;
    writing-mode: vertical-rl;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    background-color: #15b097;
    padding-top: 56px;
    padding-right: 25px;
    padding-bottom: 28px;
    text-align: center;
    letter-spacing: 0.08em;
}

.float__inquiry::before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    background-image: url("../img/float-ic003@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px auto;
    position: absolute;
    left: 18px;
    top: 18px;
}

@media screen and (max-width: 989px) {
    .float__inquiry {
        writing-mode: horizontal-tb;
        height: 58px;
        padding: 19px 0 0 34px;
    }
    .float__inquiry::before {
        width: 26px;
        height: 26px;
        background-image: url("../img/float-ic003@2x.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 23px auto;
        position: absolute;
        left: calc(50% - 80px);
        top: 16px;
    }
}

.float__page-top-wrapper {
    margin-top: 16px;
    width: 64px;
    height: 64px;
}

@media screen and (max-width: 989px) {
    .float__page-top-wrapper {
        width: 48px;
        height: 48px;
        margin-top: 0;
        position: absolute;
        top: -60px;
        right: 10px;
    }
}

.float__page-top {
    display: block;
    width: 100%;
    height: 100%;
    background: #383838 url("../img/up1.png") no-repeat left 20px top 20px/24px auto;
    text-indent: -999vw;
}

@media screen and (max-width: 989px) {
    .float__page-top {
        background: #383838 url("../img/up1.png") no-repeat left 15px top 15px/18px auto;
    }
}


/*-----------------------------------------------------
***popup***
-----------------------------------------------------*/

.overlay {
    display: none;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup {
    position: static;
    max-width: 1000px;
    width: 90%;
    height: 80vh;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
    margin-bottom: 10vh;
    background-color: #fff;
    border-radius: 10px;
    overflow-y: auto;
}

.popup_inside_box{
    /* background-color: rgba(255, 255, 255, 0.3); */
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 989px) {
    .popup_inside_box {
        width: 100%;
        padding: 5px;
        border: 0px;
    }
}

#closePopup .su_btn {
    margin-left: auto;
    margin-right: auto;
}


/*loading
-----------------------------------------------------*/
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}
.loading-spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: loading-spin 1s linear infinite;
}
@keyframes loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*reserve_data_box
-----------------------------------------------------*/
.reserve_data_box {
    width: 100%;
    position: relative;
    padding: 1em .5em 1em 60px;
    background: #ebebeb;
    margin-bottom: 20px;
    color: #1F609E;
    font-weight: bold;
    display: flex;
    flex-direction: column;
}
.reserve_data_box::before {
    background: #333 url(../img/icon/nav_ship_white.png) center / 30px no-repeat;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 100%;
}
.reserve_data_date {
    color: #005BAC;
    font-size: 2rem;
}
.reserve_data_cruise,
.reserve_data_member {
    font-size: 1.5rem;
}
.member-comment-small {
    font-size: 1rem;
}
.member-number-text {
    font-size: 2rem;
    font-weight: bold;
}
.reserve_data_box_left {
    width: 70%;
    display: flex;
    flex-direction: column;
}
.reserve_data_box_right{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reserve_data_btn {
    width: 90%;
    background: #d04a00;
    background-size: cover;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    font-weight: bold;
}
@media screen and (max-width:767px) {
    .reserve_data_btn {
        width: 100%;
    }
}