﻿@charset "UTF-8";
@import "base.css";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
  font-family: "Aspekta";
  src: url("https://cdn.prod.website-files.com/66d5553aa640d66c668df6f1/66d55e28cdc09975d2743197_Aspekta-400.ttf")
      format("truetype"),
    url("https://cdn.prod.website-files.com/66d5553aa640d66c668df6f1/66d55e5ccdc09975d2745d92_Aspekta-400.otf")
      format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aspekta";
  src: url("https://cdn.prod.website-files.com/66d5553aa640d66c668df6f1/66d55ed3b9ecb2670bb1e558_Aspekta-600.ttf")
      format("truetype"),
    url("https://cdn.prod.website-files.com/66d5553aa640d66c668df6f1/66d55ebdb287b78c8ebadff5_Aspekta-600.otf")
      format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --f-main: "Inter", sans-serif;
  --f-mon: "Aspekta", sans-serif;
  --f-roboto: "Roboto", serif;
  --f-utm: "UTM Edwardian";
  --txt: #010004;
  --mcolor: #f6921c;
  --scolor: #f6921c;
  --black: #010004;
  --gray: #4d4d4d;
}
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header,
section,
footer,
aside,
nav,
main,
article,
figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
    color: var(--mcolor);
    display: inline-block;
    text-decoration: none;
}
a:hover,
a:active {
  text-decoration: none;
}
table {
  width: 100%;
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p,
dd,
td,
th,
li {
  line-height: 1.3em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 60px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
  border: 1px solid var(--txt);
}
#totop a:hover {
  opacity: 0.7;
}
#totop img{
background: var(--mcolor);
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.df {
  display: flex;
  flex-wrap: wrap;
}
.jc-sb {
  justify-content: space-between;
}
.ai-c {
  align-items: center;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #fff;
  font-family: var(--f-main);
  background: #000;
  top: 0 !important;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 1320px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
}
.h_main {
  width: 100%;
  background: var(--black);
  box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.35);
  padding: 23px 0;
  transition: all 0.3s;
}
#header.fixed {
  padding: 0;
  background: #fff;
  box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.35);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
