@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1099px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .is-sp {
    display: none !important;
  }
}
body {
  font-size: 14px;
  color: #000;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.7;
  background: #fff;
  font-weight: 500;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
  padding: 10px;
  color: #000;
}

.main {
  max-width: 450px;
  margin: 0 auto;
}

.mv-slider {
  margin: 0;
}

.mv-slider .item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像の下にドット分の余白（好みで） */
.mv {
  background: #000;
  padding-bottom: 60px;
}
.mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.mv .slick-dots li button:before {
  font-size: 12px;
}
.mv .slick-dots li button:before {
  opacity: 1;
}
.mv .slick-dots li button:before {
  color: #ddd;
}
.mv .slick-dots li.slick-active button:before {
  color: #e90000;
}
.mv .slick-dots {
  bottom: -40px;
}

.drawer-icon {
  position: fixed;
  top: 19px;
  right: 12px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
  background: #000;
  padding: 8px;
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 18px;
  height: 13px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 6px;
}

.drawer-icon-bar3 {
  top: 12px;
}

.drawer-content {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: rgba(27, 19, 16, 0.9);
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 10;
  height: 100vh;
  padding-top: 180px;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
}
.drawer-icon-nav ul li {
  margin-bottom: 50px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.header {
  max-width: 450px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  -webkit-transform: 0.3s;
          transform: 0.3s;
}
.header.active {
  background: #333840;
  -webkit-transform: 0.3s;
          transform: 0.3s;
}
.header .logo {
  width: 30%;
  margin-right: auto;
}
.header .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .logo a:hover {
  opacity: 0.6;
}
.header .logo img {
  vertical-align: middle;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .line-btn {
  max-width: 130px;
  margin-right: 40px;
}
.header .flex .line-btn a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .flex .line-btn a:hover {
  opacity: 0.6;
}

.header2 {
  background: #333840;
}

.section {
  padding: 55px 0 70px;
}

.about {
  background: #000;
  color: #fff;
}
.about .lead {
  font-size: 28px;
  line-height: 1.4;
  max-width: 350px;
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 400px) {
  .about .lead {
    font-size: 25px;
  }
}
.about .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.about .title .en {
  color: #e90000;
  font-weight: 700;
}
.about .title .ja {
  font-weight: 700;
}
.about .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about .contents p {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2;
}

.section-title {
  margin-bottom: 40px;
}
.section-title .en {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}
.section-title .ja {
  font-weight: 600;
}

.pickup ul li {
  margin-bottom: 40px;
}
.pickup ul li:last-child {
  margin-bottom: 0;
}
.pickup ul li a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pickup ul li a:hover {
  opacity: 0.6;
}
.pickup ul li a .img {
  margin-bottom: 10px;
}
.pickup ul li a .img .wrap {
  padding-top: 50%;
  position: relative;
}
.pickup ul li a .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup ul li a .time {
  color: #666666;
  font-size: 12px;
}
.pickup ul li h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.section-btn {
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
}
.section-btn a {
  display: block;
  padding: 10px 20px;
  background: #333840;
  border: 1.5px solid #333840;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.section-btn a::after {
  position: absolute;
  content: "";
  top: 45%;
  right: 20px;
  border-left: 1.3px solid #fff;
  border-bottom: 1.3px solid #fff;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.section-btn a:hover {
  opacity: 0.6;
}

.latest {
  background: #333840;
}
.latest .section-title {
  color: #fff;
}
.latest ul li {
  margin-bottom: 40px;
}
.latest ul li:last-child {
  margin-bottom: 0;
}
.latest ul li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.latest ul li a:hover {
  opacity: 0.6;
}
.latest ul li a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.latest ul li a .flex .img {
  width: 40%;
}
.latest ul li a .flex .contents {
  width: 55%;
}
.latest ul li a .flex .time {
  font-size: 12px;
}
.latest ul li a .img .wrap {
  padding-top: 75%;
  position: relative;
}
.latest ul li a .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.latest ul li a h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.latest .section-btn a {
  border: 1px solid #fff;
}

.tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 0.7px solid #fff;
}
.tag .item {
  font-size: 12px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.zero .slick-next {
  top: 120%;
  right: 40% !important;
  width: 30px;
}
@media screen and (max-width: 400px) {
  .zero .slick-next {
    right: 38% !important;
  }
}
.zero .slick-next:before {
  content: "";
  background: url(../img/zero-next.png) no-repeat center center/contain;
  display: block;
  width: 30px;
  height: 31px;
}
.zero .slick-prev {
  top: 120%;
  left: 40% !important;
  width: 31px;
}
@media screen and (max-width: 400px) {
  .zero .slick-prev {
    left: 38% !important;
  }
}
.zero .slick-prev:before {
  content: "";
  background: url(../img/zero-prev.png) no-repeat center center/contain;
  display: block;
  width: 30px;
  height: 31px;
}
.zero {
  background: #000;
  position: relative;
  padding-bottom: 90px;
}
.zero .zero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
}
.zero .one-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
}
.zero .section-title {
  color: #fff;
}
.zero .section-title .ja {
  color: #999;
}
.zero ul li {
  position: relative;
}
.zero ul li:last-child {
  margin-bottom: 0;
}
.zero ul li .wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
  position: relative;
}
.zero ul li .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.zero ul li .wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: url(../img/zero-after.png) no-repeat center center/cover;
  border-radius: 0 0px 20px 20px;
}
.zero ul li .contents {
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 10px 20px;
  width: 100%;
  overflow: hidden;
  z-index: 10;
}
.zero ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.zero ul li a:hover {
  opacity: 0.6;
}
.zero ul li h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}
.zero ul li .time {
  font-size: 12px;
  color: #666;
}
.zero .slick-list {
  overflow: visible;
}
.zero {
  overflow: hidden;
}

