@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&family=Zen+Old+Mincho&display=swap');
html {
  font-size: 62.5%;
}
/* font-sizeは16pxの62.5%の10px */
body {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
  font-family: "Klee One", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.8;
}
h1, h2, h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}
.article {
  position: relative;
  padding: 7.2rem 0 0 0;
}
.w-12 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.br-sm {
  display: none;
}
.txt-align-r {
  text-align: right;
}
.separater {
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding-top: 3rem;
  margin-bottom: 3rem;
}
/*------------------ scroll animation */
.scroll-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}
.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}
.scroll-in-l {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateX(150px);
}
.is-active-l {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateX(0);
}
.scroll-in-r {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateX(-150px);
}
.is-active-r {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateX(0);
}
/*------------------ header pc */
header {
  margin: 0;
  padding: 0;
}
.header-pc {
  width: 100%;
  height: 7.2rem;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  background: white;
  z-index: 500;
  border-bottom: 1px #ddd solid;
}
.nav-main-pc ul {
  display: flex;
  list-style: none;
}
.nav-main-pc__list {
  display: inline-block;
  margin-right: 2.5rem;
}
.nav-main-pc__list.line {
  padding-bottom: 5px;
  position: relative;
}
.nav-main-pc__list.line::before {
  background: red;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .4s;
}
.nav-main-pc__list.line:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.nav-sns-pc {
  display: flex;
  position: absolute;
  top: 25px;
  right: 20px;
}
.nav-threads {
  height: 20px;
  width: 17px;
  margin-right: 15px;
}
.nav-fb {
  height: 20px;
  width: 20px;
  margin-right: 15px;
}
.nav-x {
  height: 20px;
  width: 20px;
  margin-right: 15px;
}
.nav-insta {
  height: 20px;
  width: 20px;
  margin-right: 15px;
}

/* カスタマイズ */
@media screen and (min-width: 900px) {
    .c-gnav>.menu-item>a .ttl{
        font-size:1.8rem;
    }
    .c-gnav>.menu-item>a:after{
        background-color: red;
        height: 1px;
        bottom:1.5rem;
    }
}
/*------------------ header sm */
.header-sm {
  display: none;
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
  width: 100%;
  height: 7.2rem;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  background: white;
  z-index: 500;
  border-bottom: 1px #ddd solid;
}
.header-sm__logo {
  height: 30px;
  width: 150px;
}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position: absolute;
  right: 2rem;
  top: 1rem;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#overlay-button span {
  height: 2px;
  width: 35px;
  border-radius: 2px;
  background-color: black;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 2px;
  width: 35px;
  border-radius: 2px;
  background-color: black;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #ddd;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}
input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
#overlay {
  height: 100vh;
  width: 100vw;
  background: #ec6451;
  z-index: 2;
  visibility: hidden;
  position: fixed;
  top: 0;
}
#overlay.active {}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}
#overlay ul li a:hover {
  color: #000 !important;
}
.nav-sns-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 0 0;
}
@media screen and (max-width: 1049px) {
    .l-header .header-pc{
        display: flex !important;
    }
    .l-header__inner .l-header__logo{
        display: block !important;
    }
    .l-header__inner .nav-main-pc,.l-header__inner .nav-sns-pc{
        display: none !important;
    }
    .l-header__menuBtn{
        color:#5e5e5e;
    }
    .p-spMenu{
        z-index: 600;
    }
    .p-spMenu__inner{
       width:100vw; 
    }
    .c-widget__title.-spmenu{
        display: none;
    }
    .-img .c-headLogo__link{
        padding:3px 0;
    }
    .c-listMenu.c-listMenu li{
        display: block;
        margin:1em 0;
        text-align: center;
        font-size:1.2em;
    }
    .c-listMenu a:before{
        display: none;
    }
    .c-spnav a{
        border-bottom: none;
    }
  .header-sm {
    display: block;
  }
}
/*------------------ footer */
footer {
  width: 100%;
  padding: 30px;
  border-top: 1px solid #ddd;
  font-family: "biz-udgothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.nav-footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 70px;
}
.nav-footer__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-footer__list-item {
  font-size: 1.4rem;
  display: inline-block;
  margin: 0;
  padding: 0 2.8rem 0 0;
}
.nav-footer__sns {
  display: flex;
  position: relative;
  top: 6px;
  right: 0px;
}
.nav-footer__sns img {
  width: 1.8rem;
  height: auto;
}
.footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  width: 20%;
  height: auto;
}
.footer-address {
  width: 60%;
  font-size: 1.4rem;
}
.footer-privacy {
  font-size: 1.4rem;
}
@media screen and (max-width: 949px) {
  .br-sm {
    display: inline;
  }
  .nav-footer {
    display: block;
    margin: 50px auto;
  }
  .nav-footer__list {
    padding: 0 0 0 2rem;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
  .nav-footer__list-item {
    width: 14rem;
    margin-right: 2rem;
    text-align: left;
    border-bottom: solid #ddd 1px
  }
  .nav-footer__sns {
    justify-content: center;
  }
  .footer {
    display: block;
    text-align: center;
  }
  .footer-logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
  }
  .footer-address {
    width: 90%;
    margin: 0 auto 30px;
  }
  .footer-privacy {
    width: 90%;
    margin: 0 auto;
  }
}
.news-list {
  display: flex;
  border-bottom: 1px #ddd dotted;
  padding: 1.8rem 0;
}
.news-date {
  width: 20%;
}
.news-txt {
  padding: 0 2rem;
  width: 80%;
}
.news-txt a {
	text-decoration: underline!important;
}
.news-more {
  display: block;
  margin: 1rem;
  text-align: right;
  font-size: 1.4rem;
  color: black;
}
.news-link {
	display: inline;
	text-decoration: underline;
	color: #B10002;
}
.news-more::before {
  background: red;
  content: '';
  display: inline-block;
  position: relative;
  top: -0.5rem;
  width: 20px;
  height: 2px;
  margin-right: 0.5rem;
}
.news-more:hover::before {
  width: 30px;
  transition: 0.5s;
}
@media screen and (max-width: 949px) {
  .news-list {
    display: block;
  }
  .news-date, .news-txt {
    width: 100%;
    padding: 0;
  }
  .news-date {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 749px) {
  .footer-address, .footer-privacy {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 449px) {
  body {
    font-size: 1.6rem;
  }
}