@charset "UTF-8";

html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  letter-spacing: .5px;
  scroll-behavior: smooth;
}

body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, header, main, nav, footer {
  margin: 0;
  padding: 0;
  line-height: 2;
  color: #333333;
  font-size: 1.3rem;
  /*font-family: "Geometric 415 Lite BT", sans-serif;*/
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

div {
  font-size: 0;
}

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

img {
  border: 0;
  width: 100%;
}

ol, ul, li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

area {
  outline: none;
}

input {
  border-style: none;
}

a {
  color: #333333;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.menu_list a::after, .item_caption a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.menu_list a::after {
  background: #333333;
}
.item_caption.blk a::after {
  background: #333333;
}
.item_caption.wht a::after {
  background: #ffffff;
}
.menu_list a:hover::after, .item_caption a:hover::after {
  transform: scale(1, 1);
}

.f-ja {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.f-en {
  /*font-family: "Geometric 415 Lite BT", sans-serif;*/
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.blc {
  display: block !important;
}

.in-blc {
  display: inline-block;
}

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

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.flex {
  display: flex;
}

.justify-content-flex-start {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-content-center {
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-content-space-between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-content-flex-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.align-items-flex-start {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-items-center {
  -webkit-align-items: center;
  align-items: center;
}

.align-items-flex-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.relative {
  position: relative;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-20 {
  margin-left: 20px;
}

footer {
  padding: 1rem;
  text-align: right;
}