@charset "UTF-8";
/*--------------------------------------------------------------
# Common
# ボタン Btn Button
# Page Default Layout
# Site Header
　　# main-nav
　　# menu-toggle
　　# mobile-nav
# Page Title
# Breadcrumbs パンくずリスト
# 投稿ページ post-type:post
# アーカイブ archive
# 検索結果 search 
# Pagination ページネーション ページャー
# 404
# pageTop ボタン
# Footer
　　# footer-nav
# Sidebar サイドバー
# Animation
# Loading
# 汎用
--------------------------------------------------------------*/

/*===========================================================*/
/* # Common
/*===========================================================*/
html{
	font-size: 16px; /* base font-size for pc */
}
body {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
  font-size: 1rem;
  font-weight: 400;
	line-height: 1.8;
  letter-spacing: .05em;
  word-wrap: break-word;
	margin:0!important;
}
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.anton-sc-regular {
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.fixed { /*　mobile-nav表示中　*/
}

a:link, a:visited, a:hover, a:active {
  color: #153889;
  text-decoration: none;
  transition: all .3s;
}
a:active, a:focus {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align:top;
}

@media(max-width:767px) {
  html{
	  font-size: 15px; /* base font-size for sp */
  }
	body {
	  font-size: 1rem;
		line-height: 1.8;
	}
}

/*===========================================================*/
/* ボタン Btn Button
/*===========================================================*/
.btn-type01 a,
.btn-type01 input[type="submit"] {
	max-width: 100%;
  width:320px;
  height: 70px;
  color:#fff;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/common/btn_arrow-r.svg");
  background-repeat: no-repeat;
  background-position: top 50% right 6.25%;
  background-size: 8px;
  transition: .3s;
  cursor: pointer;
}

.btn-color01 a,
.btn-type01 input[type="submit"]{
  background-color: #153889;
  border:none;
}
.btn-color01 a:hover,
.btn-type01 input[type="submit"]:hover{
  background-color: #204eb8;
  border:none;
}
.btn-color02 a{
  background-color: #ef8337;
  border:none;
}
.btn-color02 a:hover{
  background-color: #ef9b37;
  border:none;
}

.site-text-link a{
  display: flex;
  align-items: center;
  column-gap: 8px;
  color:#333;
  position: relative;
}
.site-text-link.news-back-link a{
  font-size: 14px;
}
.site-text-link a::before{
  content: "";
  display: block;
  width:25px;
  height:25px;
  background: #153889 url("../images/common/arrow_right.svg") left 55% top 50% no-repeat;
  background-size: 7px;
  border-radius: 50%;
}
.site-text-link.news-back-link a::before{
  transform: rotate(180deg);
}

@media(max-width:767px) {
  .btn-type01 a,
  .btn-type01 input[type="submit"] {
    width:220px;
    height: 50px;
    border-radius: 25px;
    background-size: 6px;
  }
  .site-text-link{
    margin-top:10px;
  }
  .site-text-link a::before{
    width:18px;
    height:18px;
    background-size: 5px;
  }
}

/*===========================================================*/
/* # Page Default Layout 
/*===========================================================*/
#page{
  position: relative;
}
.contents-wrap{
	padding:80px 3.75%;
}
body.page .entry-wrap{
	width:960px;
	max-width:100%;
	margin:0 auto;
}
body.single .entry-wrap{
	width:960px;
	max-width:100%;
	margin:0 auto;
}
.section-inner{
	width:960px;
	max-width:100%;
	margin:0 auto;
}

/**　全幅固定ページ用 **/
.contents-wrap.wrap100per{
	padding:60px 0;
}
body.page .contents-wrap.wrap100per .entry-wrap{
	width:100%;
}
/**　サイドバー有り投稿用 **/
.with-sidebar .contents-wrap-inner{
	width:1200px;
	max-width:100%;
	margin:0 auto;
	display: flex;
	justify-content: space-between;
}
.with-sidebar .side-contents{
	width:300px;
	max-width: 25%;
}
.with-sidebar .main-contents{
	width:840px;
	max-width: 70%;
}
@media(max-width:767px) {
  .contents-wrap{
	  padding:50px 20px;
  }
}

