@charset "UTF-8";

/***** Common *****/
* {
    box-sizing: border-box;
}

header {
    background: #FFFFFF;
}

body {
	background: #FFFFFF;
	}

footer {
    width: 100%;
    height: 100px;
    background-color: #10482b;
    color: #FFFFFF;
}

p {
    margin: 0;
}


/***** FORM *****/
form {
    width: 50%;
    margin: 0 auto 10px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*
label {}
*/

input, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border: 2px solid #10482b;
    border-radius: 6px;
}

input:focus, textarea:focus {
    border-color: #10482b;
    box-shadow: 0 0 7px rgba(0, 83, 17, 0.5);
    outline: none;
}

button {
    margin-top: 10px;
    padding: 10px;
    width: 30%;
    background: #10482b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #5A3E2B;
    box-shadow: 0 0 5px rgba(0, 83, 17, 0.5);

}


/**** id ****/
/*** none ***/


/**** class ****/
/*** common text ***/
.common_font {
    font-family: 'calibri', sans-serif;
}

.common_h1 {
    font-size: 2em;
}

.common_h2 {
    font-size: 1.7em;
}

.common_h3 {
    font-size: 1.5em;
}

.common_h4 {
    font-size: 1.4em;
}

.common_h5 {
    font-size: 1.3em;
    font-weight: bold;
}

.common_p {
    font-size: 1.2em;
}

.common_p_b {
    font-size: 1em;
    font-weight: bold;
}

.common_p_footer {
    font-size: 0.9em;
}

.common_text_align {
    text-align: center;
}

.common_heading_text {
    font-size: 30px;
    border-bottom: solid 5px #10482b;
}


/*** common area ***/
.common_area_navigate {
    margin: 0 200px;
}

.common_area_main_content {
    margin: 30px 200px;
    padding: 30px;
}

.common_area_short_intro_content {
    margin: 0 200px;
    padding: 30px;
}

.common_area_heading_text {
    margin-bottom: 15px;
    text-align: center;
}

.common_margin_bottom {
    margin-bottom: 15px;
}


/** header **/
.header_title_logo_image {
    display: block;
    text-align: center;
}

.header_ul_navigation {
    height: 75px;
    font-size: 1.5em;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: center;
	margin: 0;
    padding: 0;
	list-style-type: none;
    text-align: center;
}

.header_li_navigation {
    display: inline-block;
    margin-right: 50px;
}

.header_li_navigation:last-child {
    margin-right: 0;
}


/** SlideShow Hero Section **/
.hero_slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero_slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    animation: fadeSlide 50s infinite;
}

.hero_slide1 { background-image: url('../Images/cch_image_hs_01_4032_2268.jpg'); animation-delay: 0s;}
.hero_slide2 { background-image: url('../Images/cch_image_hs_02_4032_2268.jpg'); animation-delay: 5s;}
.hero_slide3 { background-image: url('../Images/cch_image_hs_03_4032_2268.jpg'); animation-delay: 10s;}
.hero_slide4 { background-image: url('../Images/cch_image_hs_04_4032_2268.jpg'); animation-delay: 15s;}
.hero_slide5 { background-image: url('../Images/cch_image_hs_05_4032_2268.jpg'); animation-delay: 20s;}
.hero_slide6 { background-image: url('../Images/cch_image_hs_06_4032_2268.jpg'); animation-delay: 25s;}
.hero_slide7 { background-image: url('../Images/cch_image_hs_07_4032_2268.jpg'); animation-delay: 30s;}
.hero_slide8 { background-image: url('../Images/cch_image_hs_08_4032_2268.jpg'); animation-delay: 35s;}
.hero_slide9 { background-image: url('../Images/cch_image_hs_09_4032_2268.jpg'); animation-delay: 40s;}
.hero_slide10 { background-image: url('../Images/cch_image_hs_10_4032_2268.jpg'); animation-delay: 45s;}

