@charset "UTF-8";
/*
Theme Name: 斉藤商店コーポレートサイト
Author: Kazuki Matsuya
Description: 斉藤商店コーポレートサイト用のテーマです。
Version: 1.0
*/

a,
time,
span {
    display: block;
    letter-spacing: 0.2em;
}

ul {
    margin: 0px;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

button {
  border-style: none;
}


html {
	height:100%;
    font-size: 100%;
    color:#1f2a58;
}

body {
    margin: 0px;
}

main {
    padding-top: 50px;
}

@media screen and (min-width:1000px) {
    main {
        padding-top: 100px;
    }
}


.section_container {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    
}

.contents_container {
    display: flex;
    flex-grow: 1;
}

.contents_row {
    width: 100%;
}

.contents_row .module_area {
    position: relative;
}


@media screen and (max-width:480px) { 
    .contents_container {
        width: 100%;
        padding: 0px 20px;
    }
    
}
@media screen and (min-width:481px) and ( max-width:1049px) {
    .contents_container {
        width: 100%;
        padding: 0px 50px;
    }

    header .contents_container {
        padding: 0px 20px;
    }
}
@media screen and (min-width:1050px) {
    .contents_container {
        max-width: 1250px;
        padding: 0px 100px;
    }
    

    header .contents_container {
        padding: 0px 20px;
    }
}

/* nav_global */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
}

@media screen and (min-width:1050px) {
    header {
        height: 100px;
    }
}

@media screen and (max-width:1049px) {
    header {
        height: 55px;
    }
}

header .header_area {
    background-color: white;
    xxpadding-bottom: 10px;
}

header .header_area > a {
    display: inline-block;
    xxbackground-color: red;
}

header .logo_area {

}

header .logo_area img {
    width: 200px;
    padding-left: 20px;
    padding-top: 10px;
}

@media screen and (min-width:1000px) {
    header .logo_area img {
        width: 300px;
        padding-left: 50px;
        padding-top: 20px;
    }
}


.nav_header {
    position: fixed;
    width: 70%;
    height: 100%;
    z-index: 1000;
    right: -70%;
    top: 0;
    transition: .3s;
    overflow-y: auto;
    padding-top: 50px;
    background-color: white;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
}

.nav_header::-webkit-scrollbar {
    display: none;
}

/***** メニューオープン時位置0にして画面内に *****/
.nav_header.open {
	position: absolute;
    height: 100vh;
	right: 0;
}

.nav_header ul.header_extra_menu {
    display: block;
    margin-bottom: 20px;
}

.nav_header ul.header_extra_menu li {
    flex-grow: 1;
    width: 100%;
    height: 40px;
    line-height: 40px;
    xxbackground-color: olive;
    padding: 0px 10px;
    margin-top: 20px;
}