.zero-slider .slick-slide a {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.5;
  display: block;
}
.zero-slider .slick-slide.slick-active a {
  opacity: 1;
  -webkit-transform: initial;
          transform: initial;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #fff;
  border-radius: 20px;
  display: block;
}

.zero-slider {
  margin: 0;
}

.zero-slider-wrap {
  padding: 0 16px;
  /* 好みで調整 */
}

/* Slickの中で両端見せるため、スライド間の余白 */
.zero-slider .slick-slide {
  padding: 8px;
  /* カード間余白 */
}

/* 矢印（必要に応じて調整） */
.zero-slider .slick-prev,
.zero-slider .slick-next {
  z-index: 5;
}

.zero-slider .slick-prev {
  left: 0;
}

.zero-slider .slick-next {
  right: 0;
}

/* slick-theme.cssの矢印が嫌ならここで上書きも可 */
.shiko {
  background: url(../img/shiko-bg.webp) no-repeat center center/cover;
  overflow: hidden;
}
.shiko .section-title {
  color: #fff;
}
.shiko .slick-list {
  overflow: visible;
}
.shiko ul {
  width: 90%;
  margin: 0 auto;
}
.shiko ul .slider-item {
  position: relative;
  padding: 0 15px;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shiko ul .slider-item.slick-active {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shiko ul .slider-item:last-child {
  margin-bottom: 0;
}
.shiko ul .slider-item .img {
  margin-bottom: 10px;
}
.shiko ul .slider-item .wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
  position: relative;
}
.shiko ul .slider-item .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.shiko ul .slider-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.shiko ul .slider-item a:hover {
  opacity: 0.6;
}
.shiko ul .slider-item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
.shiko ul .slider-item .time {
  font-size: 12px;
  color: #fff;
}
.shiko .slick-dots li.slick-active button:before {
  opacity: 1;
}
.shiko .slick-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.shiko .slick-dots li {
  width: 25%;
  background: #fff;
  margin: 0;
  height: 4px;
  width: 100%;
}
.shiko .slick-dots li button::before {
  display: none;
}
.shiko .slick-dots .slick-active {
  background: #333840;
}

.kakugo {
  background: #000;
  overflow: hidden;
  padding-bottom: 90px;
}
.kakugo .slick-list {
  overflow: visible;
}
.kakugo .section-title {
  color: #fff;
}
.kakugo .section-title .ja {
  color: #999;
}
.kakugo .kakugo-slider {
  width: 70%;
}
.kakugo .kakugo-slider .slider-item {
  padding: 0 0px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}
.kakugo .kakugo-slider .slider-item.slick-active {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.kakugo .kakugo-slider .slider-item h3 {
  color: #fff;
}
.kakugo .kakugo-slider .slider-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.kakugo .kakugo-slider .slider-item a:hover {
  opacity: 0.6;
}
.kakugo .kakugo-slider .slider-item .img {
  margin-bottom: 10px;
}
.kakugo .kakugo-slider .slider-item .img .wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
  position: relative;
}
.kakugo .kakugo-slider .slider-item .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.kakugo .kakugo-slider .slider-item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
.kakugo .slick-next {
  top: 110%;
  right: 0% !important;
  width: 30px;
}
@media screen and (max-width: 400px) {
  .kakugo .slick-next {
    right: 0% !important;
  }
}
.kakugo .slick-next:before {
  content: "";
  background: url(../img/kakugo-next.png) no-repeat center center/cover;
  display: block;
  width: 30px;
  height: 31px;
}
.kakugo .slick-prev {
  top: 110%;
  right: 40px !important;
  width: 31px;
  left: initial !important;
}
.kakugo .slick-prev:before {
  content: "";
  background: url(../img/kakugo-prev.png) no-repeat center center/cover;
  display: block;
  width: 30px;
  height: 31px;
}

.support {
  background: #fff;
  color: #999;
  padding-bottom: 55px;
}
.support .box {
  border: 1px solid #999;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 30px;
}
.support .text {
  margin-bottom: 30px;
}
.support h2 {
  font-size: 22px;
  font-weight: 700;
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.support p {
  max-width: 320px;
  margin: 0 auto;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.support .section-btn {
  margin-top: 20px;
}
.support .section-btn a {
  background: #999;
  border: 1px solid #999;
}

.footer {
  padding: 40px 0 20px;
  background: #333840;
  color: #fff;
  font-weight: 600;
}
.footer .logo {
  width: 30%;
  margin-bottom: 10px;
}
.footer .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .logo a:hover {
  opacity: 0.6;
}
.footer .address {
  font-size: 11px;
  line-height: 1.5;
}
.footer .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
.footer .heading .right {
  max-width: 31px;
}
.footer .heading .right a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .heading .right a:hover {
  opacity: 0.6;
}
.footer .h-link {
  margin-bottom: 10px;
}
.footer .h-link a {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}
.footer ul {
  margin-bottom: 20px;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  padding-left: 15px;
  color: #fff;
  font-size: 13px;
  position: relative;
}
.footer ul li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  height: 1px;
  background: #fff;
  width: 10px;
  left: 0;
}
.footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}
.footer .sns .item {
  padding: 0 5px;
}
.footer .sns .item a {
  width: 25px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .sns .item a:hover {
  opacity: 0.6;
}

html {
  scroll-behavior: smooth;
}

.copyright {
  text-align: center;
  font-size: 10px;
  font-family: serif;
  font-weight: 400;
  padding-top: 10px;
  border-top: 0.7px solid #fff;
  width: 80%;
  margin: 0 auto;
}

.main2 {
  padding-top: 65px;
}
@media screen and (max-width: 360px) {
  .main2 {
    padding-top: 62px;
  }
}

.single h1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.single .img img {
  width: 100%;
  height: auto;
}
.single .contents img {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  height: auto;
}
.single .contents h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #333840;
  line-height: 1.3;
}
.single .contents h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  border-left: 3px solid #333840;
  padding-left: 6px;
  line-height: 1.3;
}
.single .contents h4,
.single .contents h5,
.single .contents h6 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.archive {
  padding-top: 0;
}

