/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@300&display=swap');

/*=========================*/
/*テーマ用変数
/*=========================*/
:root{
	 
	 --main-color:#159655;
	--accent-color:#F7AF21;
/*	 --accent2-color:#3AAD97;*/
	 --text-color:#323333;
	--light-color:#F9F6F2;
	--text-en:'roboto', sans-serif;
	
}


/*=========================*/
/*base
/*=========================*/
html,body{
	box-sizing:border-box;
}

*::before,*::after{
	box-sizing:inherit;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #171722;
    position: relative;
	box-sizing: border-box;
} 
img{ 
	margin: 0; 
	padding: 0; 
	vertical-align: bottom; 
	height: auto; 
} 
h1,h2,h3,h4,h5,h6,p,dl,dt,dd { 
	margin-top: 0px; 
	margin-right: 0px; 
	margin-left: 0px; 
	margin-bottom: 0px; 
	padding-top: 0px; 
	padding-right: 0px; 
	padding-left: 0px; 
	padding-bottom: 0px; 
} 
.cl { 
	clear: both; 
} 
a {   
        color: inherit;
        text-decoration: none; 
} 
a:hover { 
      opacity:0.7; 
      filter: alpha(opacity=70); 
      -ms-filter: "alpha( opacity=70 )"; 
      -webkit-transition: 0.3s ease-in-out; 
      -moz-transition: 0.3s ease-in-out; 
      -o-transition: 0.3s ease-in-out; 
      transition: 0.3s ease-in-out; 
}
ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.pc_navi{
	display: block;
}
.sp_navi { 
    display: none; 
}

.is-pc{display: block;}

.is-sp{display: none;}


.br_ib{
	display: inline-block;
}

.br_b{
	display: block;
}



/*=========================*/
/*header
/*=========================*/
#header{
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
    padding-top: 16px;
}
.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 2.3%;
    padding-left: 2.3%;
    padding-bottom: 0;
}

.header_logo{
	width:304px;
/*	line-height: 1.3;*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	 z-index: 10;
}


.header_logo img{
	vertical-align: top;
}

.desc{
	color: var(--main-color);
	font-size: 13px;
	font-weight: 600;
	margin:8px 2.3% 8px;
	padding-bottom:8px;
	margin-left: 0;
	margin-bottom: 0;
/*	border-bottom:1px solid #E5E5E5;*/
}

.header_info{
	display: flex;
	align-items: center;
	justify-content: flex-end;
/*	width:40%;*/
	flex-grow: 1;
	
}

.info_open{
text-align: right;
}

.info_data{
	display: flex;
	white-space: nowrap;
}
.info_open p{
	font-size: 15px;
}
.info_open p + p{
	margin-top: 1.53%;
}



.info_tel{
	display: inline-block;
	position:relative;
	font-family: var(--text-serif);
	font-size: 18px;
	color:#fff;
	background: var(--accent-color);
	border-radius:8px;
	font-weight: 700;
}

.info_tel a{
    display: block;
    padding-top: 8px;
    padding-right: 1.5em;
    padding-left: 80px;
    padding-bottom: 8px;
    padding-left: 80px;
    cursor: pointer;
}

.header_info .info_tel{
	margin-left:3.07%;
}

.info_tel::before{
	position:absolute;
	content:"";
	top:50%;
	left:1.5em;
	transform: translateY(-50%);
	background: url("../images/ico_tel.svg") no-repeat center center/cover;
	width:36px;
	height:36px;
}

#fixed_nav_wrap {
    padding-left: 3.07%;
    padding-right: 3.07%;
    position: fixed;
    top: 0px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 88px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 5;
}
#fixed_nav-logo {
    font-size: 22px;
    font-weight: 700;
    line-height: 1em;
    min-width: 304px;
    margin-right: 24px;
}
#fixed_nav-logo span {
	display: block;
	font-size: 13px;
	color:  var(--main-color);
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 10px;
}
.fixed_navi {
    width: 60%;
}
.fixed_navi ul {
    display: flex;
    justify-content: space-between;
}
.fixed_navi ul li {

}
.fixed_navi ul li a {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: var(--main-color);
}




/*=========================*/
/*global nav
/*=========================*/
.humberger{
	display: none;	
	cursor: pointer;
}

.header__nav-area{
	
}

.global-navigation__list{
	padding:0 3.07%;
    justify-content: center;
    display: flex;
    list-style-type: none;
	position:relative;
}

.global-navigation__list::after{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: var(--main-color);
    z-index: -1;
}



.global-navigation__list li{
	text-align: center;
	width:100%;
	box-sizing: border-box;
}



.global-navigation__link{
    display: block;
    position: relative;
    padding: 16px 0 24px;
    font-family: var(--text-serif);
    border-left: 1px solid #fff;
	
}

.global-navigation__link:hover{
	opacity:1;
}

.global-navigation__link:hover::after{
	position: absolute;
	content:"";
	left:0;
	bottom:0;
	width:100%;
	height:10px;
	background:#fff; 
	z-index:2;
	
}


.global-navigation__link + .global-navigation__link{
	border-left:1px solid #ccc;
}

.nav_en{
	display: block;
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--text-en);
	color:var(--main-color);
}

.overlay{
	visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.3s;
}

/* 付け外し用 */
.OverlayIsOpen {
  visibility: visible;
  opacity: 1;
}


/*=========================*/
/*media
/*=========================*/
.media{
	display: flex;
	justify-content: space-between;
}

.media._reverse{
	flex-direction: row-reverse;
}