.hero_slideshow_overlay {
    position: absolute;
    top: 70%;
    left: 65%;
    transform: translate(-20%, -50%);
    color: #FFFFFF;
    text-align: center;
    /*font-size: 2rem;*/
    background: rgba(80, 80, 80, 0.4);
    padding: 15px;
    border-radius: 10px;
    animation: textLayout 50s infinite;
}

.hero_slideshow_overlay_text_margin {
    margin-top: 15px;
}

@keyframes fadeSlide {
    0%      { opacity: 0; }
    5%      { opacity: 1; }
    15%     { opacity: 1; }
    20%     { opacity: 0; }
    100%    { opacity: 0; }
}

@keyframes textLayout {
    0%      { opacity: 0; }
    10%     { opacity: 1; color: #FFFFFF; background: rgba(59, 64, 107, 0.3);}
    20%     { opacity: 1; top: 33%; left: 65%; color: blue; background: rgba(0, 0, 0, 0);}
    25%     { opacity: 0; top: 30%; left: 65%; color: blue; background: rgba(0, 0, 0, 0);}
    100%    { opacity: 0; }
}


/** index.html **/
.index_ul_seasonal_experiences {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 10px;
}

.index_li_seasonal_experiences {
    margin: 5px;
    padding: 5px;
    border: solid 3px;
    border-color: #10482b;
}

.index_li_text_seasonal_experiences {
    padding: 5px;
}

.index_li_text_season_seasonal_experiences {
    margin-top: 5px;
}


/** se.html **/
.se_tour_title {
    margin-bottom: 20px;
    font-weight: bold;
}


/** se_tour_list_display **/
#toggle {
    display: none;
}

.se_tour_img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

.se_tour_text {
    display: none;
    margin-top: 20px;
}

#toggle:checked + .se_tour_img + .se_tour_text {
    display: block;
}


/** roots.html **/
.roots_image {
    padding: 0;
}

.roots_image img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.roots_text_introduction {
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(5px, 2vw, 24px);
    font-weight: 300;
    color: #333;
}

.roots_text_qualification {
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    font-size: clamp(5px, 2vw, 18px);
    color: #666;
    padding-top: 0;
}

.roots_ul_qualification {
    margin-top: 5px;
    margin-bottom: 10px;
}

.roots_li_qualification {
    font-size: 1em;
}


/** complete.html **/
.complete_area_content {
    margin: 0 200px;
    padding-bottom: 30px;
}

.complete_contents {
    width: 700px;
    height: auto;
    margin: 0 auto;
    padding: 30px 30px 0 30px;
    text-align: center;
}

.complete_area_content img {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}


/** preparation.html **/
.preparing_area_content {
    height: 55vh;
    margin: 30px 200px;
    padding: 30px;
}

.preparing_contents {
    width: 700px;
    height: auto;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    border: solid 5px #10482b;
    border-radius: 10px;
}


/********** debug **********/
/**** id ****/
/* index *//*
#index_header_title_logo {}
#index_navigation {}
#index_hero {}
#index_short_intro {}
#index_seasonal_experiences {}
#index_roots {}
#index_call_to_action {}
*/
/* se *//*
#se_header_title_logo {}
#se_navigation {}
#se_seasonal_experiences {}
#se_tour_1 {}
#se_tour_2 {}
#se_tour_3 {}
*/
/* roots *//*
#roots_header_title_logo {}
#roots_navigation {}
#roots_roots {}
*/
/* ctoa *//*
#ctoa_header_title_logo {}
#ctoa_navigation {}
#ctoa_call_to_action {}
#ctoa_form {}
*/
/* complete *//*
#complete_header_title_logo {}
#complete_navigation {}
#complete {}
*/
/* preparation *//*
#preparation {}
*/

/**** class ****/
/* common *//*
.wrapper {}
*/
/* index *//*
.index_list_seasonal_experiences {}
.index_li_image_seasonal_experiences {}
*/
/* se *//*
.se_tour_image {}
*/
/* complete *//*
.complete_area_content {}
.complete_contents {}
*/