/* ----------------------------------------------------------------header*/
header {
  position: relative;
  text-align: left;
}
#header {
  width: 100%;
  padding: 20px var(--ctr-pd) 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0) 100%);
}

#header > div {
  display: flex;
  justify-content: space-between;
}
#header .header_logo img {
  width: auto;
  height: 90px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.15);
}

.header_right {
  position: relative;
  color: var(--white);
  a {
    text-decoration: none;
    color: var(--white);
  }
  .header_top {
    h1 {
      height: 24px;
      line-height: 1.1;
      padding-left: 1em;
      text-align: right;
      font-size: 9px;
    }
    .lang {
      display: flex;
      justify-content: flex-end;
      font-family: var(--font-serif);
      padding-top: 3px;
      padding-right: 115px;
      li {
        span,
        a {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 54px;
          height: 26px;
          background: rgba(255, 255, 255, 0.2);
        }
        a {
          background: rgba(0, 0, 0, 0.2);
          transition: all 0.5s;
        }
      }
    }
  }
  .header_conact {
    position: absolute;
    top: 20px;
    right: 31px;
p.time {
  display: none;
}
    ul {
      display: flex;
      font-family: var(--font-serif);
      li {
        i {
          font-size: 20px;
        }
        a {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 40px;
          height: 40px;
          transition: all 0.5s;
        }
        span {
          display: none;
        }
      }
    }
  }
}

@media print, screen and (min-width: 768px) {
  header {
    min-width: var(--ctr-min);
  }
  #header {
    min-width: var(--ctr-min);
    padding: 40px var(--ctr-pd) 30px;
  }
  #header .header_logo img {
    width: auto;
    height: auto;
  }
  .header_right {
    .header_top {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      width: 100%;
      gap: 20px;
      margin-bottom: 30px;
      h1 {
        height: auto;
        line-height: 1.1;
        text-align: right;
        font-size: 10px;
      }
      .lang {
        padding-top: 0;
        padding-right: 0;
      }
      .lang a:hover {
        color: var(--base-tx-color);
        background: var(--white);
      }
    }
    .header_conact {
      position: static;
      top: auto;
      right: auto;
      display: inline-block;
p.time {
  display: block;
  position: absolute;
  top: 90px;
  right: 7px;
  font-size: 16px;
  font-family: var(--font-serif);
}
      ul {
        display: flex;
        align-items: center;
        li {
          i {
            font-size: 24px;
          }
          a,
          p {
            display: flex;
            justify-content: center;
            align-items: top;
            gap: 5px;
            width: auto;
          }
          p {
            height: 48px;
            padding: 0 15px;
            border-left: solid 1px var(--white);
            span {
              font-size: 24px;
            }
          }
          span {
            display: block;
            font-size: var(--font-base);
            font-weight: 700;
          }
        }
        & .mail {
          a {
            width: 146px;
            height: 48px;
            border: solid 1px var(--white);
          }
          a:hover {
            color: var(--base-tx-color);
            background: var(--white);
          }
        }
      }
    }
  }
}
/*------------------------------------------------------------toggle*/
.toggle {
  position: fixed;
  top: 40px;
  right: calc(var(--ctr-pd) - 9px);
  width: 40px;
  height: 40px;
  z-index: 99999;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.toggle span {
  display: block;
  background: var(--white);
  width: 22px;
  height: 2px;
  position: absolute;
  left: 9px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.toggle span:first-child {
  top: 11px;
}
.toggle span:nth-child(2) {
  margin-top: -1px;
  top: 50%;
}
.toggle span:nth-child(3) {
  bottom: 11px;
}
.toggle.opennav {
  position: fixed;
  z-index: 99999;
}
.toggle.opennav span {
  background: var(--maincolor);
}
.toggle.opennav span:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.toggle.opennav span:nth-child(2) {
  opacity: 0;
}
.toggle.opennav span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .toggle {
    display: none;
  }
}

/*------------------------------------------------------------mainnavi*/
#mainnavi {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: var(--bg-base-sheer);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
}
#mainnavi > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#mainnavi > div > ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#mainnavi > div > ul > li {
  line-height: 1.1;
  font-family: var(--font-serif);
  font-weight: 700;
}
#mainnavi > div > ul > li > a {
  position: relative;
  color: var(--base-tx-color);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: all 0.5s;
}
#mainnavi > div > ul > li.active > a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 30px;
  height: 2px;
  content: "";
  background: var(--maincolor);
  transform: translateX(-50%);
}