.nav_header ul.header_extra_menu li a {
    text-align: center;
    color: white;
    xxbackground: linear-gradient(-135deg, #5bc8ac, #0052b5);
    xxbackground-color: #0052b5;
    background-color: rgb(27, 27, 78);
    padding: 0px 30px;
    border-radius: 5px;
}

.nav_header ul.header_extra_menu li a span {
    display: inline-block;
    xxbackground-color: red;
    height: 40px;
    line-height: 40px;
    position: relative;
    padding-left: 30px;
}

.nav_header ul.header_extra_menu li a span::before {
    content: '';
    position: absolute;
    xxbackground-image: url(../img/icon/icon_mail_255_255_255_256px.png);
    xxbackground-image: url(../img/icon/icon_mail_255_255_255_256px.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.nav_header ul.header_extra_menu li:nth-child(1) a span::before {
    background-image: url(../img/icon/icon_tel_255_255_255_256px.png);
}

.nav_header ul.header_extra_menu li:nth-child(2) a span::before {
    background-image: url(../img/icon/icon_mail_255_255_255_256px.png);
}


.nav_header ul.header_global_menu li {
    width: 100%;
    height: 50px;
    line-height: 50px;
    xxbackground-color: whitesmoke;
    border-top: 1px solid gray;
}

.nav_header ul.header_global_menu li:last-child {
    border-bottom: 1px solid gray;
}

.nav_header ul.header_global_menu li a {
    padding-left: 40px;
    xxfont-size: 1.15rem;
    position: relative;
}

.nav_header ul.header_global_menu li a::before {
    content: '';
    position: absolute;
    border-top: solid 3px #0052b5;
    border-right: solid 3px #5bc8ac;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    top: 20px;
    left: 15px;
}





/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 1000px) {
    .nav_header_btn {
		display: none;
	}

    .header_area {
        display: flex;
    }

	.nav_header {
		/* メニューを横に */
		display: flex;
        flex-grow: 1;
		flex-direction: column;
		position: relative;
		top: 0;
		right: 0;
		xxwidth: calc(100% - 550px);
        padding-top: 0px;
		xxheight: 500px;
        padding-right: 30px;
	}

    .nav_header ul.header_extra_menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-bottom: 10px;
    }

    .nav_header ul.header_extra_menu li {
        flex-grow: 0;
        width: 300px;
        margin-top: 0px;
    }

    .nav_header ul.header_extra_menu li a {
        border-radius: 0px 0px 5px 5px;
    }

    .nav_header ul.header_global_menu {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .nav_header ul.header_global_menu li {
        width: auto;
        xxbackground-color: green;
        padding-right: 20px;
        border: none;
        
    }

    .nav_header ul.header_global_menu li:last-child {
        border: none;
        
    }
}










/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.nav_header_btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 10px;
	right: 30px;
	/* 最前面に */
	z-index: 10000;
	/* ボタンの大きさ  */
	width: 30px;
	height: 30px;
    xxbackground-color: red;
    background-color: var(--main-color);
}
/***** 真ん中のバーガー線 *****/
.btn_line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #d6d5d5;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn_line::before , .btn_line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
}
.btn_line::before {
	/* 上の線の位置 */
	transform: translateY(-10px);
}
.btn_line::after {
	/* 下の線の位置 */
	transform: translateY(10px);
}
/***** メニューオープン時 *****/
.btn_line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn_line.open::before , .btn_line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn_line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn_line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/



/* footer */
footer.section_container {
    position: relative;
    
}

footer.section_container::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background: linear-gradient(90deg, #0052b5, #5bc8ac);
    top: 0;
    left: 0;
}

footer.section_container .module_area {
    position: relative;
    padding-top: 30px;
}

xxfooter.section_container .module_area::before {
    content: 'PAGE TOP';
    position: absolute;
    padding: 10px 30px;
    background-color: red;
    top: 0;
}

footer.section_container .logo_area {
    xxbackground-color: red;
    padding-bottom: 30px;
    border-bottom: 1px solid #96acc5;
}

footer.section_container .logo_area img {
    width: 300px;
    padding-left: 50px;
}

footer.section_container ul.footer_global_nav {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0px;
}

footer.section_container ul.footer_global_nav li {
    flex-grow: 1;
    width: 300px;
    height: 50px;
    line-height: 50px;
    padding: 0px 10px;
}

footer.section_container ul.footer_global_nav li a {
    padding-left: 40px;
    xxfont-size: 1.15rem;
    position: relative;
}

footer.section_container ul.footer_global_nav li a::before {
    content: '';
    position: absolute;
    border-top: solid 3px #0052b5;
    border-right: solid 3px #5bc8ac;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    top: 20px;
    left: 15px;
}

footer.section_container .copyright_area {
    text-align: center;
    color: white;
    background: linear-gradient(90deg, #0052b5, #5bc8ac);
    padding: 5px 0px;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);

}


@media screen and (max-width:480px) {
    footer.section_container .module_area {
        padding-top: 0px;
    }
    footer.section_container .module_area > *:nth-child(1) {
        display: none;
    }
    footer.section_container .module_area > *:nth-child(2) {
        display: none;
    }

    footer.section_container .copyright_area {
        font-size: 0.475rem;
    }
}



/* トップページ */
/* top_news_section */
.top_news_section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.top_news_section h2 {
    font-size: 1.5em;
    font-weight: 500;
    position: relative;
    padding-top: 50px;
    padding-left: 30px;
    padding-bottom: 20px;
    xxmargin-bottom: 30px;
    position: relative;
}

.top_news_section h2::before {
    content:attr(data-decoration-text);
    display: block;
    color:#96acc5;
    letter-spacing: 0.22em;
    margin-bottom:5px;
    font-size:4.0rem;
    padding-left:15px;
    padding-top:4px;
    font-weight: 900;
    position: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
}

.top_news_section h2::after {
    content: '';
    width: calc(100% + 100px);
    height: 1px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
}







.blog_title_list {
    margin-bottom: 80px;
}


