@charset "UTF-8";

body {
  font-size: 16px;
  letter-spacing: 0;
  font-family: "din-2014", "hiragino-kaku-gothic-pron", sans-serif;
  margin: 0;
}

/* =====================
  respoonsive
===================== */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* =====================
  module
===================== */

a:hover {
  opacity: 0.7;
}

/* =====================
  header
===================== */

.header {
  position: fixed;
  /* background-color: #fff; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999998;
}

.header_main {
  display: flex;
  width: 100%;
  /* height: 120px; */
  justify-content: space-between;
  align-items: center;
  padding: 0 3.6%;
  background-color: #fff;
  border-radius: 0px 0px 30px 30px;
  box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.10);
}

.header_logo {
  display: flex;
  align-items: center;

  width: 243px;
  height: 36px;
}

.header_items {
  display: flex;
  align-items: flex-start;
}

.header_item {
  display: flex;
  padding: 27.5px 22px;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  flex-direction: column;
  background: #FFF;

  transition: all .3s;
}

.header_item p:first-child {
  color: #000;
  text-align: center;
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.43px;

  transition: all .3s;
}

.header_item p:nth-child(2) {
  color: #818181;
  text-align: center;
  font-family: Helvetica;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  transition: all .3s;
}

.header_item:hover {
  background-color: #7A7A7A;
}

.header_item:hover .header_item_title {
  color: #fff;
}

.header_item:hover .header_item_subtitle {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .header_main {
    height: 46px;
    padding: 0 7%;
    /* box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.10); */
    border-radius: 0px 0px 0px 0px;
  }

  .header_logo {
    width: 40%;
    height: auto;
  }

  .l_header-nav {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;


    background-color: #fff;
  }

  .header_items {
    display: flex;
    gap: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
  }
}


/* =====================
  hamburger
===================== */
.js_nav {
  transition: opacity 0.24s;
}

.js_nav.is_active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1024px) {
  .js_nav {
    display: none;
  }

  .js_nav.is_active {
    display: block;
  }
}

.js_body.is_hidden {
  overflow: hidden;
}


.m_hamburger {
  display: block;
  width: 23px;
  height: 16px;
  position: relative;
  z-index: 100;
  border: none;
  background: transparent;
}

.m_hamburger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -1;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger_bar {
  width: 24px;
  height: 3px;
  position: absolute;
  left: 0;
  background: #1E1E1E;
}

.m_hamburger_bar:nth-child(1) {
  top: 0;
}

.m_hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.js_hamburger_bar.is_active:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.js_hamburger_bar.is_active:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}