@media print, screen and (min-width: 576px) {
  #mainnavi > div {
    padding: 0 var(--ctr_pd);
  }
  #mainnavi > div > ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  #mainnavi {
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    margin-right: 32px;
    padding: 0;
    text-align: center;
    backdrop-filter: none;
    background: none;
  }
  #mainnavi > div > ul {
    gap: 32px;
  }

  #mainnavi > div > ul li a {
    height: 48px;
    line-height: 48px;
    padding: 0;
    color: var(--white);
  }
  #mainnavi > div > ul > li > a::after,
  #mainnavi > div > ul > li > a::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 30px;
    height: 2px;
    content: "";
    background: transparent;
    transform: translateX(-50%);
    transition: all 0.5s;
  }
  #mainnavi > div > ul > li.active > a::after,
  #mainnavi > div > ul > li > a:hover::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 30px;
    height: 2px;
    content: "";
    background: var(--white);
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------header_fixed*/
/*-------------------------------------------header.fix*/
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 0px var(--ctr-pd);
  background: var(--bg-base-sheer);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: mnavslide linear 0.3s 1;
  -webkit-animation: mnavslide linear 0.3s 1;
  z-index: 9999;
  .header_right {
    padding-right: 31px;
    color: var(--base-tx-color);
    a {
      color: var(--base-tx-color);
    }
    .header_top {
      display: none;
    }
    .header_conact {
      position: static;
      margin-top: -5px;
      & li {
        margin-top: 15px;
      }
p.time {
  display: none;
}
    }
  }
  .header_logo {
    img {
      height: 60px;
    }
  }
  .header_top {
    display: none;
  }
  .toggle {
    top: 10px;
    span {
      background: var(--maincolor);
    }
  }
  .active a::after {
    background: var(--maincolor);
  }
}
@keyframes mnavslide {
  0% {
    top: -90px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes mnavslide {
  0% {
    top: -55px;
  }
  100% {
    top: 0;
  }
}
@media print, screen and (min-width: 768px) {
  #header.fixed {
    height: 78px;
    padding: 0px var(--ctr-pd);
    .header_right {
      padding-right: 0;
      padding-top: 5px;
      .header_conact {
        position: static;
        p.time {
  display: block;
  position: absolute;
  top: 37px;
  right: 7px;
  font-size: 16px;
  font-family: var(--font-serif);
}
        & li {
          a:hover {
            color: var(--white);
            background: var(--maincolor);
          }
          p {
            border-left: solid 1px var(--maincolor);
          }
        }
        & .mail {
          a {
            border: solid 1px var(--maincolor);
          }
        }
      }
    }
    .header_logo {
      img {
        height: 78px;
      }
    }
    .header_top {
      display: none;
    }
    .toggle {
      top: 10px;
      span {
        background: var(--maincolor);
      }
    }
    #mainnavi {
      a:hover::after {
        background: var(--maincolor);
      }
    }
  }
}

.header_conact {
  position: absolute;
  top: 20px;
  right: 31px;
  ul {
    display: flex;
    font-family: var(--font-serif);
    li {
      i {
        font-size: 20px;
      }
      a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
      }
      span {
        display: none;
      }
    }
  }
}

/*------------------------------------------------------------pagetitle*/
#pagetitle {
  height: 280px;
  padding: var(--ctr-inpd) var(--ctr-pd);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), url("../img/common_img/pagetitle.jpg") center center no-repeat;
  background-size: cover;
}
#pagetitle > div {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
#pagetitle > div h2 {
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
}
#pagetitle h2 .en {
  display: block;
  margin-bottom: 0.1em;
  line-height: 1.1;
  font-size: var(--font-xl);
}
#pagetitle h2 .ja {
  display: block;
  line-height: 1.1;
  font-size: var(--font-ll);
}

@media print, screen and (min-width: 768px) {
  #pagetitle {
    height: 460px;
  }
  #pagetitle > div {
  }
}

/*------------------------------------------------------------content*/
.content_bg01 {
  padding: 0 var(--ctr-pd) var(--ctr-td);
  text-align: left;
}
.content_bg01.top {
  padding: var(--ctr-td) var(--ctr-pd);
}
.content_bg02 {
  padding: var(--ctr-td) var(--ctr-pd);
  text-align: left;
  background: var(--bg-black-sheer);
}
.container {
  max-width: var(--ctr-min);
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .content_bg01 {
    min-width: var(--ctr-min);
  }
  .content_bg02 {
    text-align: left;
  }
  .container {
    width: var(--ctr-min);
  }
}