#header.fixed .h_main {
  padding: 15px 0;
}
.h_main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0;
  width: 145px;
}
.gnavi {
  display: flex;
}
#gnavi {
  margin: 0 40px 0 auto;
}
.gnavi li {
  position: relative;
}
.submenu {
    position: absolute;
    background: #fff;
    color: #000;
    display: none;
    left: 0;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    overflow: hidden;
    border-radius: 4px;
    z-index: 1;
}
.submenu a {
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--txt-black);
  display: block;
  font-size: 16px;
  position: relative;
  padding: 8px 10px;
  transition: all 0.3s ease;
}
.submenu li:last-child > a {
  border-bottom: none;
}
.submenu a:hover {
  color: #fff;
  background: var(--mcolor);
}
.has_child .submenu {
  left: calc(100% + 5px);
  margin-top: 0;
  top: -10px;
}
.submenu li.has_child:after {
  content: "";
  position: absolute;
  border: solid var(--txt);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 30px;
  top: 14px;
}
.h_right {
  display: flex;
  align-items: center;
}
.login_btn {
  display: inline-block;
  background-image: linear-gradient(90deg, #ffdf56, #ff8735 50%, #ffa6c1);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 3px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  position:relative;
}

.login_bg {
    background-color: #000; /* padding: 8px; */
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.5s;
}
.login_bg:hover {
  background-image: linear-gradient(90deg, #ffdf56, #ff8735 50%, #ffa6c1);
}
.login_btn a {
  color: #fff;
  text-decoration: none;
}
.h_lang {
  background: rgb(255, 240, 105);
  background: linear-gradient(
    0deg,
    rgba(255, 240, 105, 1) 0%,
    rgba(155, 111, 27, 1) 100%
  );
  position: relative;
  z-index: 2;
  padding: 5px;
  margin: 0;
  font-size: 14px;
}
.h_lang:after {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  background: var(--black);
  z-index: -2;
  pointer-events: none;
}
.h_lang a {
  text-decoration: none;
  color: var(--gray);
  padding: 0 5px;
  line-height: 1em;
}
.h_lang a:not(:last-child) {
  border-right: 1px solid var(--gray);
}
.h_lang a:hover,
.h_lang a.active {
  color: #fff;
}
.h_search {
  position: relative;
}
.h_search_ttl {
  margin: 0 20px;
  width: 30px;
  cursor: pointer;
}
.h_search_form {
  position: absolute;
  right: 0;
  margin-top: 5px;
  background: #2f2f2f;
  padding: 5px;
  width: 250px;
  display: none;
}
.h_search_form input {
  border: none;
  font-size: 12px;
  padding: 10px 60px 10px 15px;
  width: 100%;
}
.h_search_form button {
  background: var(--mcolor);
  color: #fff;
  border: none;
  font-size: 12px;
  padding: 10px 5px;
  cursor: pointer;
  transition: all 0.3s;
  position: absolute;
  right: 5px;
  top: 5px;
}
.gnavi > li > a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s;
    font-size: 15px;
    padding: 10px 3px;
    position: relative;
    font-weight: bold;
}
    .gnavi > li > a:after {
        content: "";
        position: absolute;
        width: 0;
        height: 1px;
        background: var(--scolor);
        left: 0;
        bottom: 0;
        opacity: 0;
        transition: all 0.3s;
        bottom: 5px;
    }
.gnavi > li:hover > a:after,
.gnavi > li.active > a:after {
  width: 100%;
  opacity: 1;
}
.gnavi > li:hover > a,
.gnavi > li.active > a {
  color: var(--scolor);
}
.gnavi > li {
  margin-left: 40px;
}
.mainvisual {
  background: var(--black);
  color: #fff;
}
/*.main_slide.slick-initialized .slick-slide.main_slide_item {
  height: 738px;
  background: url(/assets/images/bannercrypto02.jpg) center center / cover no-repeat;
  background-size: 100%;
}
.main_slide_item .container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.main_slide_itm_img {
  flex-shrink: 0;
  margin: 0;
}
.main_slide_ttl {
  font-size: 150px;
  line-height: 0.9em;
  margin: 0 0 25px;
}
.main_slide_txt {
  font-family: var(--f-roboto);
  font-weight: 300;
  line-height: 2.2em;
  margin-bottom: 50px;
}
.main_slide_itm_info {
  width: 540px;
}
.main_slide_button {
  display: flex;
}
.main_slide_button li {
  width: 220px;
  margin-right: 15px;
}
.main_slide_button li:last-child {
  margin-right: 0;
}
.main_slide_button li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 48px;
  justify-content: center;
  border-radius: 50px;
  font-family: var(--f-mon);
  text-transform: uppercase;
  border: 1px solid var(--mcolor);
}
.main_slide_button li a:before {
  content: "";
  position: relative;
  display: inline-block;
  background: url("/assets/images/icon_tel.png") no-repeat center center/100% auto;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  flex-shrink: 0;
  top: 2px;
}
.main_slide_button li:nth-child(1) a {
  background: var(--mcolor);
  color: var(--txt);
  font-size: 11px;
  font-weight: 600;
  padding-bottom: 3px;
}
.main_slide_button li:nth-child(1) a .lager {
  display: block;
  font-size: 172.72%;
  line-height: 1em;
  margin-top: -4px;
}
.main_slide_button li:nth-child(2) a {
  color: var(--mcolor);
  background: var(--txt);
  font-size: 15px;
}
.main_slide_button li:nth-child(2) a:before {
  background-image: url("/assets/images/icon_map.png");
  width: 16px;
  height: 20px;
  top: 0;
}*/
.main_slide .slick-arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 5;
  top: calc(50% - 30px);
  border: none;
  text-indent: -50000px;
  cursor: pointer;
  transition: all 0.3s;
}
.main_slide .slick-prev {
  left: calc(50% - 670px);
  background-image: url("/assets/images/prev.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.main_slide .slick-next {
  left: calc(50% + 670px);
  background-image: url("/assets/images/next.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.main_slide .slick-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.box01 {
  padding: 100px 0;
  background: url("/assets/images/bg01.webp") no-repeat top 30% center/cover;
}

.b01_img,
.b01_main {
  width: 50%;
}
.b01_img .item:first-child img {
  border-radius: 200px;
}
.b01_img .item:last-child {
  margin: 0 0 0 -163px;
  position: relative;
  z-index: 2;
}
.b01_img .item:last-child img {
  border-radius: 100%;
}
/* .b01_img .item:last-child:after {
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  background: rgb(255, 240, 105);
  background: linear-gradient(
    0deg,
    rgba(255, 240, 105, 1) 0%,
    rgba(155, 111, 27, 1) 100%
  );
  border-radius: 50%;
  top: -8px;
  left: -12px;
  z-index: -2;
  box-shadow: 5px 0px 5px 3px rgba(0, 0, 0, 0.3);
} */
.idx_ttl {
  margin: 0 0 50px;
  font-family: var(--f-mon);
  /* letter-spacing: -2px; */
  font-size: 40px;
  font-weight: 500;
  padding-left: 35px;
  position: relative;
}
.idx_ttl::before {
  content: "";
  width: 6px;
  position: absolute;
  height: 100%;
  background: var(--mcolor);
  left: 0;
  top: 0;
}
.idx_ttl .small {
  display: block;
  font-size: 70%;
  margin-bottom: 10px;
}
.b01_txt p {
  font-size: 19px;
  line-height: 1.5em;
  margin: 0 0 20px;
  text-align: justify;
}
.b01_txt ul:not(:first-child) {
  margin-top: 35px;
}
.b01_txt ul:not(:last-child) {
  margin-top: 25px;
}
.b01_txt li {
  font-size: 24px;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}
.b01_txt li:before {
  content: "";
  position: absolute;
  background: url("/assets/images/iconcheck.svg") no-repeat center center/100% auto;
  width: 23px;
  height: 35px;
  left: 0;
  top: -5px;
}
.idx_btn a {
  display: inline-block;
  background: linear-gradient(90deg, var(--mcolor), #ce4444);
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  min-width: 180px;
  padding: 15px;
  border-radius: 30px;
  font-family: var(--f-mon);
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  font-weight: bold;
  transition: all 0.3s;
}
.idx_btn a:hover {
  opacity: 0.8;
}
.box02 {
}
.b02_main {
  display: flex;
  align-items: flex-start;
}
.b02_list {
  width: 265px;
}
.b02_list li {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 0 29px;
  font-size: 20px;
  padding: 6px;
  transition: all 0.3s;
  background: rgb(255, 240, 105);
  background: linear-gradient(
    144deg,
    rgba(255, 240, 105, 1) 0%,
    rgba(155, 111, 27, 1) 100%
  );
  border-radius: 60px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.b02_list li:after {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border-radius: 60px;
  background: var(--txt);
  z-index: -3;
}
.b02_list li:before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border-radius: 60px;
  background: rgb(255, 240, 105);
  background: linear-gradient(
    105deg,
    rgba(255, 240, 105, 1) 0%,
    rgba(155, 111, 27, 1) 100%
  );
  z-index: -2;
  transition: all 0.3s;
  opacity: 0;
}
.tabs_content {
  background: url("/assets/images/b02_box.png") no-repeat top center/100% auto;
  width: 656px;
  height: 409px;
  padding: 50px 20px 30px 70px;
}
.b02_info_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 100%;
}
.b02_info_list li {
  font-size: 24px;
  margin: 0 0 15px;
  position: relative;
  padding-left: 30px;
}
.b02_info {
  height: 100%;
  display: none;
}
.b02_info_list li:before {
  content: "";
  position: absolute;
  background: url("/assets/images/b02_icon.svg") no-repeat center center/100% auto;
  width: 14px;
  height: 14px;
  left: 0;
  top: 9px;
}
.bg {
  background: url("/assets/images/effect01.jpg") no-repeat top center/cover;
}
.bg2 {
  background: url("/assets/images/bg01.webp") no-repeat top center/cover;
}
.b03_list {
  justify-content: space-between;
  padding: 100px 0 60px;
}
.b03_main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}
.b03_img {
  display: flex;
  align-items: flex-start;
  margin-top: -115px;
  margin-left: 30px;
}
.b03_img .item:nth-child(1) {
  margin: 162px -86px 0 0;
  position: relative;
  z-index: 2;
}
.b03_img .item:nth-child(1) img {
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
}
.b03_img .item:nth-child(2) img {
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}

.b03_itm_ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--mcolor);
  text-transform: uppercase;
  position: relative;
  padding: 0;
  margin: 0 0 14px;
  border-left: 4px solid;
  padding-left: 15px;
}
.b03_itm_des p{
	line-height: 1.4;
	
}
/* .b03_itm_ttl:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: rgb(255, 240, 105);
  background: linear-gradient(
    0deg,
    rgba(255, 240, 105, 1) 0%,
    rgba(155, 111, 27, 1) 100%
  );
} */