.blog_title_list li {
    display: flex;
    border-bottom: 1px solid #96acc5;
    padding: 30px 0px;
}

.blog_title_list li:first-child {
    padding-top: 0px;
}

.blog_title_list li .left_column {
    display: flex;
}

.blog_title_list li .blog_date,
.blog_title_list li .blog_tag,
.blog_title_list li .blog_title {
    height: 25px;
    line-height: 25px;
}

.blog_title_list li .blog_date {
    display: block;
    xxtext-align: center;
    xxwidth: 120px;
    font-size: 0.875rem;
    xxbackground-color: red;
}

.blog_title_list li .blog_tag {
    display: block;
    text-align: center;
    width: 120px;
    xxpadding: 5px;
    background-color: #96acc5;
    color: white;
    border-radius: 5px;
    font-size: 0.875rem;
    margin-left: 30px;
}

.blog_title_list li .blog_title {
    display: block;
    margin-left: 30px;
}

@media screen and (max-width:480px) { 
    .blog_title_list li {
        display: block;
        padding: 20px 0px;
    }

    .blog_title_list .left_column {
        margin-bottom: 15px;
    }

    .blog_title_list li .blog_tag {
        display: block;
        margin-left: 15px;
    }

    .blog_title_list li .blog_title {
        display: block;
        margin-left: 0px;
    }
    
}


/* breacrumbs */

#breadcrumbs {
    xxbackground-color: red;
    padding-top: 10px;
    padding-bottom: 30px;
}

#breadcrumbs ul {
    display: flex;
}

/* 投稿のタイトル */
.post_header_area {
    xxbackground-color: red;
    padding-top: 80px;
}

.post_header_date_category {
    xxdisplay: flex;
    margin-bottom: 10px;
}

.post_header_area time {
    display: block;
    xxwidth: 180px;
    height: 25px;
    padding-right: 15px;
    line-height: 25px;
    xxxbackground-color: red;
}

.post_header_area ul.post-categories {
    display: flex;
    flex-wrap: wrap;
    xxwidth: 100px;
    width: 100%;
    flex-grow: 1;
    margin-top: 20px;
}

.post_header_area ul.post-categories li {
    width: 120px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.post_header_area ul.post-categories li a {
    height: 25px;
    line-height: 25px;
    text-align: center;
    width: 100%;
    background-color: #96acc5;
    color: white;
    border-radius: 5px;
    font-size: 0.875rem;
}


.post_header_area h1 {
    xxbackground-color: green;
    padding-bottom: 10px;
    border-bottom: 2px solid #5bc8ac;
    position: relative;
}

.post_header_area h1::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: #0052b5;
    bottom: -2px;
    left: 0;
}

.post_header_tags_area {
    display: flex;
    margin-top: 10px;
}

.post_header_tags_area span {
    xxbackground-color: red;
    height: 25px;
    line-height: 25px;
    xxwidth: 90px;
    padding-left: 30px;
    padding-right: 10px;
    font-size: 0.75rem;
}

.post_header_area .post_header_tags {
    display: flex;
    flex-wrap: wrap;
    width: 200px;
    flex-grow: 1;
}

.post_header_area .post_header_tags li {
    margin-right: 10px;
    margin-bottom: 7px;
    xxbackground-color: red;
}

.post_header_area .post_header_tags li a {
    font-size: 0.75rem;
    height: 25px;
    line-height: 25px;
    color: #0052b5;
}






/* 投稿のナビゲーション */
.post_navigation_area {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 30px;
    margin-top: 80px;
}

.post_navigation_area span a {
    height: 50px;
    line-height: 50px;
    position: relative;
}

.post_navigation_area span:first-child a {
    padding-left: 40px;
}

.post_navigation_area span:last-child a {
    padding-right: 40px;
}

.post_navigation_area span a::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
}

.post_navigation_area span:first-child a::before {
    border-left: solid 3px #0052b5;
    border-bottom: solid 3px #5bc8ac;
    transform: rotate(45deg);
    top: 20px;
    left: 15px;
}

.post_navigation_area span:last-child a::before {
    border-top: solid 3px #0052b5;
    border-right: solid 3px #5bc8ac;
    transform: rotate(45deg);
    top: 20px;
    right: 15px;
}








/* top_company_section */


