@charset "UTF-8";
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Regular.woff2") format("woff2"), url("../fonts/Outfit-Regular.woff") format("woff"), url("../fonts/Outfit-Regular.eot") format("eot");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Bold.woff2") format("woff2"), url("../fonts/Outfit-Bold.woff") format("woff"), url("../fonts/Outfit-Bold.eot") format("eot");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff"), url("../fonts/NotoSansJP-Bold.eot") format("eot");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff"), url("../fonts/NotoSansJP-Regular.eot") format("eot");
  font-weight: 400;
  font-style: normal;
}
* {
  letter-spacing: 0.05em;
  line-height: 1.75em;
}
* :has(> wbr) {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: 'Noto Sans JP','游ゴシック体',YuGothic,'游ゴシック Medium','Yu Gothic Medium','游ゴシック','Yu Gothic',sans-serif;
  font-size: 1.6rem;
  background: #fff;
  overflow-wrap: break-word;
}

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

em {
  font-style: normal;
}

table {
  table-layout: fixed;
}

input[type=text], input[type=search], input[type=email], input[type=tel], input[type=password] {
  padding: 0.5em 1.5em;
  background: #fff;
}
input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}
input[type=checkbox]:has(+ span) {
  display: none;
}
input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.75em;
}
input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 1.5em;
  border: 1px solid currentColor;
  aspect-ratio: 1/1;
}
input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0.5em;
  display: block;
  width: 0.55em;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  rotate: -45deg;
  aspect-ratio: 3/2;
}

textarea {
  width: 100%;
  min-height: 8em;
  padding: 0.5em 1em;
  resize: vertical;
  background: #fff;
  border-radius: 5px;
}