/*===========================================================*/
/* # Site Header
/*===========================================================*/

.site-header{
	width:100%;
  height: 140px;
	padding: 0 3.75%;
	background-color: #ffffff;
  border-bottom: #ef8337 solid 3px;
	z-index:999;
	position:fixed;
  top:0;
  left: 0;
}
#page{
  padding-top:140px;
}
.site-header-inner{
	display: flex;
  justify-content: space-between;
	width:100%;
  height: 100%;
	margin:0 auto;
  position:relative;
}
.site-branding{
  padding-top:39px;
}
.site-logo{
	width:20vw;
  max-width: 290px;
  height: 70px;
	margin:0!important;
	line-height: 1;
}

.site-logo a {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 101%;
  line-height: 0;
  font-size: 0.1em;
  background: url(../images/common/logo.svg) left center no-repeat;
  background-size: contain;
}

@media(max-width:1348px) {
  .site-header{
    height: 130px;
  }
  #page{
    padding-top:130px;
  }
  .site-branding{
    padding-top:29px;
  }
}

@media(max-width:1199px) {
	.site-header{
    height: 100px;
    border-width: 2px;
  }
  #page{
    padding-top:100px;
  }
  .site-branding{
    padding-top:20px;
  }
  .site-logo{
    width:240px;
    height: 58px;
  }
}
@media(max-width:767px) {
	.site-header{
		padding: 0 2.6%;
    height: 56px;
    border-width: 1px;
	}
  #page{
    padding-top:56px;
  }
  .site-branding{
    padding-top:10px;
  }
	.site-logo{
		width:150px;
    height: 36px;
	}
}

