@charset "UTF-8";

:root {
  --color1: #404040;
  --color2: #568b00;
  --color3: #D9D9D9;
  --color4: #fff;
  --color5: #f7f7f0;
  --color6: #e41d24;
  --hr-color: #ccc;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .05em;
  color: var(--color1);
  background-color: var(--color4);
  /* -webkit-font-smoothing: antialiased; */
  /* -moz-osx-font-smoothing: grayscale; */
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: var(--color1);
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: var(--color1);
}
a:link {
  color: var(--color1);
}
a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  transition: all .3s;
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--hr-color);
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
::placeholder {
  color: #999;
}
.noscroll {
  overflow: hidden;
}

/* 共通 */
.ank {
  padding-top: 100px;
  margin-top: -100px;
}
.wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.section {
  padding: 60px 0;
}
.flex {
	display: flex;
}
.flex_reverse {
	flex-direction: row-reverse;
}
.font_bold {
	font-weight: 700;
}
.sectitle {
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .ank {
    padding-top: 60px;
    margin-top: -60px;
  }
  .section {
    padding: 40px 0;
  }
}

/* ヘッダー */
.header {
  width: 100%;
  height: 100px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.header .logo {
  width: 140px;
  box-sizing: border-box;
}
.header .inn {
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5%;
}
.header .list {
  gap: 20px;
}
.header .item a {
  font-size: 16px;
  display: inline-block;
}
@media screen and (max-width:768px) {
  .header {
    height: 60px;
  }
  .header .inn {
    padding: 0 5%;
  }
  .header .logo {
    width: 100px;
  }
  .header .list {
    display: none;
  }
}
@media screen and (min-width:961px) {
  .header .item a {
    position: relative;
    transition: all .3s;
  }
  .header .item a:hover {
    color: var(--color2);
  }
  .header .item a:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--color2);
    display: block;
    position: absolute;
    bottom: -5px;
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .header .item a:hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

/* ドロワーメニュー */
.nav_wrapper {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity .5s ease, visibility .5s ease;
  display: block;
}
.nav_wrapper.fade {
  opacity: 1;
  visibility: visible;
}
.header_nav {
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--color1);
  box-sizing: border-box;
  padding: 60px 0 100px;
  overflow-y: scroll;
  margin-left: auto;
  position: relative;
}
.header_nav .navarea {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.header_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.nav_item {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.nav_item a {
  font-size: 14px;
  color: var(--color4);
  display: inline-block;
}
.nav_item a span {
  font-size: 20px;
  letter-spacing: .05em;
  margin-bottom: 5px;
  display: block;
  transition: all .3s;
}
.nav_item a:hover span {
  color: var(--color6);
}
.header_nav .bnrbox {
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.header_nav .bnrlink {
  width: 100%;
  box-sizing: border-box;
}
.burger_btn {
  width: 60px;
  height: 60px;
  background-color: var(--color1);
  border: none;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  transition: all .3s;
  cursor: pointer;
}
.bar {
  width: 30px;
  height: 2px;
  background-color: var(--color4);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
  display: block;
}
.bar_top {
  top: 20px;
}
.burger_btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
}
.bar_mid {
  top: 50%;
}
.burger_btn.close .bar_mid {
  opacity: 0;
}
.bar_bottom {
  bottom: 18px;
}
.burger_btn.close .bar_bottom {
  transform: translate(-50%, -10px) rotate(-45deg);
}
@media screen and (max-width:768px) {
  .header_nav {
    max-width: none;
  }
}
@media screen and (min-width:769px) {
  .burger_btn {
    display: none;
  }
}

/* フッター */
.footer {
  background-color: var(--color1);
  padding: 50px 0;
}
.footer .item_little a {
  font-size: 12px;
}
.footer .inn {
  align-items: flex-start;
  justify-content: space-between;
}
.footer .logo {
  width: 200px;
}
.footer .box {
  width: 40%;
  box-sizing: border-box;
}
.footer .childbox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer .childbox .list {
  width: 60%;
  box-sizing: border-box;
}
.footer .childbox .list:first-child {
  width: 30%;
}
.footer .childbox .item {
  margin-bottom: 20px;
}
.footer .childbox .list_right .item {
  margin-bottom: 10px;
}
.footer .childbox .item:last-child {
  margin-bottom: 0;
}
.footer .childbox .item a {
  color: var(--color4);
  display: inline-block;
  position: relative;
}
.footer .childbox .item a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.footer .childbox .item a:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer .childbox .list_right .item .txt {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 5px;
  margin-bottom: 3em;
}
.footer .databox {
  border-top: solid 1px var(--color4);
  padding-top: 40px;
  margin-top: 40px;
}
.footer .databox .txt {
  font-size: 14px;
  color: var(--color4);
  margin-bottom: 10px;
}
.footer .pictbox {
  align-items: center;
  margin-bottom: 3rem;
}
.footer .pictbox .instalink {
  margin-left: 40px;
}
.footer .copyright {
  font-size: 12px;
  color: var(--color4);
}
.footer .childtxt {
  text-align: justify;
  color: var(--color4);
}
@media screen and (max-width:768px) {
  .footer .inn {
    display: block;
  }
  .footer .logo {
    width: 130px;
    margin: 0 auto 40px;
  }
  .footer .box {
    width: 100%;
  }
  .footer .childbox .list,
  .footer .childbox .list:first-child {
    width: 50%;
  }
  .footer .childbox .item {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .footer .childbox .list_right .item .txt {
    font-size: 12px;
  }
  .footer .item_little a {
    font-size: 11px;
  }
  .footer .databox {
    display: flex;
    justify-content: center;
  }
  .footer .pictbox .pict {
    width: 180px;
  }
  .footer .pictbox .instalink {
    margin-left: 20px;
  }
  .footer .copyright {
    font-size: 11px;
    text-align: center;
  }
  .footer .childtxt {
    font-size: 13px;
    margin-top: 40px;
  }
}
@media screen and (min-width:769px) {
  .footer .wrap {
    width: calc(100% - 160px);
    max-width: none;
    position: relative;
  }
  .footer .childtxt {
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

/* ページタイトル */
.pagetitlebox {
  margin-bottom: 40px;
}
.pagetitlebox .title {
  font-size: 40px;
  position: relative;
}
.pagetitlebox .title::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: var(--color2);
  display: block;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .pagetitlebox .title {
    font-size: 30px;
  }
  .pagetitlebox .title::after {
    width: 50px;
    margin-top: 10px;
  }
}

/* アニメーション */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}

/* フェードイン */
.fadein {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}