@charset "UTF-8";
/* CSS Document */

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: bold;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6, th, td, li, p, figcaption {
  font-feature-settings: 'palt' on;
  letter-spacing: 0.08rem;
}

ol, ul { list-style: none; }

strong {
  font-weight: bold;
  font-weight: 400;
}

body {
  color: #333;
  font-size: 16px;
  font-family: "Noto Sans JP", "PingFang SC", "Hiragino Sans", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: #999;
  transition: opacity 0.3s;
}

a:hover { opacity: 0.7; }

img { vertical-align: bottom; }

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

*:focus { outline: none; }

@media screen and (min-width:501px) {
  body {
    min-width: 1280px;
  }
}

/* # common
   -------------------------------------------------------------------------- */
img {
  width: 100%;
  height: auto;
}

@font-face {
  font-family: 'Marcellus';
  src: url('/fonts/marcellus.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.en {
  font-family: 'Marcellus', serif;
  font-weight: 400;
}

.point-txt01 { color: #F47B28; }

.marker {
  background: linear-gradient(transparent 60%, #ffed8c 60%)
}

.ib { display: inline-block;}

@media screen and (max-width:500px) {
  .sp-none { display: none; }
}
@media screen and (min-width:501px) {
  .pc-none { display: none; }
}

/* # header
   -------------------------------------------------------------------------- */
.l-header {
  padding: 15px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  width: 100%;
}

.header-logo {
  width: 64px;
}


/* # header-lang
   ------------------------------------- */
.header-right {
  display: flex;
  gap: 30px;
}

/* # header-lang
   ------------------------------------- */
.header-lang {
  display: flex;
  align-items: center;
}

.header-lang-item {
  font-size: 12px;
  line-height: 1.2;
}
.header-lang-item + .header-lang-item {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ddd;
}
.header-lang-item a {
  color: #999;
  text-decoration: none;
}

/* # header-menu
   ------------------------------------- */
/* header-btn */
.header-btn {
  position: relative;
  width: 20px;
  height: 20px;
  font-size: 0;
  text-align: center;
  vertical-align: middle;
  z-index: 1001;
  cursor: pointer;
}

.header-btn-ico,
.header-btn-ico:before,
.header-btn-ico:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #333;
  transition: 0.3s;
}

.header-btn-ico {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.header-btn-ico:before {
  top: -8px;
  left: 0;
}
.header-btn-ico:after {
  bottom: -8px;
  left: 0;
}

.header-btn.btn-active .header-btn-ico { background-color: transparent; }
.header-btn.btn-active .header-btn-ico:before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}

.header-btn.btn-active .header-btn-ico:after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* heqder-nav */
.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  bottom: 0;
  background-color: rgba(51,51,51,0.8);
  transform: translateX(100%);
  transition: 0.3s;
  z-index: 1000;
}
.header-nav.menu-active { transform: translateX(0); }

.header-nav nav {
  overflow: scroll;
  width: 100%;
  height: 100%;
  padding: 60px 0;
}

.header-list {
  padding: 0 20px;
}

.header-list-item {
  
}

.header-list-item a {
  color: #fff;
  font-size: 60px;
  line-height: 1.5;
  text-decoration: none;
}
.header-list-item.mini {
  margin-top: 30px;
}
.header-list-item.mini a {
  font-size: 16px;
}

@media screen and (min-width:501px) {
  .header-list {
    padding: 0 80px;
  }
  .header-list-item a {
    font-size: 120px;
  }
  .header-list-item.mini a {
    font-size: 32px;
  }
}

/* # footer
   -------------------------------------------------------------------------- */
.l-footer {
  padding: 60px 20px 30px;
}

.footer-logo {
  max-width: 123px;
  margin: 0 auto 30px;
}

.footer-list {
  display: flex;
  gap: 30px;
  justify-content: center; 
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-list-item {
  font-size: 12px;
  line-height: 1.5;
}
.footer-list-item a {
  color: #333;
  text-decoration: none;
}

.footer-copy small {
  display: block;
  color: #999;
  font-size: 10px;
  text-align: center;
}

/* # 凡庸クラス
   -------------------------------------------------------------------------- */
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after { clear: both; }
.clearfix { zoom: 1; } /* For IE 6/7 */

.tr { text-align: right!important; }
.tl { text-align: left!important; }
.tc { text-align: center!important; }

.m0 { margin: 0!important; }
.mt0 { margin-top: 0!important; }
.mb0 { margin-bottom: 0!important; }
.ml0 { margin-left: 0!important; }
.mr0 { margin-right: 0!important; }

.p0 { padding: 0!important; }
.pt0 { padding-top: 0!important; }
.pb0 { padding-bottom: 0!important; }
.pl0 { padding-left: 0!important; }
.pr0 { padding-right: 0!important; }

.ib { display: inline-block!important; }