.zero ul li .wrap::after {
  height: 70%;
}

.zero-slider .slick-slide.slick-active a {
  padding: 6px;
}

.zero ul li a {
  padding: 6px;
}

.pagination {
  margin-top: 50px;
}
.pagination a,
.pagination span {
  font-size: 18px;
  margin: 0 5px;
}
.pagination a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination a:hover {
  opacity: 0.6;
}
.pagination span {
  color: #e90000;
}
.pagination .next {
  display: none;
}
.pagination .prev {
  display: none;
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination ul li {
  margin-bottom: 0;
}

.about .title .ja {
  margin-left: 10px;
}

.about .contents p {
  max-width: 320px;
  margin: 0 auto;
}

.about .lead {
  letter-spacing: 2px;
}

.support .section-btn a {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.mv {
  position: relative;
}
.mv .mv-text {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: 92%;
  margin: 0 auto;
}

.footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer a:hover {
  opacity: 0.6;
}

.pickup ul li .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.pickup {
  background: url(../img/pickup-bg.webp) repeat center center/contain;
}
.pickup .section-title {
  color: #fff;
}
.pickup .section-btn a {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.pickup ul li .title {
  color: #fff;
}
.pickup .tag {
  color: #fff;
  padding-top: 3px;
  margin-top: 3px;
}

.pickup ul li a .time {
  color: #fff;
}

.pickup ul li h3 {
  color: #fff;
}

.pickup .pagination a {
  color: #fff;
}

.support {
  background: url(../img/support2.jpg) no-repeat center center/cover;
  color: #fff;
}
.support h2 {
  max-width: 100%;
}
.support .section-btn a {
  color: #333840;
  background: #fff;
}
.support .section-btn a::after {
  border-left: 1.3px solid #333840;
  border-bottom: 1.3px solid #333840;
}

.footer {
  background: #000;
}

.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: 10px;
}
.header .right img {
  vertical-align: middle;
}
.header .contact-btn {
  margin-right: 5px;
  width: 90px;
}
@media screen and (max-width: 360px) {
  .header .contact-btn {
    width: 70px;
  }
}
.header .line-btn {
  width: 40%;
  width: 90px;
  margin-right: 0 !important;
}
@media screen and (max-width: 360px) {
  .header .line-btn {
    width: 70px;
  }
}

.header .logo {
  width: 25%;
  min-width: 80px;
}

.drawer-icon-nav {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.latest ul li a h3 {
  margin-bottom: 12px;
}

.latest ul li a .flex .contents .heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
}
.latest ul li a .flex .contents .heading2 .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.latest ul li a .flex .contents .heading2 .cat .item {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 5px;
  margin-left: 10px;
  margin-right: 3px;
  margin-bottom: 3px;
}
@media screen and (max-width: 420px) {
  .latest ul li a .flex .contents .heading2 .cat .item {
    font-size: 10px;
  }
}

@media screen and (max-width: 420px) {
  .latest ul li a .flex .contents .time {
    font-size: 10px;
  }
}
.zero .btn {
  margin-top: 100px;
}
.zero .section-btn a {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.zero .section-btn a::after {
  border-left: 1.3px solid #fff;
  border-bottom: 1.3px solid #fff;
}

.kakugo .btn {
  margin-top: 80px;
}
.kakugo .section-btn a {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.kakugo .section-btn a::after {
  border-left: 1.3px solid #fff;
  border-bottom: 1.3px solid #fff;
}

.shiko .btn {
  margin-top: 70px;
}
.shiko .section-btn a {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.shiko .section-btn a::after {
  border-left: 1.3px solid #fff;
  border-bottom: 1.3px solid #fff;
}

.pagination a {
  color: #fff;
}

.pagination span {
  font-weight: 700;
}

.shiko-page {
  background: -webkit-gradient(linear, left top, left bottom, from(#C9BC7B), to(#AB9B5E));
  background: linear-gradient(to bottom, #C9BC7B 0%, #AB9B5E 100%);
}
.shiko-page ul {
  width: 100%;
}
.shiko-page ul .slider-item {
  opacity: 1 !important;
  margin-bottom: 40px;
  padding: 0;
}
.shiko-page ul .slider-item:last-child {
  margin-bottom: 0;
}

.latest ul li a .flex .time {
  margin-bottom: 3px;
}

.single .heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
}
.single .heading2 .time {
  margin-bottom: 3px;
}
.single .heading2 .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single .heading2 .cat .item {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 5px;
  margin-left: 10px;
  margin-right: 3px;
  margin-bottom: 3px;
}
@media screen and (max-width: 420px) {
  .single .heading2 .cat .item {
    font-size: 10px;
  }
}

.kakugo-page ul li {
  margin-bottom: 40px;
}
.kakugo-page ul li:last-child {
  margin-bottom: 0;
}
.kakugo-page ul li a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.kakugo-page ul li a:hover {
  opacity: 0.6;
}
.kakugo-page ul li .img {
  margin-bottom: 10px;
}
.kakugo-page ul li .wrap {
  padding-top: 65%;
  position: relative;
  overflow: hidden;
  position: relative;
}
.kakugo-page ul li .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.kakugo-page ul .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.shiko-page a {
  color: #fff;
}
.shiko-page a .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.pickup ul li .title {
  margin-bottom: 10px;
}

.zero ul li .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}

.kakugo-page ul .time {
  font-size: 12px;
  color: #fff;
}

.kakugo ul .time {
  font-size: 12px;
  color: #fff;
}

.privacy h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #000;
}
.privacy ul {
  padding-left: 20px;
}
.privacy ul li {
  list-style-type: disc;
}

.contact-wrap {
  font-weight: 500;
}
.contact-wrap .row {
  margin-bottom: 20px;
}
.contact-wrap .row .dt {
  margin-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.contact-wrap .row .required {
  font-size: 13px;
  background: #e90000;
  color: #fff;
  line-height: 1;
  padding: 5px 10px;
}
.contact-wrap textarea {
  resize: none;
  height: 150px;
}
.contact-wrap .submit {
  text-align: center;
}
.contact-wrap .submit input {
  max-width: 250px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-wrap .submit input:hover {
  opacity: 0.6;
}

.qa {
  padding-bottom: 0;
}

.wpcf7-spinner {
  display: none !important;
}

.row-checkbox {
  text-align: center;
}
.row-checkbox a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.row-checkbox a:hover {
  opacity: 0.6;
}
.row-checkbox input[type=checkbox] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.row-checkbox input[type=checkbox] + span {
  position: relative;
  padding-left: 20px;
}
.row-checkbox input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
}
.row-checkbox input[type=checkbox] + span::after {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  left: 0;
  width: 16px;
  height: 5px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  opacity: 0;
}
.row-checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}

/* FAQ accordion */
.qa-list {
  margin-top: 24px;
}

.qa-item {
  border-top: 1px solid #e6e6e6;
}

.qa-item:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.qa-q {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.q-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
}

.q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.6;
}

.qa-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 18px;
  position: relative;
}

.qa-icon::before,
.qa-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background: #333;
}

.qa-icon::after {
  width: 2px;
  height: 18px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

/* opened */
.qa-item.is-open .qa-icon::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0); /* ＋ → － */
}

.qa-a {
  padding: 0 0 16px;
  color: #fff;
}

.q-text {
  color: #fff;
}

.q-label {
  color: #fff;
}

.qa-a-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  line-height: 1.8;
}