.tx_box p:not(:last-child) {
  margin-bottom: 1em;
}

/* ----------------------------------------------------------------footer*/
footer {
  padding: 36px var(--ctr-pd);
  color: var(--white);
  background: var(--bg-charcoal);
  & > div {
    display: flex;
    flex-direction: column;
    gap: var(--ctr-inpd);
    text-align: left;
    & .info {
      display: flex;
        flex-wrap: wrap;
      & h2 {
        margin-right: 1.25em;
        & img {
          width: auto;
          height: 90px;
        }
      }
      & .btn {
        margin-top: 1em;
        & a {
          display: inline-flex;
          justify-content: center;
          align-items: center;
          gap: 0.5em;
          padding: 0.515em 1.5em;
          line-height: 1.1;
          border: solid 1px var(--white);
          font-family: var(--font-serif);
          transition: all 0.5s;
          & > span {
            font-weight: 700;
          }
          & > a i {
            font-size: 1.6em;
          }
        }
      }
      & p a,
      & p a:hover,
      & p a:active {
        font-weight: 700;
        text-decoration: none;
        color: var(--white);
      }
    }
  } 

  .f_ph{
    width: min(80%,240px);
    margin: 0 auto;
    :is(img){
        width: 100%;
        height: auto;
    }
  }

  & .nav {
    & nav {
      display: flex;
      flex-direction: column;
      font-family: var(--font-serif);
      font-weight: 700;
      & ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5em 2em;
        & a {
          color: var(--white);
          text-decoration: none;
          transition: all 0.5s;
        }
      }
    }
    & .bn {
        width: 100%;
        margin-top: 20px;
        text-align: center;
        & a {
            display: inline-block;
            padding: 10px;
            text-align: center;
            text-decoration: none;
            color: var(--maincolor);
            border: solid 1px #fff;
            background: #fff;
            & p {
                line-height: 1.3;
                font-size: 15px;
            }
            & h3 {
                margin-top: 0.2em;
                line-height: 1.3;
                font-family: var(--font-serif);
                font-size: 18px;
                font-weight: 700;
            }
        }
    }
    & small {
      display: block;
      margin-top: 30px;
      text-align: center;
      font-size: 11px;
    }
  }
}

@media print, screen and (min-width: 768px) {
  footer {
    min-width: var(--ctr-min);
    padding: 50px var(--ctr-pd) 70px;
    & > div {
      flex-direction: row;
      justify-content: space-between;
      & .info {
        & h2 {
          margin-right: 30px;
          & img {
            width: auto;
            height: 140px;
          }
        }
        & .btn {
          & a:hover {
            color: var(--maincolor);
            background: var(--white);
          }
        }
      }
      .f_ph{
        width:130px;
        margin:0 auto 0 0;
        :is(img){
            width: 100%;
            height: auto;
        }
      }
      & .nav {
        & nav {
          & ul {
            justify-content: flex-end;
            gap: 0 2em;
            & a:hover {
              opacity: 0.6;
            }
          }
        }
        & .bn {
            width: auto;
            margin-top: 30px;
            text-align: right;
            & a {
                & p {
                    font-size: 16px;
                }
                & h3 {
                    margin-top: 0.2em;
                    font-size: 20px;
                }
                &:hover {
                    color: #fff;
                    background: none;
                }
            }
        }
        & small {
          display: block;
          margin-top: 50px;
          text-align: right;
          font-size: 11px;
        }
      }
    }
  }
}

/*------------------------------------------------------------Pankuzu*/
/*pankuzu*/
#pankuzu {
  width: 100%;
  padding: 15px var(--ctr-pd) 0;
  clear: both;
  text-align: right;
}
#pankuzu ol {
  display: inline-block;
  list-style: none;
}
#pankuzu ol li {
  float: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 11px;
  padding: 0 7px 0 10px;
  background: url(../img/common_img/icon_pankuzu.gif) no-repeat 0 50%;
}
#pankuzu ol li em {
  font-style: normal;
}
#pankuzu ol li.home {
  padding-left: 0;
  background: none;
}
#pankuzu ol li a:link,
#pankuzu ol li a:visited {
  text-decoration: underline;
}
#pankuzu ol li a:hover,
#pankuzu ol li a:active {
  text-decoration: underline;
}
/* ----------------------------------------------------------------rayout*/
.center {
  display: block;
  margin: auto;
}
/*------------------------------------------------------------table*/
.sheet_basic {
  width: 100%;
  border-collapse: collapse;
  border-top: dotted 1px var(--gray);
}
.sheet_basic tr th,
.sheet_basic tr td {
  padding: 1em;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
  border-bottom: dotted 1px var(--gray);
}
.sheet_basic tr th {
white-space: nowrap;
  background: var(--bg-black-sheer);
}