.b03_itm {
  border: 1px solid;
  padding: 40px 40px;
  width: 48%;
  background: #141414;
}
.b03_itm_content th,
.b03_itm_content td {
  border: 1px solid #959595;
  background: #fff;
  color: var(--txt);
  font-size: 20px;
  font-weight: 400;
  padding: 0.5em;
  text-align: left;
}
.b03_itm_content td {
  width: 25%;
  padding: 0.5em 1em;
}
.b03_list .slick-arrow {
  width: 55px;
  height: 30px;
  border: none;
  text-indent: -500000px;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--mcolor);
}
.b03_list .slick-next {
  left: calc(50% + 15px);
  background-image: url("/assets/images/b03_next.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.b03_list .slick-prev {
  right: calc(50% + 15px);
  background-image: url("/assets/images/b03_prev.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.box04 {
  /* background: url("/assets/images/b04_bg.jpg") no-repeat top center/100% auto
    var(--mcolor); */
  padding: 50px 0;
}
.box04 .idx_ttl {
}
.b04_itm {
  position: relative;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #141414;
  color: #fff;
  border-radius: 16px;
  flex-flow: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  cursor: pointer;
}
.b04_img {
    margin: 0;
    overflow: hidden;
    height: 170px;
}
    .b04_img img {
        transition: all 0.5s;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
.b04_itm:hover .b04_img img {
  transform: scale(1.1, 1.1);
}
.b04_itm:hover .b04_ttl {
  color: var(--mcolor);
}
.new_cate {
  background-color: #fff;
  color: var(--black);
  border: 1px solid #000;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  position: absolute;
  inset: 20px auto auto 20px;
}

.b04_ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
padding: 0 24px 0 24px;
    margin-bottom: 24px;
   display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b04_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.b04_list li {
  width: 190px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid var(--txt);
  font-size: 22px;
  border-radius: 60px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.b04_list li:after {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  left: -1px;
  top: -1px;
  border-radius: 60px;
  background: rgb(255, 240, 105);
  background: linear-gradient(
    -113deg,
    rgba(255, 240, 105, 1) 0%,
    rgba(155, 111, 27, 1) 100%
  );
  opacity: 0;
  transition: all 0.3s;
  z-index: -2;
}
.b04_main {
}
.b04_main_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-height: 510px;
  overflow: auto;
}
.b04_main_item {
  width: calc(100% / 4);
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid;
  margin: 0 0 40px;
}
.b04_main_ttl {
  display: inline-block;
  border: 1px solid;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600;
  padding: 9px 8px;
  line-height: 1.2em;
  margin: 0 0 15px;
}
.b04_main_add {
  font-size: 17px;
}
.b04_main_item:nth-child(4n) {
  border-right: none;
}
.b04_main_list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
.b04_main_list::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(255, 255, 255, 0.2);
}
.b04_main_list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.2);
  background-color: #fff;
}
.box05 {
  padding: 100px 0;
}
.b05_main {
  width: 540px;
  margin: 0 190px 0 auto;
}
.box05 .idx_ttl {
  font-size: 48px;
  margin-bottom: 30px;
}
.box05 .idx_ttl .small {
  font-size: 100px;
  margin-bottom: -4px;
}
.b05_txt {
  font-size: 24px;
  font-style: italic;
  text-align: justify;
}

