@charset "UTF-8";
[data-ani] {
  --ani-delay: 0s;
  --ani-duration: 1s;
  pointer-events: none;
}
[data-ani].is-animated-done {
  pointer-events: auto;
}

.ani-width {
  width: 0;
  transition: width var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-width.is-animated {
  width: 100%;
}

.ani-fade, .ani-fade-left, .ani-fade-right, .ani-fade-down-full, .ani-fade-down, .ani-fade-up {
  opacity: 0;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-fade.is-animated, .is-animated.ani-fade-left, .is-animated.ani-fade-right, .is-animated.ani-fade-down-full, .is-animated.ani-fade-down, .is-animated.ani-fade-up {
  opacity: 1;
}
.ani-fade-up {
  transform: translateY(30px);
}
.ani-fade-up.is-animated {
  transform: translateY(0);
}
.ani-fade-down {
  transform: translateY(-10px);
}
.ani-fade-down.is-animated {
  transform: translateY(0);
}
.ani-fade-down-full {
  transform: translateY(-100%);
}
.ani-fade-down-full.is-animated {
  transform: translateY(0);
}
.ani-fade-right {
  transform: translateX(-10px);
}
.ani-fade-right.is-animated {
  transform: translateX(0);
}
.ani-fade-left {
  transform: translateX(10px);
}
.ani-fade-left.is-animated {
  transform: translateX(0);
}

.ani-scale {
  transform: scale(0.6);
  transform-origin: center;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-scale.is-animated {
  transform: scale(1);
}

.ani-zoom {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform var(--ani-duration) cubic-bezier(0.07, 0.09, 0.09, 0.62) var(--ani-delay);
}
.ani-zoom.is-animated {
  transform: scale(1);
}

.ani-clip, .ani-clip-full {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: all var(--ani-duration) ease-in-out var(--ani-delay);
  will-change: clip-path;
}
@media (max-width: 768px) {
  .ani-clip-full {
    transition: all calc(var(--ani-duration) / 2) cubic-bezier(0.07, 0.09, 0.09, 0.62) calc(var(--ani-delay) / 2);
  }
}
.ani-clip.is-animated, .is-animated.ani-clip-full {
  opacity: 1;
  clip-path: inset(0);
}

.ani-blur, .ani-blur-up {
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), filter var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-blur.is-animated, .is-animated.ani-blur-up {
  opacity: 1;
  filter: blur(0);
}
.ani-blur-up {
  transform: translateY(20px);
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), filter var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-blur-up.is-animated {
  transform: translateY(0);
}

/* -------------------------------------
	 提供
---------------------------------------*/
.info-area {
  font-size: 1.5rem;
  line-height: 1.5;
  border-collapse: collapse;
  display: table-cell;
  width: 100%;
}
.info-area table {
  width: 100%;
}

.info-area .buken_list {
  order: 1;
  border-top: 1px solid #ddd;
}

.info-area h3 {
  margin: 10px 0 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.info-area p {
  margin-left: 10px;
}

.info-area th {
  border-bottom: 1px #C4BAAD solid;
  padding: 20px 15px;
  color: #fff;
  background: #B4965F;
  background: linear-gradient(90deg, rgb(180, 150, 95) 0%, rgb(184, 163, 136) 100%);
  width: 25%;
  text-align: left;
  vertical-align: middle;
}

.info-area td {
  color: #333;
  padding: 20px 15px;
  width: 75%;
  text-align: left;
  vertical-align: middle;
  background-color: white;
}

.info-area td:last-child {
  border-bottom: 1px #dddddd solid;
}

.info-area #time_publish {
  text-align: right;
  order: 2;
  font-size: 1.2rem;
}

.info-area #memo {
  text-align: left;
  order: 3;
}

.info_terms h5 {
  font-size: 15px;
  line-height: 1.5;
}

.info_terms h4 {
  font-size: 16px;
  line-height: 1.6;
}

.info_terms h3 {
  font-size: 18px;
  line-height: 1.7;
}

.info_terms h2 {
  font-size: 24px;
  line-height: 1.8;
}

.info_terms td {
  background-color: transparent;
  margin: 40px 0px 0px 0px;
}

.l-outline_block {
  margin-inline: auto;
  max-width: 1080px;
  width: 1080px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
}

.l-outline_sub_block p {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  color: #fff;
}

.l-outline_sub_block a {
  color: #fff;
}

.l-outline_block.invert .info_terms td {
  color: #fff;
}

.l-outline_block.invert .info-area #time_publish {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-outline_block {
    width: 100%;
  }
  .info-area .buken_list {
    order: 1;
    display: flex;
    table-layout: fixed;
  }
  .info-area th {
    width: 100%;
    padding: 10px 15px;
  }
  .info-area td {
    width: 100%;
    padding: 15px 15px;
  }
  .row_detail {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .info-area #time_publish {
    font-size: 1.2rem;
    text-align: left;
  }
  .info_terms td {
    padding: 20px 0px;
  }
}
/*# sourceMappingURL=../../map/outline/outline.css.map */