@media print, screen and (min-width: 768px) {
  .sheet_basic tr th,
  .sheet_basic tr td {
  }
}

.sheet_variable {
  width: 100%;
  border-collapse: collapse;
  border-left: 1px solid var(--gray);
  border-top: 1px solid var(--gray);
}
.sheet_variable tr th {
  display: block;
  padding: 1em;
  border-right: 1px solid var(--gray);
  background: var(--dark-gray);
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.sheet_variable tr td {
  display: block;
  padding: 1em;
  border-right: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  text-align: left;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .sheet_variable {
    border-collapse: separate;
  }
  .sheet_variable tr th {
    display: table-cell;
    border-bottom: 1px solid var(--gray);
    width: 25%;
  }
  .sheet_variable tr td {
    display: table-cell;
  }
}

/*------------------------------------------------------------list*/
.list_basic li {
  position: relative;
  margin-bottom: 0.75em;
  padding-left: 1.5em;
}
.list_basic li::before {
  position: absolute;
  top: 0.65em;
  left: 0.55em;
  width: 0.45em;
  height: 0.45em;
  content: "";
  border-radius: 100%;
  background: var(--maincolor);
}

.list_cnt {
  margin-left: 2em;
}
.list_cnt li {
  list-style-type: none;
  counter-increment: cnt;
  margin-bottom: 0.75em;
  line-height: 1.5;
}
.list_cnt li::before {
  content: counter(cnt) ".";
  display: inline-block;
  margin-left: -1.5em;
  width: 1.5em;
}

.list_kome li {
  position: relative;
  margin-bottom: 0.25em;
  padding-left: 1.5em;
}
.list_kome li::before {
  position: absolute;
  left: 0;
  content: "※";
}

/*box----*/
.list_box01{
    border: 4px solid var(--maincolor);
    background:var(--white);
    padding: 16px;

    &>li{
        position: relative;
        padding-left: 1.5em;
        &::before{
            position: absolute;
            top: 0.65em;
            left: 0.55em;
            width: 0.45em;
            height: 0.45em;
            content: "";
            border-radius: 100%;
            background: var(--maincolor);
        }

        &+li{
            margin-top: 0.75em;
        }
    }
}

/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
  height: 1px;
  clear: both;
  margin: var(--ctr-inpd) 0;
  border-top: 1px solid var(--gray);
  border-right: 0 dotted #ccc;
  border-bottom: 0 dotted #ccc;
  border-left: 0 dotted #ccc;
}

/*------------------------------------------------------------Text*/
.title_group01 {
  margin-bottom: 2.875em;
  .ti_group_ti {
    line-height: 1.1;
    font-weight: 700;
    /*width: max-content;*/
    font-family: var(--font-serif);
    font-size: var(--font-ll);
  }
  .ti_group_en {
    margin-bottom: 0.15em;
    color: var(--maincolor);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: var(--font-xl);
    line-height: 1.1;
    word-break: keep-all;
  }
}
.ti_group_en {
  :is(span) {
    display: inline-block;
  }
}

/*title*/
.title01 {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  line-height: 1.35;
  font-family: var(--font-ja-serif);
  font-size: var(--font-l);
  font-weight: 700;
  border-bottom: solid 2px var(--maincolor);
}
.title02 {
  margin-bottom: 0.9em;
  line-height: 1.35;
  font-size: var(--font-ml);
  font-weight: 700;
}

@media print, screen and (min-width: 768px) {
}
/*TextRight*/
.tx_right {
  text-align: right;
}
/*TextLeft*/
.tx_left {
  text-align: left;
}
/*TextCenter*/
.tx_cent {
  text-align: center;
}
/*bold*/
.tx_bold {
  font-style: normal;
  font-weight: bold;
}
/*TextRed*/
.tx_red {
  color: #c33;
}
/*attention*/
.attention {
  font-size: var(--font_xs);
  line-height: 130%;
  margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
  float: left;
}
/*FloatRight*/
.float_right {
  float: right;
}
/*ClearBoth*/
.clearboth {
  clear: both;
}
/*phbox*/
.phbox_right {
  text-align: center;
}
.phbox_right img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.phbox_left {
  text-align: center;
}
.phbox_left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1em;
}
.ov_hidden {
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .phbox_right {
    float: right;
    margin-left: 30px;
    margin-bottom: 0;
  }
  .phbox_left {
    float: left;
    margin-right: 30px;
    margin-bottom: 0;
  }
}

