@charset "utf-8";
/*共通CSS*/
* {
  box-sizing: border-box
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
}
body {
  max-width: 1920px;
  min-width: 320px;
  margin: auto;
  word-break: break-word;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: normal;
}
section {
  position: relative;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}
p:has(+ p) {
  margin-bottom: 1em;
}
ol, ul {
  list-style: none;
}
fieldset, img {
  border: 0;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
button {
  border: none;
  -webkit-appearance: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
a {
  display: inline-block;
}
p span,p a {
  display: inline;
}
a {
  position: relative;
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a,button,input[type="submit"] {
  position: relative;
  transition: var(--transition);
}
a:hover,button:hover,input[type="submit"]:hover {
  cursor: pointer;
  transition: var(--transition);
}
input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
}
.opa {
  transition: var(--transition);
  cursor: pointer;
}
.opa:hover {
  opacity: var(--opacity);
}

/* ==================================================
Break
================================================== */
.on1366, .on1280, .on1024, .on768, .on480, .on375 {
  display: none!important;
}
@media (min-width:1367px) {
  .off1366 {
    display: none!important;
  }
  .on1366 {
    display: block!important;
  }
}
@media (max-width:1280px) {
  .off1280 {
    display: none!important;
  }
  .on1280 {
    display: block!important;
  }
}
@media (max-width:1024px) {
  .off1024 {
    display: none!important;
  }
  .on1024 {
    display: block!important;
  }
}
@media (max-width:768px) {
  .off768 {
    display: none!important;
  }
  .on768 {
    display: block!important;
  }
}
@media (max-width:480px) {
  .off480 {
    display: none!important;
  }
  .on480 {
    display: block!important;
  }
}
/* ==================================================
色、背景
================================================== */
.white {
  color: #fff;
}
.black {
  color: var(--black);
}
.red {
  color: var(--red);
}
.primary {
  color: var(--primary);
}
.primary_sub {
  color: var(--primary_sub);
}
.notes {
  color: var(--notes);
}
.bgcw {
  background-color: #fff;
}
.bgcb {
  background-color: var(--black);
}
.bgcp {
  background-color: var(--primary);
}
.bgcp_bg01 {
  background-color: var(--primary_bg01);
}
.bgcp_bg02 {
  background-color: var(--primary_bg02);
}

/* ==================================================
text
================================================== */
.fs {
  font-size: max(.8em,12px);
}
.fl {
  font-weight: 200;
}
.fm {
  font-weight: 500;
}
.fb {
  font-weight: 800;
}
.fi {
  font-style: italic;
}
.tc {
  text-align: center!important;
}
.tr {
  text-align: right!important;
}
.tl {
  text-align: left!important;
}
.tj {
  text-align: justify!important;
}
.lhn {
  line-height: normal!important;
}
.ti1em {
  text-indent: 1em;
}
/* ==================================================
margin
================================================== */
.mts {
  margin-top: .5em!important;
}
.mt1em {
  margin-top: 1em!important;
}
.mt15 {
  margin-top: 15px!important;
}
.mt20 {
  margin-top: 20px!important;
}
.mt30 {
  margin-top: 30px!important;
}
.mt45 {
  margin-top: 45px!important;
}
.mt50 {
  margin-top: 50px!important;
}
.ms0 {
  margin-bottom: 0!important;
}
.mbs {
  margin-bottom: .5em!important;
}
.mb1em {
  margin-bottom: 1em!important;
}
.mb15 {
  margin-bottom: 15px!important;
}
.mb20 {
  margin-bottom: 20px!important;
}
.mb30 {
  margin-bottom: 30px!important;
}
.mb45 {
  margin-bottom: 45px!important;
}
.mb50 {
  margin-bottom: 50px!important;
}
@media (max-width:768px) {
  .mt45,.mt50 {
    margin-top: 30px!important;
  }
  .mb45,.mb50 {
    margin-bottom: 30px!important;
  }
}

/* ==================================================
Flex
================================================== */

.flex {
  display: flex;
  flex-wrap: wrap;
}
.jc_between {
  justify-content: space-between;
}
.jc_center {
  justify-content: center;
}
.ai_start {
  align-items: flex-start;
}
.ai_center {
  align-items: center;
}
.flex_rev {
  flex-direction: row-reverse;
}

/* ==================================================
Column
================================================== */
.col_2,.col_3,.col_4,
.img_col_2,.img_col_3,.img_col_4{
  display: grid;
}
.col_2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.col_3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
.col_4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
.img_col_2,.img_col_3,.img_col_4 {
  gap: 1em;
}
.img_col_1 figure img,.img_col_2 figure img,
.img_col_3 figure img,.img_col_4 figure img {
    border-radius: 15px;
}
.img_col_2 {
  grid-template-columns: repeat(2, 1fr);
}
.img_col_3 {
  grid-template-columns: repeat(3, 1fr);
}
.img_col_4 {
  grid-template-columns: repeat(4, 1fr);
}
.col_set {
  display: grid;
  align-items: flex-start;
  gap: 30px 5%;
}
.col_set > .img_con img {
  width: 100%;
}
@media (min-width: 769px) {
  .col_set {
    grid-template-columns: 30% 65%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .col_2,.col_3,.col_4,.col_set {
    grid-template-columns: 1fr;
  }
  .col_2 {
    gap: 30px;
  }
  .img_col_3,
  .img_col_4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col_set > .img_con {
    width: 90%;
    max-width: 450px;
    margin-inline: auto;
  }

}

/* ==================================================
fade
================================================== */
.inview {
  opacity: 0;
  transition: all 1s;
}
.inview.is-show {
  opacity: 1;
}
.inview.early {
  transition: all 0.5s;
}
.inview.slow {
  transition: all 1.5s;
}
.fadein_up {
  transform: translateY(30px);
  visibility: hidden;
}
.fadein_up.is-show {
  visibility: visible;
  transform: translateY(0px);
}
.fadein_l {
  transform: translateX(80px);
  visibility: hidden;
}
.fadein_l.is-show {
  visibility: visible;
  transform: translateX(0px);
}
.fadein_r {
  transform: translateX(-80px);
  visibility: hidden;
}
.fadein_r.is-show {
  visibility: visible;
  transform: translateX(0px);
}

/* ==================================================
breadcrumb-list
================================================== */
.breadcrumb-nav {
  margin: 20px auto;
  padding: 0;
  background: transparent;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--primary);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\003E";
  margin: 0 10px;
  color: var(--primary);
  font-size: 10px;
}
.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}