@charset "UTF-8";

.cf {
    clear: both;
    content: "";
    display: block;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-size: 100%;
	vertical-align: middle;
    box-sizing: border-box;
}

@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}


article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
    box-sizing: border-box;
    overflow-y: scroll;

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

blockquote, q {
	quotes: none;
}

.max-width {
    max-width: 1280px;
    margin: 0 auto;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea,{
	margin: 0;
	padding: 0;
}

ol, ul{
    list-style:none;
}

table{
    border-collapse: collapse;
    border-spacing:0;
}

caption, th{
    text-align: left;
}

a:focus {
	outline:none;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

.cf::after {
    clear: both;
    content: "";
    display: block;
}


* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
 footer, header, nav, section, summary {
    display: block;
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体";
}

/*ここからヘッダー*/

header {
    position: fixed;
    border-top: 5px solid #8745ad;
    border-bottom: 5px solid #8745ad;
    width: 100%;
    background-color: #fff;
    z-index: 999;
}



.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.company_logo {
    padding-left: 5em;
}

.call::before {
    display: inline-block;
    content: "\f095";
    font-family: FontAwesome;
    vertical-align: -8%;

}

.fax::before {
    display: inline-block;
    content: "\f02f";
    font-family: FontAwesome;
    vertical-align: -8%;

}


.mainmenu{
    width: 40%;
    min-width: 490px;
  }

.mainmenu_inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.list {
    text-align: center;
    width: 20%;;
    border-left: 1px solid #f7f2f8;
}

.list:last-child {
    border-right: 1px solid #f7f2f8;

}

.list a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #8745ad;
    font-size: 16px;
    width: 100%;
    transition: .3s;
    padding: 1em 0;

}

.list a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 3px;
    background-color: #8745ad;
    transition: .3s;
}


.list a:hover::after {
    background-position: -100% 0;
    color: #fff;
    width: 100%;
}

.number {
    font-size: 26px;


}


.contact_box {
    background-color: #8745ad;
}

.contact_box a {
    width: 100%;
    position: relative;
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 2em 4em;
    transition: .3s;
}

.contact_box a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: .3s;
}


.contact_box a:hover::after {
    background-position: -100% 0;
    color: #fff;
    width: 100%;
}

@media (max-width:1250px) {
    .company_logo {
        padding-left: 2em;
    }
    .company_logo img{
        width: 200px;
        transition: 0.5s;
    }

    .number {
        font-size: 18px;
    }

    .contact_box a {
        width: 100%;
        position: relative;
        text-decoration: none;
        color: #fff;
        display: block;
        padding: 2em 2em;
        transition: .3s;
    }
}

@media (max-width:1020px) {
    .mainmenu {
        display: none;
    }
    .number {
        display: none;
    }
    .contact_box {
        display: none;
    }
    .footermenu {
        display: none;
    }
}

/*--ハンバーガーメニュー--*/
/*overray menu*/
.button_container {
    position: fixed;
    top: 25px;
    right: 30px;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 1100;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

@media (max-width:600px) {
    .button_container {
        position: fixed;
        top: 20px;
        right: 30px;
        height: 27px;
        width: 35px;
        cursor: pointer;
        z-index: 1100;
        -webkit-transition: opacity .25s ease;
        transition: opacity .25s ease;
    }
}

@media (max-width:380px) {
    .button_container {
        position: fixed;
        top: 20px;
        right: 30px;
        height: 27px;
        width: 35px;
        cursor: pointer;
        z-index: 1100;
        -webkit-transition: opacity .25s ease;
        transition: opacity .25s ease;
    }
}


.button_container:hover {
    opacity: .7;
}

.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    -ms-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}

.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}

.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}

.button_container.active .menu {
    color: #fff;
}


.button_container span {
    background: #bf79d1;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 11px;
}

.button_container span:nth-of-type(3) {
    top: 22px;
}

.button_container span:nth-of-type(4) {
    top: 25px;
    background: none;
    font-size: 13px;

}