.b5_box {
  width: calc(50% - 90px);
}
    .b5_box.box2 {
        width: calc(50% - 90px);
    }
.b5_title {
  position: relative;
}
.target_arrows {
  position: absolute;
  right: 0;
  bottom: 15px;
  display: flex;
}
.target_arrows .slick-arrow {
  width: 20px;
  height: 20px;
  margin: 0 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.target_arrows .next {
  background: url(../images/icon_next.svg) no-repeat center/8px auto var(--bg2);
}
.target_arrows .prev {
  background: url(../images/icon_prev.svg) no-repeat center/8px auto var(--bg2);
}
.target_arrows .slick-arrow:hover {
  background-color: var(--s-color);
}
.cm-gallery a {
  margin-right: 30px;
}
.cm-gallery a img,.cm-gallery img {
  background: #141414;
}

.cm-gallery {
  margin-right: -30px;
}
.ft_main {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.ft_social i {
    color: #fff;
    background: var(--mcolor);
    padding: 10px 0 0 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: all 0.5s;
    font-size: 18px;
}
.ft_social .fa-facebook-f {
	padding: 10px 0 0 12px;
}
.ft_social i:hover {
  color: var(--mcolor);
  background: #fff;
}
.f_logo {
  width: 290px;
}
.ft_ttl {
  font-size: 30px;
  margin: 0 0 30px;
}
.ft_mod:nth-child(1) {
  width: 330px;
}
.ft_form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  margin: 0 0 25px;
}
.ft_form a {
  display: inline-block;
  border: none;
  background: var(--mcolor);
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 18px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-family: var(--f-mon);
  font-weight: bold;
}
.ft_time {
  font-size: 20px;
  margin: 0 0 10px;
  display: flex;
}
.ft_time .ttl {
  flex-shrink: 0;
  width: 105px;
  text-align: right;
  margin-right: 6px;
  color: var(--mcolor);
}
.ft_mod:nth-child(2) {
  width: 450px;
}
.ft_link {
  color: var(--mcolor);
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s;
  padding: 40px 0;
}
.ft_mod:nth-child(2) a:hover {
  color: #fe0407;
}
.ft_txt {
  font-size: 20px;
  margin-bottom: 15px;
}
.ft_mod:nth-child(3) {
  width: 400px;
}
.ft_social {
  display: flex;
  justify-content: center;
}
.ft_social a {
  margin-right: 15px;
}
.copyright {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  padding: 40px 0;
}
.copyright a {
  text-decoration: none;
  color: #f9080a;
}
.b02_list li.active_tab:before,
.b02_list li:hover:before,
.b04_list li.active_tab:after,
.b04_list li:hover:after {
  opacity: 1;
}
.b02_list li.active_tab,
.b02_list li:hover {
  color: var(--txt);
}
.b04_list li.active_tab,
.b04_list li:hover {
  border-color: transparent;
}
.h_search_form button:hover,
.ft_form a:hover {
  background: var(--scolor);
  color: var(--txt);
}
.idx_btn a:hover,
.b03_list .slick-arrow:hover {
  background-color: var(--txt);
}
.main_slide_button li a:hover {
  background: var(--scolor);
}
.main_slide_button li:nth-child(2) a:hover {
  background: rgba(255, 255, 255, 0.2);
}
p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
}
@media screen and (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  button,
  textarea,
  select,
  p,
  blockquote,
  th,
  td,
  pre,
  address,
  li,
  dt,
  dd {
    font-size: 14px;
  }
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 70px;
  }
  #header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    z-index: 9999;
  }
  #main,
  #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: var(--mcolor);
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after,
  .menu-icon span::before {
    display: block;
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before,
  .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 48px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: "";
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  #gnavi {
    margin: 0;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgb(17 15 3 / 95%);
    height: calc(100% - 70px);
    padding: 30px 3%;
    display: none;
    z-index: 1;
  }
  .submenu {
    position: relative;
    text-align: center;
    padding: 5px 20px;
    background: #f2040d;
    color: #fff;
  }
  .h_main {
    padding: 10px 0;
  }
  .logo {
    width: 140px;
  }
  .gnavi {
    display: block;
  }
  .gnavi > li {
    margin-left: 0;
  }
  .gnavi > li > a {
    display: block;
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0 1px;
  }
  .gnavi > li:hover > a,
  .gnavi > li.active > a {
    color: #fff;
  }
  .gnavi > li:hover > a:after,
  .gnavi > li.active > a:after {
    width: 0;
    opacity: 0;
  }
  .main_slide_item .container {
    display: block;
  }
  .main_slide_itm_info {
    width: 100%;
    text-align: center;
    margin: 0 0 30px;
  }
  .main_slide_ttl {
    font-size: 70px;
  }
  .main_slide_txt {
    margin: 0 0 30px;
  }
  .main_slide_button {
    justify-content: center;
  }
