/* loarding
-----------------------------------------------------------*/
#progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #FFF;
  z-index: 99999;
  transition: all 1s ease-in-out .5s;
}

#progress.end {
  opacity: 0;
  z-index: -10;
}

#progress figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 160px;
  height: 160px;
  z-index: 2;
  margin: 0;
  opacity: 0;
  animation: appear 1s linear .5s forwards;
}

#progress.end figure {
  animation: appear 1.5s linear reverse forwards;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#progress figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 80px;
  height: 80px;
}

.circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  animation: rotate .75s linear infinite;
}

.circle-ring svg {
  width: 100%;
  height: 100%;
}

.circle-ring circle {
  stroke-dasharray: 200 385.1;
  /* 一部だけ線を表示 */
  stroke-dashoffset: 0;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* header
-----------------------------------------------------------*/
header.home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 10;
}

header.home nav {
  position: absolute;
  top: 20px;
  right: 20px;
}

header.home nav .logo {
  overflow: hidden;
  height: 60px;
  background-color: #1f2a66;
}

header.home nav .logo span {
  overflow: hidden;
  text-indent: -200%;
  margin: 0 auto;
  width: 120px;
  height: 100%;
  background: url(../images/common/header_logo.svg) center center no-repeat;
  background-size: contain;
  transition: all .3s;
}

header.home nav .logo a:hover {
  opacity: .6;
}

header.home nav ul {
  background-color: #FFF;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
}

header.home nav li {
  border-bottom: 1px solid #cac5c7;
}

header.home nav li a {
  position: relative;
  display: block;
  padding: 1em 2.5em 1em 1em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

header.home nav li a::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 1.5px #1f2a66;
  border-right: solid 1.5px #1f2a66;
  transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  right: 20px;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}

@media(hover: hover) {
  header.home nav li a:hover::after {
    right: 15px;
  }
}

header.home nav li a span {
  position: relative;
}

header.home nav li a span::before {
  content: '';
  width: 100%;
  height: .5px;
  background-color: #1f2a66;
  position: absolute;
  left: 0;
  bottom: -5px;
  transform: scale(0, 1);
  transition: 0.3s;
}

@media(hover: hover) {
  header.home nav li a:hover span::before {
    transform: scale(1);
  }
}

/* ハンバーガーボタン部分 */
header.home nav .icon_animation {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 11;
}

/* ----- line ----- */
header.home nav .icon_animation .bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 1.5px;
  background: #FFF;
  transition: all .3s;
  transform-origin: left top;
}

header.home nav .icon_animation.is_change .bar {
  background: #333;
}

header.home nav .icon_animation .bar.middle {
  top: 10px;
}

header.home nav .icon_animation .bar.bottom {
  top: 20px;
}

/* ----- Menu ----- */
header.home nav .icon_animation .menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: fit-content;
  font-weight: 500;
  font-size: 12px;
  line-height: 1em;
  letter-spacing: .1em;
  color: #FFF;
}

header.home nav .icon_animation.is_change .menu {
  color: #333;
}

/* ----- line animation ----- */
header.home nav .icon_animation.is_open .bar.top {
  top: 7px;
  left: 8px;
  width: 35px;
  transform: rotate(45deg);
}

header.home nav .icon_animation.is_open.is_change .bar.top {
  background: #FFF;
}

header.home nav .icon_animation.is_open .bar.middle {
  opacity: 0;
}

header.home nav .icon_animation.is_open .bar.bottom {
  top: 32px;
  left: 7px;
  width: 35px;
  transform: rotate(-45deg);
}

header.home nav .icon_animation.is_open.is_change .bar.bottom {
  background: #FFF;
}

/* メニュー閉じるボタン */
header.home nav .icon_close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 12;
}

/* First View
-----------------------------------------------------------*/
.text_animation span {
  display: inline-block;
}

.fv {
  position: relative;
  padding: 180px 0 120px;
}

.fv .video_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.fv .video_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(223, 232, 251, 1);
  mix-blend-mode: color-burn;
  z-index: 1;
  pointer-events: none;
}

.fv video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.fv .inner_860 {
  position: relative;
}

.fv .inner_860 h1 {
  margin: 0 auto 70px;
  width: 370px;
  /*filter:
      drop-shadow(0 2px 10px rgba(255, 255, 255, 1))
      drop-shadow(0 2px 35px rgba(255, 255, 255, 1))
      drop-shadow(0 2px 70px rgba(255, 255, 255, 1));*/
}

.fv .inner_860 h2 {
  margin: 0 auto 50px;
  font-weight: 500;
  font-size: 36px;
  line-height: 2em;
  writing-mode: vertical-rl;
  filter:
      drop-shadow(0 2px 10px rgba(255, 255, 255, 1)) drop-shadow(0 2px 35px rgba(255, 255, 255, 1)) drop-shadow(0 2px 70px rgba(255, 255, 255, 1));
}

.fv .inner_860 .about {
  padding: 60px 80px;
  background-color: rgba(255, 255, 255, .65);
}