.overlay {
    position: fixed;
    background: #bf79d1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
}

.overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
}

.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
            animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
            animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
            animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
            animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
            animation-delay: .50s;
}

.overlay nav {
    position: relative;
    height: 112%;
    top: 60%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 120%;
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    position: relative;
    height: 130%;
    text-align: left;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.overlay ul li {
    display: block;
    line-height: 1;
    padding: 1em 2em;
    /* height: 25%; */
    /* height: calc(100% / 4); */
    /* min-height: 50px; */
    position: relative;
    opacity: 0;
    border-bottom: solid 1px #ffffff;
}

.overlay li a#mmenu8::after {
    content: '\f107';
    font-family: 'FontAwesome';
    padding-left: 15px;
    font-size: 60%;
    vertical-align: 10%;
}

.overlay li a::before {
    display: inline-block;
    padding-right: 1em;
    content: "\f054";
    font-family: FontAwesome;
    vertical-align: 0%;
}


/*
.overlay li a:hover {
    color: #7d7d7d;
}
*/

.overlay ul li a {
    font-size: 100%;
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;

        &::before {
            display: inline-block;
            content: "";
            font-family: FontAwesome;
            color: #fff;
            padding-right: 1em;
        }
}

/*
.mobilenav li a {
    display: block;
    font-size: 150%;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    width: 100%;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 20px;
}
*/

.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
}

.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #FFF;
    -webkit-transition: .35s;
    transition: .35s;
}

.overlay li li {
    /* margin-top: 10px; */
    padding-bottom: 0;
    border-bottom: none;
}

.overlay li li a {
    font-size: 100%;
/*     border-bottom: 1px dotted #ccc; */
/*     padding-bottom: 10px; */
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@media (min-width:1021px) {
#toggle {
    display: none;
}
#overlay {
    display: none;
}
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}

.top_img {
    background-image: url("/assets/img/top1.jpg");
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
}

@media (max-width:700px) {
    .top_img {
        height: 50vh;
    }
}



/* ページャー
===================================*/

.bx-pager {
    display: none;
}

.bx-pager-item,
.bx-controls-auto-item {
    display: inline-block;

}

.bx-default-pager a {
    background: #c8ecff;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    border-radius: 5px;
}

.bx-default-pager a:hover,
.bx-default-pager a.active {
    background: #00aeff;
}

.main_content {
    display: flex;
}

.main_box {
    width: 100%;
}

.content_box {
    width: 100%;
    display: flex;
    padding: 5em 0 5em 0;
}

@media (max-width:450px) {
    .content_box {
        padding: 3em 0 3em 0;
        }
}

.service {
    width: 50%;
    border: 2px solid #8745ad;
    margin: 0 2em 0 0;
}

.service span {
    font-weight: bold;
    display: block;
    background-color: #8745ad;
    color: #fff;
    padding: 1em 1em;


}

.service img {
    width: 100%;
    padding: 2em 2em;
}

.car{
    width: 50%;
    border: 2px solid #8745ad;
    margin: 0 0 0 2em;
}

.car span {
    display: block;
    background-color: #8745ad;
    color: #fff;
    font-weight: bold;
    padding: 1em 1em;
}

.car img {
    width: 100%;
    padding: 2em 2em;
}

.button {
    padding: 0em 0 2em 0;
    width: 50%;
    min-width: 100px;
    margin: 0 auto;
    text-align: center;
}

.button a {
    padding: 1em 2em;
    display:block;
    background-color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 200;
    color: #fbbd48;
    border: 2px solid #fbbd48;
    background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(251,189,72,1) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
}

.button a::before {
    display: inline-block;
    content: "\f054";
    font-family: FontAwesome;
    vertical-align: -15%;
}

.button a:hover {
    background-position: -100% 0;
    color: #fff;
}

