@charset "UTF-8";
@media (min-width: 0) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 0) {
  .container-md {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container-md {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 1400px) {
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 0) {
  .container-lg {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container-lg {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-lg {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1400px) {
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 0) {
  .container-xl {
    max-width: 100%;
  }
}
@media (min-width: 576px) {
  .container-xl {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-xl {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-xl {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xl {
    max-width: 1140px;
  }
}

.container,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 575px) {
  .xsh {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .smh {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mdh {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .lgh {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .xlh {
    display: none;
  }
}
@media (min-width: 1400px) {
  .xxlh {
    display: none;
  }
}
@media (max-width: 1199px) {
  .sph {
    display: none;
  }
}
@media (min-width: 1200px) {
  .pch {
    display: none;
  }
}
@media (max-width: 575px) {
  .sp_hidden {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .sm_hidden {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .md_hidden {
    display: none;
  }
}
@media (min-width: 992px) {
  .pc_hidden {
    display: none;
  }
}
html {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  min-height: 100vh;
  font-size: 1.5rem;
  line-height: 180%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  height: 80px;
  border-bottom: solid 1px #000;
}

footer {
  background-color: #ccc;
  height: 200px;
  margin-top: 10rem;
}

.clee {
  color: #eee;
}

.cldd {
  color: #ddd;
}

.clcc {
  color: #ccc;
}

.clbb {
  color: #bbb;
}

.claa {
  color: #aaa;
}

.cl99 {
  color: #999;
}

.cl88 {
  color: #888;
}

.cl77 {
  color: #777;
}

.cl66 {
  color: #666;
}

.cl55 {
  color: #555;
}

.cl44 {
  color: #444;
}

.cl33 {
  color: #333;
}

.cl22 {
  color: #222;
}

.cl11 {
  color: #111;
}

.clff {
  color: #fff;
}

.gnavi__pc-style {
  margin: 0 0 0 auto;
}
.gnavi__pc-style ul {
  display: flex;
  justify-content: space-between;
}
.gnavi__pc-style ul li {
  list-style-type: none;
  position: relative;
}
.gnavi__pc-style ul li:not(:last-of-type) {
  margin-right: 10px;
}
.gnavi__pc-style ul li::before {
  background: #fff;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.gnavi__pc-style ul li:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*ここから下がハンバーガーメニューのスタイル*/
.gnavi__sp-style {
  display: none;
}

@media screen and (max-width: 768px) {
  .gnavi__pc-style {
    display: none;
  }
  .gnavi__sp-style {
    display: block;
  }
  /*メニューボタン　展開前*/
  .menu-btn {
    display: block;
    position: fixed;
    z-index: 3;
    right: 30px;
    top: 20px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    transition: 0.3s ease-in-out;
  }
  .menu-btn span:nth-of-type(1) {
    top: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 20px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 30px;
  }
  /*メニューボタン　展開後*/
  .menu-btn.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #fff;
    transform: rotate(-45deg);
  }
  .menu-btn.active span:nth-child(2),
  .menu-btn.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    transform: rotate(45deg);
  }
  /*スマホ用のメニュー*/
  .gnavi__sp-style {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
  }
  .gnavi__sp-style ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .gnavi__sp-style ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  .gnavi__sp-style ul li:last-of-type {
    padding-bottom: 0;
  }
  .gnavi__sp-style ul li:hover {
    background: #ddd;
    color: #111;
  }
  .gnavi__sp-style ul li a {
    display: block;
    padding: 1em 0;
    text-decoration: none;
  }
  .gnavi__sp-style.active {
    opacity: 1;
  }
}
.grid_center {
  display: grid;
  place-items: center;
  height: 100vh;
}

.gr-box01 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: auto;
  gap: 3rem 3rem;
}

.gr-subbox01 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.5rem;
}
.gr-subbox01 img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 10/6;
  -o-object-fit: cover;
     object-fit: cover;
}
.gr-subbox01 .title01x {
  font-size: 2rem;
  margin-top: 1rem;
}
.gr-subbox01 .txt01 {
  font-size: 1.4rem;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.gr-subbox02 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.5rem;
  max-height: -moz-fit-content;
  max-height: fit-content;
}

.grid11-01, .grid10-02, .grid09-03, .grid08-04, .grid07-05, .grid06-06, .grid05-07, .grid04-08, .grid03-09, .grid02-10, .grid01-11, .grid12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 576px) {
  .grid01-11 {
    grid-template-columns: 8.33% 1fr;
  }
}

@media (min-width: 576px) {
  .grid02-10 {
    grid-template-columns: 16.67% 1fr;
  }
}

@media (min-width: 576px) {
  .grid03-09 {
    grid-template-columns: 25% 1fr;
  }
}

@media (min-width: 576px) {
  .grid04-08 {
    grid-template-columns: 33.33% 1fr;
  }
}

@media (min-width: 576px) {
  .grid05-07 {
    grid-template-columns: 41.67% 1fr;
  }
}

@media (min-width: 576px) {
  .grid06-06 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .grid07-05 {
    grid-template-columns: 1fr 41.67%;
  }
}

@media (min-width: 576px) {
  .grid08-04 {
    grid-template-columns: 1fr 33.33%;
  }
}

@media (min-width: 576px) {
  .grid09-03 {
    grid-template-columns: 1fr 25%;
  }
}

@media (min-width: 576px) {
  .grid10-02 {
    grid-template-columns: 1fr 16.67%;
  }
}

@media (min-width: 576px) {
  .grid11-01 {
    grid-template-columns: 1fr 8.33%;
  }
}

.grid-x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 20px;
}

.grid-x4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 20px;
}

.grid-x5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 20px;
}

.grid-vb01 {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

@media (min-width: 0) {
  .grid-x432 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }
}
@media (min-width: 576px) {
  .grid-x432 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .grid-x432 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .grid-x432 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .grid-x432 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }
}
@media (min-width: 1400px) {
  .grid-x432 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-cc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-cb {
  display: flex;
  align-items: end;
  justify-content: center;
}

.flex-cc100 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.btn02 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #48d1cc;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  width: minmax(75%, 300px);
  font-size: 16px;
  text-align: center;
}

.btn01 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #ec452f;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  width: minmax(75%, 300px);
  font-size: 16px;
  text-align: center;
}

a::after .btn01,
a::after .btn02 {
  text-decoration: none;
  list-style: none;
}

.subbtn01 {
  position: relative;
}
.subbtn01::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
}

.subbtn02 {
  position: relative;
}
.subbtn02::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
}

/* -----------------------------------
ボタン03 ここから
------------------------------------*/
.btn03 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  color: #333;
  border: solid 2px #333;
  padding: 10px 60px 10px 50px;
  min-width: 300px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: background-color 0.5s ease;
}
.btn03:hover {
  background: #2c9bc7;
  color: #fff;
  opacity: 1 !important;
}

.btn04 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  color: #333;
  border: solid 2px #333;
}
@media (min-width: 0) {
  .btn04 {
    padding: 10px;
    width: 100%;
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .btn04 {
    padding: 10px 0 10px 0;
    width: 80%;
  }
}
.btn04 {
  border-radius: 25px;
  text-align: center;
  outline: none;
  transition: background-color 0.5s ease;
}
.btn04:hover {
  background: #2c9bc7;
  color: #fff !important;
  opacity: 1 !important;
}

.btn05 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  color: #333;
  border: solid 2px #333;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  outline: none;
}
@media (min-width: 0) {
  .btn05 {
    width: 100%;
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .btn05 {
    width: 100%;
  }
}
.btn05 {
  /*アニメーションの指定*/
  transition: background-color 0.5s ease;
}
.btn05:hover {
  background: #2c9bc7;
  color: #fff !important;
  opacity: 1 !important;
}

.btn06 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  color: #333;
  border: solid 2px #333;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  outline: none;
}
@media (min-width: 0) {
  .btn06 {
    width: 100%;
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .btn06 {
    width: 100%;
  }
}
.btn06 {
  /*アニメーションの指定*/
  transition: background-color 0.5s ease;
}
.btn06:hover {
  background: #2c9bc7;
  color: #fff !important;
  opacity: 1 !important;
}

.btn07 {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #2c9bc7;
  color: #fff;
  border: solid 2px #2c9bc7;
  padding: 10px 60px 10px 50px;
  min-width: 300px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: background-color 0.5s ease;
}
.btn07:hover {
  background: #e9f9ff;
  color: #2c9bc7;
  opacity: 1 !important;
}

/* 矢印が右に移動 */
.btnarrow1::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after {
  right: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* -----------------------------------
ボタン03 ここまで
------------------------------------*/
/*---------------------------------------------------------
▼ページャー▼
----------------------------------------------------------*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  font-size: 13px;
}
.pagination span,
.pagination a {
  display: block;
  width: auto;
  margin: 4px;
  padding: 8px;
  border: 1px solid #111;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
}
.pagination .pager {
  width: 32px;
}
.pagination a:hover,
.pagination .current {
  color: #fff;
  border-color: #111;
  background-color: #111;
}
.pagination a.prev {
  margin-right: 16px;
}
.pagination a.next {
  margin-left: 16px;
}
.pagination a.first, .pagination a.last {
  font-weight: 100;
}
.pagination span.page_num {
  display: none;
}

.fadeUp1 {
  animation-name: fadeUpAnime; /*アニメーションの定義名*/
  animation-duration: 1s; /*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode: forwards; /*アニメーションの開始と終了時の状態を指定*/
  opacity: 0;
}

.fadeUp2 {
  animation-name: fadeUpAnime; /*アニメーションの定義名*/
  animation-duration: 2s; /*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode: forwards; /*アニメーションの開始と終了時の状態を指定*/
  opacity: 0;
}

.fadeUp3 {
  animation-name: fadeUpAnime; /*アニメーションの定義名*/
  animation-duration: 3s; /*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode: forwards; /*アニメーションの開始と終了時の状態を指定*/
  opacity: 0;
}

/*アニメーションの開始から終了までを指定する*/
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.bgSizeimgCover {
  background-size: cover;
}

.bgSizeimgContain {
  background-size: contain;
}

.adjust-box3, .adjust-box2, .adjust-box1 {
  position: relative;
  width: 100%;
  height: auto;
}

.adjust-box1 {
  background: #fff;
}

.adjust-box2 {
  background: #f5f5f5;
}

.adjust-box3 {
  background-color: rgba(255, 255, 255, 0);
}

.box-1x1:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.box-10x20-5:before {
  content: "";
  display: block;
  padding-top: 205%;
}

.box-10x20:before {
  content: "";
  display: block;
  padding-top: 200%;
}

.box-10x19-5:before {
  content: "";
  display: block;
  padding-top: 195%;
}

.box-10x19:before {
  content: "";
  display: block;
  padding-top: 190%;
}

.box-10x18-5:before {
  content: "";
  display: block;
  padding-top: 185%;
}

.box-10x18:before {
  content: "";
  display: block;
  padding-top: 180%;
}

.box-10x17-5:before {
  content: "";
  display: block;
  padding-top: 175%;
}

.box-10x17:before {
  content: "";
  display: block;
  padding-top: 170%;
}

.box-10x16-5:before {
  content: "";
  display: block;
  padding-top: 165%;
}

.box-10x16:before {
  content: "";
  display: block;
  padding-top: 160%;
}

.box-10x15-5:before {
  content: "";
  display: block;
  padding-top: 155%;
}

.box-10x15:before {
  content: "";
  display: block;
  padding-top: 150%;
}

.box-10x14-5:before {
  content: "";
  display: block;
  padding-top: 145%;
}

.box-10x14:before {
  content: "";
  display: block;
  padding-top: 140%;
}

.box-10x13-5:before {
  content: "";
  display: block;
  padding-top: 135%;
}

.box-10x13:before {
  content: "";
  display: block;
  padding-top: 130%;
}

.box-10x12-5:before {
  content: "";
  display: block;
  padding-top: 125%;
}

.box-10x12:before {
  content: "";
  display: block;
  padding-top: 120%;
}

.box-10x11-5:before {
  content: "";
  display: block;
  padding-top: 115%;
}

.box-10x11:before {
  content: "";
  display: block;
  padding-top: 110%;
}

.box-10x10-5:before {
  content: "";
  display: block;
  padding-top: 105%;
}

.box-10x10:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.box-10x9-5:before {
  content: "";
  display: block;
  padding-top: 95%;
}

.box-10x9:before {
  content: "";
  display: block;
  padding-top: 95%;
}

.box-10x8-5:before {
  content: "";
  display: block;
  padding-top: 85%;
}

.box-10x8:before {
  content: "";
  display: block;
  padding-top: 80%;
}

.box-10x7-5:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.box-10x7:before {
  content: "";
  display: block;
  padding-top: 70%;
}

.box-10x6-5:before {
  content: "";
  display: block;
  padding-top: 65%;
}

.box-10x6:before {
  content: "";
  display: block;
  padding-top: 60%;
}

.box-10x5-5:before {
  content: "";
  display: block;
  padding-top: 55%;
}

.box-10x5:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.box-10x4-5:before {
  content: "";
  display: block;
  padding-top: 45%;
}

.box-10x4:before {
  content: "";
  display: block;
  padding-top: 40%;
}

.box-10x3-5:before {
  content: "";
  display: block;
  padding-top: 35%;
}

.box-10x3:before {
  content: "";
  display: block;
  padding-top: 30%;
}

.box-10x2-5:before {
  content: "";
  display: block;
  padding-top: 25%;
}

.box-10x2:before {
  content: "";
  display: block;
  padding-top: 20%;
}

.box-10x1-5:before {
  content: "";
  display: block;
  padding-top: 15%;
}

.box-10x1:before {
  content: "";
  display: block;
  padding-top: 10%;
}

.box-10x0-5:before {
  content: "";
  display: block;
  padding-top: 5%;
}

.box-2x1:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.box-1x2:before {
  content: "";
  display: block;
  padding-top: 200%;
}

.box-4x3:before {
  content: "";
  display: block;
  padding-top: 75%;
}

.box-3x4:before {
  content: "";
  display: block;
  padding-top: 133.3333333333%;
}

.box-8x5:before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.box-5x8:before {
  content: "";
  display: block;
  padding-top: 160%;
}

.box-16x9:before {
  content: "";
  display: block;
  padding-top: 511.1111111111%;
}

.box-16x10:before {
  content: "";
  display: block;
  padding-top: 160%;
}

.box-youtube:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.inner5, .inner6, .inner4, .inner3, .inner,
.inner2, .inner_cover,
.inner_contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.inner_cover img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.inner_contain img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/*マウスオーバーで拡大*/
.inner img,
.inner source {
  animation-name: scale02;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}

@keyframes scale02 {
  0% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
a:hover .inner img .inner source {
  animation-name: scale01;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}
@keyframes scale01 {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.2, 1.2);
  }
}