/*===========================================================*/
/* # main-nav
/*===========================================================*/
.main-nav{
  margin-top:59px;
  display: flex;
  justify-content: flex-end;
}
.main-nav ul{
  height: 60px;
	list-style: none;
	display: flex;
	padding:0;
	margin:0;
}
.main-nav > ul li{
	margin:0;
	position: relative;
}
.main-nav > ul > li a{
	display: block;
	padding: 13px 15px 30px;
  color:#222;
  font-size: 17px;
  font-size: clamp(15px, 1.214vw, 17px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.main-nav > ul > li a:hover{
  color:#ef8337;
}
.main-nav > ul > li::after{
  content: "";
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1;
  color:#ef8337;
  white-space: nowrap;
  position: absolute;
  bottom:10px;
  left:50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.main-nav > ul > li:nth-child(1)::after{content: "Advantages";}
.main-nav > ul > li:nth-child(2)::after{content: "Stock";}
.main-nav > ul > li:nth-child(3)::after{content: "About Us";}
.main-nav > ul > li:nth-child(4)::after{content: "Products";}
.main-nav > ul > li:nth-child(5)::after{content: "Quality Management";}
.main-nav > ul > li:nth-child(6)::after{content: "Column";}
.main-nav > ul > li:nth-child(7)::after{content: "Contact";}

/*-- sub-menu dropdown --*/
  .main-nav .sub-menu{
		position: absolute;
		top:100%;
		left:50%;
		padding:0;
		margin:0;
		flex-direction: column;
		transform: translate(-50%,-10px) scaleY(0);
		transition: 0.3s;
		transform-origin: center top;
  }
	.main-nav > ul li.menu-item-has-children:hover .sub-menu {
		transform: translate(-50%,0) scaleY(1);
		transform-origin: center top;
  }
 .main-nav .sub-menu li{
	 padding:0;
 }
 .main-nav .sub-menu li a {
	 display: block;
   border-bottom: solid 1px #666;
   min-width: 6em;
   margin: 0;
   padding: 20px 28px;
   white-space: nowrap;
	 background-color: #333;
	 color:#fff;
  }
  .main-nav .sub-menu li:last-child a {
    border-bottom: none;
  }
	.main-nav .sub-menu li a:hover{
		background-color: #555;
    color:#fff;
	}

/*-------------------- */
.site-header .quote-btn{
  margin-left: 15px;
}
.site-header .quote-btn a{
  display: block;
  width:230px;
  height: 60px;
  line-height: 1;
  border-radius: 30px;
  background: #da381d url("../images/common/ico_quote.svg") 42px 50% no-repeat;
  background-size: 31px;
  padding:13px 30px 10px 76px;
  text-align: center;
  color:#fff;
  font-size: 17px;
  font-size: clamp(15px, 1.214vw, 17px);
  transition: .3s;
}
.site-header .quote-btn a:hover{
  background-color: #ef8337;
}
.site-header .quote-btn a .menu-en{
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  margin-top:6px;
}
@media(max-width:1348px) {
  .main-nav{
    margin-top:49px;
  }
  .main-nav > ul > li a{
	  padding: 13px 10px 30px;
  }
  .site-header .quote-btn{
    margin-left: 6px;
  }
}

@media(max-width:1199px) {
	.main-nav{
		display: none;
	}
  .site-header .quote-btn{
    margin: 20px 0;
  }
  .site-header .quote-btn a{
    width:100%;
    padding:13px 30px 10px 30px;
  }
}

/*===========================================================*/
/* # utility-nav
/*===========================================================*/
.utility-nav{
  position: absolute;
  top:10px;
  right:0;
}
.utility-nav-list{
  display: flex;
  list-style: none;
  padding:0;
  margin:0;
}
.utility-nav-list li a{
  display: block;
  height: 30px;
  font-family: "Anton SC", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:14px;
  line-height: 1;
  padding-top:8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color:#555;
  margin-left:28px;
  padding-left: 32px;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.utility-nav-list li:nth-child(1) a{
  background-image: url("../images/common/ico_magagine.svg");
  background-size: 22px;
}
.utility-nav-list li:nth-child(2) a{
  background-image: url("../images/common/ico_guide.svg");
  background-size: 27px;
}
.utility-nav-list li:nth-child(3) a{
  background-image: url("../images/common/ico_english.svg");
  background-size: 24px;
}
@media(max-width:1348px) {
  .utility-nav-list li a{
    font-size:13px;
  }
}

@media(max-width:1199px) {
  .utility-nav.pc{
    display: none;
  }
  .utility-nav{
    position: relative;
    top:0;
    left:0;
  }
  .utility-nav-list li{
    width:50%;
    border:#666 solid 1px;
  }
  .utility-nav-list li:nth-child(odd){
    border-right: none;
  }
  .utility-nav-list li a{
    font-size: 1rem;
    height: auto;
    letter-spacing: 0.05em;
    margin-left: 0;
    padding:1em 10px 1em 30px;
    text-align: center;
    background-position: 10px 50%;
  }
  .utility-nav-english a{
    display: block;
    font-family: "Anton SC", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color:#555;
    padding-left: 28px;
    background: url("../images/common/ico_english.svg") 0 50% no-repeat;
    background-size: 22px;
    position: absolute;
    top:25px;
    right: 110px;
  }
}
@media(max-width:767px) {
  .utility-nav-english a{
    top:17px;
    right: 80px;
  }
}


/*===========================================================*/
/* # menu-toggle
/*===========================================================*/

.menu-toggle{
	display: none;
}

@media(max-width:1199px) {
	.menu-toggle{
    display: block;
    z-index: 99999;
    position: absolute;
    top: 25px;
    /*right: 3.75%;*/
    right:0;
    width: 48px;
    height: 48px;
    padding:0 0 0 0;
    transform: translate(0%, 0%);
    cursor: pointer;
    transition: all 0.5s ease;
		background-color: transparent;
		border:none;
		border-radius: 0;
    outline: 0;
	}
	.menu-toggle-wrap{
    display: block;
	  position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    background-color: #153889;
    border-radius: 50%;
	}
	.menu-toggle-wrap span{
		display: inline-block;
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s ease;
	}   
	.menu-toggle-wrap span:nth-of-type(1) {
    top: 18px;
    left: 12px;
  }
	.menu-toggle-wrap span:nth-of-type(2) {
		top: 28px;
    left: 12px;
  }
	.toggled .menu-toggle-wrap span{
		background-color: #ffffff;
    transform-origin: center;
	}
	.toggled .menu-toggle-wrap span:nth-of-type(1) {
    transform: translateY(5px) rotate(-45deg);
  }
	.toggled .menu-toggle-wrap span:nth-of-type(2) {
    transform: translateY(-5px) rotate(45deg);
  }
}

@media(max-width:767px) {
	.menu-toggle{
    width: 36px;
    height: 36px;
    top: 10px;
    /*right: 20px;*/
    right:0;
    outline: 0;
	}
	.menu-toggle-wrap span:nth-of-type(1) {
    top: 14px;
    left: 9px;
  }
	.menu-toggle-wrap span:nth-of-type(2) {
		top: 21px;
    left: 9px;
  }
	.toggled .menu-toggle-wrap span:nth-of-type(1) {
    transform: translateY(3px) rotate(-45deg);
  }
	.toggled .menu-toggle-wrap span:nth-of-type(2) {
    transform: translateY(-4px) rotate(45deg);
  }
}

/*===========================================================*/
/* # mobile-nav
/*===========================================================*/
.mobile-nav{
	display: none;
}

@media(max-width:1199px) {
	.mobile-nav{
		display: block;
		position: fixed;
		top:0;
		right:0;
		width:100%;
    max-width: 500px;
		height:100vh;
    background-color: #fff;
		transform: translateX(100%); opacity: 0;
		transition: all 0.3s ease;
		z-index: 9999;
    overflow-y: scroll;
    padding-bottom:40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	}
	.mobile-nav.toggled{
		transform: translateX(0); opacity: 1;
	}
	.mobile-nav-wrap{
		width:100%;
		padding:90px 50px 20px 20px;
	}
	.mobile-nav ul.mobile-nav-list,
  .mobile-nav ul.mobile-nav-list ul{
		list-style: none;
		margin:0;
		padding:0;
		display: flex;
		flex-direction: column;
	}
  .mobile-nav ul.mobile-nav-list{
    border-bottom: #666666 solid 1px;
  }
	.mobile-nav ul.mobile-nav-list li a,
  .mobile-nav ul.mobile-nav-list ul li a{
		display: block;
		color:#333;
		padding:20px 0;
	}
  .mobile-nav ul.mobile-nav-list > li > a{
    border-top: #666666 solid 1px;
  }
  
.mobile-nav ul.mobile-nav-list > li > a::after{
  content: "";
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.03em;
  line-height: 1;
  color:#ef8337;
  white-space: nowrap;
  margin-left: 10px;
  pointer-events: none;
}
.mobile-nav ul.mobile-nav-list > li:nth-child(1) > a::after{content: "Advantages";}
.mobile-nav ul.mobile-nav-list > li:nth-child(2) > a::after{content: "Stock";}
.mobile-nav ul.mobile-nav-list > li:nth-child(3) > a::after{content: "About Us";}
.mobile-nav ul.mobile-nav-list > li:nth-child(4) > a::after{content: "Products";}
.mobile-nav ul.mobile-nav-list > li:nth-child(5) > a::after{content: "Quality Management";}
.mobile-nav ul.mobile-nav-list > li:nth-child(6) > a::after{content: "Column";}
.mobile-nav ul.mobile-nav-list > li:nth-child(7) > a::after{content: "Contact";}
  
  /* 最初は非表示 */
  .mobile-nav.toggled ul.sub-menu {
    display: none;
  }
  .mobile-nav ul ul li a {
    width: 100%;
    margin: 0;
    padding-left: 2em;
  }
  .mobile-nav ul ul li:last-child a {
    border-bottom: none;
  }
	.mobile-nav li.menu-item-has-children{
		position: relative;
		cursor: pointer;
	}
	.mobile-nav li.menu-item-has-children::after{
		content: "";
		position: absolute;
		top:26px;
		right:10px;
		width:16px;
		height:16px;
		background: url("../images/common/accordion-open.svg") 0 0 no-repeat;
		background-size: contain;
    pointer-events: none;
	}
	.mobile-nav li.menu-item-has-children.open::after{
		background: url("../images/common/accordion-close.svg") 0 0 no-repeat;
	}
  .mobile-nav.toggled ul.sub-menu > li > a{
    padding:0 0 1em 1.5em;
    position: relative;
  }
  .mobile-nav.toggled ul.sub-menu{
    padding-bottom: 1em;
  }
  .mobile-nav.toggled ul.sub-menu > li > a::before{
    content: "";
    display: block;
    width:1em;
    height: 1px;
    background-color: #333;
    position: absolute;
    top:1em;
    left:0;
  }
}
@media(max-width:767px) {
	.mobile-nav-wrap{
		padding:70px 20px 20px 20px;
	}
}
/*===========================================================*/
/* # Page Title
/*===========================================================*/
.page-header{
	height: 300px;
	background-color:#153889;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
	padding-top:120px;
}
.page-title{
  font-size: 44px;
  font-size: clamp(36px, 3.4vw , 44px);
	font-weight: 700;
	color:#fff;
	margin:0;
	text-align: center;
}
@media(max-width:767px) {
  .page-header{
    height: 180px;
    padding-top:65px;
  }
  .page-title{
    font-size: 24px;
    font-size: clamp(22px, 6.3999vw , 26px);
  }
}

/*===========================================================*/
/* # 投稿ページ post-type:post
/*===========================================================*/
.blog .page-header,
.single-post .page-header{
  background-image: url("../images/title/title-news_bg.jpg");
}
.post-type-archive-column .page-header, 
.single-column .page-header {
  background-image: url("../images/title/title-news_bg.jpg");
}
.posts-list-section{
  
}
.posts-list{
  
}
.posts-list-item{
	border-bottom:#ccc solid 1px;
  position: relative;
}
.posts-list-item article.post{
  margin:0;
}
.posts-list-item .entry-header{
  position: relative;
}
.posts-list-item .entry-header .entry-meta{
	position: absolute;
	top:30px;
	left:5px;
	color: #153889;
  font-weight: 500;
}
.posts-list-item .entry-header .entry-meta p{
  margin:0;
}
.posts-list-item .entry-header .entry-title{
  margin:0;
}
.posts-list-item .entry-header .entry-title a{
  font-size: 1rem;
  font-weight: 400;
  color:#333;
  display: block;
  width:100%;
	padding:30px 30px 30px 155px;
}
.posts-list-item::after{
  content: "";
  width:150px;
  height: 1px;
  background-color: #153889;
  position: absolute;
  left:0;
  bottom:-1px;
}

.single-column .entry-header {
  margin-bottom: 1.5rem;
}

.single-post .entry-title,
.single-column .entry-title{
  font-size: 30px;
	border-bottom:#ccc solid 1px;
  position: relative;
  margin:0;
  padding-bottom:10px;
}
.single-post .entry-title::after,
.single-column .entry-title::after{
  content: "";
  width:150px;
  height: 1px;
  background-color: #153889;
  position: absolute;
  left:0;
  bottom:-1px;
}
.single-post .entry-header .entry-meta p,
.single-column .entry-header .entry-meta p{
  margin:10px 0 0 0;
}
.single-post .entry-header .entry-date,
.single-column .entry-header .entry-date{
  color:#153889;
}
.single-post .entry-footer,
.single-column .entry-footer{
  margin-top:50px;
}
@media(max-width:767px) {
  .posts-list-item{
    border-bottom:0;
    border-top:#ccc solid 1px;
  }
  .posts-list-item .entry-header .entry-title a{
    padding:40px 0 15px 0;
    line-height: 1.6;
  }
  .posts-list-item .entry-header .entry-meta{
    top:10px;
	  left:0;
  }
  .posts-list-item::after{
    width:90px;
    bottom: auto;
    top:-1px;
  }  
  .single-post .entry-title,
  .single-column .entry-title{
    font-size: 20px;
  }
  .single-post .entry-title::after,
  .single-column .entry-title::after{
    width:100px;
  }
  .single-post .entry-footer,
  .single-column .entry-footer{
    margin-top:30px;
  }
}

/*===========================================================*/
/* # アーカイブ archive 
/* 投稿タイプ追加の際はここを調整
/* 投稿タイプにスタイルを変える場合は丸ごとコピーして変更
/*===========================================================*/
.posts-list{
	display: block;
}
.posts-list-item .entry-header{
	width:100%;
}

@media(max-width:767px){
	.posts-list-item{
	}
}

/*===========================================================*/
/* # 在庫情報 post-type:stock
/*===========================================================*/
.single-stock .page-header{
  background-image: url("../images/title/title-stock_bg.jpg");
}

/*===========================================================*/
/* Search 検索結果
/*===========================================================*/


/*===========================================================*/
/* Pagination ページネーション ページャー
/*===========================================================*/
.pagination{
	width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}
.pagination ul{
	padding:0;
	margin:0;
	list-style: none;
}
.pagination ul li{
	display: inline-block;
	margin:0 5px;
}
.pagination ul li a,
.pagination ul li span{
	display: block;
  border: #153889 1px solid;
  background-color: #fff;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  color: #153889;
  text-decoration: none;
}
.pagination ul li span.current{
	background-color: #153889;
  color: #fff;
}
.pagination ul li span.dots{
	border: none;
  width: auto;
  color: #153889;
  background: none;
}
@media(max-width:767px){
  .pagination ul li a,
  .pagination ul li span{
    width: 30px;
    line-height: 30px;
    font-size: 13px;
  }
}

/*===========================================================*/
/* # 404
/*===========================================================*/

@media(max-width:767px){
}


/*===========================================================*/
/* # pageTop ボタン
/*===========================================================*/
#page-top {
	position:fixed;
	bottom:10px;
	right:20px;
	z-index: 99999;
}
#page-top a{
	display:block;
	width:56px;
	height:56px;
  border-radius: 50%;
	background:#333 url("../images/common/arrow_top.svg") left 50% top 50% no-repeat;
  background-size: 11px;
	position: relative;
}
#page-top a:hover{
	opacity: 1;
}

@media(max-width:1199px){
  #page-top a{
	  width:48px;
	  height:48px;
    background-size: 9px;
  }
}