.fv .inner_860 .about h3 {
  margin-bottom: 1.5em;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

/* 設立者ご挨拶
-----------------------------------------------------------*/
.greetings {
  padding: 70px 0 80px;
}

.greetings h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

.greetings p.text_right {
  margin-top: 3em;
  text-align: right;
}

/* 事業内容
-----------------------------------------------------------*/
.business {
  padding: 70px 0 0;
  background-image: url(../images/home/business_bg.png);
  background-position: top center;
  background-size: 838px auto;
  background-repeat: repeat;
  border-top: 15px solid #fafafa;
}

.business h2 {
  margin-bottom: 2em;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

.business picture {
  display: block;
  margin-bottom: 30px;
}


.business .inner_700 {
  padding-bottom: 100px;
}

.business h3 {
  margin-bottom: 1.5em;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

.business a {
  position: relative;
  display: inline-block;
  margin-top: 1.5em;
  padding-right: 1.5em;
  font-weight: 400;
  font-size: 18px;
}

.business a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #1f2a66;
  transform: scale(1);
  transform-origin: right;
  transition: 0.3s;
}

@media(hover: hover) {
  .business a:hover::before {
    transform: scale(0, 1);
  }
}

.business a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1.5px #1f2a66;
  border-right: solid 1.5px #1f2a66;
  transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}

@media(hover: hover) {
  .business a:hover::after {
    right: -5px;
  }
}

/* 活動内容・実績
-----------------------------------------------------------*/
.activities {
  padding: 70px 0 80px;
  background: repeating-linear-gradient(135deg, #dee6ea, #dee6ea 3px, #ebf0f2 3px, #ebf0f2 6px);
}

.activities h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

.activities p {
  margin-bottom: 3em;
}

.activities ul {
  padding-left: 1.5em;
  list-style: disc;
  font-weight: 500;
  color: #1f2a66;
}

.activities ul li {
  margin-bottom: .75em;
}

.activities ul li a {
  position: relative;
  padding-right: 1.5em;
}

.activities ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #1f2a66;
  transform: scale(1);
  transform-origin: right;
  transition: 0.3s;
}

@media(hover: hover) {
  .activities ul li a:hover::before {
    transform: scale(0, 1);
  }
}

.activities ul li a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1.5px #1f2a66;
  border-right: solid 1.5px #1f2a66;
  transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}

@media(hover: hover) {
  .activities ul li a:hover::after {
    right: -5px;
  }
}

/* 法人概要
-----------------------------------------------------------*/
.profile {
  padding: 70px 0 0;
}

.profile h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

.profile .inner_1064 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.profile table {
  border-collapse: collapse;
  width: calc(490 / 1064 * 100%);
  border-top: 1px solid #000;
}

.profile table th {
  padding: 1em 1.5em;
  width: calc(140 / 490 * 100%);
  border-bottom: 1px solid #000;
}

.profile table th:last-child {
  padding: 1.25em 0 0 0;
  border-bottom: none;
}

.profile table td {
  padding: 1em 0;
  width: calc(350 / 490 * 100%);
  border-bottom: 1px solid #000;
}

.profile table td ul {
  padding-left: 1em;
  list-style: disc;
}

.profile .reports {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background: repeating-linear-gradient(135deg, #dee6ea, #dee6ea 3px, #ebf0f2 3px, #ebf0f2 6px);
}

.profile .reports h3 {
  font-size: 18px;
}

.profile .reports ul {
  padding-left: 1.5em;
  width: fit-content;
  list-style: disc;
  font-weight: 500;
  font-size: 14px;
  color: #1f2a66;
}

.profile .reports ul li {
  margin-bottom: .25em;
}

.profile ul li {
  margin-bottom: .75em;
}

.profile ul li a {
  position: relative;
  padding-right: 1.5em;
}

.profile ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #1f2a66;
  transform: scale(1);
  transform-origin: right;
  transition: 0.3s;
}

@media(hover: hover) {
  .profile ul li a:hover::before {
    transform: scale(0, 1);
  }
}

.profile ul li a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1.5px #1f2a66;
  border-right: solid 1.5px #1f2a66;
  transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}

@media(hover: hover) {
  .profile ul li a:hover::after {
    right: -5px;
  }
}

/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {

  /* header
  -----------------------------------------------------------*/
  header.home nav {
    top: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }

  /* 設立者ご挨拶
  -----------------------------------------------------------*/
  .greetings {
    padding: 45px 0 40px;
  }

  .greetings h2 {
    font-size: 20px;
  }

  /* First View
  -----------------------------------------------------------*/
  .fv {
    padding: 70px 0 20px;
  }

  .fv .inner_860 h1 {
    margin: 0 auto 30px;
    width: 185px;
  }

  .fv .inner_860 h2 {
    margin: 0 auto 40px;
    font-size: 24px;
  }

  .fv .inner_860 .about {
    padding: 30px 20px;
  }

  .fv .inner_860 .about h3 {
    font-size: 18px;
  }

  /* 事業内容
  -----------------------------------------------------------*/
  .business {
    padding: 45px 0 0;
    border-top: 10px solid #fafafa;
  }

  .business h2 {
    font-size: 18px;
  }

  .business picture {
    margin-bottom: 30px;
  }

  .business .inner_700 {
    padding-bottom: 50px;
  }

  .business h3 {
    margin-bottom: 1.25em;
    font-size: 18px;
  }

  .business a {
    font-size: 16px;
  }

  /* 活動内容・実績
  -----------------------------------------------------------*/
  .activities {
    padding: 45px 0 40px;
    background: repeating-linear-gradient(135deg, #dee6ea, #dee6ea 2px, #ebf0f2 2px, #ebf0f2 4px);
  }

  .activities h2 {
    font-size: 18px;
  }

  /* 法人概要
  -----------------------------------------------------------*/
  .profile {
    padding: 45px 0 0;
  }

  .profile h2 {
    font-size: 18px;
  }

  .profile table {
    width: 100%;
  }

  .profile table:last-child {
    border-top: none;
  }

  .profile .reports {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: repeating-linear-gradient(135deg, #dee6ea, #dee6ea 2px, #ebf0f2 2px, #ebf0f2 4px);
  }

  .profile .reports h3 {
    margin-bottom: 1em;
    font-size: 14px;
    width: 100%;
  }

  .profile .reports ul {
    font-size: 13px;
  }

  .profile .reports ul li {
    margin-bottom: 1.5em;
  }

}