/*マウスオーバーでスライド*/
.inner3 {
  animation-name: slide_anim2;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}

@keyframes slide_anim2 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(100px);
  }
}
a:hover .inner3 {
  animation-name: slide_anim;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}
@keyframes slide_anim {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.inner4 {
  margin-top: 100px;
}

/*マウスオーバーで縮小*/
.inner5 {
  animation-name: scale_inner5;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}

@keyframes scale_inner5 {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.2, 1.2);
  }
}
a:hover .inner5 {
  animation-name: scale_inner5_hover;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}
@keyframes scale_inner5_hover {
  0% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

.bgb {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  animation-name: backopa2;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}

@keyframes backopa2 {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
a:hover .bgb {
  animation-name: backopa;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}
@keyframes backopa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bgb2 {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.bgb3 {
  background-color: rgba(45, 12, 12, 0.4);
  width: 100%;
  height: 100%;
  animation-name: backslide_daown;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}

@keyframes backslide_daown {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-75%);
  }
}
a:hover .bgb3 {
  animation-name: backslide_daown_hover;
  animation-duration: 1s;
  animation-iteration-count: 1; /*アニメーションを1回再生する*/
  animation-fill-mode: forwards; /*アニメーションの終了後には最後のキーフレームのスタイルを適用する*/
}
@keyframes backslide_daown_hover {
  from {
    transform: translateY(-75%);
  }
  to {
    transform: translateY(0%);
  }
}

.carousel,
.item,
.active {
  height: 100%;
}

.carousel-inner {
  height: 100%;
  background: #000;
}

.carousel-caption {
  padding-bottom: 80px;
}

h2 {
  font-size: 60px;
}

p {
  padding: 10px;
}

/* Background images are set within the HTML using inline CSS, not here */
.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  -o-background-size: cover;
  opacity: 0.6;
}

/**
   * Button
   */
