/*!
header, footer, top module
 ______________________________*/

br.sp {
  display: none;
}

.sp_contact {
  display: none;
}

/* 
html and body
_______________________________*/
html {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 127px;
  /* 固定ヘッダの高さ分 */
}



/* 
header
_______________________________*/

.header {
  position: fixed;
  background-color: #fff;
  width: 100%;
  height: 168px;
  z-index: 100;
  top: 0;
}

.contents {
  padding-top: 168px;
}

.header_in {
  display: flex;
  justify-content: space-between;
  padding: 26px 0 0;
}

.header h1 {
  margin: 0;
  padding: 0;
}

.header h1 a img {
  width: 244px;
  height: auto;
}

.header_contact {
  width: 522px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header_contact img {
  width: 253px;
  height: auto;
}

.header_contact p {
  font-size: 1.15rem;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.header_r {
  width: 100%;
  display: block;
}


header article {
  background-color: var(--color-primary);
  padding:10px 0;
}

header article a {
  color: var(--color-white);
}

/* ----------------------------------------------
 pagetop
 ---------------------------------------------- */
.pagetop {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: -50px;
}

/*

menu
___________________*/
.header input {
  display: none;
}

ul.menu {
  display: flex;
  width: 100%;
  justify-content:center;
  align-items: center;
  margin: 0;
  padding: 0;
}

ul.menu li {
  list-style-type: none;
  position: relative;
}

/*
menu added
____________*/
ul.menu li {
  border-left:1px solid #fff;

}
ul.menu li:last-child{
  border-right:1px solid #fff;

}

ul.menu li a,
.toggle_label a {
  color: var(--color-white);
  text-align:center;
  display: block;
  font-size: 1.7rem;
  letter-spacing: 4px;
  font-weight:normal;
  padding: 0 32px;
  vertical-align: bottom;
}

ul.menu li a span,
.toggle_label span {
  display: block;
  color: #aaa;
  font-size: 70%;
}

ul.toggle-inner {
  position: absolute;
  width: 250px;
  margin: 0;
  padding: 0;
}

ul.toggle-inner li {
  width: 100%;
  margin: 0;
  padding: 0;
}

ul.toggle-inner li a {
  padding: 0;
}

@media screen and (min-width: 600px) {

  /*--/*PCのみ----*/
  ul.toggle-inner {
    background-color: var(--color-primary);
    /* for animate */
    opacity: 0;
    line-height: 0;
    display: block;
  }

  ul.menu li.has-child:hover ul.toggle-inner {
    /* for animate */
    opacity: 1;
    line-height: 1.8;
    transition: line-height .2s;
    padding-top: 25px;
  }

  ul.menu li.has-child:hover ul.toggle-inner a {
    padding: 10px;
  }

  .toggle_label {
    cursor: pointer;
  }

  /*___________________________________*/
}



/*
mv
_______________*/
.mv {
  display: flex;
}
.mv img{
  width:100%;
  height: auto;
}
/*
footer
______________________*/
footer {
  width: 100%;
}
.footer_link{
  background-color: #f0f1f3;
  padding:14px 0;
}

.footer_link ul{
  margin:0;
  padding:0;
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.footer_link ul li{
  border-left:1px solid var(--color-primary);
  padding:0 32px;
}
.footer_link ul li:last-child{
  border-right:1px solid var(--color-primary);

}

.footer_link ul li a{
  color:var(--color-primary);
}

.footer_logo{
  text-align: center;
  padding:25px 0;
}
.footer_logo img{
  width:240px;
  height: auto;
}
/*
copy
_________________*/
.copy {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 1.2rem;
  padding: 12px 0;
}

/*
#breadcrumb
________________________*/
#breadcrumb {
  display: block;
  margin: 20px 0;
  text-align: left;
  font-size: 1.3rem;
}

#breadcrumb ul {
  margin: 0;
  padding: 0;
}

#breadcrumb ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline;
  text-align: left;
}

#breadcrumb ul li:before {
  content: " / ";
}

#breadcrumb ul li:first-child:before {
  content: none;
}

#breadcrumb ul li,
#breadcrumb ul li a {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 97%;
  color: #000;
}