@charset 'UTF-8';

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'メイリオ', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', sans-serif;
}

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;
}

h1 {
  font-size: 64px;
}

.kaishi h2 {
  font-size: 24px;
  line-height: 150%;
}

.voice h2 {
  font-size: 36px;
}

.saitaku h3 {
  font-size: 24px;
  line-height: 150%;
}

.kingaku h3 {
  font-size: 24px;
  line-height: 150%;
}

.kingaku p {
  margin: 0;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
}

p {
  font-size: 18px;
  line-height: 175%;
}

.kingaku p {
  font-size: 24px;
  line-height: 150%;
}



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

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1280px) {
  h1 {
    font-size: 36px;
  }
  p {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  .kaishi h2 {
    font-size: 20px;
  }
  .voice h2 {
    font-size: 20px;
  }
  .saitaku h3 {
    font-size: 20px;
  }
  .kingaku h3 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
  .kingaku p {
    font-size: 20px;
  }
}






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

.sp {
  display: none;
}

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

  .sp {
    display: block !important;
  }
}

/* header */

header {
}

.hd_top {
  margin: 0 auto;
  padding: 3px 0 8px;
  width: 100%;
  max-width: 1440px;
  /* height: 82px; */
  display: flex;
  position: relative;
}

.hd_logo {
  width: 256px;
  margin-top: 5px;
}

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

/* main */


/* footer */

footer {
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft_logo {
  width: 256px;
}

.copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  width: 50%;
  text-align: center;
  color: #1a4e6f;
}

.ft_nav {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  width: 20%;
  text-align: right;
  color: #1a4e6f;
}

.ft_nav a {
  color: #1a4e6f;
}

footer a:hover {
  opacity: .6;
}

@media screen and (max-width: 1440px) {
  .hd_top, footer {
    padding-right: 10px;
    padding-left: 10px;
  }

  .hd_logo, .ft_logo {
    width: 200px;
  }
  
  .copyright {
    font-size: 14px;
  }
  
  .ft_nav {
    font-size: 18px;
  }
}

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

  .hd_logo, .ft_logo {
    width: 100px;
  }
  
  .copyright {
    font-size: 10px;
  }
  
  .ft_nav {
    font-size: 14px;
  }
}

/*  */

.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);
  }
}
