@charset "utf-8";

/*========= ページ共通のCSS ===============*/
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}


a {
  color: inherit;
  text-decoration: none;
}

body {
  width: 1300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-family: sans-serif;
  font-size: 13px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

.main {
  padding-bottom: 30px;
}

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1300px;
  height: 45px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  background-color: #24211b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  width: 76px;
  margin-top: 4px;
}


.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu ul li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #f3f3f3;
}


.header-area ul {
  position: relative;
  z-index: 2;
  top: 25px;
  right: 20vw;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin: 0 30px 0 0;
}

/* 小タイトル部分指定 */
.event-title-1 h2 {
  font-size: 23px;
  line-height: 1.1;
  color: #595757;
  background-color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid #595757;
  border-left: 5px solid #595757;
  margin-top: 20px;
  padding-top: 8px;
  padding-left: 15px;
  width: 100%;
}

.event-title-1 h3 {
  font-size: 15px;
  line-height: 1.1;
  color: #595757;
  margin-top: 20px;
  padding-top: 8px;
  padding-left: 15px;
  width: 100%;
}


/* 1300pxで一括変換 */
@media screen and (max-width: 1300px) {

  /* 小タイトル部分指定 */
  .event-title-1 h2 {
    font-size: 1.769vw;
    line-height: 1.1;
    color: #595757;
    background-color: #ffffff;
    padding-bottom: 0.769vw;
    border-bottom: 1px solid #595757;
    border-left: 5px solid #595757;
    margin-top: 1.538vw;
    padding-top: 0.615vw;
    padding-left: 1.154vw;
    width: 100%;
  }

  .event-title-1 h3 {
    font-size: 1.154vw;
    line-height: 1.1;
    color: #595757;
    margin-top: 1.538vw;
    padding-top: 0.615vw;
    padding-left: 1.154vw;
    width: 100%;
  }

}




@media (min-width:621px) and (max-width: 1000px) {

  .header-logo {
    width: 60px;
    margin-top: 4px;
  }


  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-menu ul li {
    margin-left: 10px;
    margin-right: 10px;
  }

  .site-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: #f3f3f3;
  }

}


/* スマホ用0701作成 */

@media screen and (max-width: 620px) {

  .header-logo {
    width: 60px;
    margin-top: 4px;
  }

  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 15px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #24211b;
    color: #f3f3f3;
    height: 40px;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #9c9c96;
    padding-top: 0;
    padding-bottom: 10px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url(../images/common/icon-menu3.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .main {
    padding-top: 50px;
  }
}

/* スマホ用0328作成ここまで */