@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');
@import url("slide.css");
@import url("inview.css");

:root {
  --bg-color: #fff;
  --bg-inverse-color: #47443f;
  --content-space: 8.33vw
}

@media screen and (max-width:500px) {
  :root {
    --content-space: 10px
  }
}

@keyframes animation1 {
  0% {
    left: -200px
  }

  100% {
    left: 0
  }
}

@keyframes opa1 {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

body * {
  box-sizing: border-box
}

html,
body {
  font-size: 13px
}

@media screen and (min-width:900px) {

  html,
  body {
    font-size: 15px
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Kiwi Maru", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  -webkit-text-size-adjust: none;
  background: var(--bg-color);
  color: var(--bg-inverse-color);
  line-height: 2;
  overflow-x: hidden
}

figure,
dd,
nav,
ul,
li,
ol {
  margin: 0;
  padding: 0
}

nav ul {
  list-style: none
}

table {
  border-collapse: collapse
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle
}

video {
  max-width: 100%
}

iframe {
  width: 100%
}

input {
  font-size: 1rem
}

section>ol,
section>ul {
  margin-left: 2rem
}

section {
  padding: 0 var(--content-space);
  margin: 3vw 0
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

a {
  color: inherit;
  transition: .3s
}

a:hover {
  filter: brightness(1.1)
}

#container {
  animation: opa1 .2s .4s both;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100dvh
}

header {
  position: relative
}

#logo {
  margin: 0
}

#logo img {
  display: block;
  width: 220px
}

#nav {
  list-style: none;
  margin: 0;
  position: fixed;
  z-index: 99;
  right: 75px;
  top: 0;
  display: flex;
  gap: .5rem;
  font-size: .8rem
}

#nav a {
  text-decoration: none;
  display: block;
  background: #eee;
  border-radius: 0 0 5px 5px;
  padding: 0 1rem
}

#container h2,
.grid-box h4 {
  display: flex;
  flex-direction: column-reverse;
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 400
}

#container h2 span,
#container h4 span {
  font-size: .8rem;
  opacity: .5;
  letter-spacing: .2em
}

.small-screen #menubar {
  animation: animation1 .2s both;
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 100px var(--content-space) 50px;
  background: var(--bg-color);
  color: var(--bg-inverse-color);
  display: none
}

.small-screen #menubar a {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  padding: 1rem 2rem
}

.small-screen #menubar ul ul a {
  border: none;
  padding: 0;
  margin-left: 3.8rem
}

a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  content: "\f078";
  margin-right: .5em
}

a.ddmenu {
  cursor: default
}

#menubar_hdr {
  display: none;
  animation: opa1 0s .2s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: var(--bg-color);
  border-radius: 0 0 0 20px;
  transform-origin: right top;
  transform: scale(1)
}

#menubar_hdr.ham {
  background: var(--bg-color)
}

#menubar_hdr span {
  display: block;
  position: absolute;
  left: 18px;
  width: 35px;
  height: 2px;
  background: var(--bg-inverse-color);
  transition: .3s
}

#menubar_hdr span:nth-of-type(1) {
  top: 24px
}

#menubar_hdr span:nth-of-type(2) {
  top: 34px
}

#menubar_hdr span:nth-of-type(3) {
  top: 44px
}

#menubar_hdr.ham span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg)
}

#menubar_hdr.ham span:nth-of-type(2) {
  opacity: 0
}

#menubar_hdr.ham span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg)
}

.small-screen #menubar_hdr {
  display: flex
}

.list-grid .list * {
  margin: 0;
  padding: 0
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6vw;
  align-items: start;
  line-height: 2
}

.list-grid .list {
  display: grid;
  text-align: center;
  position: relative
}

.list-grid.step .list:nth-of-type(2) {
  margin-top: 30px
}

.list-grid.step .list:nth-of-type(3) {
  margin-top: 60px
}

.list-grid.square .list figure {
  width: 100%;
  aspect-ratio: 1/1
}

.list-grid.square .list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.list-grid h4 {
  font-weight: 500
}

.list-grid p {
  margin-bottom: 1rem !important;
  font-weight: 400;
  font-size: .85rem;
  opacity: .7;
}

.rank-flag {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 3rem;
  height: 3rem;
  font-weight: 700;
  --mask-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,100 L50,70 L0,100 Z' fill='%23000000'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--mask-url);
  mask-image: var(--mask-url);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat
}

.rank1 {
  background: #fddc00;
  color: #111
}

.rank2 {
  background: #c0c0c0;
  color: #fff
}

.rank3 {
  background: #cd7f32;
  color: #fff
}

.grid-box {
  margin-bottom: 5vw
}

section .grid-box {
  margin-left: calc(-1*var(--content-space));
  margin-right: calc(-1*var(--content-space))
}

.grid-box h2 {
  grid-column: 2/12
}

.grid-box h4 {
  margin: 0
}

.grid-box article {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3vw;
  margin-bottom: 5vw;
  grid-auto-flow: dense
}

.grid-box article:last-child {
  margin-bottom: 0
}

.grid-box .image,
.grid-box .text {
  align-self: center;
  position: relative
}

.grid-box .image {
  grid-column: 1/-1
}

.grid-box .text {
  padding: 5rem 0;
  grid-column: 2/12;
}

.grid-box .kazari {
  display: block;
  position: absolute;
  z-index: 99;
  transform: translate(-50%, -50%);
  width: 150px
}

.grid-box .image-wide {
  grid-column: 2/12
}