@media(max-width:767px){
  #page-top {
    right:2.6%;
  }
	#page-top a{
	  width:36px;
	  height:36px;
    background-size: 9px;
  }
 #page-top a::before{
	 font-size: 13px;
  }
	
}

/*===========================================================*/
/* # Comment コメント
/*===========================================================*/
.comments-area{
	
}
.comment-list{
	margin-left:0;
}

@media(max-width:767px){
}

/*===========================================================*/
/* # Footer
/*===========================================================*/
.site-footer-contact{
  display: flex;
}
.site-footer-contact-item{
  width:50%;
  text-align: center;
  padding-top:75px;
  padding-bottom:75px;
}
.site-footer-contact-item p{
  letter-spacing: .05em;
}
.site-footer-contact-item.tel{
  background: url("../images/common/footer-tel_bg.jpg") left 0 top 50% no-repeat;
  background-size: cover;
  padding-left: 3.75%;
}
.site-footer-contact-item.web{
  background: url("../images/common/footer-web_bg.jpg") right 0 bottom 0 no-repeat;
  background-size: cover;
  padding-right: 3.75%;
  border-left: #a46b43 solid 1px;
}
.site-footer-contact-item .title{
  font-size: 28px;
  font-size: clamp(22px, 2.275vw , 28px);
  font-weight: 700;
  color:#fff;
  margin:0;
}
.site-footer-contact-item .tel{
  margin:1em 0 .8em;
}
.site-footer-contact-item .tel a{
  color:#ef8337;
  font-size: 46px;
  font-size: clamp(32px, 3.5vw , 46px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 54px; 
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer-contact-item .tel a::before{
  content: "";
  width:54px;
  height: 54px;
  background: url("../images/common/ico_tel.png") 0 50% no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.site-footer-contact-item .fax{
  margin:0;
  color:#fff;
  font-size: 18px;
}
.site-footer-contact .btn-type01.btn-contact a{
  margin:30px auto 0;
  width:360px;
  max-width: 80%;
  font-size: 20px;
  font-size: clamp(18px, 1.49vw, 20px);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer-contact .btn-type01.btn-contact a::before{
  content: "";
  width:25px;
  height: 19px;
  background: url("../images/common/ico_mail.svg") 0 0 no-repeat;
  background-size: contain;
  margin-right: 12px;
  pointer-events: none;
}
.site-footer-bottom{
  width:100%;
	padding: 15px 3.75%;
  background-color: #153889;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright{
  font-size: 14px;
  color:#fff;
}
.copyright a{
  color:#fff;
}
@media(max-width:950px){
  .site-footer-bottom{
    display: block;
  }
}
@media(max-width:767px){
  .site-footer-contact{
    display: block;
  }
  .site-footer-contact-item{
    width: 100%;
    padding-top:40px;
    padding-bottom:40px;
  }
  .site-footer-contact-item.tel{
    padding: 40px 20px;
  }
  .site-footer-contact-item.web{
    padding: 40px 20px;
    border-left: 0;
    border-top: #a46b43 solid 1px;
  }
  .site-footer-contact-item .title{
    font-size: 20px;
    font-size: clamp(17px, 5.3vw, 21px);
  }
  .site-footer-contact-item .tel{
    margin:.8em 0 .5em;
  }
  .site-footer-contact-item .tel a{
    font-size: 30px;
    font-size: clamp(26px, 8vw , 34px);
  }
  .site-footer-contact-item .tel a::before{
    width:32px;
    height: 32px;
  }
  .site-footer-contact-item .fax{
    font-size: 14px;
  }
  .site-footer-contact .btn-type01.btn-contact a{
    margin:15px auto 10px;
    font-size: 16px;
    max-width: 66%;
  }
  .site-footer-contact .btn-type01.btn-contact a::before{
    width: 20px;
    height: 15px;
    margin-right: 8px;
  }
  .site-footer-bottom{
    padding: 15px 20px;
  }
  .copyright{
    font-size: 11px;
    border-top: #506daf solid 1px;
    padding-top:10px;
  }
}
@media(min-width:768px){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*===========================================================*/
/* # footer-nav
/*===========================================================*/
.footer-nav ul{
	list-style: none;
	display: flex;
	margin:0;
	padding:0;
}
.footer-nav ul li{
	margin:0;
  padding-right:10px;
  line-height: 1;
}
.footer-nav ul li:not(:first-child){
  border-left: #fff solid 1px;
  padding-left:10px;
}
.footer-nav ul li a{
  font-size: 14px;
  color:#fff;
  line-height: 1.2;
}

@media(max-width:767px){
	.footer-nav ul{
		display: block;
	}
  .footer-nav ul li{
    display: inline-block;
    padding:0;
  }
  .footer-nav ul li:not(:first-child){
    border-left: 0;
    padding:0;
  }
  .footer-nav ul li a{
    font-size: 13px;
    padding: 0 0 0 10px;
    margin: 0 20px 0 0;
    background: url("../images/common/arrow_right.svg") 0 50% no-repeat;
    background-size: 5px;
  }
}

/*===========================================================*/
/* # Sidebar サイドバー
/*===========================================================*/

@media(max-width:767px){
}

/*===========================================================*/
/* # Animation
/*===========================================================*/

/*===========================================================*/
/* # 汎用
/*===========================================================*/
.mt00{
  margin-top:0;
}
.indent-from2{
  text-indent: -1em;
  padding-left: 1em;
}
@media(max-width:999px){
  .pc-x{
    display: none;
  }
}
@media(min-width:768px){
	.sp{
		display: none;
	}
}
@media(max-width:767px){
	.pc{
		display: none;
	}
}