ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 300;
  line-height: 1.4;
}

p {
  margin: 0;
}

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

.text--center {
  display: block;
  margin: auto;
  text-align: center;
}

.text--bold {
  font-weight: 600;
}

.col--grid {
  margin-top: 1em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

html {
  min-height: 100%;
}

.btn-link {
  margin-top: 2em;
  padding: 10px 65px;
  position: relative;
  display: inline-block;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #727171;
  transition: opacity 0.3s;
}

.btn-link:hover {
  opacity: 0.7;
}

.btn-link::after {
  content: "\e5e1";
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: "Material Icons";
  vertical-align: middle;
  transform: translateY(-50%);
}

.l-header {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-family: "Frank Ruhl Libre", "Shippori Mincho", serif;
}

body.en {
  background: #efefef;
  font-size: 14px;
  color: #000;
}

.font-frank {
  font-family: "Frank Ruhl Libre", serif;
}

.font-shippori {
  font-family: "Shippori Mincho", serif;
}

.l-content {
  padding: 0 50px;
  min-height: 100vh;
  box-sizing: border-box;
  display: grid;
  grid-template-areas: "side body";
  grid-template-columns: 400px 1fr;
}

.l-content-side {
  grid-area: side;
}

.l-content-side__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.l-content-side__nav .logo {
  margin-bottom: 50px;
}

.l-content-side__nav .logo img {
  height: 56px;
}

.l-content-side__nav .logo a {
  position: relative;
}

.l-content-side__nav .logo a::after {
  position: absolute;
  right: -80px;
  bottom: -8px;
  content: "";
  display: block;
  width: 80px;
  height: 9px;
  background: url(../images/common/logo-text.svg) center/100% no-repeat;
}

.l-content-side__nav nav {
  font-size: 18px;
  line-height: 2;
}

.l-content-side__nav nav li {
  cursor: pointer;
}

.l-content-side__nav nav li a {
  opacity: 0.5;
}

.l-content-side__nav nav li a:hover {
  opacity: 1;
  transition: opacity 0.3s;
}

.l-content-side__nav nav li.current a {
  opacity: 1;
}

.l-content-body {
  padding: 70px 0 140px;
  grid-area: body;
  min-width: 700px;
  position: relative;
  background: #000;
}

.l-content-body__heading {
  border-bottom: 1px solid #727171;
  padding-bottom: 1em;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
}

.l-content-body__heading .heading-title {
  padding-right: 2em;
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
}

.l-content-body .heading-category {
  font-size: 13px;
}

.l-content-body .heading-category ul {
  display: flex;
  flex-wrap: wrap;
}

.l-content-body .heading-category ul li {
  margin-right: 1.5em;
  opacity: 0.5;
  line-height: 1.7;
  cursor: pointer;
}

.l-content-body .heading-category ul li:hover {
  opacity: 1;
  transition: opacity 0.3s;
}

.l-content-body .heading-category ul li::before {
  margin-right: 2px;
  content: "#";
  font-size: 11px;
  vertical-align: top;
}

.l-content-body .heading-category ul li.current {
  opacity: 1;
}

.l-content-pagenation {
  margin-top: 30px;
  font-size: 14px;
}

.l-content-pagenation::after {
  content: "";
  clear: both;
  display: block;
}

.l-content-pagenation-prev {
  float: left;
}

.l-content-pagenation-prev a {
  position: relative;
  padding-left: 25px;
}

.l-content-pagenation-prev a::before {
  content: "\e2ea";
  position: absolute;
  top: 50%;
  left: 0;
  font-family: "Material Icons";
  vertical-align: middle;
  transform: translateY(-50%);
}

.l-content-pagenation-next {
  float: right;
}

.l-content-pagenation-next a {
  position: relative;
  padding-right: 25px;
}

.l-content-pagenation-next a::before {
  content: "\e5e1";
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Material Icons";
  vertical-align: middle;
  transform: translateY(-50%);
}

footer .copy {
  padding-bottom: 2em;
  font-size: 12px;
  text-align: center;
}

.en .l-content-body {
  background: #efefef;
}

.l-content-news h2,
.l-content-news h3 {
  margin-bottom: 1em;
  font-size: 1.5em;
}

.l-content-news section {
  padding: 60px 0 0;
}

.l-content-news section.border--top {
  margin-top: 60px;
  border-top: 1px solid #727171;
}

.l-content-news img {
  margin-bottom: 20px;
  display: block;
}

.l-content-news img.img--inline {
  display: inline-block;
  vertical-align: top;
}

.l-content-news ul.news--flex {
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  transform: translateX(-30px);
}

.l-content-news ul.news--flex::after {
  margin-top: 40px;
  position: relative;
  content: "";
  width: 100%;
  height: 1px;
  background: #727171;
  left: 30px;
  width: calc(100% - 30px);
}

.l-content-news ul.news--flex li {
  margin: 0 0 20px 30px;
  padding: 0;
  border-bottom: none;
  width: 280px;
}

.l-content-news ul.news--flex li .l-content-news__item-thumb {
  width: 100%;
}

.l-content-news ul.news--flex li .l-content-news__item-thumb a,
.l-content-news ul.news--flex li .l-content-news__item-thumb span {
  height: 180px;
}

.l-content-news__item-thumb, .l-content-news__item--flex-thumb {
  width: 320px;
  flex-shrink: 0;
}

.l-content-news__item-thumb > a,
.l-content-news__item-thumb > span, .l-content-news__item--flex-thumb > a,
.l-content-news__item--flex-thumb > span {
  position: relative;
  display: block;
  width: 100%;
  height: 215px;
  overflow: hidden;
  border-radius: 6px;
}

.l-content-news__item-thumb > a img,
.l-content-news__item-thumb > span img, .l-content-news__item--flex-thumb > a img,
.l-content-news__item--flex-thumb > span img {
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -50%;
  max-width: 100%;
  min-width: 100%;
  transition: transform 0.5s;
}

.l-content-news__item-thumb > a img:hover,
.l-content-news__item-thumb > span img:hover, .l-content-news__item--flex-thumb > a img:hover,
.l-content-news__item--flex-thumb > span img:hover {
  transform: scale(1.1);
}

.l-content-news__item-category, .l-content-news__item--flex-category {
  margin-top: 0.5em;
}

.l-content-news__item-category a,
.l-content-news__item-category span, .l-content-news__item--flex-category a,
.l-content-news__item--flex-category span {
  margin-right: 1em;
}

.l-content-news__item-category a::before,
.l-content-news__item-category span::before, .l-content-news__item--flex-category a::before,
.l-content-news__item--flex-category span::before {
  margin-right: 2px;
  content: "#";
  font-size: 11px;
  vertical-align: top;
}

.l-content-news__item-body.new::before, .l-content-news__item--flex-body.new::before {
  margin: 0 10px 7px 0;
  padding: 0 10px;
  display: inline-block;
  font-size: 12px;
  line-height: 19px;
  content: "NEW";
  color: #fff;
  background: #ff0000;
}

.l-content-news__item-body-title, .l-content-news__item--flex-body-title {
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.l-content-news__item--flex {
  display: flex;
}

.l-content-news__item--flex .l-content-news__item-body {
  padding-left: 40px;
}

.l-content-news__item--flex .l-content-news__item-body-title {
  font-size: 16px;
}

.l-content-news__page {
  padding: 70px 0;
  font-size: 13px;
  border-bottom: 1px solid #727171;
}

.l-content-news__page p {
  margin: 0 0 1em;
}

.l-content-news__item-category {
  font-size: 12px;
}

.news-flex ul {
  padding: 0 0 10px;
  max-width: 850px;
}

.news-flex ul.col4 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.news-flex ul.col4 li {
  margin-right: 10%;
}

.news-flex ul.col3 {
  display: grid;
  grid-template-columns: 33.333% 33.333% 33.333%;
}

.news-flex ul.col3 li {
  margin-right: 8%;
}

.news-flex ul.col2 {
  display: grid;
  grid-template-columns: 50% 50%;
}

.news-flex ul.col2 li {
  margin-right: 5%;
}

.l-content-news__item--flex {
  padding: 0 0 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #727171;
}

.l-content-news__item--flex:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
    line-height: 1.7;
  }
  .l-header {
    padding: 22px 20px 0;
    display: block;
  }
  .l-header .sp-logo a {
    position: relative;
    display: block;
  }
  .l-header .sp-logo a::after {
    position: absolute;
    left: 250px;
    bottom: 6px;
    content: "";
    display: block;
    width: 70px;
    height: 7px;
    background: url(../images/common/logo-text.svg) center/100% no-repeat;
  }
  .l-header img {
    display: block;
    width: 250px;
  }
  .l-header__menuBtn {
    padding: 14px 12px;
    position: fixed;
    top: 0;
    right: 0;
    height: 24px;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 99;
  }
  .l-header__menuBtn__icon {
    position: relative;
    top: 11px;
    width: 30px;
    height: 1px;
    background-color: #fff;
  }
  .l-header__menuBtn__icon::before {
    position: absolute;
    top: -11px;
    right: 0;
    width: 30px;
    content: "";
    height: 1px;
    background-color: #fff;
    transition: top 0.3s 0.3s;
  }
  .l-header__menuBtn__icon::after {
    position: absolute;
    bottom: -11px;
    right: 0;
    content: "";
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: bottom 0.3s 0.3s;
  }
  .l-header__menuBtn__icon-close {
    position: relative;
    top: 12px;
    transform: translateY(-2px);
    width: 30px;
    height: 1px;
    background: #fff;
  }
  .l-header__menuBtn__icon-close::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    content: "";
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
    transform: rotate(0deg);
    z-index: 1;
    visibility: hidden;
  }
  .l-header__menuBtn__icon-close:after {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 30px;
    height: 1px;
    background-color: #fff;
    transition: 0.3s;
    transform: rotate(0deg);
    z-index: 1;
    visibility: hidden;
  }
  .l-header__gnav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 98;
    height: 100%;
    pointer-events: none;
    visibility: hidden;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.33s, transform 0.5s cubic-bezier(0.33, 0, 0, 1);
    transform: translateY(-30px);
  }
  .l-header__gnav > ul {
    padding: 180px 30px;
    display: block;
    height: 100%;
    max-height: 100%;
    overflow: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    text-align: center;
  }
  .l-header__gnav > ul > li:not(:first-child) {
    margin-top: 2.6rem;
  }
  .l-header__gnav > ul a {
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
  }
  .l-header__gnav-logo {
    padding: 22px 20px 0;
  }
  .l-header__gnav-logo a {
    position: relative;
  }
  .l-header__gnav-logo a::after {
    position: absolute;
    left: 250px;
    bottom: 6px;
    content: "";
    display: block;
    width: 70px;
    height: 7px;
    background: url(../images/common/logo-text.svg) center/100% no-repeat;
  }
  .l-header__gnav nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    line-height: 2.5;
    text-align: center;
  }
  .l-header__gnav nav li {
    cursor: pointer;
  }
  .l-header__gnav nav li a {
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  .l-header__gnav nav li a:hover {
    opacity: 1;
  }
  .l-header__gnav nav li.current a {
    opacity: 1;
  }
  .l-header.is-menu-open .l-header__menuBtn__icon::before {
    transition: top 0.3s;
    top: 0;
  }
  .l-header.is-menu-open .l-header__menuBtn__icon::after {
    transition: bottom 0.3s;
    bottom: 0;
  }
  .l-header.is-menu-open .l-header__menuBtn__icon-close {
    transition: 0.1s 0.3s;
    background: #000;
  }
  .l-header.is-menu-open .l-header__menuBtn__icon-close::before {
    visibility: visible;
    transition: 0.3s 0.3s;
    transform: rotate(45deg);
  }
  .l-header.is-menu-open .l-header__menuBtn__icon-close::after {
    visibility: visible;
    transition: 0.3s 0.3s;
    transform: rotate(-45deg);
  }
  .l-header.is-menu-open .l-header__gnav {
    overscroll-behavior-y: contain;
    pointer-events: all;
    visibility: visible;
    opacity: 100%;
    transform: translate(0);
  }
  .btn-link {
    margin-top: 1.5em;
    padding: 8px 40px;
    box-sizing: border-box;
    width: 100%;
    font-size: 13px;
    text-align: center;
  }
  .l-content {
    padding: 0 20px;
    display: block;
    min-height: inherit;
  }
  .l-content-body {
    padding: 15% 0;
    min-width: inherit;
  }
  .l-content-side {
    display: none;
  }
  .l-content-body__heading .heading-title {
    font-size: 20px;
    flex-shrink: inherit;
  }
  .l-content-body .heading-category ul li {
    font-size: 12px;
  }
  .l-content-body .heading-category ul li::before {
    font-size: 10px;
  }
  .l-content-pagenation {
    font-size: 12px;
  }
  .l-content-pagenation .l-content-pagenation-prev {
    margin-bottom: 10px;
  }
  footer {
    padding: 0 20px;
  }
  footer .copy {
    font-size: 10px;
  }
  .en .l-header__gnav {
    background: #efefef;
  }
  .en .l-header.is-menu-open .l-header__menuBtn__icon-close {
    background: #777;
  }
}

