@charset "UTF-8";
.fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #050052;
}
@media screen and (max-width: 768px) {
  .fv {
    width: 100%;
    height: auto;
  }
}
.fv .fv__img {
  display: block;
  height: 100%;
  width: 100%;
}
.fv .fv__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv .fv__img img {
    height: auto;
    width: 100%;
  }
}
.fv__logo {
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 400px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fv__logo {
    display: none;
  }
}
.fv__company {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px 0;
  border-bottom: 4px solid #d0383c;
  border-top: 4px solid #d0383c;
}
.fv .fv__company {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv .fv__company {
    display: block;
  }
}

.fv__bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .fv__bottom {
    display: none;
  }
}

.fv__company {
  width: 100%;
  overflow: hidden;
  position: absolute;
}

.fv__company--inner {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  animation: companyLoop 25s linear infinite;
}

.fv__company--inner img {
  width: auto;
  /* お好みで */
  flex-shrink: 0;
}

@keyframes companyLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#content {
  background: #050052;
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #content {
    width: 100%;
  }
}

.column {
  padding: 100px 0;
  overflow: hidden;
  background: #050052;
}
.column__slider {
  margin: 80px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}
.column__slider a {
  display: block;
  background: #fff;
  padding: 10px 10px 30px;
  border-bottom-left-radius: 5px;
}
.column__slider a .img {
  margin-bottom: 15px;
}
.column__slider a .date {
  font-size: 14px;
}
.column__slider a .title {
  font-size: 14px;
}
.column__single {
  padding: 40px 0;
}
.column__single .thumbnail {
  width: 80%;
  margin-right: auto;
  margin-bottom: 30px;
}
.column__single .thumbnail img {
  width: 100%;
  height: auto;
}
.column__single .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  padding-left: 15px;
}
.column__single .date {
  color: #fff;
  padding-left: 15px;
  font-size: 16px;
}
.column__single .contents {
  padding: 0 15px;
  color: #fff;
  margin: 30px 0;
}
.column__single .contents p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 30px;
}
.column__single .contents p a {
  text-decoration: underline;
}
.column__single .contents h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}
.column__single .contents h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.column__single .contents h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}
.column__single .contents ul,.column__single .contents ol  {
  padding-left: 20px;
  margin-bottom: 30px;
}
.column__single .contents ul li {
  list-style-type: disc;
  color: #fff;
  line-height: 1.5;
}
.column__single .contents ol li {
	  list-style-type: decimal;
}
.column__single .contents img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.moreBtn {
  background: #4878f9;
  color: #fff;
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  font-style: oblique;
  text-align: center;
  padding: 7px 30px;
  border: 3px solid #fff;
  border-radius: 50px;
  font-size: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .moreBtn {
    font-size: 16px;
  }
}/*# sourceMappingURL=page.css.map */