/*
.top_company_section .module_area {
    position: relative;
    xxbackground-color: red;
    z-index: 20;
}

.top_company_section .section_summary {
    flex-direction: column;
    justify-content: center;
    xxbackground-color: rgb(27, 27, 78);
    xxbackground: linear-gradient(270deg, #5bc8ac, #0052b5);
    background-image: url(../img/pages/top/img_top_company_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    xxbackground-color: #0052b5;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
    padding-top: 80px;
    padding-bottom: 50px;
    position: relative;
    z-index: 10;
}

.top_company_section .section_summary::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #5bc8ac, #0052b5);
    xxbackground: linear-gradient(270deg, rgb(91, 200, 172, 0.7), rgb(0, 82, 181, 0.7));
    xxbackground-color: red;
    opacity: 0.7;
    top: 0;
}


.top_company_section .module_area h2 {
    text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    position: relative;
    padding-top: 50px;
    padding-left: 30px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
    color: white;
    xxbackground-color: red;
}

.top_company_section .module_area h2::before {
    content:attr(data-decoration-text);
    position: absolute;
    display: block;
    xxcolor:#96acc5;
    color: white;
    xxcolor: rgb(27, 27, 78);
    letter-spacing: 0.22em;
    margin-bottom:5px;
    font-size:4.0rem;
    padding-left:15px;
    padding-top:4px;
    font-weight: 900;
    opacity: 0.4;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.top_company_section .module_area .text_summary {
    justify-content: center;
    width: 100%;
    height: 100px;
}

.top_company_section .module_area .text_summary p {
    display: block;
    xxtext-align: center;
    max-width: 1000px;
    padding: 0 50px;
    xxmargin-bottom: 80px;
    color: white;
    z-index: 10;
    xxbackground-color: #d6d5d5;
}
*/

.company_info_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.company_info_list li {
    width: 33%;
    xxwidth: 50%;
    padding: 0px 10px;
    xxpadding-top: 20px;
    margin-bottom: 50px;
    padding-left: 50px;
}

.company_info_list li:nth-child(2n) {
    margin-top: 80px;
}

.company_info_list li .list_business {
    position: relative;
    background-color: white;
    border-radius: 5px;
    box-shadow: 7px 7px rgba(150,172,197, 0.25);
}

.company_info_list li .list_business a.img_btn {
    height: 500px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-size: cover;
    xxopacity: 0.7;
    position: relative;
}

.company_info_list li:nth-child(1) .list_business a.img_btn {
    background-image: url(../img/img_top_company_02.jpg);
}

.company_info_list li:nth-child(2) .list_business a.img_btn {
    background-image: url(../img/img_top_company_03.jpg);
}

.company_info_list li:nth-child(3) .list_business a.img_btn {
    background-image: url(../img/img_top_company_04.jpg);
}

.company_info_list li .list_business a.img_btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #5bc8ac, #0052b5);
    border-radius: 5px;
    opacity: 0;
    z-index: 10;
}


.company_info_list li .list_business a.img_btn:hover::before {
    opacity: 0.7;
    transition: 0.5s;
}

.company_info_list li .list_business a.img_btn:hover::after {
    opacity: 0.7;
    transition: 0.5s;
}
.company_info_list li .list_business span {
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 50;
    color: white;
    opacity: 0;
}