@media screen and (max-width: 414px) {
  footer .copy {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 768px) {
  .l-content-news section {
    padding: 15% 0 0;
  }
  .l-content-news ul.news--flex {
    padding-top: 7%;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 4%);
    transform: none;
  }
  .l-content-news ul.news--flex li {
    margin: 0 4% 3% 0;
    padding: 0;
    border-bottom: none;
    width: 46%;
  }
  .l-content-news ul.news--flex li .l-content-news__item-thumb a,
  .l-content-news ul.news--flex li .l-content-news__item-thumb span {
    padding-top: 66%;
    height: 0;
    border-radius: 3px;
  }
  .l-content-news ul.news--flex::after {
    margin-top: 5%;
    position: relative;
    content: "";
    width: 100%;
    height: 1px;
    background: #727171;
    left: 0;
    width: calc(100% - 4%);
  }
  .l-content-news__item--flex {
    display: block;
  }
  .l-content-news__item--flex .l-content-news__item-body {
    padding-left: 0;
  }
  .l-content-news__item--flex .l-content-news__item-body-title {
    margin-bottom: 0.5em;
    font-size: 15px;
    line-height: 1.4;
  }
  .l-content-news__item-thumb,
  .l-content-news__item--flex-thumb {
    margin-bottom: 1em;
    width: 100%;
  }
  .l-content-news__item-thumb {
    margin-bottom: 0.5em;
  }
  .l-content-news__item-thumb > a,
  .l-content-news__item-thumb > span,
  .l-content-news__item--flex-thumb > a,
  .l-content-news__item--flex-thumb > span {
    padding-top: 66%;
    height: 0;
    border-radius: 5px;
  }
  .l-content-news__item-body {
    padding-left: 0;
  }
  .l-content-news__item-body-title {
    font-size: 12px;
  }
  .l-content-news__item-category {
    font-size: 11px;
  }
  .l-content-news__item-body.new::before,
  .l-content-news__item--flex-body.new::before {
    font-size: 10px;
    line-height: 16px;
  }
  .l-content-news__item-category a::before,
  .l-content-news__item-category span::before,
  .l-content-news__item--flex-category a::before,
  .l-content-news__item--flex-category span::before {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-content-news__item--flex {
    padding: 0 0 15%;
    margin-bottom: 15%;
  }
}
/*# sourceMappingURL=sourcemaps/home.css.map */