.a-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
}

.qa-a p {
  margin: 0;
}

.qa, .contact {
  background: #333840;
  color: #fff;
}

.contact .lead {
  margin-bottom: 20px;
}
.contact .lead a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: underline;
}
.contact .lead a:hover {
  opacity: 0.6;
}

.shiko .slick-dots li {
  margin: 0 4px;
}

.support h2 {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.support .section-btn a {
  max-width: 320px;
}

.drawer-icon-nav ul li {
  margin-bottom: 25px;
}

.drawer-icon-nav ul li .sub-link {
  margin-top: 10px;
}

.qa-icon::before, .qa-icon::after {
  display: none;
}

.qa-icon::before {
  display: block;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.qa-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.qa-item.is-open .qa-icon::before {
  -webkit-transform: rotate(135deg) translateY(-3px);
          transform: rotate(135deg) translateY(-3px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.about .title-wrap {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (min-width: 1100px) {
  .main {
    max-width: 100%;
  }
  .header {
    max-width: 100%;
  }
  .inner {
    max-width: 1100px;
    padding: 0 40px;
  }
  .header .logo {
    max-width: 200px;
  }
  .header .right {
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .right a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .right a:hover {
    opacity: 0.6;
  }
  .header .right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .right ul li {
    position: relative;
    margin-right: 40px;
  }
  .header .right ul li.li:hover .sub-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
  .header .right ul li .sub-box {
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -10px);
            transform: translate(-50%, -10px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .right ul li .sub-box .wrap-box {
    width: 218px;
    padding: 20px;
    background: #000;
  }
  .header .right ul li .sub-box .wrap-box .sub-link {
    margin-bottom: 15px;
  }
  .header .right ul li .sub-box .wrap-box .sub-link:last-child {
    margin-bottom: 0;
  }
  .header .right ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
  }
  .header .right .right-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .header .right .right-btn .btn:nth-child(1) {
    margin-right: 10px;
  }
  .header .right .right-btn a {
    color: #fff;
    font-weight: 600;
    background: url(../img/header-btn-bg.png) no-repeat center center/cover;
    padding: 8px 30px;
    border-radius: 10px;
    border: 2px solid #fff;
    letter-spacing: 2px;
    font-size: 16px;
  }
  .mv .mv-text {
    max-width: 1000px;
  }
  .mv .mv-text {
    position: absolute;
    top: initial;
    bottom: 14%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: 92%;
    margin: 0 auto;
  }
  .section {
    padding: 75px 0 90px;
  }
  .about .inner .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about .inner .flex p {
    font-size: 16px;
    max-width: 100%;
  }
  .about .inner .flex .title-wrap {
    max-width: 100%;
    width: 350px;
  }
  .about .inner .flex .contents {
    width: calc(100% - 400px);
  }
  .section-title .en {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .section-title .ja {
    font-weight: 600;
    font-size: 16px;
  }
  .pickup ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pickup ul li {
    width: 48%;
  }
  .pickup ul li a .time {
    font-size: 14px;
  }
  .pickup ul li h3 {
    font-size: 18px;
  }
  .section-btn a {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .header {
    padding: 15px 0;
  }
  .header .right .right-btn a {
    display: block;
  }
  .latest ul li a .flex {
    display: block;
  }
  .latest ul li a .flex .img {
    width: 100%;
    margin-bottom: 15px;
  }
  .latest ul li a .flex .contents {
    width: 100%;
  }
  .latest ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .latest ul li {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
  }
  .latest ul li:nth-child(3n) {
    margin-right: 0;
  }
  .latest ul li:nth-child(n+4) {
    margin-top: 50px;
  }
  .latest ul li a h3 {
    font-size: 18px;
  }
  .latest ul li a h3 {
    min-height: 54px;
  }
  .tag {
    padding-top: 10px;
  }
  .tag .item {
    font-size: 14px;
  }
  .latest ul li a .flex .time {
    font-size: 14px;
  }
  .latest ul li a .flex .contents .heading2 .cat .item {
    font-size: 14px;
  }
  .zero .slick-prev {
    top: 110%;
    left: 45% !important;
    width: 51px;
  }
  .zero .slick-next {
    top: 110%;
    right: 45% !important;
    width: 50px;
  }
  .kakugo .slick-prev {
    top: 110%;
    left: 43% !important;
    width: 51px;
  }
  .kakugo .slick-next {
    top: 110%;
    right: 43% !important;
    width: 51px;
  }
  .kakugo .section-btn {
    margin-top: 120px;
  }
  .kakugo .kakugo-slider .slider-item {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .kakugo .kakugo-slider {
    width: 100%;
  }
  .zero-slider .slick-slide {
    padding: 20px;
  }
  .kakugo .kakugo-slider .slider-item {
    padding: 20px;
  }
  .kakugo ul .time {
    font-size: 14px;
  }
  .kakugo .kakugo-slider .slider-item h3 {
    font-size: 18px;
  }
  .shiko ul .slider-item .time {
    font-size: 14px;
  }
  .shiko ul .slider-item h3 {
    font-size: 18px;
  }
  .zero ul li .time {
    font-size: 14px;
  }
  .zero ul li .title {
    font-size: 18px;
  }
  .support h2 {
    max-width: 500px;
    font-size: 32px;
    text-align: center;
  }
  .support p {
    font-size: 16px;
    max-width: 100%;
  }
  .support .section-btn {
    margin-top: 50px;
  }
  .footer .heading .right {
    max-width: 46px;
  }
  .footer .address {
    font-size: 16px;
  }
  .footer .logo {
    max-width: 200px;
    width: 100%;
    margin-bottom: 20px;
  }
  .footer .h-link a {
    font-size: 16px;
  }
  .footer ul li a {
    font-size: 16px;
  }
  .copyright {
    width: 100%;
    font-size: 15px;
    margin-top: 80px;
  }
  .kakugo .slick-next:before {
    width: 51px;
    height: 51px;
  }
  .kakugo .slick-prev:before {
    width: 51px;
    height: 51px;
  }
  .zero .slick-next:before {
    width: 51px;
    height: 51px;
  }
  .zero .slick-prev:before {
    width: 51px;
    height: 51px;
  }
  .contact .lead a {
    font-size: 16px;
  }
  .pagination ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination ul li {
    width: auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin: 0 !important;
    margin: 0 10px !important;
  }
  .pagination ul li a, .pagination ul li span {
    font-size: 18px;
    display: inline-block;
  }
  .origin-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .origin-ul li {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
  }
  .origin-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .origin-ul li:nth-child(n+4) {
    margin-top: 30px;
  }
  .root-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .root-ul li {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
  }
  .root-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .root-ul li:nth-child(n+4) {
    margin-top: 30px;
  }
  .b-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .b-ul li {
    width: calc(33.3333% - 20px);
    margin-right: 30px;
  }
  .b-ul li:nth-child(3n) {
    margin-right: 0;
  }
  .b-ul li:nth-child(n+4) {
    margin-top: 30px;
  }
  .shiko-page a .title {
    font-size: 18px;
  }
  .kakugo-page ul .title {
    font-size: 18px;
  }
  .single .inner {
    max-width: 800px;
  }
  .single .heading2 .time {
    font-size: 14px;
  }
  .single .heading2 .cat .item {
    font-size: 16px;
  }
  .single h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .single .contents h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #333840;
    line-height: 1.3;
  }
  .single p {
    font-size: 16px;
  }
  .single .contents h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    border-left: 3px solid #333840;
    padding-left: 6px;
    line-height: 1.3;
  }
  .single .contents h4 {
    font-size: 18px;
  }
  .zero-slider {
    max-width: 1200px;
    margin: 0 auto;
  }
  .zero-slider .slick-slide {
    padding: 15px;
  }
  .contact-wrap .row .dt {
    margin-bottom: 10px;
  }
  .contact .inner, .qa .inner {
    max-width: 800px;
  }
  .contact-wrap .submit {
    margin-top: 60px;
  }
  .qa-item {
    font-size: 16px;
  }
}
.mv-slider {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1100px) {
  .mv-slider {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1100px) {
  .mv .mv-text {
    max-width: 700px;
  }
}