.grid-box .image-01 {
  grid-column: 8/12
}

.grid-box .text-01 {
  grid-column: 2/8
}

.grid-box article.reverse .image-01 {
  grid-column: 2/6
}

.grid-box article.reverse .text-01 {
  grid-column: 6/12
}

.grid-box .image-02 {
  grid-column: 1/10
}

.grid-box .text-02 {
  grid-column: 2/10
}

.grid-box article.reverse .image-02 {
  grid-column: 4/-1
}

.grid-box article.reverse .text-02 {
  grid-column: 4/12
}

@media screen and (max-width:500px) {
  section .grid-box {
    margin-left: var(--content-space);
    margin-right: var(--content-space)
  }

  .grid-box article {
    display: block;
    margin-bottom: 60px
  }
}

.new dt {
  margin-bottom: .5rem
}

.new dd {
  margin-bottom: 2rem
}

@media screen and (min-width:700px) {
  .new {
    display: grid;
    gap: 1rem;
    grid-template-columns: 6em auto
  }

  .new dd {
    margin-bottom: 0;
  }
}

.bg-slideup {
  background: url("../images/bg-slideup.jpg") no-repeat center/cover;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center
}

.btn1 a {
  display: block;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto;
  background: var(--bg-color);
  color: var(--bg-inverse-color);
  padding: .5rem 3rem;
  border-radius: 100px;
  letter-spacing: .1em;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1)
}

.btn1 a:hover {
  background: #000;
  color: #fff;
  box-shadow: none
}

.ta1 caption {
  font-weight: 700;
  padding: .2rem 1rem;
  background: rgba(0, 0, 0, .1);
  color: var(--bg-inverse-color);
  margin-bottom: 1rem;
  border-radius: 5px
}

.ta1 {
  table-layout: fixed;
  border-top: 1px solid rgba(0, 0, 0, .3);
  width: 100%;
  margin-bottom: 2rem
}

.ta1 tr {
  border-bottom: 1px solid rgba(0, 0, 0, .3)
}

.ta1 th,
.ta1 td {
  padding: 1rem;
  word-break: break-all
}

.ta1 th {
  width: 30%;
  text-align: left
}

@media screen and (min-width:900px) {
  .ta1 th {
    width: 20%
  }
}

.btn {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  transition: .3s
}

footer * {
  margin: 0;
  padding: 0
}

footer ul {
  list-style: none
}

footer {
  background: #f4f4f2;
  padding: var(--content-space);
  position: relative;
  line-height: 2
}

footer .footer1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 30px
}

footer .logo {
  width: 200px;
  height: auto;
}

footer .footer2 {
  flex: 1
}

@media screen and (min-width:700px) {
  footer {
    display: flex;
    gap: 2rem
  }

  footer .footer1 {
    margin-bottom: 0;
    text-align: left
  }
}

footer small {
  display: block;
  text-align: right;
  margin-top: 2rem
}

.iframe-box1 {
  width: 100%;
  height: 0;
  padding-top: 56.25% !important;
  position: relative;
  overflow: hidden
}

.iframe-box1 iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}

.icons {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: fixed;
  gap: 10px;
  right: 23px;
  top: 100px
}

.icons i {
  font-size: 20px
}

.bg1 {
  background: #f4f4f2;
  padding-top: 3vw;
  padding-bottom: 3vw
}

.slide-thumbnail1 {
  overflow-x: hidden;
  margin-bottom: 2rem
}

.slide-thumbnail1 .img {
  display: flex;
  overflow: hidden
}

.slide-thumbnail1 .img img {
  padding: 0 1vw
}

.slide-thumbnail1 .img div:nth-of-type(even) {
  margin-top: 30px
}

.slide-thumbnail1 .rtl,
.slide-thumbnail1 .ltr {
  animation-timing-function: linear;
  animation-iteration-count: infinite
}

.slide-thumbnail1 .rtl {
  animation-name: slide-rtl
}

.slide-thumbnail1 .ltr {
  animation-name: slide-ltr
}

@keyframes slide-rtl {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes slide-ltr {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.pr a {
  text-decoration: none;
  display: block;
  background: #555;
  color: #ccc;
  text-align: right;
  padding: .5rem 1rem;
  font-size: .8rem
}

.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: 700;
  margin-right: .5em
}

.pagetop-show {
  display: block
}

.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  animation: opa1 1s .4s both;
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, .2);
  width: 60px;
  line-height: 60px;
  border-radius: 50%
}

.clearfix::after {
  content: "";
  display: block;
  clear: both
}

.color-check,
.color-check a {
  color: #c02340 !important
}

.l {
  text-align: left !important
}

.c {
  text-align: center !important
}

.r {
  text-align: right !important
}

.ws,
.wl {
  width: 95%;
  display: block
}

.padding0 {
  padding: 0 !important
}

.mb0 {
  margin-bottom: 0 !important
}

.mb3rem {
  margin-bottom: 3rem !important
}

.mb30 {
  margin-bottom: 30px !important
}

.look {
  display: inline-block;
  padding: 0 10px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all
}

.look .color-check {
  color: #ff0 !important
}

.small {
  font-size: .75em
}

.large {
  font-size: 2em;
  letter-spacing: .1em
}

.block {
  display: block !important
}

.badgeRed {
  display: inline-block;
  padding: 1rem;
  line-height: 1;
  color: #be2525;
  border: solid 1px #be2525;
  border-radius: 5px;
}