.btn-transparent {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-transparent:hover {
  background-color: #fff;
}

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/**
   * Change animation duration
   */
.animated {
  animation-duration: 1.5s;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

.wf-mplus1p {
  font-family: "M PLUS 1p";
}

.wf-sawarabimincho {
  font-family: "Sawarabi Mincho";
}

.wf-sawarabigothic {
  font-family: "Sawarabi Gothic";
}

.wf-notoserifjapanese {
  font-family: "Noto Serif JP", serif;
}

.wf-notosansjapanese {
  font-family: "Noto Sans JP";
}

.serif {
  font-family: "Noto Serif JP", "Sawarabi Mincho", serif;
}

.normal {
  font-weight: normal !important;
}

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

.bolder {
  font-weight: 900 !important;
}

.center {
  text-align: center;
}

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

.tdul {
  text-decoration: underline;
}

.opa9 {
  opacity: 0.9;
}

.opa8 {
  opacity: 0.8;
}

.opa7 {
  opacity: 0.7;
}

.opa6 {
  opacity: 0.6;
}

.opa5 {
  opacity: 0.5;
}

.opa4 {
  opacity: 0.4;
}

.opa3 {
  opacity: 0.3;
}

.opa2 {
  opacity: 0.2;
}

.opa1 {
  opacity: 0.1;
}

.w100 {
  width: 100%;
}

.w95 {
  width: 95%;
}

.w90 {
  width: 90%;
}

.w85 {
  width: 85%;
}

.w80 {
  width: 80%;
}

.w75 {
  width: 75%;
}

.w70 {
  width: 70%;
}

.w65 {
  width: 65%;
}

.w60 {
  width: 60%;
}

.w55 {
  width: 55%;
}

.w50 {
  width: 50%;
}

.w45 {
  width: 45%;
}

.w40 {
  width: 40%;
}

.w35 {
  width: 35%;
}

.w30 {
  width: 30%;
}

.w25 {
  width: 25%;
}

.w20 {
  width: 20%;
}

.w15 {
  width: 15%;
}

.w10 {
  width: 10%;
}

.w5 {
  width: 5%;
}

.m_auto {
  margin-left: auto;
  margin-right: auto;
}

.w100cc {
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w95cc {
  width: 95%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w90cc {
  width: 90%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w85cc {
  width: 85%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w80cc {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w75cc {
  width: 75%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w70cc {
  width: 70%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w65cc {
  width: 65%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w60cc {
  width: 60%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w55cc {
  width: 55%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w50cc {
  width: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w45cc {
  width: 45%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w40cc {
  width: 40%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w35cc {
  width: 35%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w30cc {
  width: 30%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w25cc {
  width: 25%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w20cc {
  width: 20%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w15cc {
  width: 15%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w10cc {
  width: 10%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w5cc {
  width: 5%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dotted_fffb, .dotted_cccb, .dotted_999b, .dotted_666b, .dotted_333b, .solid_fffb, .solid_cccb, .solid_999b, .solid_666b, .solid_333b, .dotted_fff, .dotted_ccc, .dotted_999, .dotted_666, .dotted_333, .solid_fff, .solid_ccc, .solid_999, .solid_666, .solid_333, .dashed_666b, .dashed_333b {
  width: 100%;
  float: left;
  clear: both;
}

.dashed_333b {
  border-bottom: 1px dashed #333333;
}

.dashed_666b {
  border-bottom: 1px dashed #666666;
}

.solid_333 {
  border-top: 1px solid #333333;
}

.solid_666 {
  border-top: 1px solid #666666;
}

.solid_999 {
  border-top: 1px solid #999999;
}

.solid_ccc {
  border-top: 1px solid #cccccc;
}

.solid_fff {
  border-top: 1px solid #ffffff;
}

.dotted_333 {
  border-top: 1px dotted #333333;
}

.dotted_666 {
  border-top: 1px dotted #666666;
}

.dotted_999 {
  border-top: 1px dotted #999999;
}

.dotted_ccc {
  border-top: 1px dotted #cccccc;
}

.dotted_fff {
  border-top: 1px dotted #ffffff;
}

.solid_333b {
  border-bottom: 1px solid #333333;
}

.solid_666b {
  border-bottom: 1px solid #666666;
}

.solid_999b {
  border-bottom: 1px solid #999999;
}

.solid_cccb {
  border-bottom: 1px solid #cccccc;
}

.solid_fffb {
  border-bottom: 1px solid #ffffff;
}

.dotted_333b {
  border-bottom: 1px dotted #333333;
}

.dotted_666b {
  border-bottom: 1px dotted #666666;
}

.dotted_999b {
  border-bottom: 1px dotted #999999;
}

.dotted_cccb {
  border-bottom: 1px dotted #cccccc;
}

.dotted_fffb {
  border-bottom: 1px dotted #ffffff;
}

.fr {
  float: right !important;
}

.fl {
  float: left !important;
}

.pos0 {
  position: relative;
  display: inline;
}

.pos1 {
  position: relative;
}

.pos_br0 {
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.pos_bl0 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.clr {
  clear: both;
}

.w100 {
  width: 100%;
}

.w95 {
  width: 95%;
}

.w90 {
  width: 90%;
}

.w85 {
  width: 85%;
}

.w80 {
  width: 80%;
}

.w75 {
  width: 75%;
}

.w70 {
  width: 70%;
}

.w65 {
  width: 65%;
}

.w60 {
  width: 60%;
}

.w55 {
  width: 55%;
}

.w50 {
  width: 50%;
}

.w45 {
  width: 45%;
}

.w40 {
  width: 40%;
}

.w35 {
  width: 35%;
}

.w30 {
  width: 30%;
}

.w25 {
  width: 25%;
}

.w20 {
  width: 20%;
}

.w15 {
  width: 15%;
}

.w10 {
  width: 10%;
}

.w5 {
  width: 5%;
}

.w5cc, .w10cc, .w15cc, .w20cc, .w25cc, .w30cc, .w35cc, .w40cc, .w45cc, .w50cc, .w55cc, .w60cc, .w65cc, .w70cc, .w75cc, .w80cc, .w85cc, .w90cc, .w95cc, .w100cc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.w100cc {
  width: 100%;
}

.w95cc {
  width: 95%;
}

.w90cc {
  width: 90%;
}

.w85cc {
  width: 85%;
}

.w80cc {
  width: 80%;
}

.w75cc {
  width: 75%;
}

.w70cc {
  width: 70%;
}

.w65cc {
  width: 65%;
}

.w60cc {
  width: 60%;
}

.w55cc {
  width: 55%;
}

.w50cc {
  width: 50%;
}

.w45cc {
  width: 45%;
}

.w40cc {
  width: 40%;
}

.w35cc {
  width: 35%;
}

.w30cc {
  width: 30%;
}

.w25cc {
  width: 25%;
}

.w20cc {
  width: 20%;
}

.w15cc {
  width: 15%;
}

.w10cc {
  width: 10%;
}

.w5cc {
  width: 5%;
}

.mt001 {
  margin-top: 0.1rem;
}

.mt002 {
  margin-top: 0.2rem;
}

.mt003 {
  margin-top: 0.3rem;
}

.mt004 {
  margin-top: 0.4rem;
}

.mt005 {
  margin-top: 0.5rem;
}

.mt006 {
  margin-top: 0.6rem;
}

.mt007 {
  margin-top: 0.7rem;
}

.mt008 {
  margin-top: 0.8rem;
}

.mt009 {
  margin-top: 0.9rem;
}

.mt010 {
  margin-top: 1rem;
}

.mt011 {
  margin-top: 1.1rem;
}

.mt012 {
  margin-top: 1.2rem;
}

.mt013 {
  margin-top: 1.3rem;
}

.mt014 {
  margin-top: 1.4rem;
}

.mt015 {
  margin-top: 1.5rem;
}

.mt016 {
  margin-top: 1.6rem;
}

.mt017 {
  margin-top: 1.7rem;
}

.mt018 {
  margin-top: 1.8rem;
}

.mt019 {
  margin-top: 1.9rem;
}

.mt020 {
  margin-top: 2rem;
}

.mt021 {
  margin-top: 2.1rem;
}

.mt022 {
  margin-top: 2.2rem;
}

.mt023 {
  margin-top: 2.3rem;
}

.mt024 {
  margin-top: 2.4rem;
}

.mt025 {
  margin-top: 2.5rem;
}

.mt026 {
  margin-top: 2.6rem;
}

.mt027 {
  margin-top: 2.7rem;
}

.mt028 {
  margin-top: 2.8rem;
}

.mt029 {
  margin-top: 2.9rem;
}

.mt030 {
  margin-top: 3rem;
}

.mt031 {
  margin-top: 3.1rem;
}

.mt032 {
  margin-top: 3.2rem;
}

.mt033 {
  margin-top: 3.3rem;
}

.mt034 {
  margin-top: 3.4rem;
}

.mt035 {
  margin-top: 3.5rem;
}

.mt036 {
  margin-top: 3.6rem;
}

.mt037 {
  margin-top: 3.7rem;
}

.mt038 {
  margin-top: 3.8rem;
}

.mt039 {
  margin-top: 3.9rem;
}

.mt040 {
  margin-top: 4rem;
}

.mt041 {
  margin-top: 4.1rem;
}

.mt042 {
  margin-top: 4.2rem;
}

.mt043 {
  margin-top: 4.3rem;
}

.mt044 {
  margin-top: 4.4rem;
}

.mt045 {
  margin-top: 4.5rem;
}

.mt046 {
  margin-top: 4.6rem;
}

.mt047 {
  margin-top: 4.7rem;
}

.mt048 {
  margin-top: 4.8rem;
}

.mt049 {
  margin-top: 4.9rem;
}

.mt050 {
  margin-top: 5rem;
}

.mt051 {
  margin-top: 5.1rem;
}

.mt052 {
  margin-top: 5.2rem;
}

.mt053 {
  margin-top: 5.3rem;
}

.mt054 {
  margin-top: 5.4rem;
}

.mt055 {
  margin-top: 5.5rem;
}

.mt056 {
  margin-top: 5.6rem;
}

.mt057 {
  margin-top: 5.7rem;
}

.mt058 {
  margin-top: 5.8rem;
}

.mt059 {
  margin-top: 5.9rem;
}

.mt060 {
  margin-top: 6rem;
}

.mt061 {
  margin-top: 6.1rem;
}

.mt062 {
  margin-top: 6.2rem;
}

.mt063 {
  margin-top: 6.3rem;
}

.mt064 {
  margin-top: 6.4rem;
}

.mt065 {
  margin-top: 6.5rem;
}

.mt066 {
  margin-top: 6.6rem;
}

.mt067 {
  margin-top: 6.7rem;
}

.mt068 {
  margin-top: 6.8rem;
}

.mt069 {
  margin-top: 6.9rem;
}

.mt070 {
  margin-top: 7rem;
}

.mt071 {
  margin-top: 7.1rem;
}

.mt072 {
  margin-top: 7.2rem;
}

.mt073 {
  margin-top: 7.3rem;
}

.mt074 {
  margin-top: 7.4rem;
}

.mt075 {
  margin-top: 7.5rem;
}

.mt076 {
  margin-top: 7.6rem;
}

.mt077 {
  margin-top: 7.7rem;
}

.mt078 {
  margin-top: 7.8rem;
}

.mt079 {
  margin-top: 7.9rem;
}

.mt080 {
  margin-top: 8rem;
}

.mt081 {
  margin-top: 8.1rem;
}

.mt082 {
  margin-top: 8.2rem;
}

.mt083 {
  margin-top: 8.3rem;
}

.mt084 {
  margin-top: 8.4rem;
}

.mt085 {
  margin-top: 8.5rem;
}

.mt086 {
  margin-top: 8.6rem;
}

.mt087 {
  margin-top: 8.7rem;
}

.mt088 {
  margin-top: 8.8rem;
}

.mt089 {
  margin-top: 8.9rem;
}

.mt090 {
  margin-top: 9rem;
}

.mt091 {
  margin-top: 9.1rem;
}

.mt092 {
  margin-top: 9.2rem;
}

.mt093 {
  margin-top: 9.3rem;
}

.mt094 {
  margin-top: 9.4rem;
}

.mt095 {
  margin-top: 9.5rem;
}

.mt096 {
  margin-top: 9.6rem;
}

.mt097 {
  margin-top: 9.7rem;
}

.mt098 {
  margin-top: 9.8rem;
}

.mt099 {
  margin-top: 9.9rem;
}

.mt100 {
  margin-top: 10rem;
}

.mt110 {
  margin-top: 11rem;
}

.mt120 {
  margin-top: 12rem;
}

.mt130 {
  margin-top: 13rem;
}

.mt140 {
  margin-top: 14rem;
}

.mt150 {
  margin-top: 15rem;
}

.mt160 {
  margin-top: 16rem;
}

.mt170 {
  margin-top: 17rem;
}

.mt180 {
  margin-top: 18rem;
}

.mt190 {
  margin-top: 19rem;
}

.mt200 {
  margin-top: 20rem;
}

.mt210 {
  margin-top: 21rem;
}

.mt220 {
  margin-top: 22rem;
}

.mt230 {
  margin-top: 23rem;
}

.mt240 {
  margin-top: 24rem;
}

.mt250 {
  margin-top: 25rem;
}

.mt260 {
  margin-top: 26rem;
}

.mt270 {
  margin-top: 27rem;
}

.mt280 {
  margin-top: 28rem;
}

.mt290 {
  margin-top: 29rem;
}

.mt300 {
  margin-top: 30rem;
}

.mt-001 {
  margin-top: -0.1rem;
}

.mt-002 {
  margin-top: -0.2rem;
}

.mt-003 {
  margin-top: -0.3rem;
}

.mt-004 {
  margin-top: -0.4rem;
}

.mt-005 {
  margin-top: -0.5rem;
}

.mt-006 {
  margin-top: -0.6rem;
}

.mt-007 {
  margin-top: -0.7rem;
}

.mt-008 {
  margin-top: -0.8rem;
}

.mt-009 {
  margin-top: -0.9rem;
}

.mt-010 {
  margin-top: -1rem;
}

.mt-011 {
  margin-top: -1.1rem;
}

.mt-012 {
  margin-top: -1.2rem;
}

.mt-013 {
  margin-top: -1.3rem;
}

.mt-014 {
  margin-top: -1.4rem;
}

.mt-015 {
  margin-top: -1.5rem;
}

.mt-016 {
  margin-top: -1.6rem;
}

.mt-017 {
  margin-top: -1.7rem;
}

.mt-018 {
  margin-top: -1.8rem;
}

.mt-019 {
  margin-top: -1.9rem;
}

.mt-020 {
  margin-top: -2rem;
}

.mt-021 {
  margin-top: -2.1rem;
}

.mt-022 {
  margin-top: -2.2rem;
}

.mt-023 {
  margin-top: -2.3rem;
}

.mt-024 {
  margin-top: -2.4rem;
}

.mt-025 {
  margin-top: -2.5rem;
}

.mt-026 {
  margin-top: -2.6rem;
}

.mt-027 {
  margin-top: -2.7rem;
}

.mt-028 {
  margin-top: -2.8rem;
}

.mt-029 {
  margin-top: -2.9rem;
}

.mt-030 {
  margin-top: -3rem;
}

.mt-031 {
  margin-top: -3.1rem;
}

.mt-032 {
  margin-top: -3.2rem;
}

.mt-033 {
  margin-top: -3.3rem;
}

.mt-034 {
  margin-top: -3.4rem;
}

.mt-035 {
  margin-top: -3.5rem;
}

.mt-036 {
  margin-top: -3.6rem;
}

.mt-037 {
  margin-top: -3.7rem;
}

.mt-038 {
  margin-top: -3.8rem;
}

.mt-039 {
  margin-top: -3.9rem;
}

.mt-040 {
  margin-top: -4rem;
}

.mt-041 {
  margin-top: -4.1rem;
}

.mt-042 {
  margin-top: -4.2rem;
}

.mt-043 {
  margin-top: -4.3rem;
}

.mt-044 {
  margin-top: -4.4rem;
}

.mt-045 {
  margin-top: -4.5rem;
}

.mt-046 {
  margin-top: -4.6rem;
}

.mt-047 {
  margin-top: -4.7rem;
}

.mt-048 {
  margin-top: -4.8rem;
}

.mt-049 {
  margin-top: -4.9rem;
}

.mt-050 {
  margin-top: -5rem;
}

.mt-051 {
  margin-top: -5.1rem;
}

.mt-052 {
  margin-top: -5.2rem;
}

.mt-053 {
  margin-top: -5.3rem;
}

.mt-054 {
  margin-top: -5.4rem;
}

.mt-055 {
  margin-top: -5.5rem;
}

.mt-056 {
  margin-top: -5.6rem;
}

.mt-057 {
  margin-top: -5.7rem;
}

.mt-058 {
  margin-top: -5.8rem;
}

.mt-059 {
  margin-top: -5.9rem;
}

.mt-060 {
  margin-top: -6rem;
}

.mt-061 {
  margin-top: -6.1rem;
}

.mt-062 {
  margin-top: -6.2rem;
}

.mt-063 {
  margin-top: -6.3rem;
}

.mt-064 {
  margin-top: -6.4rem;
}

.mt-065 {
  margin-top: -6.5rem;
}

.mt-066 {
  margin-top: -6.6rem;
}

.mt-067 {
  margin-top: -6.7rem;
}

.mt-068 {
  margin-top: -6.8rem;
}

.mt-069 {
  margin-top: -6.9rem;
}

.mt-070 {
  margin-top: -7rem;
}

.mt-071 {
  margin-top: -7.1rem;
}

.mt-072 {
  margin-top: -7.2rem;
}

.mt-073 {
  margin-top: -7.3rem;
}

.mt-074 {
  margin-top: -7.4rem;
}

.mt-075 {
  margin-top: -7.5rem;
}

.mt-076 {
  margin-top: -7.6rem;
}

.mt-077 {
  margin-top: -7.7rem;
}

.mt-078 {
  margin-top: -7.8rem;
}

.mt-079 {
  margin-top: -7.9rem;
}

.mt-080 {
  margin-top: -8rem;
}

.mt-081 {
  margin-top: -8.1rem;
}

.mt-082 {
  margin-top: -8.2rem;
}

.mt-083 {
  margin-top: -8.3rem;
}

.mt-084 {
  margin-top: -8.4rem;
}

.mt-085 {
  margin-top: -8.5rem;
}

.mt-086 {
  margin-top: -8.6rem;
}

.mt-087 {
  margin-top: -8.7rem;
}

.mt-088 {
  margin-top: -8.8rem;
}

.mt-089 {
  margin-top: -8.9rem;
}

.mt-090 {
  margin-top: -9rem;
}

.mt-091 {
  margin-top: -9.1rem;
}

.mt-092 {
  margin-top: -9.2rem;
}

.mt-093 {
  margin-top: -9.3rem;
}

.mt-094 {
  margin-top: -9.4rem;
}

.mt-095 {
  margin-top: -9.5rem;
}

.mt-096 {
  margin-top: -9.6rem;
}

.mt-097 {
  margin-top: -9.7rem;
}

.mt-098 {
  margin-top: -9.8rem;
}

.mt-099 {
  margin-top: -9.9rem;
}

.mt-100 {
  margin-top: -10rem;
}

.mt-110 {
  margin-top: -11rem;
}

.mt-120 {
  margin-top: -12rem;
}

.mt-130 {
  margin-top: -13rem;
}

.mt-140 {
  margin-top: -14rem;
}

.mt-150 {
  margin-top: -15rem;
}

.mt-160 {
  margin-top: -16rem;
}

.mt-170 {
  margin-top: -17rem;
}

.mt-180 {
  margin-top: -18rem;
}

.mt-190 {
  margin-top: -19rem;
}

.mt-200 {
  margin-top: -20rem;
}

.mt-210 {
  margin-top: -21rem;
}

.mt-220 {
  margin-top: -22rem;
}

.mt-230 {
  margin-top: -23rem;
}

.mt-240 {
  margin-top: -24rem;
}

.mt-250 {
  margin-top: -25rem;
}

.mt-260 {
  margin-top: -26rem;
}

.mt-270 {
  margin-top: -27rem;
}

.mt-280 {
  margin-top: -28rem;
}

.mt-290 {
  margin-top: -29rem;
}

.mt-300 {
  margin-top: -30rem;
}

.mb001 {
  margin-bottom: 0.1rem;
}

.mb002 {
  margin-bottom: 0.2rem;
}

.mb003 {
  margin-bottom: 0.3rem;
}

.mb004 {
  margin-bottom: 0.4rem;
}

.mb005 {
  margin-bottom: 0.5rem;
}

.mb006 {
  margin-bottom: 0.6rem;
}

.mb007 {
  margin-bottom: 0.7rem;
}

.mb008 {
  margin-bottom: 0.8rem;
}

.mb009 {
  margin-bottom: 0.9rem;
}

.mb010 {
  margin-bottom: 1rem;
}

.mb011 {
  margin-bottom: 1.1rem;
}

.mb012 {
  margin-bottom: 1.2rem;
}

.mb013 {
  margin-bottom: 1.3rem;
}

.mb014 {
  margin-bottom: 1.4rem;
}

.mb015 {
  margin-bottom: 1.5rem;
}

.mb016 {
  margin-bottom: 1.6rem;
}

.mb017 {
  margin-bottom: 1.7rem;
}

.mb018 {
  margin-bottom: 1.8rem;
}

.mb019 {
  margin-bottom: 1.9rem;
}

.mb020 {
  margin-bottom: 2rem;
}

.mb021 {
  margin-bottom: 2.1rem;
}

.mb022 {
  margin-bottom: 2.2rem;
}

.mb023 {
  margin-bottom: 2.3rem;
}

.mb024 {
  margin-bottom: 2.4rem;
}

.mb025 {
  margin-bottom: 2.5rem;
}

.mb026 {
  margin-bottom: 2.6rem;
}

.mb027 {
  margin-bottom: 2.7rem;
}

.mb028 {
  margin-bottom: 2.8rem;
}

.mb029 {
  margin-bottom: 2.9rem;
}

.mb030 {
  margin-bottom: 3rem;
}

.mb031 {
  margin-bottom: 3.1rem;
}

.mb032 {
  margin-bottom: 3.2rem;
}

.mb033 {
  margin-bottom: 3.3rem;
}

.mb034 {
  margin-bottom: 3.4rem;
}

.mb035 {
  margin-bottom: 3.5rem;
}

.mb036 {
  margin-bottom: 3.6rem;
}

.mb037 {
  margin-bottom: 3.7rem;
}

.mb038 {
  margin-bottom: 3.8rem;
}

.mb039 {
  margin-bottom: 3.9rem;
}

.mb040 {
  margin-bottom: 4rem;
}

.mb041 {
  margin-bottom: 4.1rem;
}

.mb042 {
  margin-bottom: 4.2rem;
}

.mb043 {
  margin-bottom: 4.3rem;
}

.mb044 {
  margin-bottom: 4.4rem;
}

.mb045 {
  margin-bottom: 4.5rem;
}

.mb046 {
  margin-bottom: 4.6rem;
}

.mb047 {
  margin-bottom: 4.7rem;
}

.mb048 {
  margin-bottom: 4.8rem;
}

.mb049 {
  margin-bottom: 4.9rem;
}

.mb050 {
  margin-bottom: 5rem;
}

.mb051 {
  margin-bottom: 5.1rem;
}

.mb052 {
  margin-bottom: 5.2rem;
}

.mb053 {
  margin-bottom: 5.3rem;
}

.mb054 {
  margin-bottom: 5.4rem;
}

.mb055 {
  margin-bottom: 5.5rem;
}

.mb056 {
  margin-bottom: 5.6rem;
}

.mb057 {
  margin-bottom: 5.7rem;
}

.mb058 {
  margin-bottom: 5.8rem;
}

.mb059 {
  margin-bottom: 5.9rem;
}

.mb060 {
  margin-bottom: 6rem;
}

.mb061 {
  margin-bottom: 6.1rem;
}

.mb062 {
  margin-bottom: 6.2rem;
}

.mb063 {
  margin-bottom: 6.3rem;
}

.mb064 {
  margin-bottom: 6.4rem;
}

.mb065 {
  margin-bottom: 6.5rem;
}

.mb066 {
  margin-bottom: 6.6rem;
}

.mb067 {
  margin-bottom: 6.7rem;
}

.mb068 {
  margin-bottom: 6.8rem;
}

.mb069 {
  margin-bottom: 6.9rem;
}

.mb070 {
  margin-bottom: 7rem;
}

.mb071 {
  margin-bottom: 7.1rem;
}

.mb072 {
  margin-bottom: 7.2rem;
}

.mb073 {
  margin-bottom: 7.3rem;
}

.mb074 {
  margin-bottom: 7.4rem;
}

.mb075 {
  margin-bottom: 7.5rem;
}

.mb076 {
  margin-bottom: 7.6rem;
}

.mb077 {
  margin-bottom: 7.7rem;
}

.mb078 {
  margin-bottom: 7.8rem;
}

.mb079 {
  margin-bottom: 7.9rem;
}

.mb080 {
  margin-bottom: 8rem;
}

.mb081 {
  margin-bottom: 8.1rem;
}

.mb082 {
  margin-bottom: 8.2rem;
}

.mb083 {
  margin-bottom: 8.3rem;
}

.mb084 {
  margin-bottom: 8.4rem;
}

.mb085 {
  margin-bottom: 8.5rem;
}

.mb086 {
  margin-bottom: 8.6rem;
}

.mb087 {
  margin-bottom: 8.7rem;
}

.mb088 {
  margin-bottom: 8.8rem;
}

.mb089 {
  margin-bottom: 8.9rem;
}

.mb090 {
  margin-bottom: 9rem;
}

.mb091 {
  margin-bottom: 9.1rem;
}

.mb092 {
  margin-bottom: 9.2rem;
}

.mb093 {
  margin-bottom: 9.3rem;
}

.mb094 {
  margin-bottom: 9.4rem;
}

.mb095 {
  margin-bottom: 9.5rem;
}

.mb096 {
  margin-bottom: 9.6rem;
}

.mb097 {
  margin-bottom: 9.7rem;
}

.mb098 {
  margin-bottom: 9.8rem;
}

.mb099 {
  margin-bottom: 9.9rem;
}

.mb100 {
  margin-bottom: 10rem;
}

.mb110 {
  margin-bottom: 11rem;
}

.mb120 {
  margin-bottom: 12rem;
}

.mb130 {
  margin-bottom: 13rem;
}

.mb140 {
  margin-bottom: 14rem;
}

.mb150 {
  margin-bottom: 15rem;
}

.mb160 {
  margin-bottom: 16rem;
}

.mb170 {
  margin-bottom: 17rem;
}

.mb180 {
  margin-bottom: 18rem;
}

.mb190 {
  margin-bottom: 19rem;
}

.mb200 {
  margin-bottom: 20rem;
}

.mb210 {
  margin-bottom: 21rem;
}

.mb220 {
  margin-bottom: 22rem;
}

.mb230 {
  margin-bottom: 23rem;
}

.mb240 {
  margin-bottom: 24rem;
}

.mb250 {
  margin-bottom: 25rem;
}

.mb260 {
  margin-bottom: 26rem;
}

.mb270 {
  margin-bottom: 27rem;
}

.mb280 {
  margin-bottom: 28rem;
}

.mb290 {
  margin-bottom: 29rem;
}

.mb300 {
  margin-bottom: 30rem;
}

.mb-001 {
  margin-bottom: -0.1rem;
}

.mb-002 {
  margin-bottom: -0.2rem;
}

.mb-003 {
  margin-bottom: -0.3rem;
}

.mb-004 {
  margin-bottom: -0.4rem;
}

.mb-005 {
  margin-bottom: -0.5rem;
}

.mb-006 {
  margin-bottom: -0.6rem;
}

.mb-007 {
  margin-bottom: -0.7rem;
}

.mb-008 {
  margin-bottom: -0.8rem;
}

.mb-009 {
  margin-bottom: -0.9rem;
}

.mb-010 {
  margin-bottom: -1rem;
}

.mb-011 {
  margin-bottom: -1.1rem;
}

.mb-012 {
  margin-bottom: -1.2rem;
}

.mb-013 {
  margin-bottom: -1.3rem;
}

.mb-014 {
  margin-bottom: -1.4rem;
}

.mb-015 {
  margin-bottom: -1.5rem;
}

.mb-016 {
  margin-bottom: -1.6rem;
}

.mb-017 {
  margin-bottom: -1.7rem;
}

.mb-018 {
  margin-bottom: -1.8rem;
}

.mb-019 {
  margin-bottom: -1.9rem;
}

.mb-020 {
  margin-bottom: -2rem;
}

.mb-021 {
  margin-bottom: -2.1rem;
}

.mb-022 {
  margin-bottom: -2.2rem;
}

.mb-023 {
  margin-bottom: -2.3rem;
}

.mb-024 {
  margin-bottom: -2.4rem;
}

.mb-025 {
  margin-bottom: -2.5rem;
}

.mb-026 {
  margin-bottom: -2.6rem;
}

.mb-027 {
  margin-bottom: -2.7rem;
}

.mb-028 {
  margin-bottom: -2.8rem;
}

.mb-029 {
  margin-bottom: -2.9rem;
}

.mb-030 {
  margin-bottom: -3rem;
}

.mb-031 {
  margin-bottom: -3.1rem;
}

.mb-032 {
  margin-bottom: -3.2rem;
}

.mb-033 {
  margin-bottom: -3.3rem;
}

.mb-034 {
  margin-bottom: -3.4rem;
}

.mb-035 {
  margin-bottom: -3.5rem;
}

.mb-036 {
  margin-bottom: -3.6rem;
}

.mb-037 {
  margin-bottom: -3.7rem;
}

.mb-038 {
  margin-bottom: -3.8rem;
}

.mb-039 {
  margin-bottom: -3.9rem;
}

.mb-040 {
  margin-bottom: -4rem;
}

.mb-041 {
  margin-bottom: -4.1rem;
}

.mb-042 {
  margin-bottom: -4.2rem;
}

.mb-043 {
  margin-bottom: -4.3rem;
}

.mb-044 {
  margin-bottom: -4.4rem;
}

.mb-045 {
  margin-bottom: -4.5rem;
}

.mb-046 {
  margin-bottom: -4.6rem;
}

.mb-047 {
  margin-bottom: -4.7rem;
}

.mb-048 {
  margin-bottom: -4.8rem;
}

.mb-049 {
  margin-bottom: -4.9rem;
}

.mb-050 {
  margin-bottom: -5rem;
}

.mb-051 {
  margin-bottom: -5.1rem;
}

.mb-052 {
  margin-bottom: -5.2rem;
}

.mb-053 {
  margin-bottom: -5.3rem;
}

.mb-054 {
  margin-bottom: -5.4rem;
}

.mb-055 {
  margin-bottom: -5.5rem;
}

.mb-056 {
  margin-bottom: -5.6rem;
}

.mb-057 {
  margin-bottom: -5.7rem;
}

.mb-058 {
  margin-bottom: -5.8rem;
}

.mb-059 {
  margin-bottom: -5.9rem;
}

.mb-060 {
  margin-bottom: -6rem;
}

.mb-061 {
  margin-bottom: -6.1rem;
}

.mb-062 {
  margin-bottom: -6.2rem;
}

.mb-063 {
  margin-bottom: -6.3rem;
}

.mb-064 {
  margin-bottom: -6.4rem;
}

.mb-065 {
  margin-bottom: -6.5rem;
}

.mb-066 {
  margin-bottom: -6.6rem;
}

.mb-067 {
  margin-bottom: -6.7rem;
}

.mb-068 {
  margin-bottom: -6.8rem;
}

.mb-069 {
  margin-bottom: -6.9rem;
}

.mb-070 {
  margin-bottom: -7rem;
}

.mb-071 {
  margin-bottom: -7.1rem;
}

.mb-072 {
  margin-bottom: -7.2rem;
}

.mb-073 {
  margin-bottom: -7.3rem;
}

.mb-074 {
  margin-bottom: -7.4rem;
}

.mb-075 {
  margin-bottom: -7.5rem;
}

.mb-076 {
  margin-bottom: -7.6rem;
}

.mb-077 {
  margin-bottom: -7.7rem;
}

.mb-078 {
  margin-bottom: -7.8rem;
}

.mb-079 {
  margin-bottom: -7.9rem;
}

.mb-080 {
  margin-bottom: -8rem;
}

.mb-081 {
  margin-bottom: -8.1rem;
}

.mb-082 {
  margin-bottom: -8.2rem;
}

.mb-083 {
  margin-bottom: -8.3rem;
}

.mb-084 {
  margin-bottom: -8.4rem;
}

.mb-085 {
  margin-bottom: -8.5rem;
}

.mb-086 {
  margin-bottom: -8.6rem;
}

.mb-087 {
  margin-bottom: -8.7rem;
}

.mb-088 {
  margin-bottom: -8.8rem;
}

.mb-089 {
  margin-bottom: -8.9rem;
}

.mb-090 {
  margin-bottom: -9rem;
}

.mb-091 {
  margin-bottom: -9.1rem;
}

.mb-092 {
  margin-bottom: -9.2rem;
}

.mb-093 {
  margin-bottom: -9.3rem;
}

.mb-094 {
  margin-bottom: -9.4rem;
}

.mb-095 {
  margin-bottom: -9.5rem;
}

.mb-096 {
  margin-bottom: -9.6rem;
}

.mb-097 {
  margin-bottom: -9.7rem;
}

.mb-098 {
  margin-bottom: -9.8rem;
}

.mb-099 {
  margin-bottom: -9.9rem;
}

.mb-100 {
  margin-bottom: -10rem;
}

.mb-110 {
  margin-bottom: -11rem;
}

.mb-120 {
  margin-bottom: -12rem;
}

.mb-130 {
  margin-bottom: -13rem;
}

.mb-140 {
  margin-bottom: -14rem;
}

.mb-150 {
  margin-bottom: -15rem;
}

.mb-160 {
  margin-bottom: -16rem;
}

.mb-170 {
  margin-bottom: -17rem;
}

.mb-180 {
  margin-bottom: -18rem;
}

.mb-190 {
  margin-bottom: -19rem;
}

.mb-200 {
  margin-bottom: -20rem;
}

.mb-210 {
  margin-bottom: -21rem;
}

.mb-220 {
  margin-bottom: -22rem;
}

.mb-230 {
  margin-bottom: -23rem;
}

.mb-240 {
  margin-bottom: -24rem;
}

.mb-250 {
  margin-bottom: -25rem;
}

.mb-260 {
  margin-bottom: -26rem;
}

.mb-270 {
  margin-bottom: -27rem;
}

.mb-280 {
  margin-bottom: -28rem;
}

.mb-290 {
  margin-bottom: -29rem;
}

.mb-300 {
  margin-bottom: -30rem;
}

.ml001 {
  margin-left: 0.1rem;
}

.ml002 {
  margin-left: 0.2rem;
}

.ml003 {
  margin-left: 0.3rem;
}

.ml004 {
  margin-left: 0.4rem;
}

.ml005 {
  margin-left: 0.5rem;
}

.ml006 {
  margin-left: 0.6rem;
}

.ml007 {
  margin-left: 0.7rem;
}

.ml008 {
  margin-left: 0.8rem;
}

.ml009 {
  margin-left: 0.9rem;
}

.ml010 {
  margin-left: 1rem;
}

.ml011 {
  margin-left: 1.1rem;
}

.ml012 {
  margin-left: 1.2rem;
}

.ml013 {
  margin-left: 1.3rem;
}

.ml014 {
  margin-left: 1.4rem;
}

.ml015 {
  margin-left: 1.5rem;
}

.ml016 {
  margin-left: 1.6rem;
}

.ml017 {
  margin-left: 1.7rem;
}

.ml018 {
  margin-left: 1.8rem;
}

.ml019 {
  margin-left: 1.9rem;
}

.ml020 {
  margin-left: 2rem;
}

.ml021 {
  margin-left: 2.1rem;
}

.ml022 {
  margin-left: 2.2rem;
}

.ml023 {
  margin-left: 2.3rem;
}

.ml024 {
  margin-left: 2.4rem;
}

.ml025 {
  margin-left: 2.5rem;
}

.ml026 {
  margin-left: 2.6rem;
}

.ml027 {
  margin-left: 2.7rem;
}

.ml028 {
  margin-left: 2.8rem;
}

.ml029 {
  margin-left: 2.9rem;
}

.ml030 {
  margin-left: 3rem;
}

.ml031 {
  margin-left: 3.1rem;
}

.ml032 {
  margin-left: 3.2rem;
}

.ml033 {
  margin-left: 3.3rem;
}

.ml034 {
  margin-left: 3.4rem;
}

.ml035 {
  margin-left: 3.5rem;
}

.ml036 {
  margin-left: 3.6rem;
}

.ml037 {
  margin-left: 3.7rem;
}

.ml038 {
  margin-left: 3.8rem;
}

.ml039 {
  margin-left: 3.9rem;
}

.ml040 {
  margin-left: 4rem;
}

.ml041 {
  margin-left: 4.1rem;
}

.ml042 {
  margin-left: 4.2rem;
}

.ml043 {
  margin-left: 4.3rem;
}

.ml044 {
  margin-left: 4.4rem;
}

.ml045 {
  margin-left: 4.5rem;
}

.ml046 {
  margin-left: 4.6rem;
}

.ml047 {
  margin-left: 4.7rem;
}

.ml048 {
  margin-left: 4.8rem;
}

.ml049 {
  margin-left: 4.9rem;
}

.ml050 {
  margin-left: 5rem;
}

.ml051 {
  margin-left: 5.1rem;
}

.ml052 {
  margin-left: 5.2rem;
}

.ml053 {
  margin-left: 5.3rem;
}

.ml054 {
  margin-left: 5.4rem;
}

.ml055 {
  margin-left: 5.5rem;
}

.ml056 {
  margin-left: 5.6rem;
}

.ml057 {
  margin-left: 5.7rem;
}

.ml058 {
  margin-left: 5.8rem;
}

.ml059 {
  margin-left: 5.9rem;
}

.ml060 {
  margin-left: 6rem;
}

.ml061 {
  margin-left: 6.1rem;
}

.ml062 {
  margin-left: 6.2rem;
}

.ml063 {
  margin-left: 6.3rem;
}

.ml064 {
  margin-left: 6.4rem;
}

.ml065 {
  margin-left: 6.5rem;
}

.ml066 {
  margin-left: 6.6rem;
}

.ml067 {
  margin-left: 6.7rem;
}

.ml068 {
  margin-left: 6.8rem;
}

.ml069 {
  margin-left: 6.9rem;
}

.ml070 {
  margin-left: 7rem;
}

.ml071 {
  margin-left: 7.1rem;
}

.ml072 {
  margin-left: 7.2rem;
}

.ml073 {
  margin-left: 7.3rem;
}

.ml074 {
  margin-left: 7.4rem;
}

.ml075 {
  margin-left: 7.5rem;
}

.ml076 {
  margin-left: 7.6rem;
}

.ml077 {
  margin-left: 7.7rem;
}

.ml078 {
  margin-left: 7.8rem;
}

.ml079 {
  margin-left: 7.9rem;
}

.ml080 {
  margin-left: 8rem;
}

.ml081 {
  margin-left: 8.1rem;
}

.ml082 {
  margin-left: 8.2rem;
}

.ml083 {
  margin-left: 8.3rem;
}

.ml084 {
  margin-left: 8.4rem;
}

.ml085 {
  margin-left: 8.5rem;
}

.ml086 {
  margin-left: 8.6rem;
}

.ml087 {
  margin-left: 8.7rem;
}

.ml088 {
  margin-left: 8.8rem;
}

.ml089 {
  margin-left: 8.9rem;
}

.ml090 {
  margin-left: 9rem;
}

.ml091 {
  margin-left: 9.1rem;
}

.ml092 {
  margin-left: 9.2rem;
}

.ml093 {
  margin-left: 9.3rem;
}

.ml094 {
  margin-left: 9.4rem;
}

.ml095 {
  margin-left: 9.5rem;
}

.ml096 {
  margin-left: 9.6rem;
}

.ml097 {
  margin-left: 9.7rem;
}

.ml098 {
  margin-left: 9.8rem;
}

.ml099 {
  margin-left: 9.9rem;
}

.ml100 {
  margin-left: 10rem;
}

.ml-001 {
  margin-left: -0.1rem;
}

.ml-002 {
  margin-left: -0.2rem;
}

.ml-003 {
  margin-left: -0.3rem;
}

.ml-004 {
  margin-left: -0.4rem;
}

.ml-005 {
  margin-left: -0.5rem;
}

.ml-006 {
  margin-left: -0.6rem;
}

.ml-007 {
  margin-left: -0.7rem;
}

.ml-008 {
  margin-left: -0.8rem;
}

.ml-009 {
  margin-left: -0.9rem;
}

.ml-010 {
  margin-left: -1rem;
}

.ml-011 {
  margin-left: -1.1rem;
}

.ml-012 {
  margin-left: -1.2rem;
}

.ml-013 {
  margin-left: -1.3rem;
}

.ml-014 {
  margin-left: -1.4rem;
}

.ml-015 {
  margin-left: -1.5rem;
}

.ml-016 {
  margin-left: -1.6rem;
}

.ml-017 {
  margin-left: -1.7rem;
}

.ml-018 {
  margin-left: -1.8rem;
}

.ml-019 {
  margin-left: -1.9rem;
}

.ml-020 {
  margin-left: -2rem;
}

.ml-021 {
  margin-left: -2.1rem;
}

.ml-022 {
  margin-left: -2.2rem;
}

.ml-023 {
  margin-left: -2.3rem;
}

.ml-024 {
  margin-left: -2.4rem;
}

.ml-025 {
  margin-left: -2.5rem;
}

.ml-026 {
  margin-left: -2.6rem;
}

.ml-027 {
  margin-left: -2.7rem;
}

.ml-028 {
  margin-left: -2.8rem;
}

.ml-029 {
  margin-left: -2.9rem;
}

.ml-030 {
  margin-left: -3rem;
}

.ml-031 {
  margin-left: -3.1rem;
}

.ml-032 {
  margin-left: -3.2rem;
}

.ml-033 {
  margin-left: -3.3rem;
}

.ml-034 {
  margin-left: -3.4rem;
}

.ml-035 {
  margin-left: -3.5rem;
}

.ml-036 {
  margin-left: -3.6rem;
}

.ml-037 {
  margin-left: -3.7rem;
}

.ml-038 {
  margin-left: -3.8rem;
}

.ml-039 {
  margin-left: -3.9rem;
}

.ml-040 {
  margin-left: -4rem;
}

.ml-041 {
  margin-left: -4.1rem;
}

.ml-042 {
  margin-left: -4.2rem;
}

.ml-043 {
  margin-left: -4.3rem;
}

.ml-044 {
  margin-left: -4.4rem;
}

.ml-045 {
  margin-left: -4.5rem;
}

.ml-046 {
  margin-left: -4.6rem;
}

.ml-047 {
  margin-left: -4.7rem;
}

.ml-048 {
  margin-left: -4.8rem;
}

.ml-049 {
  margin-left: -4.9rem;
}

.ml-050 {
  margin-left: -5rem;
}

.ml-051 {
  margin-left: -5.1rem;
}

.ml-052 {
  margin-left: -5.2rem;
}

.ml-053 {
  margin-left: -5.3rem;
}

.ml-054 {
  margin-left: -5.4rem;
}

.ml-055 {
  margin-left: -5.5rem;
}

.ml-056 {
  margin-left: -5.6rem;
}

.ml-057 {
  margin-left: -5.7rem;
}

.ml-058 {
  margin-left: -5.8rem;
}

.ml-059 {
  margin-left: -5.9rem;
}

.ml-060 {
  margin-left: -6rem;
}

.ml-061 {
  margin-left: -6.1rem;
}

.ml-062 {
  margin-left: -6.2rem;
}

.ml-063 {
  margin-left: -6.3rem;
}

.ml-064 {
  margin-left: -6.4rem;
}

.ml-065 {
  margin-left: -6.5rem;
}

.ml-066 {
  margin-left: -6.6rem;
}

.ml-067 {
  margin-left: -6.7rem;
}

.ml-068 {
  margin-left: -6.8rem;
}

.ml-069 {
  margin-left: -6.9rem;
}

.ml-070 {
  margin-left: -7rem;
}

.ml-071 {
  margin-left: -7.1rem;
}

.ml-072 {
  margin-left: -7.2rem;
}

.ml-073 {
  margin-left: -7.3rem;
}

.ml-074 {
  margin-left: -7.4rem;
}

.ml-075 {
  margin-left: -7.5rem;
}

.ml-076 {
  margin-left: -7.6rem;
}

.ml-077 {
  margin-left: -7.7rem;
}

.ml-078 {
  margin-left: -7.8rem;
}

.ml-079 {
  margin-left: -7.9rem;
}

.ml-080 {
  margin-left: -8rem;
}

.ml-081 {
  margin-left: -8.1rem;
}

.ml-082 {
  margin-left: -8.2rem;
}

.ml-083 {
  margin-left: -8.3rem;
}

.ml-084 {
  margin-left: -8.4rem;
}

.ml-085 {
  margin-left: -8.5rem;
}

.ml-086 {
  margin-left: -8.6rem;
}

.ml-087 {
  margin-left: -8.7rem;
}

.ml-088 {
  margin-left: -8.8rem;
}

.ml-089 {
  margin-left: -8.9rem;
}

.ml-090 {
  margin-left: -9rem;
}

.ml-091 {
  margin-left: -9.1rem;
}

.ml-092 {
  margin-left: -9.2rem;
}

.ml-093 {
  margin-left: -9.3rem;
}

.ml-094 {
  margin-left: -9.4rem;
}

.ml-095 {
  margin-left: -9.5rem;
}

.ml-096 {
  margin-left: -9.6rem;
}

.ml-097 {
  margin-left: -9.7rem;
}

.ml-098 {
  margin-left: -9.8rem;
}

.ml-099 {
  margin-left: -9.9rem;
}

.ml-100 {
  margin-left: -10rem;
}

.mr001 {
  margin-right: 0.1rem;
}

.mr002 {
  margin-right: 0.2rem;
}

.mr003 {
  margin-right: 0.3rem;
}

.mr004 {
  margin-right: 0.4rem;
}

.mr005 {
  margin-right: 0.5rem;
}

.mr006 {
  margin-right: 0.6rem;
}

.mr007 {
  margin-right: 0.7rem;
}

.mr008 {
  margin-right: 0.8rem;
}

.mr009 {
  margin-right: 0.9rem;
}

.mr010 {
  margin-right: 1rem;
}

.mr011 {
  margin-right: 1.1rem;
}

.mr012 {
  margin-right: 1.2rem;
}

.mr013 {
  margin-right: 1.3rem;
}

.mr014 {
  margin-right: 1.4rem;
}

.mr015 {
  margin-right: 1.5rem;
}

.mr016 {
  margin-right: 1.6rem;
}

.mr017 {
  margin-right: 1.7rem;
}

.mr018 {
  margin-right: 1.8rem;
}

.mr019 {
  margin-right: 1.9rem;
}

.mr020 {
  margin-right: 2rem;
}

.mr021 {
  margin-right: 2.1rem;
}

.mr022 {
  margin-right: 2.2rem;
}

.mr023 {
  margin-right: 2.3rem;
}

.mr024 {
  margin-right: 2.4rem;
}

.mr025 {
  margin-right: 2.5rem;
}

.mr026 {
  margin-right: 2.6rem;
}

.mr027 {
  margin-right: 2.7rem;
}

.mr028 {
  margin-right: 2.8rem;
}

.mr029 {
  margin-right: 2.9rem;
}

.mr030 {
  margin-right: 3rem;
}

.mr031 {
  margin-right: 3.1rem;
}

.mr032 {
  margin-right: 3.2rem;
}

.mr033 {
  margin-right: 3.3rem;
}

.mr034 {
  margin-right: 3.4rem;
}

.mr035 {
  margin-right: 3.5rem;
}

.mr036 {
  margin-right: 3.6rem;
}

.mr037 {
  margin-right: 3.7rem;
}

.mr038 {
  margin-right: 3.8rem;
}

.mr039 {
  margin-right: 3.9rem;
}

.mr040 {
  margin-right: 4rem;
}

.mr041 {
  margin-right: 4.1rem;
}

.mr042 {
  margin-right: 4.2rem;
}

.mr043 {
  margin-right: 4.3rem;
}

.mr044 {
  margin-right: 4.4rem;
}

.mr045 {
  margin-right: 4.5rem;
}

.mr046 {
  margin-right: 4.6rem;
}

.mr047 {
  margin-right: 4.7rem;
}

.mr048 {
  margin-right: 4.8rem;
}

.mr049 {
  margin-right: 4.9rem;
}

.mr050 {
  margin-right: 5rem;
}

.mr051 {
  margin-right: 5.1rem;
}

.mr052 {
  margin-right: 5.2rem;
}

.mr053 {
  margin-right: 5.3rem;
}

.mr054 {
  margin-right: 5.4rem;
}

.mr055 {
  margin-right: 5.5rem;
}

.mr056 {
  margin-right: 5.6rem;
}

.mr057 {
  margin-right: 5.7rem;
}

.mr058 {
  margin-right: 5.8rem;
}

.mr059 {
  margin-right: 5.9rem;
}

.mr060 {
  margin-right: 6rem;
}

.mr061 {
  margin-right: 6.1rem;
}

.mr062 {
  margin-right: 6.2rem;
}

.mr063 {
  margin-right: 6.3rem;
}

.mr064 {
  margin-right: 6.4rem;
}

.mr065 {
  margin-right: 6.5rem;
}

.mr066 {
  margin-right: 6.6rem;
}

.mr067 {
  margin-right: 6.7rem;
}

.mr068 {
  margin-right: 6.8rem;
}

.mr069 {
  margin-right: 6.9rem;
}

.mr070 {
  margin-right: 7rem;
}

.mr071 {
  margin-right: 7.1rem;
}

.mr072 {
  margin-right: 7.2rem;
}

.mr073 {
  margin-right: 7.3rem;
}

.mr074 {
  margin-right: 7.4rem;
}

.mr075 {
  margin-right: 7.5rem;
}

.mr076 {
  margin-right: 7.6rem;
}

.mr077 {
  margin-right: 7.7rem;
}

.mr078 {
  margin-right: 7.8rem;
}

.mr079 {
  margin-right: 7.9rem;
}

.mr080 {
  margin-right: 8rem;
}

.mr081 {
  margin-right: 8.1rem;
}

.mr082 {
  margin-right: 8.2rem;
}

.mr083 {
  margin-right: 8.3rem;
}

.mr084 {
  margin-right: 8.4rem;
}

.mr085 {
  margin-right: 8.5rem;
}

.mr086 {
  margin-right: 8.6rem;
}

.mr087 {
  margin-right: 8.7rem;
}

.mr088 {
  margin-right: 8.8rem;
}

.mr089 {
  margin-right: 8.9rem;
}

.mr090 {
  margin-right: 9rem;
}

.mr091 {
  margin-right: 9.1rem;
}

.mr092 {
  margin-right: 9.2rem;
}

.mr093 {
  margin-right: 9.3rem;
}

.mr094 {
  margin-right: 9.4rem;
}

.mr095 {
  margin-right: 9.5rem;
}

.mr096 {
  margin-right: 9.6rem;
}

.mr097 {
  margin-right: 9.7rem;
}

.mr098 {
  margin-right: 9.8rem;
}

.mr099 {
  margin-right: 9.9rem;
}

.mr100 {
  margin-right: 10rem;
}

.mr-001 {
  margin-right: -0.1rem;
}

.mr-002 {
  margin-right: -0.2rem;
}

.mr-003 {
  margin-right: -0.3rem;
}

.mr-004 {
  margin-right: -0.4rem;
}

.mr-005 {
  margin-right: -0.5rem;
}

.mr-006 {
  margin-right: -0.6rem;
}

.mr-007 {
  margin-right: -0.7rem;
}

.mr-008 {
  margin-right: -0.8rem;
}

.mr-009 {
  margin-right: -0.9rem;
}

.mr-010 {
  margin-right: -1rem;
}

.mr-011 {
  margin-right: -1.1rem;
}

.mr-012 {
  margin-right: -1.2rem;
}

.mr-013 {
  margin-right: -1.3rem;
}

.mr-014 {
  margin-right: -1.4rem;
}

.mr-015 {
  margin-right: -1.5rem;
}

.mr-016 {
  margin-right: -1.6rem;
}

.mr-017 {
  margin-right: -1.7rem;
}

.mr-018 {
  margin-right: -1.8rem;
}

.mr-019 {
  margin-right: -1.9rem;
}

.mr-020 {
  margin-right: -2rem;
}

.mr-021 {
  margin-right: -2.1rem;
}

.mr-022 {
  margin-right: -2.2rem;
}

.mr-023 {
  margin-right: -2.3rem;
}

.mr-024 {
  margin-right: -2.4rem;
}

.mr-025 {
  margin-right: -2.5rem;
}

.mr-026 {
  margin-right: -2.6rem;
}

.mr-027 {
  margin-right: -2.7rem;
}

.mr-028 {
  margin-right: -2.8rem;
}

.mr-029 {
  margin-right: -2.9rem;
}

.mr-030 {
  margin-right: -3rem;
}

.mr-031 {
  margin-right: -3.1rem;
}

.mr-032 {
  margin-right: -3.2rem;
}

.mr-033 {
  margin-right: -3.3rem;
}

.mr-034 {
  margin-right: -3.4rem;
}

.mr-035 {
  margin-right: -3.5rem;
}

.mr-036 {
  margin-right: -3.6rem;
}

.mr-037 {
  margin-right: -3.7rem;
}

.mr-038 {
  margin-right: -3.8rem;
}

.mr-039 {
  margin-right: -3.9rem;
}

.mr-040 {
  margin-right: -4rem;
}

.mr-041 {
  margin-right: -4.1rem;
}

.mr-042 {
  margin-right: -4.2rem;
}

.mr-043 {
  margin-right: -4.3rem;
}

.mr-044 {
  margin-right: -4.4rem;
}

.mr-045 {
  margin-right: -4.5rem;
}

.mr-046 {
  margin-right: -4.6rem;
}

.mr-047 {
  margin-right: -4.7rem;
}

.mr-048 {
  margin-right: -4.8rem;
}

.mr-049 {
  margin-right: -4.9rem;
}

.mr-050 {
  margin-right: -5rem;
}

.mr-051 {
  margin-right: -5.1rem;
}

.mr-052 {
  margin-right: -5.2rem;
}

.mr-053 {
  margin-right: -5.3rem;
}

.mr-054 {
  margin-right: -5.4rem;
}

.mr-055 {
  margin-right: -5.5rem;
}

.mr-056 {
  margin-right: -5.6rem;
}

.mr-057 {
  margin-right: -5.7rem;
}

.mr-058 {
  margin-right: -5.8rem;
}

.mr-059 {
  margin-right: -5.9rem;
}

.mr-060 {
  margin-right: -6rem;
}

.mr-061 {
  margin-right: -6.1rem;
}

.mr-062 {
  margin-right: -6.2rem;
}

.mr-063 {
  margin-right: -6.3rem;
}

.mr-064 {
  margin-right: -6.4rem;
}

.mr-065 {
  margin-right: -6.5rem;
}

.mr-066 {
  margin-right: -6.6rem;
}

.mr-067 {
  margin-right: -6.7rem;
}

.mr-068 {
  margin-right: -6.8rem;
}

.mr-069 {
  margin-right: -6.9rem;
}

.mr-070 {
  margin-right: -7rem;
}

.mr-071 {
  margin-right: -7.1rem;
}

.mr-072 {
  margin-right: -7.2rem;
}

.mr-073 {
  margin-right: -7.3rem;
}

.mr-074 {
  margin-right: -7.4rem;
}

.mr-075 {
  margin-right: -7.5rem;
}

.mr-076 {
  margin-right: -7.6rem;
}

.mr-077 {
  margin-right: -7.7rem;
}

.mr-078 {
  margin-right: -7.8rem;
}

.mr-079 {
  margin-right: -7.9rem;
}

.mr-080 {
  margin-right: -8rem;
}

.mr-081 {
  margin-right: -8.1rem;
}

.mr-082 {
  margin-right: -8.2rem;
}

.mr-083 {
  margin-right: -8.3rem;
}

.mr-084 {
  margin-right: -8.4rem;
}

.mr-085 {
  margin-right: -8.5rem;
}

.mr-086 {
  margin-right: -8.6rem;
}

.mr-087 {
  margin-right: -8.7rem;
}

.mr-088 {
  margin-right: -8.8rem;
}

.mr-089 {
  margin-right: -8.9rem;
}

.mr-090 {
  margin-right: -9rem;
}

.mr-091 {
  margin-right: -9.1rem;
}

.mr-092 {
  margin-right: -9.2rem;
}

.mr-093 {
  margin-right: -9.3rem;
}

.mr-094 {
  margin-right: -9.4rem;
}

.mr-095 {
  margin-right: -9.5rem;
}

.mr-096 {
  margin-right: -9.6rem;
}

.mr-097 {
  margin-right: -9.7rem;
}

.mr-098 {
  margin-right: -9.8rem;
}

.mr-099 {
  margin-right: -9.9rem;
}

.mr-100 {
  margin-right: -10rem;
}

.gap05p {
  gap: 5%;
}

.gap10p {
  gap: 10%;
}

.gap15p {
  gap: 15%;
}

.gap20p {
  gap: 20%;
}

.gap25p {
  gap: 25%;
}

.gap30p {
  gap: 30%;
}

.gap35p {
  gap: 35%;
}

.gap40p {
  gap: 40%;
}

.gap45p {
  gap: 45%;
}

.gap50p {
  gap: 50%;
}

.h100per {
  height: 100%;
}

.title01 {
  font-size: clamp(24px, 2vw, 32px);
  text-align: center;
  padding: 0 0 1rem 0;
  margin: 0;
}

.title02 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: bold;
  text-align: center;
  padding-bottom: 1.5rem;
}

.title03 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem;
  border-top: solid 1px #666;
  border-bottom: solid 1px #666;
  margin-top: 7rem;
}

.title04 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1.2rem;
}

.title05 {
  font-size: 1.5rem;
  font-weight: bold;
}

.heading03 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(20px, 2vw, 28px);
  text-align: center;
}
.heading03::before, .heading03::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #666;
}
.heading03::before {
  margin-right: 20px;
}
.heading03::after {
  margin-left: 20px;
}

.heading03_wh {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(20px, 2vw, 28px);
  text-align: center;
}
.heading03_wh::before, .heading03_wh::after {
  content: "";
  width: 70px;
  height: 3px;
  background-color: #fff;
}
.heading03_wh::before {
  margin-right: 20px;
}
.heading03_wh::after {
  margin-left: 20px;
}

.heading04 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(20px, 2vw, 28px);
  text-align: center;
}
.heading04::before, .heading04::after {
  content: "";
  width: 3px;
  height: 40px;
  background-color: #666;
}
.heading04::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}
.heading04::after {
  margin-left: 30px;
  transform: rotate(35deg);
}

.title_serif01 {
  font-size: clamp(36px, 5vw, 48px);
  text-align: center;
  padding: 0;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
}

.title_serif02 {
  font-size: clamp(18px, 2vw, 24px);
  padding: 0 1rem 0 0.5rem;
  width: 100%;
  border-bottom: solid 1px #666;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
  display: inline-block;
}

.title_serif03 {
  font-size: clamp(24px, 5vw, 36px);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 110%;
  padding: 3rem 0 3rem 0;
  display: block;
}

.title_serif03-2 {
  font-size: clamp(24px, 5vw, 36px);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 110%;
}

.title_serif04 {
  font-size: clamp(24px, 5vw, 40px);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
  line-height: 120%;
  padding: 3rem 0 3rem 0;
  display: block;
}

.heading05 {
  position: relative;
  margin-bottom: 5rem;
  margin-top: 5rem;
  color: #111;
  font-weight: bold;
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
}
.heading05::before {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 3rem 0.2rem 3rem;
  background-color: #48d1cc;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  content: "";
}

.heading11 {
  position: relative;
  font-size: clamp(20px, 2vw, 28px);
  text-align: center;
}
.heading11::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 30px;
  color: #666;
  font-size: 30px;
}
.heading11::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #666;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  color: #111;
  padding: 10px;
  border-radius: 10px;
  width: minmax(300px, 75%);
  font-size: 16px;
}

.btn01 {
  position: relative;
}
.btn01::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
}
.btn01:hover {
  background-color: #4876f3;
  color: #fff;
}

.sample_box1 {
  width: minmax(90%, 1000px);
  min-height: 100vh;
}

.sample_box4 {
  width: calc(100% - 40px);
}

.sample_txt1 {
  font-size: clamp(12px, 2vw, 20px);
}

.grid01 {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  grid-template-rows: 1fr 1fr 1fr;
}

.grid02 {
  display: grid;
  grid-template: 100px 100px/100px 100px;
}

.gr-box01-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
}

.gr-box01-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem 2rem;
}

.grid_center {
  display: grid;
  place-items: center;
  height: 100vh;
}

.grid03 {
  display: grid;
  grid-template: "area01 area02" 100px "area03 area04" 1fr "area05 area06" 100px/200px 1fr;
}

.item01 {
  grid-area: area01;
}

.grid04 {
  display: grid;
  aspect-ratio: 1;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 2rem;
  width: 100%;
  background-color: bisque;
}
.grid04 .card {
  grid-column: 4/7;
  grid-row: 4/7;
  background-color: aquamarine;
  gap: 2rem;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 58px;
}

.sticy_block01 {
  width: 100%;
}
.sticy_block01 .sticky_box {
  position: sticky;
  top: 0;
}

.text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.position {
  inset: 0;
  inset: 10px 20px;
  inset: 10px 20px 30px 40px;
}

.fixed {
  position: fixed;
  inset: 0;
  margin: auto;
}

.img_box01 {
  width: 100%;
}
.img_box01 img {
  aspect-ratio: 10/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
}

.bgpicture {
  background: url(../img/pix001.avif) no-repeat center center/cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  color: fff;
  font-size: clamp(20px, 2vw, 42px);
}

.bgpicture02 {
  background: url(../img/pix001.avif) no-repeat center center/cover;
  background: -webkit-image-set(url(../img/pix001_1x.avif) 1x, url(../img/pix001_2x.avif) 2x);
  background: image-set(url(../img/pix001_1x.avif) 1x, url(../img/pix001_2x.avif) 2x);
}

.bgpicture03 {
  background: -webkit-image-set(url(../img/pix001_1x.avif) type("image/avif"), url(../img/pix001_2x.avif) type("image/jpeg"));
  background: image-set(url(../img/pix001_1x.avif) type("image/avif"), url(../img/pix001_2x.avif) type("image/jpeg"));
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

a::before,
a::after {
  content: none !important;
  display: none !important;
}

a img + *::before,
a img + *::after,
a::before,
a::after {
  content: none !important;
}

.gnav-main {
  background-color: rgba(233, 242, 245, 0.8) !important;
}

.gnav-main__list3 {
  display: none !important;
}

footer.bgc {
  background-color: #fff;
  width: 100%;
}

footer.ft {
  background-color: #333333 !important;
  color: #fff !important;
  border-top: none !important;
  width: 100%;
}
@media (min-width: 0) {
  footer.ft {
    height: 400px !important;
  }
}

.news__list .news__item .home-events__link .news__txt {
  text-decoration: underline;
}

main.contents {
  background-color: rgba(0, 0, 0, 0) !important;
}

.ptitle_t2 {
  border-bottom: 0px !important;
  font-weight: 400 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.ptitle_t2::before, .ptitle_t2::after {
  content: "";
}
@media (min-width: 0) {
  .ptitle_t2::before, .ptitle_t2::after {
    width: 20%;
  }
}
@media (min-width: 768px) {
  .ptitle_t2::before, .ptitle_t2::after {
    width: 35%;
  }
}
@media (min-width: 992px) {
  .ptitle_t2::before, .ptitle_t2::after {
    width: 40%;
  }
}
.ptitle_t2::before, .ptitle_t2::after {
  height: 1px;
  background-color: #999;
}
.ptitle_t2::before {
  margin-right: 20px;
}
.ptitle_t2::after {
  margin-left: 20px;
}

.home-news .ttl__style01 {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0 !important;
  margin-bottom: 40px !important;
  border-bottom: 0 !important;
  font-weight: 400 !important;
  text-align: center;
  font-size: clamp(28px, 2vw, 42px) !important;
}
.home-news .ttl__style01::before, .home-news .ttl__style01::after {
  content: "" !important;
  position: static !important;
  display: block !important;
  flex-shrink: 0;
  width: 30%;
  height: 1px !important;
  background: #999 !important;
  opacity: 1 !important;
}
@media (min-width: 0) {
  .home-news .ttl__style01::before, .home-news .ttl__style01::after {
    width: 20% !important;
  }
}
@media (min-width: 768px) {
  .home-news .ttl__style01::before, .home-news .ttl__style01::after {
    width: 35% !important;
  }
}
@media (min-width: 992px) {
  .home-news .ttl__style01::before, .home-news .ttl__style01::after {
    width: 40% !important;
  }
}
.home-news .ttl__style01::before {
  margin-right: 20px !important;
}
.home-news .ttl__style01::after {
  margin-left: 20px !important;
}

.home-news .text-right {
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center !important;
}

.home-news .text-right .plink_type_inline_line_r {
  display: inline-block;
  padding: 10px 50px !important;
  min-width: 300px !important;
  color: #333;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 2px solid #333;
  border-radius: 25px;
  transform: none !important;
  transition: 0.5s ease;
}

.home-news .text-right .plink_type_inline_line_r::after {
  content: none !important;
}

.home-news .text-right .plink_type_inline_line_r:hover {
  color: #fff !important;
  background: #2c9bc7;
  border-color: #2c9bc7;
  opacity: 1 !important;
  transform: none !important;
}

.pblock-kuzu {
  display: none !important;
}

.news-tab {
  margin-top: 0px !important;
}

.news-tab__txt {
  font-weight: normal !important;
}

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

/* 日付とカテゴリを横並びにする */
.home-events__link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

/* 画像は横幅いっぱい */
.home-events__fig {
  grid-column: 1/-1;
}

/* お知らせを左側へ */
.home-events__tags {
  position: static !important;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  margin: 10px 0 5px;
  padding: 0;
}

/* 日付を右側へ */
.home-events__date {
  grid-column: 2;
  grid-row: 2;
  margin: 10px 0 5px;
}

/* タイトルは横幅いっぱい */
.home-events__txt {
  grid-column: 1/-1;
}

.home-events__tags .ptag__item {
  margin: 0 !important;
  padding: 3px 10px;
  line-height: 1.4;
}

.home-events__link .home-events__tags .ptag__item {
  background-color: #3eabda !important;
  border-radius: 10px !important;
  color: #fff;
}

.ft__pagetop.pagetop {
  position: fixed !important;
  z-index: 9999 !important;
  top: auto !important;
  right: 60px !important;
  bottom: 60px !important;
  left: auto !important;
  width: 60px !important;
  height: 60px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(10px) !important;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
}
.ft__pagetop.pagetop.pagetop_show {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.ft__pagetop.pagetop .ft_pagetop-link.scroll {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  display: block !important;
  width: 60px !important;
  height: 60px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none !important;
  background-color: rgba(86, 87, 87, 0.8) !important;
  transition: background-color 0.2s ease !important;
}
.ft__pagetop.pagetop .ft_pagetop-link.scroll::after {
  content: "" !important;
  position: absolute !important;
  z-index: 2 !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  width: 60px !important;
  height: 60px !important;
  transform: translate(-50%, -50%) !important;
  background-image: url("/omu-j-peaks/assets/ico_arrow-up.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 60px 60px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}
.ft__pagetop.pagetop .ft_pagetop-link.scroll:hover, .ft__pagetop.pagetop .ft_pagetop-link.scroll:focus-visible {
  background-color: rgb(86, 87, 87) !important;
}

@media screen and (max-width: 768.98px) {
  .ft__pagetop.pagetop {
    right: 45px !important;
    bottom: 45px !important;
  }
}
/***********************************************************/
/*ナビゲーションのhover設定*/
/***********************************************************/
@media print, (min-width: 1200px) {
  .nav-top .gnav-main {
    border-bottom: 0 !important;
  }
  .nav-top .gnav-main__item1 {
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  .nav-top .gnav-main__item1:hover, .nav-top .gnav-main__item1:focus-within {
    background-color: rgb(62, 171, 218) !important;
  }
  .nav-top .gnav-main__item1:hover .gnav-main__link1,
  .nav-top .gnav-main__item1:hover .gnav-main__link1-jp,
  .nav-top .gnav-main__item1:hover .gnav-main__link1-en, .nav-top .gnav-main__item1:focus-within .gnav-main__link1,
  .nav-top .gnav-main__item1:focus-within .gnav-main__link1-jp,
  .nav-top .gnav-main__item1:focus-within .gnav-main__link1-en {
    color: #fff !important;
  }
  .nav-top .gnav-main__link1,
  .nav-top .gnav-main__link1-jp,
  .nav-top .gnav-main__link1-en {
    transition: color 0.3s ease;
  }
}
@media print, (min-width: 1200px) {
  .nav-top .gnav-main {
    border-bottom: 0px solid #efefef !important;
  }
}
/* 全画面背景の固定 */
.slideshow-bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.slide_content01 {
  position: relative;
  z-index: 2; /* 背景(0)より確実に前に来る */
}

/* 各スライドの共通設定 */
.slideshow-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* スライド画像(0)の上に配置 */
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 30%, transparent 100%);
}

/* 4. スライド画像のz-indexを明示的に指定 */
.slideshow-bg > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeAnimation 49s infinite ease-in-out;
  z-index: 0; /* 画像は一番下に固定 */
}

/* 背景画像の指定 */
.slide-1 {
  background-image: url("../assets/omu001.jpg");
}

.slide-2 {
  background-image: url("../assets/omu002.jpg");
}

.slide-3 {
  background-image: url("../assets/omu003.jpg");
}

.slide-4 {
  background-image: url("../assets/omu004.jpg");
}

.slide-5 {
  background-image: url("../assets/omu005.jpg");
}

.slide-6 {
  background-image: url("../assets/omu006.jpg");
}

.slide-7 {
  background-image: url("../assets/omu007.jpg");
}

/* 【重要】遅延時間をマイナスに設定 */
/* ページを開いた瞬間から、それぞれの時間軸の位置からスタートさせます */
.slideshow-bg .slide-1 {
  animation-delay: 0s;
}

.slideshow-bg .slide-2 {
  animation-delay: -42s;
}

.slideshow-bg .slide-3 {
  animation-delay: -35s;
} /* 42秒から7秒引いた位置 */
.slideshow-bg .slide-4 {
  animation-delay: -28s;
}

.slideshow-bg .slide-5 {
  animation-delay: -21s;
}

.slideshow-bg .slide-6 {
  animation-delay: -14s;
}

.slideshow-bg .slide-7 {
  animation-delay: -7s;
}

/* 30秒を基準にしたフェードアニメーション（1枚あたり約16.6%） */
@keyframes fadeAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }
  /* 開始後、約1.5秒かけて完全に表示 */
  5% {
    opacity: 1;
    animation-timing-function: ease-out;
  }
  /* 約5秒間（全体の16.6%）しっかりと表示を維持 */
  16.6% {
    opacity: 1;
  }
  /* 次の画像が不透明度1になるタイミング（21.6%）まで、約1.5秒かけてゆっくり消えていく */
  21.6% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 重ねるテキストのスタイル */
.slide_content01 {
  position: absolute;
  width: 100%;
  z-index: 1; /* スライドショーより前面に */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 100px);
  color: #ffffff;
  text-align: center;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8); /* 文字の視認性を上げる影 */
  padding: 20px;
  box-sizing: border-box;
}

.slide_content01 h1 {
  margin-bottom: 20px;
  margin-top: -50px;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}
@media (min-width: 0) {
  .slide_content01 h1 {
    max-width: 90%;
  }
}
@media (min-width: 576px) {
  .slide_content01 h1 {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .slide_content01 h1 {
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .slide_content01 h1 {
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  .slide_content01 h1 {
    max-width: 55%;
  }
}
@media (min-width: 1400px) {
  .slide_content01 h1 {
    max-width: 50%;
  }
}

.title_main {
  font-size: clamp(18px, 2.5vw, 32px);
  text-align: center;
}

@media (min-width: 0) {
  .title_main_en {
    line-height: 110%;
  }
}

.border-animation {
  position: relative;
  display: inline-block;
}
@media (min-width: 0) {
  .border-animation {
    width: 90%;
  }
}
@media (min-width: 576px) {
  .border-animation {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .border-animation {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .border-animation {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .border-animation {
    width: 55%;
  }
}
@media (min-width: 1400px) {
  .border-animation {
    width: 50%;
  }
}
.border-animation {
  margin: 3rem 0 3rem 0;
}

/* 線を作る疑似要素 */
.border-animation::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px; /* 線の太さ */
  background-color: #fff; /* 線の色 */
  /* 0.5倍に縮小して、実質0.5pxにする */
  transform: scale(0.3);
  /* 拡大縮小の基準を左上（または中央）に固定 */
  transform-origin: left top;
  /* アニメーションと組み合わせる場合は以下のように */
  transform: scaleX(0) scaleY(0.5);
  /* アニメーションの設定 */
  transform: scaleX(0); /* 最初は幅0 */
  transform-origin: center; /* 中央起点 */
  animation-delay: 2s; /* ここで1秒待機 */
  animation: expand-border 2s ease-out forwards;
}

/* アニメーション定義 */
@keyframes expand-border {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.jpeaks-map {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 40px auto;
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  display: block;
}

/* 高さを確実に作る */
.jpeaks-map::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.jpeaks-map,
.jpeaks-map * {
  box-sizing: border-box;
}

/* 背景の正円 */
.jpeaks-map-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: transparent;
}

.jpeaks-map-bg01 {
  width: 66%;
  height: 66%;
  border: 2px solid #3157f2;
  z-index: 1;
}

.jpeaks-map-bg02 {
  width: 58%;
  height: 58%;
  border: 2px solid #8ddff5;
  z-index: 1;
}

/* 3つのリンク円 */
.jpeaks-map-link {
  --frame: 22px;
  position: absolute;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  padding: var(--frame);
  display: block;
  text-decoration: none;
  background: linear-gradient(to right, #9ee8fa, #244ce9, #c76deb);
  background-position: 0% 50%;
  background-size: 200% auto;
  z-index: 3;
  opacity: 1;
  overflow: visible;
  transition: all 0.3s ease-out;
}

/* 白い中央円 */
.jpeaks-map-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
}

/* 波紋用 */
.jpeaks-map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

/* hover */
.jpeaks-map-link:hover::after {
  opacity: 1;
  animation: jpeaks-map-ripple 1.5s infinite;
}

.jpeaks-map-link:hover {
  opacity: 1;
  background-position: 100% 51%;
}

/* 均等配置 */
.jpeaks-map-link-top {
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
}

.jpeaks-map-link-left {
  left: 28%;
  top: 66%;
  transform: translate(-50%, -50%);
}

.jpeaks-map-link-right {
  left: 72%;
  top: 66%;
  transform: translate(-50%, -50%);
}

/* hover時も位置を崩さない */
.jpeaks-map-link-top:hover,
.jpeaks-map-link-left:hover,
.jpeaks-map-link-right:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

@keyframes jpeaks-map-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(27, 133, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
  }
}
/* 文字 */
.jpeaks-map-jp,
.jpeaks-map-en {
  display: block;
  position: relative;
  z-index: 3;
  opacity: 1;
  text-decoration: none;
  white-space: normal;
}

.jpeaks-map-jp {
  color: #1f2945;
  font-size: clamp(17px, 2.7vw, 27px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.jpeaks-map-en {
  margin-top: 6px;
  color: #888888;
  font-size: clamp(13px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.2;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .jpeaks-map {
    max-width: 96vw;
  }
  .jpeaks-map-link {
    --frame: 12px;
    width: 42%;
    height: 42%;
  }
  .jpeaks-map-bg01 {
    border-width: 1.5px;
  }
  .jpeaks-map-bg02 {
    border-width: 1.5px;
  }
  .jpeaks-map-jp {
    font-size: clamp(12px, 3.5vw, 17px);
    line-height: 1.3;
  }
  .jpeaks-map-en {
    font-size: clamp(10px, 2.8vw, 13px);
    margin-top: 3px;
  }
  @keyframes jpeaks-map-ripple {
    0% {
      box-shadow: 0 0 0 0 rgba(27, 133, 251, 0.55);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(27, 133, 251, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
    }
  }
}
.topvtr01 {
  width: 100%;
}
@media (min-width: 0) {
  .topvtr01 {
    height: 3900px;
  }
}
@media (min-width: 576px) {
  .topvtr01 {
    height: 3500px;
  }
}
@media (min-width: 768px) {
  .topvtr01 {
    height: 2750px;
  }
}
@media (min-width: 992px) {
  .topvtr01 {
    height: 2700px;
  }
}
@media (min-width: 1200px) {
  .topvtr01 {
    height: 2100px;
  }
}
@media (min-width: 1400px) {
  .topvtr01 {
    height: 2100px;
  }
}
.topvtr01 {
  overflow: hidden;
  position: relative;
}
.topvtr01 .top__video01 {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.topvtr01 .vtr_txtblock01 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.top_block01 {
  padding-top: 50px;
  padding-bottom: 0px;
  position: relative;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.top_block02 {
  background-color: rgba(254, 255, 255, 0);
  padding-bottom: 0;
}
@media (min-width: 0) {
  .top_block02 {
    position: relative;
    padding-top: 50px;
  }
}
@media (min-width: 576px) {
  .top_block02 {
    position: relative;
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  .top_block02 {
    position: relative;
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .top_block02 {
    position: relative;
    padding-top: 50px;
  }
}
@media (min-width: 1200px) {
  .top_block02 {
    position: absolute;
    top: 0;
    padding-top: 180px;
  }
}
@media (min-width: 1400px) {
  .top_block02 {
    position: absolute;
    top: 0;
    padding-top: 200px;
  }
}

@media (min-width: 1200px) {
  .top_block03 {
    transform: scale(1.3);
  }
}
@media (min-width: 1400px) {
  .top_block03 {
    transform: scale(1.4);
  }
}

.title_jpeaks1 {
  font-weight: bolder;
  font-size: clamp(48px, 6vw, 120px);
  line-height: 105%;
}

.title_jpeaks2 {
  font-size: clamp(24px, 3vw, 60px);
  line-height: 100%;
}

.bigevent_box {
  width: 100%;
  padding: 30px;
  border: solid 8px #3eabda;
}

.title_events01 {
  font-size: clamp(36px, 5vw, 48px);
  text-align: center;
  color: #fff;
  padding: 0;
  margin-bottom: 30px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
}

.title_events_main {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 110%;
  color: #333333;
  font-weight: bold;
  width: 100%;
  margin: 0;
}

.title_events_sub {
  font-size: 115%;
  font-weight: bold;
}

.ft_rogo_area {
  background: linear-gradient(to top, #004197, #0e1f63);
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.ft_rogo01,
.ft_rogo02 {
  background-color: #fff;
  width: 100%;
  aspect-ratio: 10/3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 0) {
  .ft_rogo01,
  .ft_rogo02 {
    margin-bottom: 15px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.ft_rogo03 {
  background-color: #fff;
  width: 90%;
  aspect-ratio: 10/3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

/* 通常ロゴ */
.ft_rogo01 {
  padding: 8%;
}

/* J-PEAKSロゴ */
.ft_rogo02 {
  padding: 7% 8%;
}

.ft_rogo03 {
  padding-left: 12%;
  padding-right: 7%;
}

.rogo_zoom {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 0) {
  .rogo_zoom {
    width: 85%;
  }
}
.rogo_zoom {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}

.rogo_zoom:hover {
  transform: scale(1.1);
}

.main_bg_pix02 {
  background: no-repeat center center/cover;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 70%), url(../assets/pix024.jpg) no-repeat center center/cover;
  height: 50vh;
  width: 100%;
  margin-top: -185px;
}

.main_bg_pix03 {
  background: no-repeat center center/cover;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 70%), url(../assets/pix014.jpg) no-repeat center center/cover;
  height: 50vh;
  width: 100%;
  margin-top: -185px;
}

.main_bg_pix04 {
  background: no-repeat center center/cover;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 70%), url(../assets/pix004.jpg) no-repeat center center/cover;
  height: 50vh;
  width: 100%;
  margin-top: -185px;
}

.main_bg_pix05 {
  background: no-repeat center center/cover;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 70%), url(../assets/pix022.jpg) no-repeat center center/cover;
  height: 50vh;
  width: 100%;
  margin-top: -185px;
}

.grid_end_left {
  display: grid;
  place-items: end left;
  height: 100%;
}

.title_page01 {
  font-size: clamp(36px, 5vw, 60px);
  text-align: left;
  line-height: 110%;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
}
@media (min-width: 0) {
  .title_page01 {
    margin: 0 0 5% 5%;
  }
}
@media (min-width: 768px) {
  .title_page01 {
    margin: 0 0 5% 15%;
  }
}

.title_page02 {
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  line-height: 110%;
  color: #333333;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
  font-style: normal;
  width: 100%;
  margin: 20px 0 5% 0%;
}

.sub_title_page01 {
  font-size: clamp(18px, 2vw, 24px);
  text-align: left;
  line-height: 110%;
  color: #fff;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  margin: 0 0 15% 15%;
}
@media (min-width: 0) {
  .sub_title_page01 {
    margin: 0 0 15% 5%;
  }
}
@media (min-width: 768px) {
  .sub_title_page01 {
    margin: 0 0 15% 15%;
  }
}

.message_block {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 0) {
  .message_block {
    padding-top: 30px;
    width: 90%;
  }
}
@media (min-width: 576px) {
  .message_block {
    padding-top: 30px;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .message_block {
    padding-top: 30px;
    width: 80%;
  }
}
@media (min-width: 992px) {
  .message_block {
    padding-top: 30px;
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .message_block {
    margin-top: 50px;
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .message_block {
    margin-top: 50px;
    width: 80%;
  }
}

@media (min-width: 0) {
  .message_txt {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.message_txt02 {
  text-align: justify;
  text-justify: inter-ideograph;
}

.message_pix {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 0) {
  .message_pix {
    aspect-ratio: 10/12;
    max-width: 90%;
    margin-top: 30px;
  }
}
@media (min-width: 576px) {
  .message_pix {
    aspect-ratio: 10/12;
    max-width: 90%;
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .message_pix {
    aspect-ratio: 10/12;
    float: right;
    max-width: 30%;
    margin-top: 7px;
    padding-left: 30px;
    padding-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .message_pix {
    aspect-ratio: 10/11;
    float: right;
    max-width: 30%;
    margin-top: 7px;
    padding-left: 30px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .message_pix {
    aspect-ratio: 10/11;
    float: right;
    max-width: 30%;
    margin-top: 7px;
    padding-left: 30px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .message_pix {
    aspect-ratio: 10/11;
    float: right;
    max-width: 30%;
    margin-top: 7px;
    padding-left: 30px;
    padding-bottom: 25px;
  }
}
.message_pix img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

@media (min-width: 0) {
  .mt_massage {
    margin-top: 30px;
  }
}
@media (min-width: 576px) {
  .mt_massage {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .mt_massage {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .mt_massage {
    margin-top: 100px;
  }
}
@media (min-width: 1200px) {
  .mt_massage {
    margin-top: 100px;
  }
}
@media (min-width: 1400px) {
  .mt_massage {
    margin-top: 100px;
  }
}

@media (min-width: 0) {
  .message004 {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .message004 {
    text-align: right;
  }
}

.title_small01 {
  font-size: 115%;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 50px;
}

.title_small02 {
  font-size: 115%;
  font-weight: bold;
  margin-bottom: 15px;
}

.pix_wb {
  background-color: #ffffff;
}
@media (min-width: 0) {
  .pix_wb {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .pix_wb {
    padding: 40px;
  }
}
.pix_wb {
  border-radius: 25px;
  margin: 50px 0 20px 0;
}

.pix_wb2 {
  background-color: #ffffff;
}
@media (min-width: 0) {
  .pix_wb2 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .pix_wb2 {
    padding: 40px;
  }
}
.pix_wb2 {
  border-radius: 25px;
  margin: 0 0 20px 0;
}

.pix_wb3 {
  background-color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 0) {
  .pix_wb3 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .pix_wb3 {
    padding: 40px;
  }
}
.pix_wb3 {
  border-radius: 25px;
}

.txt_bb {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb {
    padding: 40px;
  }
}
.txt_bb {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb {
    min-height: 250px;
  }
}

.txt_bb200 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb200 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb200 {
    padding: 40px;
  }
}
.txt_bb200 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb200 {
    min-height: 200px;
  }
}

.txt_bb220 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb220 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb220 {
    padding: 40px;
  }
}
.txt_bb220 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb220 {
    min-height: 220px;
  }
}

.txt_bb240 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb240 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb240 {
    padding: 40px;
  }
}
.txt_bb240 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb240 {
    min-height: 240px;
  }
}

.txt_bb260 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb260 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb260 {
    padding: 40px;
  }
}
.txt_bb260 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb260 {
    min-height: 260px;
  }
}

.txt_bb280 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb280 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb280 {
    padding: 40px;
  }
}
.txt_bb280 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb280 {
    min-height: 280px;
  }
}

.txt_bb300 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb300 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb300 {
    padding: 40px;
  }
}
.txt_bb300 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb300 {
    min-height: 300px;
  }
}

.txt_bb320 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb320 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb320 {
    padding: 40px;
  }
}
.txt_bb320 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb320 {
    min-height: 320px;
  }
}

.txt_bb340 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb340 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb340 {
    padding: 40px;
  }
}
.txt_bb340 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb340 {
    min-height: 340px;
  }
}

.txt_bb350 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb350 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb350 {
    padding: 40px;
  }
}
.txt_bb350 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb350 {
    min-height: 350px;
  }
}

.txt_bb360 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb360 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb360 {
    padding: 40px;
  }
}
.txt_bb360 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb360 {
    min-height: 360px;
  }
}

.txt_bb380 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb380 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb380 {
    padding: 40px;
  }
}
.txt_bb380 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb380 {
    min-height: 380px;
  }
}

.txt_bb400 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb400 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb400 {
    padding: 40px;
  }
}
.txt_bb400 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb400 {
    min-height: 400px;
  }
}

.txt_bb420 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb420 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb420 {
    padding: 40px;
  }
}
.txt_bb420 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb420 {
    min-height: 420px;
  }
}

.txt_bb440 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb440 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb440 {
    padding: 40px;
  }
}
.txt_bb440 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb440 {
    min-height: 440px;
  }
}

.txt_bb450 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb450 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb450 {
    padding: 40px;
  }
}
.txt_bb450 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb450 {
    min-height: 450px;
  }
}

.txt_bb460 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb460 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb460 {
    padding: 40px;
  }
}
.txt_bb460 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb460 {
    min-height: 460px;
  }
}

.txt_bb480 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb480 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb480 {
    padding: 40px;
  }
}
.txt_bb480 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb480 {
    min-height: 480px;
  }
}

.txt_bb500 {
  background: linear-gradient(to bottom, #def5ff, #c5e2ee);
}
@media (min-width: 0) {
  .txt_bb500 {
    padding: 25px;
  }
}
@media (min-width: 768px) {
  .txt_bb500 {
    padding: 40px;
  }
}
.txt_bb500 {
  border-radius: 25px;
  margin: 25px 0 0 0;
  color: #333;
}
@media (min-width: 768px) {
  .txt_bb500 {
    min-height: 500px;
  }
}

.about_link_area {
  background: linear-gradient(to bottom, #ece7e1, #ebdedb);
  padding-top: 50px;
  padding-bottom: 0px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* target="_blank" の外部リンク装飾をこのエリアだけ消す */
.row.mt050 a[target=_blank]::before,
.row.mt050 a[target=_blank]::after {
  content: none !important;
  display: none !important;
}

.row.mt050 a[target=_blank] {
  background-image: none !important;
  padding-right: 0 !important;
}

.pos_base {
  position: relative;
  width: 100%;
}

.pos_ab_right {
  position: absolute;
  bottom: 0;
}
@media (min-width: 0) {
  .pos_ab_right {
    width: 30%;
    margin-bottom: -25px;
    right: 25px;
  }
}
@media (min-width: 768px) {
  .pos_ab_right {
    width: 20%;
    margin-bottom: -50px;
    right: 50px;
  }
}

.pos_ab_left {
  position: absolute;
  bottom: 0;
}
@media (min-width: 0) {
  .pos_ab_left {
    width: 30%;
    margin-bottom: -25px;
    left: 25px;
  }
}
@media (min-width: 768px) {
  .pos_ab_left {
    width: 20%;
    margin-bottom: -50px;
    left: 50px;
  }
}

@media (min-width: 768px) {
  .pos_ab_lb0 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 768px) {
  .pos_ab_lb060 {
    position: absolute;
    bottom: 60px;
    left: 0;
  }
}

.fade-up_illust {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpill 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUpill {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.w75-100cc {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 0) {
  .w75-100cc {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .w75-100cc {
    width: 75%;
  }
}

.w80-100cc {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 0) {
  .w80-100cc {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .w80-100cc {
    width: 80%;
  }
}

.w85-100cc {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 0) {
  .w85-100cc {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .w85-100cc {
    width: 85%;
  }
}

.w90-100cc {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 0) {
  .w90-100cc {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .w90-100cc {
    width: 90%;
  }
}

@media (min-width: 0) {
  .w400 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .w400 {
    width: auto;
    min-width: 400px;
  }
}

ol li .mun::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 15px;
  color: #1e8ec8;
  vertical-align: middle;
  font-size: 24px;
  font-family: roboto;
  font-weight: bold;
}

.title_serif_left01 {
  font-size: clamp(36px, 5vw, 48px);
  padding: 0;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
}
@media (min-width: 0) {
  .title_serif_left01 {
    text-align: left;
    margin-left: 5%;
  }
}
@media (min-width: 768px) {
  .title_serif_left01 {
    text-align: center;
    margin-left: -10px;
  }
}

.title_serif_right01 {
  font-size: clamp(36px, 5vw, 48px);
  padding: 0;
  margin: 0;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 300;
  font-style: normal;
}
@media (min-width: 0) {
  .title_serif_right01 {
    text-align: right;
    margin-right: 5%;
  }
}
@media (min-width: 768px) {
  .title_serif_right01 {
    text-align: center;
    margin-right: -10px;
  }
}

.title_en_left01 {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 20px;
}
@media (min-width: 0) {
  .title_en_left01 {
    text-align: left;
    margin-left: 5%;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .title_en_left01 {
    text-align: center;
    margin-bottom: 50px;
    margin-left: -10px;
  }
}

.title_en_right01 {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 20px;
}
@media (min-width: 0) {
  .title_en_right01 {
    text-align: right;
    margin-right: 5%;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .title_en_right01 {
    text-align: center;
    margin-bottom: 50px;
    margin-right: -10px;
  }
}

.title_en_right02 {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: 20px;
}
@media (min-width: 0) {
  .title_en_right02 {
    text-align: right;
    margin-right: 5%;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .title_en_right02 {
    text-align: center !important;
    margin-bottom: 20px;
    margin-right: -10px;
  }
}

.title_icon01 {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 0) {
  .title_icon01 {
    display: none;
  }
}
@media (min-width: 768px) {
  .title_icon01 {
    display: block;
  }
}

@media (min-width: 0) {
  .mb-025-0 {
    margin-bottom: -25px;
  }
}
@media (min-width: 768px) {
  .mb-025-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 0) {
  .mb030-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .mb030-0 {
    margin-bottom: 30px;
  }
}

@media (min-width: 0) {
  .mb020-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .mb020-0 {
    margin-bottom: 20px;
  }
}

@media (min-width: 0) {
  .mb030-015 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .mb030-015 {
    margin-bottom: 30px;
  }
}

@media (min-width: 0) {
  .ml-010-020 {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .ml-010-020 {
    margin-left: 20px;
  }
}

@media (min-width: 0) {
  .ml010-0 {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .ml010-0 {
    margin-left: 10px;
  }
}

@media (min-width: 0) {
  .ml-020-0 {
    margin-left: 0px;
  }
}
@media (min-width: 768px) {
  .ml-020-0 {
    margin-left: -20px;
  }
}

@media (min-width: 0) {
  .mt020-0 {
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .mt020-0 {
    margin-top: 20px;
  }
}

@media (min-width: 0) {
  .mt0-005 {
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  .mt0-005 {
    margin-top: 0;
  }
}

@media (min-width: 0) {
  .mt-030-0 {
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .mt-030-0 {
    margin-top: -30px;
  }
}

@media (min-width: 0) {
  .mb-020-0 {
    margin-bottom: 0px;
  }
}
@media (min-width: 768px) {
  .mb-020-0 {
    margin-bottom: -20px;
  }
}

@media (min-width: 0) {
  .mb050-025 {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .mb050-025 {
    margin-bottom: 50px;
  }
}

@media (min-width: 0) {
  .mb030-015 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .mb030-015 {
    margin-bottom: 30px;
  }
}

@media (min-width: 0) {
  .mb020-010 {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .mb020-010 {
    margin-bottom: 20px;
  }
}

@media (min-width: 0) {
  .mb015-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .mb015-0 {
    margin-bottom: 15px;
  }
}

@media (min-width: 0) {
  .mt120-0 {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .mt120-0 {
    margin-top: 120px;
  }
}

@media (min-width: 0) {
  .ml-020-040 {
    margin-left: -20px;
  }
}
@media (min-width: 768px) {
  .ml-020-040 {
    margin-left: -40px;
  }
}

@media (min-width: 0) {
  .w100-none {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .w100-none {
    width: auto;
  }
}

@media (min-width: 0) {
  .w80-100cc {
    width: 100% !important;
  }
}
@media (min-width: 768px) {
  .w80-100cc {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .w80-100cc {
    width: 80%;
  }
}

@media (min-width: 0) {
  .bton150-180 {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .bton150-180 {
    width: 180px;
  }
}

@media (min-width: 0) {
  .btn05-box {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .btn05-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 0) {
  .btn05-box_left {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .btn05-box_left {
    padding-left: 10px !important;
  }
}

@media (min-width: 0) {
  .btn05-box_right {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .btn05-box_right {
    padding-right: 10px !important;
  }
}

.logo_border {
  border: solid 1px #999;
}

.update_date01 {
  position: absolute;
  bottom: 0;
  right: 50px;
  max-width: 300px;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #def5ff;
  color: #333;
  padding: 5px 30px 5px 30px;
  z-index: 2;
}

/*スマホ対応*/
@media screen and (max-width: 767px) {
  .update_date01 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 240px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #def5ff;
    color: #333;
    padding: 5px 30px 5px 30px;
    z-index: 2;
  }
}
.update_date02 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 150px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #3eabda;
  color: #fff;
  padding: 3px 10px 3px 10px;
  z-index: 2;
}

.hvr-underline-from-left2 {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left2::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: #1e8ec8;
  transition: right 0.3s ease-out;
}
.hvr-underline-from-left2:hover::before, .hvr-underline-from-left2:focus::before, .hvr-underline-from-left2:active::before {
  right: 0;
}

.sub_nav_block {
  position: relative;
  width: 100%;
  padding: 30px 0;
  border-bottom: solid 1px #ccc;
  /* アンカーエリア全体のhover */
}
.sub_nav_block:hover .sub_nav_txt, .sub_nav_block:focus-within .sub_nav_txt {
  color: #1e8ec8;
}
.sub_nav_block:hover .icon-arrow-right01, .sub_nav_block:focus-within .icon-arrow-right01 {
  border-color: #1e8ec8;
}

.sub_nav_txt {
  position: relative;
  z-index: 1;
  margin-left: 5px;
  color: #333;
  text-decoration: underline;
  transition: color 0.5s ease;
}

.sub_nav_ico {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 30px;
}

.icon-arrow-right01,
.icon-arrow-top01,
.icon-arrow-bottom01 {
  display: inline-block;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #000;
  transition: border-color 0.5s ease;
}

.icon-arrow-right01 {
  transform: rotate(45deg);
}

.icon-arrow-top01 {
  transform: rotate(-45deg);
}

.icon-arrow-bottom01 {
  transform: rotate(135deg);
}

a[href="#organizational_transformation"] {
  display: block;
  color: inherit;
  text-decoration: none;
}

.sub_nav_link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.sub_nav_link:hover .sub_nav_txt, .sub_nav_link:focus .sub_nav_txt {
  color: #1e8ec8;
}
.sub_nav_link:hover .icon-arrow-right01, .sub_nav_link:focus .icon-arrow-right01 {
  border-color: #1e8ec8;
}

/* 右端固定メニュー */
.side-fixed-menu {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 2px;
  /* 初期状態は画面右側に隠す */
  opacity: 0;
  visibility: hidden;
  transform: translate(100%, -50%);
  pointer-events: none;
  /* スクロール連動アニメーション */
  animation-name: sideMenuShow;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-timeline: scroll(root block);
  /*
   * ページ全体のスクロール進捗率
   * 5%からアニメーション開始
   * 10%で完全表示
   */
  animation-range: 5% 10%;
}

/* メニュー出現 */
@keyframes sideMenuShow {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate(100%, -50%);
    pointer-events: none;
  }
  99% {
    visibility: visible;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
    pointer-events: auto;
  }
}
/* 各ボタン */
.side-fixed-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  min-height: 60px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #2c9bc7;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* hover */
.side-fixed-menu__item:hover {
  background-color: #125f89;
  color: #fff;
  transform: translateX(-8px);
}

/* 上下の角丸 */
.side-fixed-menu__item:first-child {
  border-radius: 8px 0 0 0;
}

.side-fixed-menu__item:last-child {
  border-radius: 0 0 0 8px;
}

/*スマホ対応*/
@media screen and (max-width: 767px) {
  .side-fixed-menu {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 1px;
    transform: translateY(100%);
  }
  @keyframes sideMenuShow {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(100%);
      pointer-events: none;
    }
    99% {
      visibility: visible;
      pointer-events: none;
    }
    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
  }
  .side-fixed-menu__item {
    width: 33.3333333333%;
    min-height: 55px;
    padding: 8px 4px;
    font-size: 12px;
  }
  .side-fixed-menu__item:hover {
    transform: none;
  }
  .side-fixed-menu__item:first-child {
    border-radius: 8px 0 0 0;
  }
  .side-fixed-menu__item:last-child {
    border-radius: 0 8px 0 0;
  }
}
.gallery--check {
  display: none;
}

.gallery--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-grow: 1;
  gap: 1em;
}

.gallery--flex > .gallery-col {
  text-align: center;
}

.gallery--close,
.gallery__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition-property: all;
  transition-duration: 0.2s;
  transition-delay: 0s;
  z-index: 1000000;
}

.gallery--check:checked ~ .gallery--close,
.gallery--check:checked ~ .gallery__modal {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.8s;
  transition-delay: 0.2s;
}

.gallery--check:checked ~ .gallery__modal {
  background: rgba(0, 0, 0, 0.7);
}

.gallery--check:checked ~ .gallery--close {
  background: transparent;
  cursor: pointer;
  z-index: 1000001;
}

.gallery__thumb {
  border: 0px solid #dcdddd;
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__modal {
  background: rgba(0, 0, 0, 0);
}

.gallery__item {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 99vw;
  max-height: 100%;
  padding: 0.5em;
  padding-bottom: 0;
  border-radius: 5px;
  background: #fff;
  z-index: 1000002;
}

.gallery__caption {
  font-size: 0.75rem;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 0) {
  .full-size {
    max-width: 90vw;
    max-height: 90vh;
  }
}
@media (min-width: 768px) {
  .full-size {
    max-width: 80vw;
    max-height: 80vh;
  }
}
.full-size {
  vertical-align: middle;
}

.gallery--open:hover {
  position: relative;
  animation: fadein_gallery 0.3s forwards;
}

@keyframes fadein_gallery {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
.gallery__item-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  display: block;
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: background-color 0.3s ease;
}

.gallery__item-close::before,
.gallery__item-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

.gallery__item-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery__item-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gallery__item-close:hover {
  background: #333;
}

.gallery__item-close:hover::before,
.gallery__item-close:hover::after {
  background: #fff;
}

.gallery__item,
.gallery__item-close {
  pointer-events: auto;
}

.gallery__modal {
  pointer-events: none;
}

.gallery__item {
  pointer-events: auto;
}/*# sourceMappingURL=styles.css.map */