.selectStl01 {
  position: relative;
  background: #fff;
  border-radius: 5px;
}
.selectStl01::after {
  content: "";
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
  width: 0.5em;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  rotate: 45deg;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.selectStl01 select {
  width: 100%;
  min-height: 50px;
  padding: 0.5em 1em;
}

*[data-width] {
  width: attr(data-width px);
  max-width: 100%;
}

*[data-height] {
  min-height: attr(data-height px);
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.container:not([data-width]) {
  width: 1320px;
}
.container[data-width] {
  width: calc(attr(data-width px) + 40px);
}

.dp_ib {
  display: inline-block;
}

.flexBox {
  display: flex;
}
.flexL {
  order: 1;
}
.flexC {
  order: 2;
}
.flexR {
  order: 3;
}

.i_flex {
  display: inline-flex;
}

.ai_c {
  align-items: center;
}
.ai_fs {
  align-items: flex-start;
}
.ai_fe {
  align-items: flex-end;
}
.ai_s {
  align-items: stretch;
}

.jc_sb {
  justify-content: space-between;
}
.jc_sa {
  justify-content: space-around;
}
.jc_c {
  justify-content: center;
}
.jc_fe {
  justify-content: flex-end;
}

.fdc {
  flex-direction: column;
}

.fw_wp {
  flex-wrap: wrap;
}

.taC {
  text-align: center;
}
.taR {
  text-align: right;
}
.taL {
  text-align: left;
}

.fwB {
  font-weight: bold;
}
.fwN {
  font-weight: normal;
}

.m-c {
  margin-inline: auto;
}

.grid-center {
  display: grid;
  place-content: center;
  place-items: center;
}

.ma-05 {
  margin: 0.5em;
}
.ma-0 {
  margin: 0em;
}
@media (max-width: 1020px) {
  .ma-0 {
    margin: calc(0 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-0 {
  margin-bottom: 0em;
}
@media (max-width: 1020px) {
  .mb-0 {
    margin-bottom: calc(0em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-0 {
  margin-top: 0em;
}
@media (max-width: 1020px) {
  .mt-0 {
    margin-top: calc(0em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-0 {
  margin-left: 0em;
}
@media (max-width: 1020px) {
  .ml-0 {
    margin-left: calc(0em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-0 {
  margin-right: 0em;
}
@media (max-width: 1020px) {
  .mr-0 {
    margin-right: calc(0em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-0 {
  padding: 0em;
}
@media (max-width: 1020px) {
  .pa-0 {
    padding: calc(0em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-0 {
  padding-bottom: 0em;
}
@media (max-width: 1020px) {
  .pb-0 {
    padding-bottom: calc(0em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-0 {
  padding-top: 0em;
}
@media (max-width: 1020px) {
  .pt-0 {
    padding-top: calc(0em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-0 {
  padding-left: 0em;
}
@media (max-width: 1020px) {
  .pl-0 {
    padding-left: calc(0em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-0 {
  padding-right: 0em;
}
@media (max-width: 1020px) {
  .pr-0 {
    padding-right: calc(0em * 0.6);
  }
}

.gap-0 {
  gap: 0em;
}
@media (max-width: 1020px) {
  .gap-0 {
    gap: calc(0em * 0.6);
  }
}

.colGap-0 {
  -moz-column-gap: 0em;
       column-gap: 0em;
}
@media (max-width: 1020px) {
  .colGap-0 {
    -moz-column-gap: calc(0em * 0.6);
         column-gap: calc(0em * 0.6);
  }
}

.rowGap-0 {
  row-gap: 0em;
}
@media (max-width: 1020px) {
  .rowGap-0 {
    row-gap: calc(0em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-1 {
  margin: 1em;
}
@media (max-width: 1020px) {
  .ma-1 {
    margin: calc(1 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-1 {
  margin-bottom: 1em;
}
@media (max-width: 1020px) {
  .mb-1 {
    margin-bottom: calc(1em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-1 {
  margin-top: 1em;
}
@media (max-width: 1020px) {
  .mt-1 {
    margin-top: calc(1em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-1 {
  margin-left: 1em;
}
@media (max-width: 1020px) {
  .ml-1 {
    margin-left: calc(1em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-1 {
  margin-right: 1em;
}
@media (max-width: 1020px) {
  .mr-1 {
    margin-right: calc(1em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-1 {
  padding: 1em;
}
@media (max-width: 1020px) {
  .pa-1 {
    padding: calc(1em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-1 {
  padding-bottom: 1em;
}
@media (max-width: 1020px) {
  .pb-1 {
    padding-bottom: calc(1em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-1 {
  padding-top: 1em;
}
@media (max-width: 1020px) {
  .pt-1 {
    padding-top: calc(1em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-1 {
  padding-left: 1em;
}
@media (max-width: 1020px) {
  .pl-1 {
    padding-left: calc(1em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-1 {
  padding-right: 1em;
}
@media (max-width: 1020px) {
  .pr-1 {
    padding-right: calc(1em * 0.6);
  }
}

.gap-1 {
  gap: 1em;
}
@media (max-width: 1020px) {
  .gap-1 {
    gap: calc(1em * 0.6);
  }
}

.colGap-1 {
  -moz-column-gap: 1em;
       column-gap: 1em;
}
@media (max-width: 1020px) {
  .colGap-1 {
    -moz-column-gap: calc(1em * 0.6);
         column-gap: calc(1em * 0.6);
  }
}

.rowGap-1 {
  row-gap: 1em;
}
@media (max-width: 1020px) {
  .rowGap-1 {
    row-gap: calc(1em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-2 {
  margin: 2em;
}
@media (max-width: 1020px) {
  .ma-2 {
    margin: calc(2 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-2 {
  margin-bottom: 2em;
}
@media (max-width: 1020px) {
  .mb-2 {
    margin-bottom: calc(2em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-2 {
  margin-top: 2em;
}
@media (max-width: 1020px) {
  .mt-2 {
    margin-top: calc(2em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-2 {
  margin-left: 2em;
}
@media (max-width: 1020px) {
  .ml-2 {
    margin-left: calc(2em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-2 {
  margin-right: 2em;
}
@media (max-width: 1020px) {
  .mr-2 {
    margin-right: calc(2em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-2 {
  padding: 2em;
}
@media (max-width: 1020px) {
  .pa-2 {
    padding: calc(2em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-2 {
  padding-bottom: 2em;
}
@media (max-width: 1020px) {
  .pb-2 {
    padding-bottom: calc(2em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-2 {
  padding-top: 2em;
}
@media (max-width: 1020px) {
  .pt-2 {
    padding-top: calc(2em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-2 {
  padding-left: 2em;
}
@media (max-width: 1020px) {
  .pl-2 {
    padding-left: calc(2em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-2 {
  padding-right: 2em;
}
@media (max-width: 1020px) {
  .pr-2 {
    padding-right: calc(2em * 0.6);
  }
}

.gap-2 {
  gap: 2em;
}
@media (max-width: 1020px) {
  .gap-2 {
    gap: calc(2em * 0.6);
  }
}

.colGap-2 {
  -moz-column-gap: 2em;
       column-gap: 2em;
}
@media (max-width: 1020px) {
  .colGap-2 {
    -moz-column-gap: calc(2em * 0.6);
         column-gap: calc(2em * 0.6);
  }
}

.rowGap-2 {
  row-gap: 2em;
}
@media (max-width: 1020px) {
  .rowGap-2 {
    row-gap: calc(2em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-3 {
  margin: 3em;
}
@media (max-width: 1020px) {
  .ma-3 {
    margin: calc(3 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-3 {
  margin-bottom: 3em;
}
@media (max-width: 1020px) {
  .mb-3 {
    margin-bottom: calc(3em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-3 {
  margin-top: 3em;
}
@media (max-width: 1020px) {
  .mt-3 {
    margin-top: calc(3em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-3 {
  margin-left: 3em;
}
@media (max-width: 1020px) {
  .ml-3 {
    margin-left: calc(3em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-3 {
  margin-right: 3em;
}
@media (max-width: 1020px) {
  .mr-3 {
    margin-right: calc(3em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-3 {
  padding: 3em;
}
@media (max-width: 1020px) {
  .pa-3 {
    padding: calc(3em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-3 {
  padding-bottom: 3em;
}
@media (max-width: 1020px) {
  .pb-3 {
    padding-bottom: calc(3em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-3 {
  padding-top: 3em;
}
@media (max-width: 1020px) {
  .pt-3 {
    padding-top: calc(3em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-3 {
  padding-left: 3em;
}
@media (max-width: 1020px) {
  .pl-3 {
    padding-left: calc(3em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-3 {
  padding-right: 3em;
}
@media (max-width: 1020px) {
  .pr-3 {
    padding-right: calc(3em * 0.6);
  }
}

.gap-3 {
  gap: 3em;
}
@media (max-width: 1020px) {
  .gap-3 {
    gap: calc(3em * 0.6);
  }
}

.colGap-3 {
  -moz-column-gap: 3em;
       column-gap: 3em;
}
@media (max-width: 1020px) {
  .colGap-3 {
    -moz-column-gap: calc(3em * 0.6);
         column-gap: calc(3em * 0.6);
  }
}

.rowGap-3 {
  row-gap: 3em;
}
@media (max-width: 1020px) {
  .rowGap-3 {
    row-gap: calc(3em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-4 {
  margin: 4em;
}
@media (max-width: 1020px) {
  .ma-4 {
    margin: calc(4 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-4 {
  margin-bottom: 4em;
}
@media (max-width: 1020px) {
  .mb-4 {
    margin-bottom: calc(4em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-4 {
  margin-top: 4em;
}
@media (max-width: 1020px) {
  .mt-4 {
    margin-top: calc(4em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-4 {
  margin-left: 4em;
}
@media (max-width: 1020px) {
  .ml-4 {
    margin-left: calc(4em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-4 {
  margin-right: 4em;
}
@media (max-width: 1020px) {
  .mr-4 {
    margin-right: calc(4em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-4 {
  padding: 4em;
}
@media (max-width: 1020px) {
  .pa-4 {
    padding: calc(4em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-4 {
  padding-bottom: 4em;
}
@media (max-width: 1020px) {
  .pb-4 {
    padding-bottom: calc(4em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-4 {
  padding-top: 4em;
}
@media (max-width: 1020px) {
  .pt-4 {
    padding-top: calc(4em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-4 {
  padding-left: 4em;
}
@media (max-width: 1020px) {
  .pl-4 {
    padding-left: calc(4em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-4 {
  padding-right: 4em;
}
@media (max-width: 1020px) {
  .pr-4 {
    padding-right: calc(4em * 0.6);
  }
}

.gap-4 {
  gap: 4em;
}
@media (max-width: 1020px) {
  .gap-4 {
    gap: calc(4em * 0.6);
  }
}

.colGap-4 {
  -moz-column-gap: 4em;
       column-gap: 4em;
}
@media (max-width: 1020px) {
  .colGap-4 {
    -moz-column-gap: calc(4em * 0.6);
         column-gap: calc(4em * 0.6);
  }
}

.rowGap-4 {
  row-gap: 4em;
}
@media (max-width: 1020px) {
  .rowGap-4 {
    row-gap: calc(4em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-5 {
  margin: 5em;
}
@media (max-width: 1020px) {
  .ma-5 {
    margin: calc(5 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-5 {
  margin-bottom: 5em;
}
@media (max-width: 1020px) {
  .mb-5 {
    margin-bottom: calc(5em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-5 {
  margin-top: 5em;
}
@media (max-width: 1020px) {
  .mt-5 {
    margin-top: calc(5em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-5 {
  margin-left: 5em;
}
@media (max-width: 1020px) {
  .ml-5 {
    margin-left: calc(5em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-5 {
  margin-right: 5em;
}
@media (max-width: 1020px) {
  .mr-5 {
    margin-right: calc(5em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-5 {
  padding: 5em;
}
@media (max-width: 1020px) {
  .pa-5 {
    padding: calc(5em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-5 {
  padding-bottom: 5em;
}
@media (max-width: 1020px) {
  .pb-5 {
    padding-bottom: calc(5em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-5 {
  padding-top: 5em;
}
@media (max-width: 1020px) {
  .pt-5 {
    padding-top: calc(5em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-5 {
  padding-left: 5em;
}
@media (max-width: 1020px) {
  .pl-5 {
    padding-left: calc(5em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-5 {
  padding-right: 5em;
}
@media (max-width: 1020px) {
  .pr-5 {
    padding-right: calc(5em * 0.6);
  }
}

.gap-5 {
  gap: 5em;
}
@media (max-width: 1020px) {
  .gap-5 {
    gap: calc(5em * 0.6);
  }
}

.colGap-5 {
  -moz-column-gap: 5em;
       column-gap: 5em;
}
@media (max-width: 1020px) {
  .colGap-5 {
    -moz-column-gap: calc(5em * 0.6);
         column-gap: calc(5em * 0.6);
  }
}

.rowGap-5 {
  row-gap: 5em;
}
@media (max-width: 1020px) {
  .rowGap-5 {
    row-gap: calc(5em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-6 {
  margin: 6em;
}
@media (max-width: 1020px) {
  .ma-6 {
    margin: calc(6 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-6 {
  margin-bottom: 6em;
}
@media (max-width: 1020px) {
  .mb-6 {
    margin-bottom: calc(6em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-6 {
  margin-top: 6em;
}
@media (max-width: 1020px) {
  .mt-6 {
    margin-top: calc(6em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-6 {
  margin-left: 6em;
}
@media (max-width: 1020px) {
  .ml-6 {
    margin-left: calc(6em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-6 {
  margin-right: 6em;
}
@media (max-width: 1020px) {
  .mr-6 {
    margin-right: calc(6em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-6 {
  padding: 6em;
}
@media (max-width: 1020px) {
  .pa-6 {
    padding: calc(6em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-6 {
  padding-bottom: 6em;
}
@media (max-width: 1020px) {
  .pb-6 {
    padding-bottom: calc(6em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-6 {
  padding-top: 6em;
}
@media (max-width: 1020px) {
  .pt-6 {
    padding-top: calc(6em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-6 {
  padding-left: 6em;
}
@media (max-width: 1020px) {
  .pl-6 {
    padding-left: calc(6em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-6 {
  padding-right: 6em;
}
@media (max-width: 1020px) {
  .pr-6 {
    padding-right: calc(6em * 0.6);
  }
}

.gap-6 {
  gap: 6em;
}
@media (max-width: 1020px) {
  .gap-6 {
    gap: calc(6em * 0.6);
  }
}

.colGap-6 {
  -moz-column-gap: 6em;
       column-gap: 6em;
}
@media (max-width: 1020px) {
  .colGap-6 {
    -moz-column-gap: calc(6em * 0.6);
         column-gap: calc(6em * 0.6);
  }
}

.rowGap-6 {
  row-gap: 6em;
}
@media (max-width: 1020px) {
  .rowGap-6 {
    row-gap: calc(6em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-7 {
  margin: 7em;
}
@media (max-width: 1020px) {
  .ma-7 {
    margin: calc(7 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-7 {
  margin-bottom: 7em;
}
@media (max-width: 1020px) {
  .mb-7 {
    margin-bottom: calc(7em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-7 {
  margin-top: 7em;
}
@media (max-width: 1020px) {
  .mt-7 {
    margin-top: calc(7em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-7 {
  margin-left: 7em;
}
@media (max-width: 1020px) {
  .ml-7 {
    margin-left: calc(7em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-7 {
  margin-right: 7em;
}
@media (max-width: 1020px) {
  .mr-7 {
    margin-right: calc(7em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-7 {
  padding: 7em;
}
@media (max-width: 1020px) {
  .pa-7 {
    padding: calc(7em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-7 {
  padding-bottom: 7em;
}
@media (max-width: 1020px) {
  .pb-7 {
    padding-bottom: calc(7em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-7 {
  padding-top: 7em;
}
@media (max-width: 1020px) {
  .pt-7 {
    padding-top: calc(7em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-7 {
  padding-left: 7em;
}
@media (max-width: 1020px) {
  .pl-7 {
    padding-left: calc(7em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-7 {
  padding-right: 7em;
}
@media (max-width: 1020px) {
  .pr-7 {
    padding-right: calc(7em * 0.6);
  }
}

.gap-7 {
  gap: 7em;
}
@media (max-width: 1020px) {
  .gap-7 {
    gap: calc(7em * 0.6);
  }
}

.colGap-7 {
  -moz-column-gap: 7em;
       column-gap: 7em;
}
@media (max-width: 1020px) {
  .colGap-7 {
    -moz-column-gap: calc(7em * 0.6);
         column-gap: calc(7em * 0.6);
  }
}

.rowGap-7 {
  row-gap: 7em;
}
@media (max-width: 1020px) {
  .rowGap-7 {
    row-gap: calc(7em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-8 {
  margin: 8em;
}
@media (max-width: 1020px) {
  .ma-8 {
    margin: calc(8 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-8 {
  margin-bottom: 8em;
}
@media (max-width: 1020px) {
  .mb-8 {
    margin-bottom: calc(8em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-8 {
  margin-top: 8em;
}
@media (max-width: 1020px) {
  .mt-8 {
    margin-top: calc(8em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-8 {
  margin-left: 8em;
}
@media (max-width: 1020px) {
  .ml-8 {
    margin-left: calc(8em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-8 {
  margin-right: 8em;
}
@media (max-width: 1020px) {
  .mr-8 {
    margin-right: calc(8em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-8 {
  padding: 8em;
}
@media (max-width: 1020px) {
  .pa-8 {
    padding: calc(8em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-8 {
  padding-bottom: 8em;
}
@media (max-width: 1020px) {
  .pb-8 {
    padding-bottom: calc(8em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-8 {
  padding-top: 8em;
}
@media (max-width: 1020px) {
  .pt-8 {
    padding-top: calc(8em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-8 {
  padding-left: 8em;
}
@media (max-width: 1020px) {
  .pl-8 {
    padding-left: calc(8em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-8 {
  padding-right: 8em;
}
@media (max-width: 1020px) {
  .pr-8 {
    padding-right: calc(8em * 0.6);
  }
}

.gap-8 {
  gap: 8em;
}
@media (max-width: 1020px) {
  .gap-8 {
    gap: calc(8em * 0.6);
  }
}

.colGap-8 {
  -moz-column-gap: 8em;
       column-gap: 8em;
}
@media (max-width: 1020px) {
  .colGap-8 {
    -moz-column-gap: calc(8em * 0.6);
         column-gap: calc(8em * 0.6);
  }
}

.rowGap-8 {
  row-gap: 8em;
}
@media (max-width: 1020px) {
  .rowGap-8 {
    row-gap: calc(8em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-9 {
  margin: 9em;
}
@media (max-width: 1020px) {
  .ma-9 {
    margin: calc(9 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-9 {
  margin-bottom: 9em;
}
@media (max-width: 1020px) {
  .mb-9 {
    margin-bottom: calc(9em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-9 {
  margin-top: 9em;
}
@media (max-width: 1020px) {
  .mt-9 {
    margin-top: calc(9em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-9 {
  margin-left: 9em;
}
@media (max-width: 1020px) {
  .ml-9 {
    margin-left: calc(9em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-9 {
  margin-right: 9em;
}
@media (max-width: 1020px) {
  .mr-9 {
    margin-right: calc(9em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-9 {
  padding: 9em;
}
@media (max-width: 1020px) {
  .pa-9 {
    padding: calc(9em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-9 {
  padding-bottom: 9em;
}
@media (max-width: 1020px) {
  .pb-9 {
    padding-bottom: calc(9em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-9 {
  padding-top: 9em;
}
@media (max-width: 1020px) {
  .pt-9 {
    padding-top: calc(9em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-9 {
  padding-left: 9em;
}
@media (max-width: 1020px) {
  .pl-9 {
    padding-left: calc(9em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-9 {
  padding-right: 9em;
}
@media (max-width: 1020px) {
  .pr-9 {
    padding-right: calc(9em * 0.6);
  }
}

.gap-9 {
  gap: 9em;
}
@media (max-width: 1020px) {
  .gap-9 {
    gap: calc(9em * 0.6);
  }
}

.colGap-9 {
  -moz-column-gap: 9em;
       column-gap: 9em;
}
@media (max-width: 1020px) {
  .colGap-9 {
    -moz-column-gap: calc(9em * 0.6);
         column-gap: calc(9em * 0.6);
  }
}

.rowGap-9 {
  row-gap: 9em;
}
@media (max-width: 1020px) {
  .rowGap-9 {
    row-gap: calc(9em * 0.6);
  }
}

.ma-05 {
  margin: 0.5em;
}
.ma-10 {
  margin: 10em;
}
@media (max-width: 1020px) {
  .ma-10 {
    margin: calc(10 * 0.6);
  }
}
.mb-05 {
  margin-bottom: 0.5em;
}
.mb-10 {
  margin-bottom: 10em;
}
@media (max-width: 1020px) {
  .mb-10 {
    margin-bottom: calc(10em * 0.6);
  }
}
.mt-05 {
  margin-top: 0.5em;
}
.mt-10 {
  margin-top: 10em;
}
@media (max-width: 1020px) {
  .mt-10 {
    margin-top: calc(10em * 0.6);
  }
}
.ml-05 {
  margin-left: 0.5em;
}
.ml-10 {
  margin-left: 10em;
}
@media (max-width: 1020px) {
  .ml-10 {
    margin-left: calc(10em * 0.6);
  }
}
.mr-05 {
  margin-right: 0.5em;
}
.mr-10 {
  margin-right: 10em;
}
@media (max-width: 1020px) {
  .mr-10 {
    margin-right: calc(10em * 0.6);
  }
}

.pa-05 {
  padding: 0.5em;
}
.pa-10 {
  padding: 10em;
}
@media (max-width: 1020px) {
  .pa-10 {
    padding: calc(10em * 0.6);
  }
}
.pb-05 {
  padding-bottom: 0.5em;
}
.pb-10 {
  padding-bottom: 10em;
}
@media (max-width: 1020px) {
  .pb-10 {
    padding-bottom: calc(10em * 0.6);
  }
}
.pt-05 {
  padding-top: 0.5em;
}
.pt-10 {
  padding-top: 10em;
}
@media (max-width: 1020px) {
  .pt-10 {
    padding-top: calc(10em * 0.6);
  }
}
.pl-05 {
  padding-left: 0.5em;
}
.pl-10 {
  padding-left: 10em;
}
@media (max-width: 1020px) {
  .pl-10 {
    padding-left: calc(10em * 0.6);
  }
}
.pr-05 {
  padding-right: 0.5em;
}
.pr-10 {
  padding-right: 10em;
}
@media (max-width: 1020px) {
  .pr-10 {
    padding-right: calc(10em * 0.6);
  }
}

.gap-10 {
  gap: 10em;
}
@media (max-width: 1020px) {
  .gap-10 {
    gap: calc(10em * 0.6);
  }
}

.colGap-10 {
  -moz-column-gap: 10em;
       column-gap: 10em;
}
@media (max-width: 1020px) {
  .colGap-10 {
    -moz-column-gap: calc(10em * 0.6);
         column-gap: calc(10em * 0.6);
  }
}

.rowGap-10 {
  row-gap: 10em;
}
@media (max-width: 1020px) {
  .rowGap-10 {
    row-gap: calc(10em * 0.6);
  }
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.colGap-025 {
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
}
@media (max-width: 1020px) {
  .colGap-025 {
    -moz-column-gap: 0.15em;
         column-gap: 0.15em;
  }
}

.rowGap-025 {
  row-gap: 0.25em;
}
@media (max-width: 1020px) {
  .rowGap-025 {
    row-gap: 0.15em;
  }
}

.gap-025 {
  gap: 0.25em;
}
@media (max-width: 1020px) {
  .gap-025 {
    gap: 0.15em;
  }
}

.colGap-05 {
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
@media (max-width: 1020px) {
  .colGap-05 {
    -moz-column-gap: 0.3em;
         column-gap: 0.3em;
  }
}

.rowGap-05 {
  row-gap: 0.5em;
}
@media (max-width: 1020px) {
  .rowGap-05 {
    row-gap: 0.3em;
  }
}

.gap-05 {
  gap: 0.5em;
}
@media (max-width: 1020px) {
  .gap-05 {
    gap: 0.3em;
  }
}

.br-10 {
  border-radius: 1rem;
}

.hoverOpa {
  transition: opacity 0.3s;
}
.hoverOpa:hover {
  opacity: 0.8;
}

.youtubeWrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtubeWrap iframe {
  width: 100% !important;
  height: 100% !important;
}

.bk_gry {
  background: #eff2f4;
}
.bk_blk {
  background: #333;
}
.bk_orn {
  background: #EF7F11;
}
.bk_orn[class*=btn] {
  transition: color 0.3s, background-color 0.3s;
}
.bk_orn[class*=btn]:hover {
  color: #EF7F11;
  background: #fff;
}
.bk_gld {
  background: linear-gradient(45deg, #ef7f11, #f4be5a);
}

svg {
  display: block;
  fill: currentColor;
}

.fc_orn {
  color: #EF7F11;
}
.fc_wht {
  color: #fff;
}

.popBox {
  position: fixed;
  inset: 50% 0 auto 0;
  display: none;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 90%;
  margin: auto;
  translate: 0 -50%;
  z-index: 100;
}
.popBox .youtubeWrap {
  width: 1000px;
  max-width: 100%;
}

.closeBtn {
  position: absolute;
  top: -0.5em;
  right: 0;
  display: block;
  width: 2em;
  height: 2em;
  translate: 0 -100%;
}
.closeBtn::before, .closeBtn::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  display: block;
  width: 2px;
  height: 100%;
  margin: auto;
  background: #fff;
  translate: 0 -50%;
}
.closeBtn::before {
  rotate: 45deg;
}
.closeBtn::after {
  rotate: -45deg;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

/*==================================

全ページ共通CSS

==================================*/
.ttlStl01 {
  font-size: 3.2rem;
}
.ttlStl01:not(.taL):not(.taR) {
  text-align: center;
}
.ttlStl01:not(.taL):not(.taR) > svg {
  margin-inline: auto;
}
.ttlStl01:not(.taL):not(.taR) p {
  justify-content: center;
}
.ttlStl01:has(p.fc_orn) svg {
  fill: #EF7F11;
}
.ttlStl01 p {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 0.40625em;
}
.ttlStl01 p svg {
  flex-shrink: 0;
}
.ttlStl01 p::before, .ttlStl01 p:after {
  display: block;
  flex-shrink: 0;
  width: 2em;
  height: 0.35em;
  transform: skewX(-45deg);
}
.ttlStl01 p:not(:has(svg))::before {
  content: "";
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.ttlStl01 p::after {
  content: "";
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.ttlStl01 :is(h1, h2, h3) {
  font-family: 'Outfit';
}

.ttlStl02 {
  padding-bottom: 1em;
  font-size: 1.25em;
  font-weight: bold;
  background: linear-gradient(to right ,#EF7F11,#F4BE5A) no-repeat bottom left/100% 2px;
}

.ttlStl03 {
  font-size: 1.5em;
  font-weight: bold;
}
@media (max-width: 1020px) {
  .ttlStl03 {
    font-size: 1.2em;
  }
}

.ttlStl04 {
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.857em;
}
@media (max-width: 1020px) {
  .ttlStl04 {
    font-size: 1.5em;
  }
}
.ttlStl04:has(svg) {
  display: grid;
  gap: 1em;
  place-content: center;
  place-items: center;
}

.indent01 {
  padding-left: 1em;
  text-indent: -1em;
}
.indent01 > * {
  text-indent: 0;
}

.indent01List > * {
  padding-left: 1em;
  text-indent: -1em;
}
.indent01List > * > * {
  text-indent: 0;
}

.ul01 > * {
  padding-left: 1em;
  text-indent: -1em;
}
.ul01 > *:before {
  content: "・";
}

.linkStl01:not(:hover) {
  text-decoration: underline;
}

.btnStl01 {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 0 1em;
  padding: 0.5em 1em 0.5em 1.5em;
  color: #fff;
  background: #333;
  border: 1px solid #333;
  border-radius: 100vmax;
  transition: color 0.3s, background-color 0.3s, background-image 0.3s;
}
.btnStl01:not([data-width]) {
  width: -moz-fit-content;
  width: fit-content;
}
.btnStl01 .arrow {
  display: grid;
  place-content: center;
  width: 1.25em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: currentColor;
}
.btnStl01 .arrow::before {
  content: "";
  display: block;
  width: 0.3em;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  aspect-ratio: 1/1;
  rotate: 45deg;
  translate: -10% 0;
  transition: border-color 0.3s;
}
@media (max-width: 1020px) {
  .btnStl01 .arrow::before {
    border-right-width: 1px;
    border-top-width: 1px;
  }
}
.btnStl01[data-width]:has(.arrow) {
  justify-content: space-between;
}
.btnStl01:hover {
  color: #333;
  background-color: #fff;
}
.btnStl01:hover .arrow::before {
  border-color: #fff;
}
.btnStl01.ico_blank:hover {
  background-image: url(../images/ico_blank_blk.svg);
}

.btnStl02 {
  display: flex;
  align-items: center;
  gap: 1em;
  min-height: 50px;
  padding: 0.5em 1.25em 0.5em;
  border: 1px solid currentColor;
  border-radius: 100vmax;
  transition: color 0.3s, background-color 0.3s;
}
.btnStl02 svg {
  flex-shrink: 0;
}
.btnStl02::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.3em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  rotate: 45deg;
  aspect-ratio: 1/1;
}

.btnStl03 {
  display: flex;
  align-items: center;
  gap: 0.75em;
  justify-content: space-between;
  padding: 0.75em;
}
.btnStl03 svg {
  flex-shrink: 0;
}
.btnStl03::after {
  content: "";
  display: block;
  width: 0.3em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  aspect-ratio: 1/1;
  rotate: 45deg;
}

.ico_blank {
  padding-right: 2.75em;
  background-image: url(../images/ico_blank_wht.svg);
  background-repeat: no-repeat;
  background-position: center right 1.2em;
  background-size: 1em auto;
}
.ico_blank.fc_orn {
  background-image: url(../images/ico_blank2_orn.svg);
}

.ico_toggle {
  position: relative;
  display: block;
  width: 0.8em;
  height: 0.8em;
}
.ico_toggle::before, .ico_toggle::after {
  position: absolute;
  inset: 50% 0 auto 0;
  display: block;
  margin-inline: auto;
  background: #333;
  translate: 0 -50%;
}
.ico_toggle::before {
  content: "";
  width: 100%;
  height: 1px;
}
.ico_toggle::after {
  width: 1px;
  height: 100%;
}
.ico_toggle:not(.active)::after {
  content: "";
}

*:has(> .ico_toggle) {
  cursor: pointer;
}

*:has(> .ico_toggle:not(.active)) ~ * {
  display: none;
}

.ico_index {
  display: flex;
  align-items: center;
  gap: 1em;
  font-weight: bold;
}
.ico_index::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background: url(../images/ico_index_orn.svg) no-repeat center center/contain;
}

.logo {
  font-family: 'Outfit';
}
.logo p {
  line-height: 1em;
}

.telInformation {
  gap: 0 1.5em;
}
.telInformation a[href^="tel:"] {
  display: flex;
  align-items: center;
  gap: 0 0.25em;
  font-family: 'Outfit';
  line-height: 1.2em;
}
.telInformation a[href^="tel:"] svg {
  flex-shrink: 0;
  fill: #EF7F11;
}
.telInformation dl {
  display: flex;
  flex-wrap: wrap;
}
.telInformation dl dt {
  font-weight: normal;
}

.linkList01 {
  gap: 0.1em 1.5em;
}
.linkList01 > li > a {
  display: flex;
  align-items: center;
  gap: 0.45em;
}
.linkList01 > li > a:not(:has(svg))::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.5em;
  height: 0.5em;
  background: #EF7F11;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.linkList02 > li {
  margin-top: 0.75em;
}
.linkList02 > li > a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.15em;
  line-height: 1.4em;
}
.linkList02 > li > a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  border-radius: 100vmax;
  border: 1px solid #ddd;
}
.linkList02 > li > a::after {
  content: "";
  position: absolute;
  top: 0.675em;
  left: 0.35em;
  display: block;
  width: 0.225em;
  height: 0.225em;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  rotate: 45deg;
}

.linkList03 > li {
  border-bottom: 1px solid #dddddd;
}
.linkList03 > li > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
  font-weight: bold;
  line-height: 1.4em;
}
.linkList03 > li > a::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 1.1428em;
  margin-top: 0.3em;
  background: currentColor;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
}
.linkList03 > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.415em;
  display: block;
  width: 0.225em;
  height: 0.225em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
}

.tagList {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
}
.tagList > li a {
  display: block;
  padding: 0.5em 1em;
  color: #EF7F11;
  line-height: 1.2em;
  background-color: #fff;
  border-radius: 100vmax;
  transition: color 0.3s, background-color 0.3s;
}
.tagList > li a:hover, .tagList > li a.active {
  color: #fff;
  background-color: #EF7F11;
}

.newsStl01 {
  position: relative;
}
.newsStl01 .arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75em;
  border: 1px solid #ddd;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.newsStl01 .arrow::before {
  content: "";
  display: block;
  width: 22%;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  aspect-ratio: 1/1;
  rotate: 45deg;
  translate: -25% 0;
  transition: border-color 0.3s;
}
.newsStl01:has(.news-title:hover) .arrow, .newsStl01:has(.news-thumbnail:hover) .arrow,
.newsStl01 .arrow:hover {
  background: #333;
}
.newsStl01:has(.news-title:hover) .arrow::before, .newsStl01:has(.news-thumbnail:hover) .arrow::before,
.newsStl01 .arrow:hover::before {
  border-color: #fff;
}
.news-thumbnail {
  display: block;
  aspect-ratio: 3/2;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s;
}
.news-thumbnail:hover {
  opacity: 0.75;
}
.news-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.news-data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65em;
  margin-top: 1.25em;
}
.news-date {
  color: #a9b0b7;
  font-family: 'Outfit';
  font-size: 0.93333em;
  letter-spacing: 0;
  line-height: 1.2em;
}
.news-title {
  font-weight: bold;
  line-height: 1.4em;
  transition: opacity 0.3s;
}
.news-title:hover {
  opacity: 0.75;
}
.news-tag, .news-details {
  font-size: 0.75em;
}
.news-tag {
  margin-top: 0.5em;
}

.icon-pickup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  color: #fff;
  width: 4em;
  font-family: 'Outfit';
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2em;
  background: #EF7F11;
  aspect-ratio: 1/1;
  border-radius: 50%;
  translate: -20% -20%;
  pointer-events: none;
}
.icon-pickup::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px dotted #EF7F11;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.articleList01 > * {
  display: grid;
  align-items: center;
  gap: 0.5em 0.75em;
  grid-template-columns: 26.3% 5em 1fr;
  grid-template-rows: auto auto auto auto;
  padding: 1.2em 0;
  border-top: 1px solid #ddd;
}
@media (max-width: 1020px) {
  .articleList01 > * {
    grid-template-columns: 26.3% 1fr;
  }
}
.articleList01 > *:last-of-type {
  border-bottom: 1px solid #ddd;
}
.articleList01 > * .tagList {
  grid-column: 3;
}
@media (max-width: 1020px) {
  .articleList01 > * .tagList {
    grid-column: 2;
  }
}
.articleList01 > * .news-thumbnail {
  grid-column: 1;
  grid-row: 1/-1;
  margin-right: 0.75em;
}
@media (max-width: 1020px) {
  .articleList01 > * .news-thumbnail {
    grid-row: 1/3;
    margin-right: 0;
  }
}
.articleList01 > * .news-tag {
  margin-top: 0;
}
.articleList01 > * .news-date {
  grid-column: 2;
}
.articleList01 > * .news-data {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  margin-top: 0;
}
.articleList01 > * .news-title {
  flex-basis: 100%;
}
.articleList01 > * .news-title, .articleList01 > * .news-details {
  grid-column: 2/4;
}
@media (max-width: 1020px) {
  .articleList01 > * .news-title, .articleList01 > * .news-details {
    grid-column: 1/-1;
  }
}

.prevBtn01,
.nextBtn01 {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 1.875em;
  background: #333;
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.prevBtn01::before,
.nextBtn01::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  display: block;
  width: 20%;
  margin: auto;
  rotate: 45deg;
  aspect-ratio: 1/1;
}

.prevBtn01::before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  translate: 25% -50%;
}

.nextBtn01::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  translate: -25% -50%;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #a9b0b7;
  border-radius: 50%;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #EF7F11;
}

@media (min-width: 1020.1px) {
  .search-keyword {
    flex-basis: 48%;
  }
}
@media (max-width: 1020px) {
  .search-keyword {
    align-self: stretch;
  }
}
.search-keyword label {
  font-family: 'Outfit';
}
.search-keyword label svg {
  fill: #EF7F11;
}
.search__input {
  position: relative;
  flex-grow: 1;
}
.search__input input {
  width: 100%;
  border-radius: 4px;
}
.search__input button {
  position: absolute;
  top: 50%;
  right: 0.5em;
  translate: 0 -50%;
}
.search-tag {
  font-size: 0.8125em;
}
@media (min-width: 1020.1px) {
  .search-tag {
    flex-basis: 48%;
  }
}

.companyInformation address {
  color: #999;
  font-size: 0.8125em;
}

/*==================================

ヘッダー

==================================*/
body > header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2em 0 0.2em 2%;
  background: #fff;
}
@media (min-width: 1020.1px) {
  body > header {
    min-height: 100px;
    font-size: 1.2rem;
  }
}
@media (max-width: 1020px) {
  body > header {
    height: 60px;
    padding: 0.2em 0 0.2em 4%;
  }
}
body > header .logo a {
  display: grid;
  align-items: center;
  gap: 0.5em;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  text-align: left;
}
@media (max-width: 1020px) {
  body > header .logo a {
    grid-template-columns: 35% 1fr;
    row-gap: 0;
  }
  body > header .logo a svg {
    max-width: 100%;
  }
}
body > header .logo a span.pcOnly {
  grid-column: 1/-1;
  letter-spacing: 0.05em;
  line-height: 1.2em;
}
body > header .logo a span:not(.pcOnly) {
  display: flex;
  align-items: center;
  align-self: flex-end;
  gap: 0 1em;
  font-size: 1.6rem;
  line-height: 1.1428em;
}
@media (max-width: 1020px) {
  body > header .logo a span:not(.pcOnly) {
    font-size: clamp(10px, 0.875em, 3.5vw);
  }
}
body > header .logo a span:not(.pcOnly)::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 1em;
  margin-left: 1em;
  background: #333;
  rotate: 45deg;
}
@media (max-width: 1020px) {
  body > header .logo a span:not(.pcOnly)::before {
    margin-top: 0.35em;
  }
}
@media (min-width: 1020.1px) {
  body > header #header-menu {
    display: grid !important;
    align-items: center;
    gap: 0 0.5em;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto 1fr;
  }
}
@media (max-width: 1020px) {
  body > header #header-menu {
    position: fixed;
    inset: 60px 0 0;
    display: none;
    padding: 1.75em 2rem 3em;
    background: #eff2f4;
    overflow-y: scroll;
  }
  body > header #header-menu[style*="display: block;"] {
    display: flex !important;
    flex-direction: column;
    gap: 1em 0;
  }
}
body > header #header-menu .companyInformation {
  padding-top: 2.75em;
  border-top: 1px solid #333;
}
@media (min-width: 1020.1px) {
  body > header .telInformation {
    align-self: flex-end;
    grid-column: 1/3;
    grid-row: 1;
    padding-top: 0.5em;
  }
}
@media (max-width: 1020px) {
  body > header .telInformation {
    align-items: flex-start;
    order: 10;
    margin-top: 1em;
  }
  body > header .telInformation dl {
    font-size: 0.8125em;
  }
}
body > header .telInformation a {
  flex-shrink: 0;
  font-size: 2.2rem;
}
body > header .header__mainMenu :has(> .ico_toggle) {
  display: flex;
  align-items: center;
}
body > header .header__mainMenu :has(> .ico_toggle) .ico_toggle {
  flex-shrink: 0;
  margin-left: auto;
}
body > header .header__mainMenu > li > :is(a, span) {
  display: block;
  padding: 0.2em 0;
  font-family: 'Outfit';
  font-size: 2em;
}
body > header .header__subMenu {
  align-self: center;
  grid-row: 2;
}
@media (min-width: 1020.1px) {
  body > header .header__subMenu {
    margin-left: 0.5em;
    padding-left: 1.5em;
    border-left: 1px solid #333;
  }
}
@media (max-width: 1020px) {
  body > header .header__subMenu {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 1em;
    margin: 1em 0;
  }
}
body > header .header__subMenu .btnStl03 {
  flex-grow: 1;
}
body > header .header__subMenu ul li a {
  display: block;
}
body > header .header__companyMenu {
  grid-row: 2;
}
@media (max-width: 1020px) {
  body > header .header__companyMenu {
    align-items: flex-start;
    margin-top: 2.75em;
    font-size: 0.875em;
  }
  body > header .header__companyMenu li a {
    padding: 0.25em 0;
  }
  body > header .header__companyMenu li a::before {
    display: none;
  }
  body > header .header__companyMenu li a svg {
    display: none;
  }
  body > header .header__companyMenu li a[target=_blank]::after {
    content: "";
    display: block;
    width: 0.9em;
    height: 1em;
    background: url(../images/ico_blank_blk.svg) no-repeat center center/contain;
  }
}
body > header .header__contactMenu {
  display: flex;
}
@media (min-width: 1020.1px) {
  body > header .header__contactMenu {
    grid-column: 3;
    grid-row: 1/-1;
    margin: -1em 0em -1em 1em;
  }
}
@media (max-width: 1020px) {
  body > header .header__contactMenu li {
    flex-basis: 50%;
  }
}
body > header .header__contactMenu li a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
}
@media (min-width: 1020.1px) {
  body > header .header__contactMenu li a {
    display: grid;
    place-content: center;
    place-items: center;
    width: 8.333em;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 1020px) {
  body > header .header__contactMenu li a {
    gap: 0.3em;
    padding: 1em 0.75em;
    font-size: 0.9em;
  }
  body > header .header__contactMenu li a svg {
    width: 1em;
    height: 0.8em;
  }
  body > header .header__contactMenu li a::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 0.3em;
    height: 0.3em;
    margin-left: auto;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    rotate: 45deg;
  }
}
@media (max-width: 1020px) {
  body > header .header__snsLink li a {
    display: grid;
    place-content: center;
    place-items: center;
    width: 5rem;
    background: #fff;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }
}
body > header .naviButton {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background-color: #333;
  cursor: pointer;
}
body > header .naviButton span, body > header .naviButton:before, body > header .naviButton:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 25%;
  height: 1px;
  margin: 0 auto;
  background: #fff;
}
body > header .naviButton:before {
  top: 37%;
  transition: top 0.3s 0.3s, rotate 0.3s;
}
body > header .naviButton span {
  top: 45%;
  transition: 0s 0.3s;
}
body > header .naviButton:after {
  top: 53%;
  transition: top 0.3s 0.3s, rotate 0.3s;
}
body > header .naviButton.active:before, body > header .naviButton.active:after {
  top: 45%;
  transition: top 0.3s, rotate 0.3s 0.3s;
}
body > header .naviButton.active:before {
  rotate: 45deg;
}
body > header .naviButton.active span {
  width: 0;
}
body > header .naviButton.active:after {
  rotate: -45deg;
}

/*==================================

フッター

==================================*/
.pagetop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 10;
}

#footer {
  padding: 4em 0;
  color: #fff;
  background: #333;
}
#footer .btnStl02:hover {
  color: #333;
  background: #fff;
}
#footer .container {
  width: 1040px;
}
#footer .footer__information {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #fff;
}
@media (max-width: 1020px) {
  #footer .footer__information {
    padding-bottom: 1.2em;
  }
}
@media (max-width: 1020px) {
  #footer .footer__information .logo {
    width: 100%;
    padding: 0 0 2em;
    border-bottom: 1px solid #fff;
  }
}
#footer .footer__information .logo svg {
  margin: 0 auto;
}
#footer .footer__information .logo p {
  margin-top: 0.5em;
}
@media (min-width: 1020.1px) {
  #footer .footer__information .telInformation {
    margin-left: auto;
  }
}
@media (max-width: 1020px) {
  #footer .footer__information .telInformation {
    padding: 1em 0 0.75em;
  }
}
#footer .footer__information .telInformation a[href^=tel] {
  font-size: 1.5em;
}
@media (max-width: 1020px) {
  #footer .footer__information .telInformation a[href^=tel] {
    justify-content: center;
  }
}
#footer .footer__information .telInformation dl {
  font-size: 0.8125em;
}
#footer .footer__link {
  display: flex;
  gap: 1em 3em;
}
@media (max-width: 1020px) {
  #footer .footer__link {
    gap: 2em;
  }
}
@media (min-width: 1020.1px) {
  #footer .footer__link .companyInformation {
    margin-right: auto;
  }
}
#footer .footer__link dl:not(.companyInformation) dt {
  margin-bottom: 0.3em;
  font-family: 'Outfit';
  font-size: 1.25em;
  font-weight: normal;
}
#footer .footer__link dl:not(.companyInformation) dd {
  padding-left: 0.75em;
}
#footer .footer__link ul:not(.snsLink) {
  font-size: 0.875em;
}
#footer .footer__link ul:not(.snsLink):not(.footer__pageLink) > li + li {
  margin-top: 0.75em;
}
#footer .footer__pageLink li + li {
  margin-top: 0.825em;
}
@media (max-width: 1020px) {
  #footer .footer__contactMenu {
    order: 2;
  }
}
@media (min-width: 1020.1px) {
  #footer .snsLink {
    align-self: flex-end;
    flex-basis: 50%;
  }
}
#footer .snsLink a {
  display: grid;
  place-content: center;
  width: 2.5em;
  background: #fff;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: opacity 0.3s;
}
#footer .snsLink a:hover {
  opacity: 0.8;
}
#footer .snsLink a svg {
  fill: #333;
}
#footer .copyright {
  color: #999;
}
@media (min-width: 1020.1px) {
  #footer .copyright {
    margin-left: auto;
  }
}
@media (max-width: 1020px) {
  #footer .copyright {
    order: 10;
  }
}

/*==================================

フローティングボタン

==================================*/
.floatBtn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 5;
}
.floatBtn a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1.25em 1em;
  color: #fff;
  writing-mode: vertical-rl;
}
.floatBtn a + a {
  margin-top: 1px;
}
.floatBtn a:first-of-type {
  border-top-left-radius: 10px;
}
.floatBtn a:last-of-type {
  border-bottom-left-radius: 10px;
}

/*==================================

カテゴリーリンク

==================================*/
.topicsCatLink :has(> .ico_toggle) {
  display: flex;
  align-items: center;
}
.topicsCatLink :has(> .ico_toggle) .ico_toggle {
  flex-shrink: 0;
  margin-left: auto;
}
.topicsCatLink > div + div {
  margin-top: 1.75em;
}
.topicsCatLink > div > dt {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 0;
  border-bottom: 2px solid #dddddd;
}
.topicsCatLink > div > dt::before {
  content: "";
  flex-shrink: 0;
  width: 0.5em;
  height: 0.5em;
  background: #EF7F11;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.topicsCatLink > div > dd {
  padding: 0.25em 0 0.25em 1.6em;
  font-size: 0.875em;
}
.topicsCatLink > div > dd > dl > dt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0.9em 0;
  border-bottom: 1px solid #dddddd;
}
.topicsCatLink > div > dd > dl > dt::before {
  content: "";
  flex-shrink: 0;
  width: 1em;
  background: currentColor;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.topicsCatLink > div > dd > dl > dt::after {
  content: "";
  position: absolute;
  left: 0.35em;
  display: block;
  width: 0.2em;
  height: 0.2em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
}
.topicsCatLink > div > dd > dl > dd {
  padding: 1.25em 0 1em;
}

/*==================================

トップページ

==================================*/
#whatsNew {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1020px) {
  #whatsNew {
    flex-direction: column;
  }
}

.whatsNew__pickup {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 3em 4%;
}
@media (min-width: 1020.1px) {
  .whatsNew__pickup {
    flex-basis: 45%;
  }
}
@media (max-width: 1020px) {
  .whatsNew__pickup {
    width: 100%;
  }
}
.whatsNew__contents {
  width: 100%;
}
@media (min-width: 1020.1px) {
  .whatsNew__contents {
    width: 55%;
  }
}
.whatsNew__contents .swiper-controller {
  position: absolute;
  bottom: 3em;
  left: 6em;
}
@media (max-width: 1020px) {
  .whatsNew__contents .swiper-controller {
    left: auto;
    right: 20px;
    bottom: 4.25em;
  }
}
.whatsNew__introduction {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 1em 2.5em;
  min-height: 15em;
  margin: 0 0 -2em -6em;
  padding: 3em 2em 5em 6em;
  color: #fff;
  background: linear-gradient(to right ,#EF7F11,#F4BE5A);
}
@media (max-width: 1020px) {
  .whatsNew__introduction {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding: 4em 2rem;
  }
}
.whatsNew__introduction__title {
  grid-row: 1/-1;
}
@media (max-width: 1020px) {
  .whatsNew__introduction__title {
    order: 3;
    margin-top: 2em;
  }
}
.whatsNew__introduction__copy {
  font-size: 2.2rem;
}
.whatsNew__introduction__text {
  grid-column: 2;
}
.whatsNew__list {
  overflow: hidden;
}
@media (max-width: 1020px) {
  .whatsNew__list {
    padding-left: 2rem;
  }
}
.whatsNew__list .swiper {
  overflow: visible;
}
.whatsNew__list .swiper-slide {
  width: 262.5px;
}
.whatsNew > .container {
  flex-basis: 100%;
}

.sliderBanner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2em 1em;
}
@media (max-width: 1020px) {
  .sliderBanner {
    margin: 3em auto 6em;
  }
}
.sliderBanner .swiper {
  width: 100%;
}
@media (max-width: 1020px) {
  .sliderBanner .swiper {
    grid-column: 1/-1;
    grid-row: 1;
  }
}
.sliderBanner li a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  min-height: 170px;
  padding: 0.25em 1.75em;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 1020px) {
  .sliderBanner li a {
    padding: 0 0 1.5em;
  }
}
@media (min-width: 1020.1px) {
  .sliderBanner li a:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
  }
}
.sliderBanner li a > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1020.1px) {
  .sliderBanner li a > * {
    color: #fff;
  }
}
.sliderBanner li a p {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}
@media (max-width: 1020px) {
  .sliderBanner li a p {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}
.sliderBanner li a p span {
  font-size: 0.8125em;
}
@media (max-width: 1020px) {
  .sliderBanner li a p span {
    color: #EF7F11;
  }
}
.sliderBanner li a > img {
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1020.1px) {
  .sliderBanner li a > img {
    position: absolute;
    inset: 0;
  }
}
@media (max-width: 1020px) {
  .sliderBanner li a > img {
    -o-object-position: center right;
       object-position: center right;
    aspect-ratio: 5/3;
  }
}
.sliderBanner li a .linkTxt01 {
  font-size: 0.75em;
}
@media (max-width: 1020px) {
  .sliderBanner li a .linkTxt01 {
    max-width: 90%;
    margin: 0 auto;
  }
}
.sliderBanner li a:hover .linkTxt01 {
  color: #333;
  background: #fff;
}
.sliderBanner li a:hover .linkTxt01 .arrow:before {
  border-color: #fff;
}
@media (max-width: 1020px) {
  .sliderBanner .bn-button-next {
    grid-column: 3;
  }
}
.sliderBanner .bn-pagination {
  grid-column: 1/-1;
}
@media (max-width: 1020px) {
  .sliderBanner .bn-pagination {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 1020px) {
  .topics__category {
    gap: 0;
  }
}
.topics__category > li {
  flex: 1;
}
.topics__category > li button {
  width: 100%;
  padding: 1em 1.5em;
  line-height: 1.2em;
}
@media (min-width: 1020.1px) {
  .topics__category > li button {
    border-radius: 100vmax;
  }
}
@media (max-width: 1020px) {
  .topics__category > li button {
    height: 100%;
    padding: 1em 0.2em;
    font-size: 0.8125em;
  }
}
.topics__category > li button[aria-selected=true] {
  color: #fff;
  background: #333;
}
.topics__category > li button[aria-selected=false] {
  color: #a9b0b7;
  border: 1px solid currentColor;
}
.topics__contents__image {
  border-radius: 1rem;
  overflow: hidden;
}
.topics__contents__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__contents dl {
  margin-top: 0.75em;
}
.topics__contents dl dt {
  margin-bottom: 1em;
  font-size: 1.125em;
  border-bottom: 1px solid #ddd;
}
.topics__contents dl dt > a,
.topics__contents dl dt > span:not([class]) {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  padding: 1.05em 0;
  line-height: 1.2em;
}
.topics__contents dl dt > a::before,
.topics__contents dl dt > span:not([class])::before {
  content: "";
  flex-shrink: 0;
  width: 1.1115em;
  margin-top: 0.1em;
  background: currentColor;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.topics__contents dl dt > a::after,
.topics__contents dl dt > span:not([class])::after {
  content: "";
  position: absolute;
  display: block;
  top: 1.58em;
  left: 0.4225em;
  width: 0.2em;
  height: 0.2em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
}
@media (min-width: 1020.1px) {
  .topics__contents dl dt a {
    width: 100%;
  }
}
@media (max-width: 1020px) {
  .topics__contents dl dt a {
    pointer-events: none;
  }
}
@media (min-width: 1020.1px) {
  .topics__contents dl dt .ico_toggle {
    display: none;
  }
}
@media (min-width: 1020.1px) {
  .topics__contents dl dd {
    display: block !important;
  }
}
@media (max-width: 1020px) {
  .topics__contents dl dd {
    padding-bottom: 2em;
  }
  .topics__contents dl dd ul {
    display: grid;
    gap: 0 1em;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1020px) {
  .topics__contents > ul:has(.ico_toggle) {
    gap: 0;
  }
  .topics__contents > ul:has(.ico_toggle) dt {
    margin-bottom: 0;
  }
  .topics__contents > ul > li:has(.ico_toggle) dl {
    margin: 0;
  }
  .topics__contents > ul > li:has(.ico_toggle) dl dt {
    margin-bottom: 0;
  }
  .topics__contents > ul > li:has(.ico_toggle) dl dd {
    padding: 1.5em 0 2em;
  }
}

.movie__list *[class*=movie-button-] {
  margin-top: 11%;
  translate: 0 -50%;
}
@media (max-width: 768px) {
  .movie__list *[class*=movie-button-] {
    margin-top: 21%;
  }
}
.movie__thumbnail {
  position: relative;
  aspect-ratio: 2/1;
  border-radius: 1rem;
  overflow: hidden;
}
.movie__thumbnail::before, .movie__thumbnail::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 50% 0 auto;
  margin: auto;
}
.movie__thumbnail::before {
  aspect-ratio: 1/1;
  width: 6rem;
  max-width: 30%;
  border: 1px solid #fff;
  border-radius: 50%;
  translate: 0 -50%;
}
.movie__thumbnail::after {
  width: 1.5rem;
  max-width: 7.5%;
  background: #fff;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  translate: 6% -50%;
}
.movie__thumbnail img {
  width: 100%;
  height: 100%;
  filter: brightness(70%);
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s;
}

a:hover .movie__thumbnail img {
  filter: brightness(50%);
}

.ranking__list {
  counter-reset: ranking;
}
.ranking__list > li {
  position: relative;
  padding-left: 0.55em;
}
.ranking__list > li::before {
  content: counter(ranking);
  position: absolute;
  top: 0.95em;
  left: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  place-items: center;
  width: 1.785em;
  counter-increment: ranking;
  color: #fff;
  font-family: 'Outfit';
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1em;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.ranking__list > li:first-of-type:before {
  background: #9b9461;
}
.ranking__list > li:nth-of-type(2):before {
  background: #a3afae;
}
.ranking__list > li:nth-of-type(3):before {
  background: #8c7351;
}

/*==================================

下層ページ共通CSS

==================================*/
/*==================================

下層ページ:ページ名

==================================*/
/*==================================

js animation

==================================*/
.hide {
  animation: hide 0.3s forwards;
}

.show {
  animation: show 0.3s forwards;
}

@keyframes show {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.js_st[class*=fadein] {
  opacity: 0;
}
.js_st[class*=fadeinT] {
  translate: 0 50px;
}
.js_st[class*=fadeinB] {
  translate: 0 -50px;
}
.js_st[class*=fadeinR] {
  translate: -50px 0;
}
.js_st[class*=fadeinL] {
  translate: 50px 0;
}
.js_st[class*=fadein].scrollin {
  opacity: 1;
  translate: 0;
  transition: all 1500ms, background 0.3s, min-width 0s;
}

@media (min-width: 1020.1px) {
  .spOnly {
    display: none !important;
  }
}

/*==================================

@media screen SP

==================================*/
@media (max-width: 1020px) {
  .pcOnly {
    display: none !important;
  }
  .sp_bk {
    display: block;
  }
  .sp_fdc {
    align-items: center;
    flex-direction: column;
  }
  .sp_g100 {
    grid-template-columns: 100%;
  }
  .sp_taC {
    text-align: center;
  }
  .sp_col-1 {
    grid-template-columns: 100%;
  }
  .sp_col-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .sp_col-1 {
    grid-template-columns: 100%;
  }
  .sp_col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .sp_col-1 {
    grid-template-columns: 100%;
  }
  .sp_col-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .sp_col-1 {
    grid-template-columns: 100%;
  }
  .sp_col-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.screen-reader-text {
  width: 0px !important;
  height: 0px !important;
  overflow: hidden !important;
}

.wpcf7 input[type=submit] {
  width: 220px;
  max-width: 100%;
  min-height: 60px;
  margin-inline: auto;
  box-sizing: border-box;
}/*# sourceMappingURL=style.css.map */