/*------------------------------------------------------------Margin*/
.space_bottom {
  margin-bottom: var(--ctr_inpd);
}
/*MarginTop*/
.margin_t05 {
  margin-top: 5px;
}
.margin_t10 {
  margin-top: 10px;
}
.margin_t20 {
  margin-top: 20px;
}
.margin_t30 {
  margin-top: 30px;
}
.margin_t40 {
  margin-top: 40px;
}
.margin_t50 {
  margin-top: 50px;
}
/*MarginBottom*/
.margin_b05 {
  margin-bottom: 5px;
}
.margin_b10 {
  margin-bottom: 10px;
}
.margin_b20 {
  margin-bottom: 20px;
}
.margin_b30 {
  margin-bottom: 30px;
}
.margin_b40 {
  margin-bottom: 40px;
}
.margin_b50 {
  margin-bottom: 50px;
}
/*MarginRight*/
.margin_r05 {
  margin-right: 5px;
}
.margin_r10 {
  margin-right: 10px;
}
.margin_r15 {
  margin-right: 15px;
}
.margin_r20 {
  margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
  margin-left: 50px;
}
.margin_l10 {
  margin-left: 10px;
}
.margin_l15 {
  margin-left: 15px;
}
.margin_l20 {
  margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
  margin-bottom: 10px;
}

@media print, screen and (min-width: 768px) {
  .margin-xs-b10 {
    margin-bottom: 0px;
  }
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a img.hoverimg {
  transition: all 0.5s;
}
a:hover img.hoverimg {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}
/*------------------------------------------------------------other*/
/*Pagetop*/
#pagetop {
  position: fixed;
  top: 50%;
  right: 7px;
  z-index: 999;
  transform: translateY(-50%);
  & a {
    display: inline-block;
    transition: all 0.5s;
    & img {
      width: 11px;
      height: auto;
    }
  }
}
@media print, screen and (min-width: 768px) {
  #pagetop {
    right: 0;
    padding: 0 20px 0 10px;
    & a {
      & img {
        width: auto;
        height: auto;
      }
    }
  }
}

/*---------btn*/
.btn_icon {
  text-align: right;
  & a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    height: 40px;
    padding: 0 1.5em;
    line-height: 1.1;
    text-decoration: none;
    color: var(--base-tx-color);
    border: solid 1px var(--maincolor);
    transition: all 0.5s;
    & span {
      position: relative;
      display: inline-block;
      font-family: var(--font-serif);
      font-weight: 700;
    }
    & i {
      font-size: 1.25em;
    }
  }
}
@media print, screen and (min-width: 768px) {
  .btn_icon {
    text-align: right;
    & a {
      height: 48px;
    }
    & a:hover {
      color: var(--white);
      background: var(--maincolor);
    }
  }
}

.btn_back a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 1.5em;
  line-height: 1.1;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--base-tx-color);
  text-decoration: none;
  border: solid 1px var(--maincolor);
  transition: all 0.5s;
  & span {
    position: relative;
    display: inline-block;
    padding-left: 34px;
  }
  & span::before {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 24px;
    height: 1px;
    content: "";
    background: var(--maincolor);
    transition: all 0.5s;
  }
  & span::after {
    position: absolute;
    left: 0;
    bottom: 3px;
    display: block;
    width: 8px;
    height: 1px;
    content: "";
    background: var(--maincolor);
    transform: rotate(-45deg);
    transition: all 0.5s;
  }
}
@media print, screen and (min-width: 768px) {
  .btn_back a {
    min-width: 200px;
    height: 48px;
    padding: 0 1.5em;
    & span {
      padding-left: 40px;
    }
    &:hover {
      color: var(--white);
      background: var(--maincolor);
      & span::before {
        background: var(--white);
      }
      & span::after {
        background: var(--white);
      }
    }
  }
}

.link_pdf {
  position: relative;
  padding-left: 1.5em;
  display: inline-block;
  text-decoration: underline;
}
.link_pdf::before {
  position: absolute;
  top: -0.1em;
  left: 0;
  font-family: "remixicon";
  font-size: 1.2em;
  content: "\f3c7";
  color: var(--red);
}

.anchor_point {
  margin-top: -60px;
  padding-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .anchor_point {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.sp_nowrap {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .sp_nowrap {
    display: inline;
  }
}