@media (max-width: 740px) {
    .button a {
        padding: 0.5em 1em;
        display:block;
        background-color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 200;
        color: #fbbd48;
        border: 2px solid #fbbd48;
        background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(251,189,72,1) 50%);
        background-position: 0 0;
        background-size: 200% auto;
        transition: .3s;
    }

    .service {
        width: 50%;
        border: 2px solid #bf79d1;
        margin: 0 1em 0 0;
    }

    .car{
        width: 50%;
        border: 2px solid #bf79d1;
        margin: 0 0 0 1em;
    }

    .service img {
        width: 100%;
        padding: 1em 1em;
    }

    .car img {
        width: 100%;
        padding: 1em 1em;
    }



}


.textarea {
    padding-bottom: 5em;
}

#a {
    transition: 0.5s;
}

#b {
    transition: 0.5s;
}


.textarea_title {
    font-size: 20px;
    font-weight: bold;
    color: #8745ad;
    border-bottom: solid 1px #8745ad;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    position: relative;
}

.textarea_title::before {
    content: "";
    position: relative;
    border-left: solid 5px #8745ad;/*左線*/
}

.textarea_inner {
    padding: 1em 0;
    border-bottom: 1px solid #8745ad;
}

.textarea_inner span {
    display: block;
    font-size: 18px;
    padding-bottom: 1em;
}

@media (min-width: 551px) {
    .next_stage {
        display: none;
    }

}

.main_img {
    text-align: center;
    padding-top: 6em;
    margin-bottom:5em;
}

.main_img img {
    width: 100%;
}


.table {
    width: 100%;
}

.line {
    display: flex;
    margin-bottom: 0.5em;

}

.in {
    display: block;
    padding: 1em 0 1em 1em;
    width: 70%;
    background-color: #fcf0ff;
}

.initial {
    width: 30% !important;
    background-color: #8745ad;
    padding: 1em 0 1em 0;
    color: #ffffff;
    text-align: center;
}

.all {
    padding: 1em 1em 1em 1em;
}

.map {
    width: 100%;
    padding-bottom: 5em;
}

.button_box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 5em;
}

.travel_plan {
    width: 45%;
}

.red_text {
    color: #f00;
}

.travel_box {
    margin-bottom: 5em;
    background-color: #fcf0ff;
    padding:2em;
}
.travel_inner:nth-child(even) {
    padding-bottom: 0;
}

.travel_inner:nth-child(even) .travel_img {
    order: 1;
}
.travel_inner:nth-child(even) .travel_text {
    order: 0;
}

.travel_inner {
    padding-bottom: 3em;
    width: 100%;
    display: flex;
}

.travel_img {

}

.travel_text {
    padding: 0 1em 0 1em;
}


.travel_inner_title {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 1em;
}

@media (max-width: 550px) {
    .travel_inner {
        padding-bottom: 3em;
        width: 100%;
        display: block;
    }
    .travel_inner_title {
        font-size: 18px;
        font-weight: bold;
        padding-bottom: 1em;
        padding-top: 1em;
    }

    .travel_img {
        text-align: center;
        width: 100%;
    }
    .travel_img img {
        width: 100%;
    }
    .travel_text {
        padding: 0;
    }

    .button_box {
        display: block;
        justify-content: space-around;
        flex-wrap: wrap;
        padding-bottom: 5em;
    }
    .travel_plan {
        width: 60%;
    }





}

.lineup {
    display: flex;
    width: 100%;
}

.car_img_box {
    width: 50%;
}

.car_img {
    display: flex;
    width: 100%;
}

.car_img_inner {
    width: 50%;
    text-align: center;
    padding: 1em;

}


.car_img_inner img {
    width: 100%;
}

.car_text {
    width: 50%;
    padding-top: 1em;
}

@media (max-width:900px) {
    .lineup {
        display: block;
        width: 100%;
    }

    .car_img_box {
        width: 100%;
    }

    .car_text {
        width: 100%;
        padding-top: 1em;
    }
    .car_img_inner:nth-child(odd) {
        padding: 0 1em 1em 0;
    }
    .car_img_inner:nth-child(even) {
        padding: 0 0 1em 1em;
    }
}


