@charset 'UTF-8';

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  width: 100%;
}

ul {
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
}

.aln_l {
  text-align: left !important;
}

.aln_c {
  text-align: center !important;
}

.aln_r {
  text-align: right !important;
}

h3 {
  line-height: 1.7em;
}

/* responsive */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* header */

header {
  background-color: #eca100;
}

.hd_top {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  height: 139px;
  display: flex;
  position: relative;
  background: #eca100 url(../img/hd_bg_2023.png) no-repeat center;
}

.hd_logo {
  width: 240px;
  position: absolute;
  top: 27px;
  left: calc(50% - 120px);
}

.hd_catch {
  width: 180px;
  position: absolute;
  top: 0;
  left: 0;
}

.hd_mkb {
  width: 120px;
  position: absolute;
  top: 0;
  right: 0;
}

.hd_nav {
  background-color: #261a16;
}

.hd_nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 1em 1em;
}

.hd_nav a:hover {
  background-color: rgba(255, 255, 255, .2)
}

.hd_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hd_nav ul li {
  margin: 0;
}

@media screen and (max-width: 768px) {
  header {
    background-color: #eca100;
  }
  
  .hd_top {
    margin: 0 auto;
    height: inherit;
    padding: 2%;
    background: none;
  }
  
  .hd_logo {
    width: 30%;
    position: inherit;
    top: inherit;
    left: inherit;
    margin: 0 auto;
  }
  
  .hd_catch {
    display: none;
  }
  
  .hd_mkb {
    display: none
  }

  .hd_nav {
    background-color: #261a16;
  }
  
  .hd_nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 1em;
  }
  
  .hd_nav a:hover {
    background-color: rgba(255, 255, 255, .2)
  }
  
  .hd_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hd_nav ul li {
    margin: 0 2em;
  }
}

/* main */


/* footer */

footer {
  width: 100%;
  padding: 30px 0;
  background-color: #261a16;
}

footer a:hover {
  opacity: .6;
}

.copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  margin-top: 10px;
  padding-bottom: 12px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 10px 0;
  }
}

/*  */

.burger-btn {
  display: none;
}

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

.burger-btn {
  position: fixed;
  z-index: 9000;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  border: none;
  background: rgba(38,26,22, .8);
}

.bar {
  position: absolute;
  left: 50%;
  display: block;
  width: 40px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 10px;
  background-color: #fff;
}

.bar_top {
  top: 12px;
  transition: transform .3s;
}

.bar_mid {
  top: 50%;
  transition: opacity .3s;
  transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 12px;
  transition: transform .3s;
}

.burger-btn.close .bar_top {
  transition: transform .3s;
  transform: translate(-50%, 17px) rotate(45deg);
}

.burger-btn.close .bar_mid {
  transition: opacity .3s;
  opacity: 0;
}

.burger-btn.close .bar_bottom {
  transition: transform .3s;
  transform: translate(-50%, -15px) rotate(-45deg);
}

/*  */

.hd_nav {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(38,26,22, .8);
}

.hd_nav ul {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.hd_nav ul li {
  font-size: 16px;
  line-height: 1.2em;
  margin: 1.2em 0;
  text-align: center;
}
}

/* pagetopへ */
.pgtop {
  position: fixed;
  z-index: 5;
  right: 100px;
  bottom: 20px;
}

.pgtop a {
  display: block;
  width: 80px;
  height: 80px;
  background-color:rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  position: relative;
}

.pgtop a:hover {
  opacity: .8;
}

.pgtop a::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 20px);
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .pgtop {
    right: 20px;
    bottom: 20px;
  }

  .pgtop a {
    display: block;
    width: 50px;
    height: 50px;
  }

  .pgtop a::after {
    width: 20px;
    height: 20px;
    top: calc(50% - 5px);
    left: calc(50% - 10px);
  }
}
