@charset "UTF-8";
/* CSS Document */
:root {
  --large-width: 980px;
}

::-moz-selection {
  background: #b3d8ca;
}

::selection {
  background: #b3d8ca;
}

/*-- 色指定 --*/
/*-- フォント --*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: normal;
  word-break: auto-phrase;
}

h2 {
  font-size: 22px;
  /*-- 緑シンプルタイトル --*/
}
h2.title_green {
  color: #4faf92;
}

/*-- リンク系 --*/
a,
a:visited {
  color: #a093c3;
  text-decoration: none;
  transition: 0.1s;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}
a.window:after,
a:visited.window:after {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/icon/icon_pageout.webp) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 2px 5px 3px;
}

a:hover {
  color: #543f8d;
}

a.visit {
  color: #a093c3;
}
a.visit:visited {
  color: #a093c3;
}
/*-- margin系 --*/
.margin0 {
  margin: 0px !important;
}

/*-- margin-top --*/
.ma_top0 {
  margin-top: 0px !important;
}

.ma_top15 {
  margin-top: 15px !important;
}

.ma_top20 {
  margin-top: 20px !important;
}

.ma_top30 {
  margin-top: 30px !important;
}

.ma_top50 {
  margin-top: 50px !important;
}

.ma_top80 {
  margin-top: 80px !important;
}

/*-- margin-bottom --*/
.ma_bottom0 {
  margin-bottom: 0px !important;
}

.ma_bottom20 {
  margin-bottom: 20px !important;
}

.ma_bottom30 {
  margin-bottom: 30px !important;
}

.ma_bottom50 {
  margin-bottom: 50px !important;
}

.ma_bottom80 {
  margin-bottom: 80px !important;
}

.ma_bottom100 {
  margin-bottom: 100px !important;
}

/*-- margin-right --*/
.ma_right0 {
  margin-right: 0px !important;
}

.ma_right20 {
  margin-right: 20px !important;
}

.ma_right30 {
  margin-right: 30px !important;
}

.ma_right50 {
  margin-right: 50px !important;
}

.ma_right80 {
  margin-right: 80px !important;
}

/*-- margin-left --*/
.ma_left0 {
  margin-left: 0px !important;
}

.ma_left20 {
  margin-left: 20px !important;
}

.ma_left30 {
  margin-left: 30px !important;
}

.ma_left50 {
  margin-left: 50px !important;
}

.ma_left80 {
  margin-left: 80px !important;
}

.ma_left100 {
  margin-left: 100px !important;
}

/*-- padding-top --*/
.pa_top0 {
  padding-top: 0px !important;
}

.pa_top50 {
  padding-top: 50px !important;
}

/*-- padding-bottom --*/
.pa_bottom0 {
  padding-bottom: 0px !important;
}

.pa_bottom30 {
  padding-bottom: 30px !important;
}

.pa_bottom50 {
  padding-bottom: 50px !important;
}

.pa_bottom100 {
  padding-bottom: 100px !important;
}

/*-- 画像 --*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
img.cursor_pointer {
  cursor: pointer;
  transition: 0.3s ease-in;
  z-index: 15;
}
img.cursor_pointer:hover {
  opacity: 0.3;
}

.images {
  margin-inline: auto;
  display: block;
  text-align: center;
  /*-- 画像にリンクある場合 --*/
  /*-- 画像にリンクありボーダーをつけたい場合 --*/
  /*-- ポップアップ用 --*/
}
.images img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast; /*--Chrome対策--*/
}
.images a:hover img {
  transition: 0.3s ease-in;
}
.images.border a:hover img {
  border: 1px solid #353535;
}
.images--popup {
  margin-top: 30px;
  max-width: 400px;
}

/*-- flex --*/
.flex {
  display: flex;
  /*-- 折り返し --*/
}
.flex.no_wrap {
  flex-wrap: nowrap;
}
.flex.wrap {
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .flex {
    display: block;
  }
}
.flex.flex_start {
  justify-content: flex-start;
}
.flex.flex_start .images {
  margin-inline: initial;
  text-align: initial;
}

.all_flex {
  display: flex;
}

/*-- flex 横配置 --*/
.flex_jus_start {
  justify-content: start;
}

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

.flex_jus_center {
  justify-content: center !important;
}

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

/*-- flex 縦配置 --*/
.flex_item_center {
  align-items: center;
}

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

/*-- 幅 --*/
.width100 {
  width: 100%;
}

.mobile_width100 {
  width: 100%;
}
@media (width > 760px) {
  .mobile_width100 {
    width: 100%;
  }
}

.width33 {
  width: 33%;
}

.float_right {
  position: relative;
  float: right;
}

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

.clear {
  clear: both;
}

.center {
  text-align: center !important;
  margin-inline: auto !important;
}

.pc {
  display: block;
}
@media (max-width: 760px) {
  .pc {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: 760px) {
  .mobile {
    display: block;
  }
}

.pos_relative {
  position: relative !important;
}

.hide {
  display: none;
}

.text_red {
  color: #ff0000 !important;
}

.text_blue {
  color: #0076b8 !important;
}

.text_gray {
  color: #aaaaaa !important;
}

.text_right {
  text-align: right !important;
}

.text_center {
  text-align: center !important;
}

.text_strong600 {
  font-weight: 600;
}

.text_strong700 {
  font-weight: 700;
}

.text_strong {
  font-weight: 800;
}

.small {
  font-size: 14px;
}

.border-bottom0 {
  border-bottom: 0 !important;
}

.opacty05 {
  opacity: 0.5;
}

.opacity08 {
  opacity: 0.8;
}/*# sourceMappingURL=base.css.map */