.q_a {
    display: block;
    width: 100%;
    color: #565656;
    padding-top: 2em;
}

.question {
    position: relative;
    padding: 2em;
    background-color: #ffefd2;
    margin-top: 3em;
    width: 70%;
    font-size: 18px;
}

.question::before {
    content: "Q";
    background-color: #fbbd48;
    padding: 1em;
    position: absolute;
    top: -40%;
    left: -2%;
    transition: 0.5s;
    color: #fff;
}


.answer {
    position: relative;
    padding: 2em;
    background-color: #fcf0ff;
    margin-top: 2em;
    width: 70%;
    float: right;
    font-size: 18px;
}

.answer::after {
    content: "A";
    background-color: #8745ad;
    padding: 1em;
    position: absolute;
    top: -40%;
    right: -2%;
    transition: 0.5s;
    color: #fff;
}

.q_a:nth-child(4) .answer::after {
    content: "A";
    background-color: #8745ad;
    padding: 1em;
    position: absolute;
    top: -15%;
    right: -2%;
    transition: 0.5s;
    color: #fff;
}


@media (max-width:430px) {
    .question {
        position: relative;
        padding: 2em;
        background-color: #ffefd2;
        margin-top: 3em;
        width: 80%;
        font-size: 18px;
        }

        .question::before {
            content: "Q";
            border: 3px solid #f29379;
            background-color: #f29379;
            padding: 1em;;
            position: absolute;
            top: -30%;
            left: 0%;
            transition: 0.5s;
            color: #fff;
       }


    .answer {
        position: relative;
        padding: 2em;
        background-color: #fcf0ff;
        margin-top: 2em;
        width: 80%;
        float: right;
        font-size: 18px;
    }
    .answer::after {
        content: "A";
        border: 3px solid #8745ad;
        background-color: #8745ad;
        padding: 1em;
        position: absolute;
        top: -30%;
        right: 0%;
        transition: 0.5s;
        color: #fff;
   }
}

.border_box {
    display: flex;
    align-items: center;
    flex-direction: row;
    border-bottom: solid 1px #cccccc;
}

.border_box2 {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border-bottom: solid 1px #cccccc;
}

@media (max-width: 860px) {
    .border_box {
        display: block;
        align-items: center;
        flex-direction: row;
        border-bottom: solid 1px #cccccc;
    }

    .border_box2 {
        display: block;
        align-items: flex-start;
        flex-direction: row;
        border-bottom: solid 1px #cccccc;
    }

}

#Btn_box {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* 送信ボタン */

input[type="submit"] {
    appearance: none;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    background: #e7baf2;
    color: #fff;
    transition: 0.5s;

}



/* 送信ボタン - マウスオーバー時 */

input[type="submit"]:hover {
    background: #bf79d1;
    transition: 0.5s;
}



/* 送信ボタン - 押せないとき */

input[type="submit"][disabled] {
    background-color: #ccc;
    cursor: default;
}


.site_line {
    width: 90%;
    background-color: #fcf0ff;
    margin: 1em 0;
}

.site_line a {
    display: block;
    padding: 2em;
    text-decoration: none;
    transition: 0.5s;

}

.site_line a:hover {
    background-color: #bf79d1;
    color: #fff;
    transition: 0.5s;
}


.privacy_text {
    padding-bottom: 3em;
}










footer {
    padding: 2em 0;
    text-align: center;
    background: #8745ad;
    background-position: 0 0, 10px 10px;
    background-size: 3px 3px;
    color: #fff;
}

.footermenu{
    width: 100%;
    background: #8745ad;
    background-position: 0 0, 10px 10px;
    background-size: 3px 3px;
    padding-bottom: 3em;
  }

.footermenu_inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer_list {
    text-align: center;
    width: 12.5%;
}

.footer_list:last-child {

}

.footer_list a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    padding: 1em 0;
    width: 100%;
    transition: 0.5s;
}

.footer_list a:hover {
    opacity: 0.5;
    transition: 0.5s;
}

.textarea_text p span {
  color: #bd2021;
}