/*  .main_slide_itm_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .main_slide.slick-initialized .slick-slide.main_slide_item {
    height: 200px;
  }*/
  .mainvisual {
  }
  .box01 {
    padding: 50px 0 0;
  }
  .box01 .container {
    display: block;
  }
  .b01_img {
    text-align: center;
  }
  .b01_img,
  .b01_main {
    width: 100%;
  }
  .b01_main {
    margin: 0 0 30px;
  }
  .idx_ttl {
    font-size: 28px;
  }
  .idx_ttl .small {
  }
  .b01_txt p {
    font-size: 16px;
    margin: 0 0 15px;
  }
  .b01_txt li:before {
    width: 18px;
    height: 28px;
  }
  .b01_txt li {
    font-size: 18px;
    padding-left: 30px;
  }
  .b01_txt ul:not(:first-child) {
    margin-top: 25px;
  }
  .idx_btn {
    text-align: center;
  }
  .b01_img img {
    width: 240px;
  }

  .box02 {
    padding: 50px 0;
    background-size: 200% auto;
    background-color: #010101;
  }
  .b02_main {
    display: block;
  }
  .b02_list {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
  }
  .b02_list li {
    width: 100%;
    margin: 0 2px;
    font-size: 14px;
    height: 60px;
  }
  .b02_info_list li:before {
    top: 5px;
    width: 10px;
    height: 10px;
  }
  .b02_info_list li {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
  .tabs_content {
    width: 100%;
    background-size: 100% 100%;
    background-image: url("/assets/images/b02_box_sp.png");
    padding: 30px;
    height: 350px;
  }
  .box03 {
    padding: 0 0 50px;
  }
  .b03_list {
    padding: 0;
  }
  .b03_itm {
    width: 100%;
    padding: 20px;
    margin: 0 0 20px;
  }
  .b03_main {
    display: block;
    margin-top: 0;
  }
  .b03_itm_ttl {
    font-size: 18px;
  }
  .b03_itm_content th,
  .b03_itm_content td {
    font-size: 16px;
  }
  .b03_img {
    margin: 0;
    justify-content: center;
  }
  .b03_img .item:nth-child(1) {
    margin: 15vw -10% 0 0;
  }
  .b03_img .item {
    max-width: 50%;
  }
  .box04 {
    padding: 50px 0;
  }
  .b04_list li {
    font-size: 16px;
    height: 50px;
    margin: 0 1% 10px;
    max-width: 48%;
  }
  .b04_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .b04_main_item {
    width: 50%;
    margin-bottom: 25px;
  }
  .b04_main_item:nth-child(2n) {
    border-right: none;
  }
  .b04_main_ttl {
    font-size: 14px;
    margin: 0 0 10px;
  }
  .b04_main_add {
    font-size: 14px;
  }
  .box05 {
    padding: 0;
  }
  .b05_main {
    width: 100%;
    margin: 0;
  }
  .b05_txt {
    font-size: 18px;
    text-align: center;
  }
  .b5_box {
    width: 100% !important;
    padding: 30px 0;
  }
  .ft_main {
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
  }
  .f_logo {
    margin: auto;
    padding-bottom: 30px;
  }
  .ft_mod:nth-child(1) {
    width: 100%;
    margin: 0 0 30px;
    text-align: center;
  }
  .ft_ttl {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .ft_form input {
    width: 65%;
    margin: 15px 0;
    display: block;
    padding: 9px;
  }
  .ft_link {
    padding: 40px 0 0;
  }
  .ft_ttl {
    text-align: center;
  }
  .ft_mod:nth-child(2) {
    width: 100%;
  }
  .ft_mod:nth-child(3) {
    width: 100%;
    margin: 30px 0 0;
  }
  .ft_social {
    justify-content: center;
  }
  .ft_social a {
    margin: 0 11px;
  }
  .ft_txt {
    font-size: 16px;
  }
  .ft_time {
    font-size: 16px;
  }
  .ft_form {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .copyright {
    padding: 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .main_slide_button li {
    margin-right: 10px;
  }
  .main_slide_button li:nth-child(2) a {
    font-size: 13px;
  }
  .main_slide_button li a:before {
    margin-right: 5px;
    width: 18px;
    height: 18px;
  }
  .main_slide_button li:nth-child(1) a {
    font-size: 9px;
  }
  .main_slide_button li:nth-child(2) a:before {
    width: 12px;
  }
  .b02_list {
    flex-wrap: wrap;
  }
  .b02_list li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .b02_list {
    flex-wrap: wrap;
    margin: 0 0 20px;
  }
  .b02_info_list {
    display: block;
  }
  .tabs_content {
    height: auto;
    background-image: url("/assets/images/b02_box_sp_01.png");
  }
  .b04_main_item {
    width: 100%;
    border: none;
    border-bottom: 1px solid;
    padding: 0 0 20px;
  }
  .b04_main_item:last-child {
    margin-bottom: 0;
  }
  .box05 .idx_ttl {
    font-size: 32px;
  }
  .box05 .idx_ttl .small {
    font-size: 80px;
  }
}
