@charset "utf-8";

#wrapper {
  width: 100%;
  zoom: 1;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}

/*----------------------------------------------------
  header 
----------------------------------------------------*/
header {
  width: 100%;
  margin: 0 auto;
  border-top: 8px solid #0090DC;
}

header #header_main {
  margin: auto;
  max-width: 1280px;
  padding: 0 55px;
  clear: both;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

header #header_main #logo {
  float: left;
  margin-top: 40px;
}

header #header_main #logo a{
  width: 190px;
  height: auto;
  padding: 0;
  margin: 5px 20px 0 0;
  display: block;
}
header #header_main #logo a img{
  width: 190px;
}

header #header_main #home{
  float: right;
}
header #header_main #home a{
  background: #0090DC url(../img/icon/home.svg) no-repeat center center;
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
}
header #header_main #home a:hover,
header #header_main #home a:active {
  text-decoration: none;
  opacity: .5;
}

/*----------------------------------------------------
  contents
----------------------------------------------------*/
#contents {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 45px 55px 0;
  clear: both;
  position: relative;
  box-sizing: border-box;
}
p {
  margin-top: 5px;
}
/*----------------------------------------------------
パンくず
----------------------------------------------------*/
#bread {
  border: 1px solid #a8a8a8;
  border-left: none;
  border-right: none;
  padding: 5px 0;
}
#bread a{
}
#bread p {
  margin: auto;
  padding: 0 ;
}
/*----------------------------------------------------
   main内
----------------------------------------------------*/
article {
  width: 100%;
  display: block;
  box-sizing: border-box;
}
#content {
  margin: 60px 0 80px 0;
}
#content .brand{
  text-align: center;
  margin: 0 0 70px;
}
.index #content {
  margin: 70px 0 80px 0;
}
.index #content .brand{
  margin: 0;
}
.searchcat #content .brand{
  margin: 50px 0 70px;
}
/*----------------------------------------------------
  category
----------------------------------------------------*/
.category{
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  clear: both;
}
.category ul{
  display:flex;
  align-items:stretch;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
.category ul li{
  width:calc(100%/3 - 20px);
  height:auto;
}
.searchcat .category{
  max-width: 716px;
}
.searchcat .category ul li{
  width:calc(100%/2 - 25px);
}
.list{
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  clear: both;
}
.list ul{
  display:flex;
  align-items:stretch;
  flex-wrap: wrap;
  gap: 15px 50px;
  width: 100%;
}
.list ul li{
  width:calc(100%/3 - 33.333px);
  height:auto;
}
/*----------------------------------------------------
  footer
----------------------------------------------------*/
footer {
  margin: auto;
  clear: both;
  overflow: hidden;
  zoom: 1;
  z-index: 120;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #a8a8a8;
}

footer #footer_main {
  max-width: 1280px; 
  padding: 14px 60px 13px 30px;
  margin: auto;
  clear: both;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 50px;
}

footer #footer_main #ft_fNavi ul {
  float: right;
  margin-bottom: 10px;
}

footer #footer_main #ft_fNavi li {
  float: left;
  margin-left: 20px;
}
footer #footer_main #ft_fNavi li a{
  color: #1a1a1a;
  background: url(../img/icon/another_footer.svg) no-repeat center right;
  background-size: 18px auto;
  padding: 3px 23px 3px 0;
  line-height: 1;
}

footer #footer_main #copyright {
  float: left;
  line-height: 1;
}
footer #footer_main #copyright p{
  margin: 4px 0 0 0;
}

footer #footer_main #lang{
  clear: both;
  text-align: right;
  margin-top: 13px;
  margin-right: 0;
}
footer #footer_main #lang a{
  color:#1a1a1a;
  font-size: 14px;
}
/*footer #footer_main #lang span{
  color:#0090DC;
}*/
/*----------------------------------------------------
	個別設定
----------------------------------------------------*/
.img,
.img_max {
  text-align: center;
  margin: 10px 0px;
}

.multi-column {
  overflow: hidden;
  clear: both;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  max-width: 1000px;
  margin: 15px auto;
}

.multi-column .break-point {
  break-before: column;
}

.multi-column>p {
  margin-top: 0px;
  break-inside: avoid;
}

.multi-column .sub_title {
  margin-top: 10px;
}