.company_info_list li .list_business span::after {
    content: '→';
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    border-radius: 50px;
    xxbackground-color: red;
    color: white;
    font-weight: 700;
    border: 2px solid white;
    top: calc(50% - 70px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    xxopacity: 0;
    z-index: 20;
}

.company_info_list li .list_business a.img_btn:hover span {
    opacity: 1.0;
    transition: 0.5s;
}

.company_info_list li .list_business h3 {
    display: block;
    width: 80%;
    font-size: 1.125rem;
    padding: 40px 20px;
    padding-bottom: 20px;
    position: absolute;
    left: -20px;
    bottom: 30px;
    z-index: 50;
    xxbackground-color: rgb(27, 27, 78);
    background-color: #0052b5;
    xxbox-shadow: 7px 7px #5bc8ac;
    color: white;
    border-radius: 5px;
}

.company_info_list li:nth-child(2n) .list_business h3 {
    background-color: #5bc8ac;
    xxbox-shadow: 7px 7px #0052b5;
}

.company_info_list li .list_business h3::before {
    content:attr(data-decoration-text);
    width: 100%;
    height: 20px;
    line-height: 20px;
    padding-left: 7px;
    xxborder-left: 3px solid #96acc5;
    border-left: 3px solid white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    xxcolor: #0052b5;
    xxcolor: #96acc5;
    color: white;
    position: absolute;
    top: 10px;
}

@media screen and (max-width:480px) { 
    
}
@media screen and (min-width:481px) and ( max-width:1049px) {
    

}

@media screen and (max-width:480px) {
    /*　for iPhone Landscape　(iPhone 横)　*/
    .company_info_list li {
        width: 100%;
        padding: 10px;
    }

    .company_info_list li:nth-child(2n) {
        margin-top: 0px;
    }

    .company_info_list li:nth-child(3n) {
        margin-bottom: 0px;
    }

    .company_info_list li .list_business a.img_btn {
        height: 250px;
    }
}
@media screen and (min-width:481px) and ( max-width:1049px) {
    /*　for iPad 　*/
    /*　for iPad 　*/
    .company_info_list li {
        width: 50%;
    }

    .company_info_list li:first-child {
        width: 50%;
    }

}

@media screen and (min-width:1050px) {
    /*　for PC　*/
}



/* top_billbord_section */
/* top_billbord_section */
.top_billbord_section {
    position: relative;
    margin-top: -100px;
}

@media screen and (min-width:1050px) {
    .top_billbord_section {
        margin-top: -100px;
    }
}

@media screen and (max-width:1049px) {
    .top_billbord_section {
        margin-top: -45px;
    }
}

.top_billbord_section::before {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, #0052b5, #5bc8ac);
    xxbackground-color: darkslategray;
    width: 100%;
    height: 100vh;
    opacity: 0.6;
    xxopacity: 0.5;
    z-index: 5;
    
}

.top_billbord_section::after {
    content: '';
    position: absolute;
    border-top: calc(100vh - 75vh) solid transparent;
    border-right: calc(100vh - 75vh) solid white;
    border-bottom: calc(100vh - 75vh) solid white;
    border-left: calc(100vh - 75vh) solid transparent;
    opacity: 0.8;
    z-index: 5;
    bottom: 0;
    right: 0;
}

.top_billbord_section .section_summary {
    position: absolute;
    z-index: 10;
    xxbackground-color: red;
    xxbackground-color: rgb(255, 255, 255, 0.9);
    background-color: white;
    border-radius: 0px 5px 5px 0px;
    opacity: 0.9;
    box-shadow: 10px 10px #96acc5;
    xxbox-shadow: 7px 7px rgba(150,172,197, 0.25);
    padding: 50px;
    padding-top: 18px;
    padding-bottom: 32px;
    top: 50%;
    xxleft: 50%;
    xxtransform: translateX(-50%);
    xx-webkit-transform: translateX(-50%);
    xx-ms-transform: translateX(-50%);
}

.top_billbord_section .section_summary h1 {
    xxtext-align: center;
    xxcolor: white;
    text-shadow: 2px 2px 2px #96acc5;
    padding-top: 20px;
    font-size: 2.0rem;
    line-height: 1.8em;
}

.top_billbord_section .section_summary h1::before {
    content: attr(data-decoration-text);
    position: absolute;
    background: linear-gradient(90deg, #0052b5, #5bc8ac);
    border-radius: 5px;
    padding: 0px 20px;
    font-size: 1.0rem;
    font-weight: 700;
    color: white;
    top: -25px;
    xxtop: 0px;
    white-space: pre;
}

.top_billbord_section .section_summary h1 span {
    display: inline;
    font-size: 2.0rem;
    font-weight: 500;
}

xx.top_billbord_section .section_summary h1 span {
    border-bottom: 3px solid #0052b5;
}

xx.top_billbord_section .section_summary h1 span:nth-child(5) {
    border-bottom: 3px solid #5bc8ac;
}

.top_billbord_section .section_summary h1 span.fade_up {
    opacity: 0;
}

.delay_time_05 {
    animation-delay: 1s;
}

.delay_time_10 {
    animation-delay: 2s;
}

.delay_time_15 {
    animation-delay: 3s;
}

.delay_time_20 {
    animation-delay: 4.5s;
}

.fade_up {
    animation-name:fadeUpAnime;
    xxanimation-duration:0.5s;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top_billbord_section .scroll_nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
    letter-spacing: 0.2em;
    xxbackground-color: red;
}

.top_billbord_section .scroll_nav::before {
    content: '';
    position: absolute;
    display:block;
    width:3px;
    height:0px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #0052b5;
    animation-name:expansion;
    animation-duration:1.5s;
    animation-timing-function:ease-in;
    animation-delay:1s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
    animation-fill-mode:forwards;
    animation-play-state:running;
}
@keyframes expansion {
    0%{
      height:0px;
    }
    100%{
      height:80px;
      background:#5bc8ac;
    }
}


.top_billbord_section .slider{
    height: 100vh;
}
.top_billbord_section .slider img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #000;
    color: red;
    display: none;
}

.slick-dots {
    bottom: 30px;
    z-index: 10;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots li.slick-active button:before {
    color: #0052b5;
}

.slick-dots li button:before {
    font-size: 30px;
    color: #5bc8ac;
    opacity: 0.75;
}

.slick-prev {
    left: 0;
    z-index: 1;
}

.slick-next {
    right: 0;
}

@media screen and (max-width:750px) {
    .top_billbord_section::before {
        height: 100%;
    }

    .top_billbord_section::after {
        border-top: 70px solid transparent;
        border-right: 70px solid white;
        border-bottom: 70px solid white;
        border-left: 70px solid transparent;
    }

    .top_billbord_section .section_summary {
        box-shadow: 5px 5px #96acc5;
        padding: 15px;
        top: 50%;
    }

    .top_billbord_section .section_summary h1 {
        text-shadow: 2px 2px 2px #96acc5;
        padding-top: 0px;
        font-size: 0.75rem;
        line-height: 1.8em;
    }
    
    .top_billbord_section .section_summary h1::before {
        padding: 0px 20px;
        font-size: 0.5rem;
        top: -12px;
    }
    
    .top_billbord_section .section_summary h1 span {
        font-size: 1.0rem;
    }

    .top_billbord_section .scroll_nav {
        position: absolute;
        bottom: 30px;
        right: 0px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 10;
        letter-spacing: 0.2em;
        font-size: 0.5rem;
        xxbackground-color: red;
    }

    .top_billbord_section .scroll_nav::before {
        top: 30px;
        animation-duration:1s;
    }

    @keyframes expansion {
        0%{
          height:0px;
        }
        100%{
          height:50px;
          background:#5bc8ac;
        }
    }

    .top_billbord_section .slider {
        height: 400px;
    }
    .top_billbord_section .slider img {
        height: 400px;
    }

    .slick-dots {
        bottom: 30px;
    }
    
    .slick-dots li button:before {
        font-size: 20px;
    }

}

@media screen and (min-width:751px) and ( max-width:1049px) {
    .top_billbord_section::before {
        height: 100%;
    }

    .top_billbord_section::after {
        border-top: 150px solid transparent;
        border-right: 150px solid white;
        border-bottom: 150px solid white;
        border-left: 150px solid transparent;
    }

    .top_billbord_section .section_summary {
        box-shadow: 5px 5px #96acc5;
        padding: 30px;
        top: 50%;
    }

    .top_billbord_section .section_summary h1 {
        text-shadow: 2px 2px 2px #96acc5;
        padding-top: 0px;
        font-size: 1.5rem;
        line-height: 1.8em;
    }
    
    .top_billbord_section .section_summary h1::before {
        padding: 0px 20px;
        font-size: 1.0rem;
        top: -20px;
    }
    
    .top_billbord_section .section_summary h1 span {
        font-size: 1.75rem;
    }

    .top_billbord_section .scroll_nav {
        position: absolute;
        bottom: 30px;
        right: 0px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 10;
        letter-spacing: 0.2em;
        
        xxbackground-color: red;
    }

    .top_billbord_section .scroll_nav::before {
        top: 30px;
        animation-duration:1s;
    }

    @keyframes expansion {
        0%{
          height:0px;
        }
        100%{
          height:50px;
          background:#5bc8ac;
        }
    }

    .top_billbord_section .slider {
        height: 650px;
    }
    .top_billbord_section .slider img {
        height: 650px;
    }

    .slick-dots {
        bottom: 30px;
    }
    
    .slick-dots li button:before {
        font-size: 20px;
    }

}


/* form */
.custom_contact_form {
    xxbackground-color: red;
}

.custom_contact_form li {
    width: 100%;
    xxbackground-color: green;
}

.custom_contact_form li dl {
    display: flex;
    margin: 0px;
    margin-bottom: 30px;
}

.custom_contact_form li dl dt {
    width: 200px;
    border-top: 1px solid #0052b5;
    xxbackground-color: aqua;
    padding-top: 10px;
    padding-bottom: 10px;
}



.custom_contact_form li dl dt label {
    display: inline-block;
    font-size: 1.0rem;
    xxbackground-color: yellow;
    position: relative;
    padding-right: 15px;
}

.custom_contact_form li dl dt label::before {
    content: '*';
    position: absolute;
    color: red;
    xxfont-size: 0.5rem;
    top: 0;
    right: 0;
    xxbackground-color: yellowgreen;
}

.custom_contact_form li dl dt span.must {
    font-size: 0.5rem;
    color: red;
}

.custom_contact_form li dl dd {
    flex-grow: 1;
    padding-left: 20px;
    xxbackground-color: lightblue;
}

.custom_contact_form li dl dd input[type=text],
.custom_contact_form li dl dd input[type=email],
.custom_contact_form li dl dd input[type=tel],
.custom_contact_form li dl dd textarea {
    width: 100%;
    border: none;
    border: 1px solid gray;
    border-radius: 5px;
    padding: 5px 10px;
}

@media screen and (max-width:480px) { 
    .custom_contact_form li {
        display: block;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .custom_contact_form li dl {
        display: block;
    }

    .custom_contact_form li dl dt {
        width: 100%;
        padding-right: 0px;
        xxmargin-bottom: 20px;
    }

    .custom_contact_form li dl dd {
        width: 100%;
        padding-left: 0px;
    }
}


.contact_privacy_acceptance {
    xxbackground-color: magenta;
    text-align: center;
    margin-top: 30px;
}


.contact_privacy_acceptance .accept-this {
    display: inline-block;
    xxbackground-color: tomato;
    width: 50px;
}

.contact_privacy_acceptance .accept-this .wpcf7-acceptance {
    display: inline-block;
    xxwidth: 300px;
    width: 50px;
    xxbackground-color: yellowgreen;
}


.accept-this input[type=checkbox] {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    xxpadding: 5px 10px;
    padding: 5px 20px;
    
    position: relative;
    width: auto;
    width: 0px;
    xxbackground-color: yellow;
}

.accept-this input[type=checkbox]::before {
    background: #fff;
    border: 1px solid lightgray;
    border-radius: 5px;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    left: 0px;
    top: 0px;
    margin-top: -8px;
    position: absolute;
    
    
}

.accept-this input[type=checkbox]::after {
    border-right: 3px solid #0052b5;
    border-bottom: 3px solid #0052b5;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}

.accept-this input[type=checkbox]:checked::after {
    opacity: 1;
}





.contact_submit_btn {
    xxbackground-color: red;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.contact_submit_btn input[type=submit] {
    border: none;
    background-color: #1b1b4e;
    border: 1px solid #1b1b4e;
    padding: 10px 40px;
    border-radius: 3px;
    color: white;
}

.contact_submit_btn input[type=submit]:disabled {
    background-color: whitesmoke;
    color: darkgray;
    border: 1px solid lightgray;
}

.contact_submit_btn input[type=submit]:enabled:hover {
    background-color: white;
    cursor: pointer;
    color: #1b1b4e;
    transition: 0.5s;
}



.your-category {
    xxbackground-color: green;
}

.your-category span.wpcf7-list-item-label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}

.your-category span.wpcf7-list-item-label::before {
    background: #fff;
    border: 1px solid gray;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.your-category span.wpcf7-list-item-label::after {
    background: #0052b5;
    border-radius: 50%;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    
}

input[type=radio]:checked + span.wpcf7-list-item-label::after {
    opacity: 1;
}


/*
.top_billbord_section {
    position: relative;
    margin-top: -100px;
    xxheight: 100%;
    xxheight: 1180px;
    height: 100vh;
    background-color: red;
}

.top_billbord_section::before {
    content: '';
    position: absolute;
    background: linear-gradient(45deg, #0052b5, #5bc8ac);
    xxbackground-color: darkslategray;
    width: 100%;
    height: 100%;
    xxheight: calc(100% - 100px);
    height: 100vh;
    opacity: 0.6;
    xxopacity: 0.5;
    z-index: 5;
    
}

.top_billbord_section::after {
    content: '';
    position: absolute;
    border-top: calc(100vh - 75vh) solid transparent;
    border-right: calc(100vh - 75vh) solid white;
    border-bottom: calc(100vh - 75vh) solid white;
    border-left: calc(100vh - 75vh) solid transparent;
    opacity: 0.8;
    z-index: 5;
    bottom: 0;
    right: 0;
    
}

.top_billbord_section .section_summary {
    position: absolute;
    z-index: 10;
    xxbackground-color: red;
    xxbackground-color: rgb(255, 255, 255, 0.9);
    background-color: white;
    border-radius: 0px 5px 5px 0px;
    opacity: 0.9;
    box-shadow: 10px 10px #96acc5;
    xxbox-shadow: 7px 7px rgba(150,172,197, 0.25);
    padding: 50px;
    padding-top: 18px;
    padding-bottom: 32px;
    top: 50%;
    xxleft: 50%;
    xxtransform: translateX(-50%);
    xx-webkit-transform: translateX(-50%);
    xx-ms-transform: translateX(-50%);
}

.top_billbord_section .section_summary h1 {
    xxtext-align: center;
    xxcolor: white;
    text-shadow: 2px 2px 2px #96acc5;
    padding-top: 20px;
    font-size: 2.0rem;
    line-height: 1.8em;
    xxwhite-space: pre;
}





xx.top_billbord_section .section_summary h1 span {
    border-bottom: 3px solid #0052b5;
}

xx.top_billbord_section .section_summary h1 span:nth-child(5) {
    border-bottom: 3px solid #5bc8ac;
}

.top_billbord_section .section_summary h1 span.fade_up {
    opacity: 0;
}

.delay_time_05 {
    animation-delay: 1s;
}

.delay_time_10 {
    animation-delay: 2s;
}

.delay_time_15 {
    animation-delay: 3s;
}

.delay_time_20 {
    animation-delay: 4.5s;
}

.fade_up {
    animation-name:fadeUpAnime;
    xxanimation-duration:0.5s;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top_billbord_section .scroll_nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
    letter-spacing: 0.2em;
    xxbackground-color: red;
}

.top_billbord_section .scroll_nav::before {
    content: '';
    position: absolute;
    display:block;
    width:3px;
    height:0px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #0052b5;
    animation-name:expansion;
    animation-duration:1.5s;
    animation-timing-function:ease-in;
    animation-delay:1s;
    animation-iteration-count:infinite;
    animation-direction:alternate;
    animation-fill-mode:forwards;
    animation-play-state:running;
}
@keyframes expansion {
    0%{
      height:0px;
    }
    100%{
      height:80px;
      background:#5bc8ac;
    }
}


.top_billbord_section .slider{
    xxheight: calc(100% - 100px);
    xxheight: 50%;
    xxheight: 200px;
    xxheight: 100% !important;
    height: 100vh;
}
.top_billbord_section .slider img{
    xxwidth: 100%;
    xxheight: calc(100% - 100px);
    xxheight: 50%;
    xxheight: 500px;
    xxheight: 100% !important;
    height: 100vh;
}

.slick-prev:before,
.slick-next:before {
    color: #000;
    color: red;
    display: none;
}

.slick-dots {
    bottom: 30px;
    z-index: 10;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.slick-dots li.slick-active button:before {
    color: #0052b5;
}

.slick-dots li button:before {
    font-size: 30px;
    color: #5bc8ac;
    opacity: 0.75;
}

.slick-prev {
    left: 0;
    z-index: 1;
}

.slick-next {
    right: 0;
}
*/

/*
html {
	height:100%;
    font-size: 100%;
    color:#1f2a58;
}

body {
    margin: 0px;
}

header {
    background-color: aliceblue;
    height: 100px;
}

footer {
    background-color: beige;
    height: 100px;
}

.section_container {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.contents_container {
    display: flex;
    flex-grow: 1;
}

.contents_row {
    width: 100%;
}

.contents_row .module_area {
    position: relative;
}

@media screen and (max-width:480px) { 
    .contents_container {
        width: 100%;
        padding: 0px 20px;
    }
    
}
@media screen and (min-width:481px) and ( max-width:1049px) {
    .contents_container {
        width: 100%;
        padding: 0px 50px;
    }

    header .contents_container {
        padding: 0px 20px;
    }
}
@media screen and (min-width:1050px) {
    .contents_container {
        max-width: 1250px;
        padding: 0px 100px;
    }
    

    header .contents_container {
        padding: 0px 20px;
    }
}

*/