.media_head{
	width:40%;
}

.media_body{
	width:48.46%;
}

.media_body img{
	width:100%;
}

.media_text{
	margin-top: 4.38%;
	line-height: 2;
}
.media_btn {
    text-align: right;
}

.media_btn .btn{
	border:1px solid var(--accent-color);
	background:none;
	color:var(--accent-color);
}

.media_btn .btn::after {
    background-image: url(../images/ico_arrow_y.svg);
}


/*=========================*/
/*btn
/*=========================*/
.btn{
    display: inline-block;
    width: 230px;
    color: #fff;
    background-color: var(--main-color);
    padding: 16px;
    text-align: center;
    position: relative;
    padding-right: 30px;
    border-radius: 8px;
    margin-top: 6.15%;
}

.btn::after{
    position: absolute;
    content: "";
    background-position: center center/cover;
    background-image: url(../images/ico_arrow.svg);
    width: 26px;
    height: 26px;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    z-index: 1;
}

/*=========================*/
/*main
/*=========================*/
.content_wrapper {
    padding: 0 5.38%;
	margin:0 auto;
	max-width:1200px;
}

.sec{
	padding:6.15% 0;
}

.heading-primary{
    font-size: 26px;
    font-family: var(--text-serif);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 8px;
    font-weight: 500;
}
.heading_head {
    display: flex;
}
.heading_title {
}


.heading-primary .en{
    text-transform: uppercase;
    font-size: 20px;
    color: #CFD3D1;
    font-family: var(--text-en);
}

.heading-primary._center{
    border: none;
    text-align: center;
	display: block;
}

.heading-primary._center .en{
	margin-bottom: 0.76%;
	display: block;
	text-align: center;
}

.heading-primary._center._white{
    color: #fff;	
}

.heading-primary .icon{
    display: inline-block;
    width: 26px;
    vertical-align: middle;
    margin-right: 6px;
    margin-bottom: 6px;
}

.heading_secondary{
	font-size: 26px;
	font-family: var(--text-serif);
	line-height: 2.2;
	letter-spacing: 0.05em;
	padding-left:1.53%;
	border-left:5px solid #DBD9D3;
	border-bottom:1px solid #DBD9D3;
}

.head_icon{
	display: inline-block;
}



/*=========================*/
/*footer
/*=========================*/
#footer{
}

.footer_nav{}

.footer_nav_ul{
    display: flex;
    align-content: center;
    justify-content: center;
}
.footer_nav_ul li + li {
    margin-left: 60px;
}

.footer_nav_link{
    padding: 16px 8px;
    display: block;
}

.footer_copyright{
    padding: 16px 0;
    text-align: center;
}



/*=========================*/
/*pageHead
/*=========================*/
.pageHead{
	height:100px;
	background:url("../images/bg_pagehead.png") center center/cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:0 5.38%;
}

.pageHead_title{
	font-size: 16px;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	font-family: var(--text-serif);
}

.pageHead_title .en{
	text-transform:uppercase;
	font-size: 30px;
	font-family: var(--text-en);
	color:var(--main-color);
	margin-right:1.53%;
	letter-spacing: 0.1em;
}

/*=========================*/
/*contact
/*=========================*/
#top-contact{
	background:var(--main-color);
}

.top-contact_content{
    display: flex;
    padding-top: 6.15%;
    padding-right: 0;
    padding-left: 0;
    justify-content: space-between;
}

.top-contact_head{
    width: 40%;
    color: #fff;
}

.top-contact_logo{
    width: 307px;
}

#top-contact ._tel{
    display: flex;
    border-radius: 8px;
    margin-top: 4.61%;
}

#top-contact ._tel ._head{
    width: 14.61%;
    background-color: var(--accent-color);
    padding: 2.3% 6.15%;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}

#top-contact ._tel p + p{
    color: var(--accent-color);
    background-color: #fff;
    width: 84.61%;
    padding: 1.53%;
    font-size: 32px;
    /*
    display: flex;
    flex-direction: column;
    align-items: center;
*/
    border-radius: 0 8px 8px 0;
    justify-content: center;
    text-align: center;
}
#top-contact ._tel p + p img {
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 6px;
    margin-right: 8px;
}

.top-contact_body{
    width: 50%;
}
.table_wrap {
    padding: 3.07%;
    border-radius: 8px;
    background-color: #fff;
}

.top-contact_body table{
    width: 100%;
    border-collapse: collapse;
}


.top-contact_body table tbody tr{
	position:relative;
}

.top-contact_body table tbody tr::after{
	position:absolute;
	content:"";
	border-top:2px dotted #333;
	width:100%;
	left:0;
}

.top-contact_body th{
    width: 26.92%;
    text-align: left;
    padding: 1.53% 0;
    font-weight: bold;
    font-size: 20px;
}

.top-contact_body td{
    text-align: center;
    padding: 1.53% 0;
    font-weight: bold;
    font-size: 20px;
}

.top-contact_body td img{
	width:22px;
	height:22px;
}

.top-contact_body p{
    margin-top: 2.3%;
    color: #fff;
}

.top-contact_sub{
	margin-top: 1.53%;
}

.top-contact_add{
	margin-top: 1.53%;
	line-height: 1.6;
}

.top-contact_body .info_tel{
	margin-top: 2.3%;
}


/*=========================*/
/*access
/*=========================*/
#top-access{
	background:var(--main-color);
	padding-bottom:6.15%;
}

.gmap{
	width:100%;
	height:400px;
}
.gmap iframe{
	width:100%;
	height:100%;
}
