@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

/* --------------- base --------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.7;
  font-feature-settings: "palt" 1;
  color: #333;
}

a {
  text-decoration: none;
  transition: 0.8s cubic-bezier(0.15, 1, 0.2, 1);
}

img,
svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
  box-sizing: border-box;
}


main {
  position: relative;
  z-index: 1;
  flex: 1;
}

*,
*::before,
*::after {
  box-sizing: boder-box;
}

.block {
  display: block;
}

.none {
  display: none;
}

.ib {
  display: inline-block;
}

.pc-none {
  display: none;
}

.sp-only {
  display: none;
}

@media (max-width: 1023px) {
  .pc-none {
    display: inherit;
  }
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
  .sp-only {
    display: inherit;
  }
}
/* --------------- type --------------- */
/* 和文タイトル */
/* 22~30 */
.jp-l{
  font-size: 1.563rem;
  font-size: clamp(1.563rem, 1.452rem + 0.47vw, 1.875rem);
}
/* 20*/
.jp-m{
  font-size: 20px;
}
/* 14*/
.jp-s{
  font-size: 14px;
}


/* 文字周り調整 */
.txt-light {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-just {
  text-align: justify;
}

.en-upper {
  text-transform: uppercase;
}

.m-big {
  font-size: 2em;
}

.big {
  font-size: 1.5em;
}

.small {
  font-size: 0.5em;
}

.nowrap {
  white-space: nowrap;
}

/* --------------- wrap --------------- */
.wrap-l {
  width: min(85%, 1010px);
  margin: 0 auto;
}
.wrap-m {
  width: min(85%, 544px);
  margin: 0 auto;
}


@media (max-width: 1023px) {
  .wrap-l {
    width: min(90%, 800px);
  }
}
@media (max-width: 767px) {
  .wrap-m,
  .wrap-l {
    width: min(90%, 500px);
  }
}
/* --------------- space --------------- */
/* 60-80 */
.space-l {
  padding-top: 3.75rem;
  padding-top: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
}

.space-l-bottom {
  padding-bottom: 3,75rem;
  padding-bottom: clamp(3.75rem, 3.31rem + 1.88vw, 5rem);
}

.space-m {
  padding-top: 4rem;
  padding-top: clamp(4rem, 2.544rem + 6.21vw, 10rem);
}

.space-m-bottom {
  padding-bottom: 4rem;
  padding-bottom: clamp(4rem, 2.544rem + 6.21vw, 10rem);
}

/* 40-80 */
.space-3s {
  padding-top: 2.5rem;
  padding-top: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
}

.space-3s-bottom {
  padding-bottom: 2.5rem;
  padding-bottom: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
}

.mb3 {
  margin-bottom: 3em;
}

.mb25 {
  margin-bottom: 2.5em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb15 {
  margin-bottom: 1.5em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb05 {
  margin-bottom: 0.5em;
}

.mt40 {
  margin-top: 40px;
}

.mt3 {
  margin-top: 3em;
}

.mt2 {
  margin-top: 2em;
}

.mt15 {
  margin-top: 1.5em;
}

.mt1 {
  margin-top: 1em;
}

.mt05 {
  margin-top: 0.5em;
}

.g3 {
  gap: 3em;
}

.g2 {
  gap: 2em;
}

.g1 {
  gap: 1em;
}

.g05 {
  gap: 0.5em;
}

.gg3 {
  grid-gap: 3em;
}

.gg2 {
  grid-gap: 2em;
}

.gg1 {
  grid-gap: 1em;
}

.p2 {
  padding: 2em;
}

.p1 {
  padding: 1em;
}

.p05 {
  padding: 0.5em;
}

.pi2 {
  padding-inline: 2em;
}

.pi1 {
  padding-inline: 1em;
}

.pi-half {
  padding-inline: 0.5em;
}

/* --------------- color --------------- */
.txt-white,
.txt-white a {
  color: #fff;
}

.txt-black {
  color: #1a1a1a;
}

.txt-blue01,
.txt-blue01 a {
  color: #142E54;
}
.txt-blue02,
.txt-blue02 a {
  color: #0086b8;
}
.txt-green,
.txt-green a {
  color: #c2da69;
}

.bg-blue01 {
  background-color: #e2f6ff;
}
.bg-blue02{
  background-color: #0d2f5b;
}

.bg-white {
  background-color: #fff;
}

.bg-green{
  background-color: #c2da69;
}

/* --------------- layout --------------- */
.relative {
  position: relative;
}

.middle {
  max-inline-size: max-content;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid2-center{
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0 1em; 
}

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

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}

.flex-end {
  justify-content: flex-end;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.align-end {
  align-items: end;
}

.list-disc {
  list-style: disc;
  line-height: 1.6;
}

.list-disc li {
  margin-left: 1em;
}

.list-disc li::marker {
  color: #fff;
}

.list-square {
  list-style: square;
  line-height: 1.6;
  margin: 0.5em 0;
}

.list-square li {
  margin-left: 1em;
}

.list-square li::marker {
  color: #fff;
}

.list-square-black {
  list-style: square;
  line-height: 1.6;
  margin: 0.5em 0;
}

.list-square-black li {
  margin-left: 1em;
}

.list-square-black li::marker {
  color: #1a1a1a;
}

@media (max-width: 767px) {
  .grid2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid3 {
    grid-template-columns: repeat(1, 1fr);
  }
}