/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */



/* header */

#site-header {
	position: fixed;
	top: 0;
	background: none;
	width: 100%;
	max-width: 100%;
	padding: 10px 2vw;
	z-index: 10;
}

header.fixed {
    background-color: #161616c0 !important;
    transition-duration: 0.3s;
    transition-property: background-color;
    transition-timing-function: ease-in;
}

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

.header-inner {
	max-width: 1440px !important;
	padding:0;
	align-items: center;
}

.site-branding {
	width: 25% !important;
	max-width: 360px;
}

.site-logo {
	width: 100%;
}

header.fixed div.site-logo {
    height: auto;
    transition-duration: 0.3s;
    transition-property: width;
    transition-timing-function: ease-in;
}

.site-description {
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	margin-bottom: 0;
}

.site-navigation ul.menu li a {
	color: #203366;
	font-size: 1.1rem;
	font-weight: bold;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 1);
}

.site-navigation ul.menu li a:hover {
	color: #DC0002;
}

.site-navigation ul.sub-menu li a  {
	color: #3B3B3B;
}

header.fixed .site-navigation ul.menu li a {
	color: #fff;
	text-shadow: none;
}

header.fixed .site-navigation ul.sub-menu li a  {
	color: #3B3B3B;
}

.site-navigation ul.menu li ul li.menu-item-has-children:after {
    transform: translateY(0%) rotate(-90deg);
}

.sub-menu {
	width: 250px;
}

.site-navigation ul.menu li ul li.menu-item-has-children a {
    text-align: left;
}

@media only screen and (max-width: 1380px) {
	
	.header-inner {
		padding:0 1vw;
	}
    
}

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

	.site-branding {
		width: 35% !important;
	}

}

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

	.site-branding {
		width: 70% !important;
	}

}


/* グローバルナビ */

.hamburger-menu {
    width: 80px;
    height: 80px;
    position: fixed;
    top: 0.5vw;
    right: 1vw;
    background: #011a53;
    border: none;
    border-radius: 20px;
    appearance: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
	display: none;
  }
  
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 25px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 40px;
  }
  .hamburger-menu__bar:last-child {
    top: 55px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }


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

    .hamburger-menu {
        width: 60px;
        height: 60px;
        top: 1vw;
		right: 3vw;
		display: block;
	}
	
	.hamburger-menu__bar:first-child {
		top: 20px;
	}
	
	.hamburger-menu__bar:nth-child(2) {
		top: 30px;
	}
	
	.hamburger-menu__bar:last-child {
        top: 40px;
	}
	
	.hamburger-menu--open .hamburger-menu__bar:first-child {
        top: 30px;
    }
	
	.hamburger-menu--open .hamburger-menu__bar:last-child {
		top: 30px;
	}
	
	.site-header:not(.header-stacked) .header-inner .site-navigation {
		max-width: 100%;
	}
	
	.site-navigation {
		background:#203366;
		display: none;
		position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        padding: 60px;
	}
	
	.site-navigation ul.menu {
		display: block !important;
	}

	.site-navigation ul.menu li a {
		color: #fff;
		text-shadow: none;
	}

	ul.sub-menu li a {
		color: #3B3B3B !important;
	}

}

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

    .hamburger-menu {
        top: 2vw;
        transition-duration: 0.3s;
		transition-property: width;
		transition-timing-function: ease-in;
	}

    .sp_hamburger_position {
        top: 1vw;
    }

	.site-navigation {
        width: 100%;
	}

  }




/* footer */

#site-footer {
	background: #203366;
	padding: 80px 0;
	max-width: 100%;
}

.site-footer .footer-inner {
	max-width: 1440px;
	padding:0 3vw;
	margin: 0 auto;
	display: block;
	text-align: center;
}

footer.site-footer .site-logo {
	width: 35%;
	margin: 0 auto;
}

footer.site-footer .site-navigation {
	margin: 20px auto 20px auto;
}

.site-footer .footer-inner .site-navigation {
    justify-content: center;
}

footer.site-footer .site-navigation ul.menu li a {
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	text-shadow: none;
}

footer.site-footer .site-navigation ul.sub-menu li a  {
	color: #3B3B3B;
}

.site-footer .footer-inner .copyright {
    display: block;
	text-align: center;
	margin: 0 auto;
	max-width: 100%;
	color: #fff;
}

#site-footer .site-navigation {
	position: static;
}

.txt_footer, .txt_footer a {
	color:#fff;
}

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

	#site-footer .site-navigation {
		display: none !important;
	}

}

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

	footer.site-footer .site-logo {
		width: 95%;
	}
	

}




/* conversion */

.sidebar {
	background: url("./img/bg_sidebar.webp") no-repeat center top;
	background-size: cover;
	padding: 100px 5vw;
	text-align: center;
	color: #fff;
}

.sidebar h3 {
	font-size: 74px;
	font-weight: 600;
}

.sidebar p {
	font-size: 1.5rem;
	margin-bottom: 60px;
}

.link_sidebar {
	display: flex;
	justify-content: space-evenly;
	width: 60%;
    margin: 0 auto;
	padding-left: 0;
}

