/*
Theme Name:
*/
*{box-sizing: border-box;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, address,
em, img, small, strong, b, i,dl, dt, dd, ol, ul, li, form, label, table, caption,
tbody, tfoot, thead, tr, th, td, article, canvas, footer, header, menu, nav, section,
time, audio, video, figure , button
{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}
input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{-webkit-appearance: none;border-radius: 0;}
body {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  position: relative;
}
small{display: block;}
address{font-style: normal;}
article, footer, header, menu, nav, section {display: block;}
ul {list-style: none; }
a {margin: 0;color: inherit;padding: 0;font-size: 100%;text-decoration: none;vertical-align: baseline;background: transparent;}
a:link{transition: .3s;}
a:link:hover{opacity: 0.7;cursor: pointer;}
table {border-collapse: collapse;border-spacing: 0; }
em, b {font-style: normal; }
img {max-width: 100%;vertical-align: bottom;}
hr {display: block;height: 1px;margin: 0;padding: 0;border: 0;outline: 0; }
input, select {vertical-align: middle;}

:root{
  --red: #BF0101;
  --lightgray: #EDEDED;
  --poppins: 'Poppins', sans-serif;
}
#container{
  margin-top: 75px;
  overflow: hidden;
}
@media screen and (max-width:768px){
  #container{
    margin-top: 50px;
  }
}
/*//////////////////////////////
header
//////////////////////////////*/
header{
  background-color: #fff;
  height: auto;
  padding: 25px 65px 10px;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 102;
}
header h1,header h1 a{
  display: block;
  width: 200px;
}
.globalheader{
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.pcnav{
  width: 100%;
}
.pcnav ul{
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.pcnav li{
}
.pcnav li a{
  display: block;
  padding: 0 20px;
  position: relative;
  letter-spacing: 2px;
  text-align: center;
}
.pcnav li a::after{
  background: var(--red);
  content: "";
  display: flex;
  height: 3px;
  margin: 8px auto 0;
  width: 40px;
}

@media screen and (max-width: 1300px) {
  header{
    padding: 25px 20px 10px;
  }
  .pcnav li a{
    padding: 0 10px;
  }
}
@media screen and (max-width: 1000px) {
  header h1, header h1 a{
    width: 160px;
  }
  .pcnav li a{
    font-size: 12px;
    padding: 0 6px;
  }
  .pcnav li a::after{
    margin: 4px auto 0;
  }
}
@media screen and (max-width: 768px) {
  header{
    left: 0;
    max-width: none;
    padding: 5px 10px;
    height: 50px;
    position: fixed;
  }
  header h1{
    padding: 5px;
  }
  /*sp navi */
  .sp_navBtn{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
  }
  .globalnav_btn{
    display: flex;
    cursor: pointer;
    flex-direction: column;
    height: 50px;
    width: 50px;
  }
  .globalnav_btn p {
    font-size: 12px;
    font-family: var(--garamond);
    text-align: center;
    margin-top: auto;
  }
  .globalnav_btn span {
    background-color: #000;
    display: block;
    height: 2px;
    right: 10px;
    position: absolute;
    width: 30px;
  }
  .globalnav_btn span:nth-of-type(1),
  .globalnav_btn span:nth-of-type(2),
  .globalnav_btn span:nth-of-type(3) {
    transition: .3s;
  }
  .globalnav_btn span:nth-of-type(1) {
    top: 15px;
  }
  .globalnav_btn span:nth-of-type(2) {
    top: 25px;
  }
  .globalnav_btn span:nth-of-type(3) {
    top: 35px;
  }
  .open .globalnav_btn span:nth-of-type(1),
  .open .globalnav_btn span:nth-of-type(3){
    top: 25px;
  }
  .open .globalnav_btn span:nth-of-type(1){
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  .open .globalnav_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .open .globalnav_btn span:nth-of-type(3) {
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
  .sp-menu{
    background-color:#fff;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 800;
    height: calc(100vh - 50px);
    overflow-y: scroll;
  }
  .sp-menu ul{
    padding: 50px 0;
    text-align: center;
  }
  .sp-menu li::after{
    background: var(--red);
    content: "";
    display: block;
    margin: 0 auto 10px;
    height: 1px;
    width: 50px;
  }
  .sp-menu a{
    padding: 30px 20px 4px 20px;
    font-size: 17px;
    line-height: 30px;
    display: block;
    position: relative;
  }
  .pcnav{
    display: none;
  }
}
/* /////////////////////////////
footer
///////////////////////////// */
footer{
  background: var(--lightgray);
  padding: 80px 40px 50px;
  width: 100%;
}
.footer_inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
  margin: auto;
  max-width: 1460px;
}
.footer_logo{
  margin-bottom: 20px;
  display: block;
  max-width: 260px;
  width: 100%;
}
.footer_item02{
  display: flex;
}
.footer_item02 ul{
  margin-left: 80px;
}
.footer_item02 li{
  margin-bottom: 20px;
}
.footer_item02 a{
  font-size: 15px;
  text-decoration: underline;
}
small{
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px){
  footer {
    padding: 50px 20px 30px;
  }

  .footer_item01{
    text-align: center;
    margin: auto;
  }
  .footer_item02{
    justify-content: center;
    margin-top: 40px;
    width: 100%;
  }
  .footer_item02 ul {
    margin-left: 0;
  }
  .footer_item02 ul:first-child {
    margin-right: 40px;
  }
  small {
    font-size: 10px;
  }
}

/* /////////////////////////////
COMMON
///////////////////////////// */
.main_ttl{
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
}
.main_ttl h2{
  align-items: center;
  display: flex;
  font-size: 30px;
  margin-right: 30px;
  letter-spacing: 8px;
}
.main_ttl h2::after,
.main_ttl h2::before{
  content: "";
  display: block;
  height: 34px;
  width: 6px;
}
.main_ttl h2::after{
  background: url(assets/img/common/main_ttl_right.svg)no-repeat center / contain;
  margin-left: 30px;
}
.main_ttl h2::before{
  background: url(assets/img/common/main_ttl_left.svg)no-repeat center / contain;
  margin-right: 30px;
}
.main_ttl h1{
  align-items: center;
  display: flex;
  font-size: 30px;
  margin-right: 30px;
  letter-spacing: 8px;
}
.main_ttl h1::after,
.main_ttl h1::before{
  content: "";
  display: block;
  height: 34px;
  width: 6px;
}
.main_ttl h1::after{
  background: url(assets/img/common/main_ttl_right.svg)no-repeat center / contain;
  margin-left: 30px;
}
.main_ttl h1::before{
  background: url(assets/img/common/main_ttl_left.svg)no-repeat center / contain;
  margin-right: 30px;
}
.main_ttl p{
  font-size: 18px;
  font-family: var(--poppins);
  color: var(--red);
  letter-spacing: 2px;
}

.view_more{
  position: relative;
  margin: auto;
  max-width: 415px;
  width: 100%;
}
.view_more a{
  background:var(--red);
  border: solid 1px var(--red);
  display: block;
  font-size: 24px;
  font-family: var(--poppins);
  line-height: 55px;
  height: 55px;
  letter-spacing: 2px;
  text-align: center;
	color:#fff;
}
.view_more a::after, .view_more a::before {
  background:#fff;
  content: '';
  position: absolute;
  height: 2px;
  right: 20px;
  transition: all .3s;
}
.view_more a::after {
  top: calc(51% - 5px);
  transform: rotate(35deg);
  width: 14px;
}
.view_more a::before {
  top: 51%;
  transform: translateY(-50%);
  width: 50px;
}
.view_more a:hover::after, .view_more a:hover::before {
  right: 10px;
}

@media screen and (max-width: 767px) {
  .view_more{
    max-width: 300px;
  }
  .view_more a{
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }
  .main_ttl{
    justify-content: center;
  }
  .main_ttl h2{
    margin-right: 0;
    margin-bottom: 10px;
  }
  .main_ttl p{
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .main_ttl h2::after{
    margin-left: 20px;
  }
  .main_ttl h2::before{
    margin-right: 20px;
  }
  .view_more a::after, .view_more a::before{
    right: 15px;
  }
  .view_more a::before {
    top: 50%;
    width: 25px;
  }
  .view_more a::after {
    top: calc(50% - 3px);
    width: 7px;
  }
}
div#ips_notice_td {
    display: none;
}