.link_sidebar li {
	list-style: none;
	width: 40%;
}

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

	.link_sidebar {
		width: 80%;
	}

}

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

	.link_sidebar {
		width: 95%;
	}

}


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

	.link_sidebar {
		display: block;
	}
	
	.link_sidebar li {
		width: 70%;
		margin: 10px auto;
	}

}




/* ---------------------------------------------------------
 *	追従バナー
 *---------------------------------------------------------- */

#h_btn {
    position: fixed;
    right: 100px;
    bottom: 0;
    z-index: 3;
    width: 500px;
}

#h_btn ul {
    display: flex;
	justify-content: space-between;
}

#h_btn ul li {
    text-align: center;
    font-weight: 600;
	list-style: none;
	width: 49%;
    height: 60px;
    animation-duration: 1.5s;
    animation-delay: 0.5s;
    font-size: 20px;
}

#h_btn ul li a{
    color: #000;
    width: 100%;
	display: block;
	padding: 15px 0;
	color: #fff;
}

#h_btn ul li:first-child {
    background: #203366;
    border: 1px #fff solid;
}

#h_btn ul li:nth-child(2) {
    background: #203366;
    border: 1px #fff solid;
}

.footer_to_top {
    position: fixed;
    right: 1vw;
    bottom: 0px;
    width: 60px;
    height: 60px;
    z-index: 9997;
}

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

	.footer_to_top {
        width: 60px;
        right: 2vw;
    }

}


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

    #h_btn {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 3;
        width: 80%;
    }

	#h_btn ul {
		margin-left: 0;
		padding-left: 0;
	}

	#h_btn ul li {
        height: 50px;
		padding: 0 0;
		line-height: 50px;
		font-size: 13px;
    }

	#h_btn ul li a {
		padding: 0 0;
    }

}

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

    #h_btn ul li:first-child {
        padding: 17px 0;
        font-size: 12px;
        line-height: 1.2;
    }

    #h_btn ul li:nth-child(2) {
        font-size: 13px;
        padding: 14px 0;
    }

}



/* page */

.contents {
	width: 1200px;
	margin: 0 auto;
}

.mv {
	background: url("./img/mv.webp") no-repeat center top;
	background-size: cover;
	padding: 200px 5vw;
}

.mv p, .mv h2 {
	font-weight: 600;
	color: #fff;
	text-align: right;
	text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.6);
}

.mv p {
	font-size: 77px;
}

.mv h2 {
	font-size: 92px;
	letter-spacing: 0.05em;
}

.mv h2 span.txt_mv_01 {
	color: #DC0002;
}

.mv h2 span.txt_mv_02 {
	font-size: 68px;
}

.ttl_01 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 60px;
}

.ttl_02 {
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 60px;
	color: #203366;
}

.wrap_list_products {
	background: rgb(204,204,204);
	background: linear-gradient(130deg, rgba(204,204,204,1) 0%, rgba(245,242,242,1) 100%);
	padding: 100px 0;
}

.category-frame {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.category-card {
	background: #fff;
	padding: 20px;
	position: relative;
}

.category-card::after {
	content: "";
	display: block;
	background: #203366;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.category-card:hover::after {
	background: #DC0002;
}

.category-card a {
	width: 100%;
	display: block;
	color: #343434;
}

.category-txt {
	margin-top: 10px;
}

.category-name {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
}

.category-pic {
	display: block;
	margin: 0 auto;
}

.attachment-post-thumbnail {
	display: block;
	margin: 0 auto;
}

.wrap_list_brands {
	padding: 100px 0;
}

.wrap_list_brands ul {
	display: flex;
	justify-content: space-between;
	padding: 0;
}

.wrap_list_brands li {
	list-style: none;
	width: 32%;
}

.attachment-post-thumbnail {
    width: 50%;
}



/* single */

#post_single h2 {
	border-left: 3px solid #dc0002;
	padding-left: 15px;
}

.page_header {
	padding: 200px 0 100px 0;
	background: url("./img/mv_pages.webp") no-repeat center top;
	background-size: cover;
}

.wrap_single {
	background: #fff;
	padding: 40px 2vw;
}

.aioseo-breadcrumbs {
	margin-bottom: 30px;
}

@media only screen and (max-width: 1201px) {
	
	.contents {
		width: 90%;
		margin: 0 auto;
	}
    
}

@media only screen and (max-width: 780px) {
	
	.mv p {
		font-size: 56px;
	}
	
	.mv h2 {
		font-size: 62px;
	}

}

@media only screen and (max-width: 630px) {
	
	.category-frame {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

}







/* よくあるご質問 */

.questionbox {
    margin-bottom: 20px;
}

.question {
    font-weight: bold;
}


/* 会社概要 */

.box_about {
	display: grid;
    grid-template-columns: 10% 80%;
    gap: 20px;
	margin-bottom: 20px;
}

.box_about dt {
	font-weight: bold;
}


/* パンくず */
.aioseo-breadcrumbs {
	font-weight: bold;
}