@charset "UTF-8";
/* Josh's Custom CSS Reset https://www.joshwcomeau.com/css/custom-css-reset/ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

:root {
  --dot-scale: scale(1);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", arial, "Lucida Sans", "メイリオ", Meiryo, "Osaka", sans-serif;
}
body#contents.open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none; /* Chrome, Safari, Opera */
  -khtml-user-drag: none; /* Konqueror */
  -moz-user-drag: none; /* Firefox */
  -o-user-drag: none; /* Opera */
  user-drag: none; /* Standard property */
}

li {
  list-style: none;
}

.sp {
  display: inline-block;
}

.pc {
  display: none;
}

.glfooter {
  padding-top: 4%;
  padding-bottom: calc(11.33vw + 80px);
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.glfooter small {
  color: rgb(117, 117, 117);
  font-size: 1.5rem;
}
.glfooter .policylist {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  padding: 0;
}
.glfooter .policylist li:not(:last-child) {
  margin-right: 20px;
}
.glfooter .policylist li a {
  color: #757575;
  font-size: 1.4rem;
}

.glnav {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 4;
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: 0;
  animation-name: fadeUpAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
.glnav > ul {
  display: flex;
  width: 80%;
  margin-left: 1.43vw;
  padding: 0;
}
.glnav > ul li {
  width: clamp(30px, 11.33vw, 50px);
  height: clamp(30px, 11.33vw, 50px);
  margin-left: 8.17%;
  list-style: none;
}
.glnav > ul li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.glnav > ul li a.on {
  z-index: 100;
}
.glnav > ul li a span {
  display: none;
}
.glnav > ul li:nth-of-type(1) a {
  background-color: #518C4D;
}
.glnav > ul li:nth-of-type(2) a {
  background-color: #00A5E3;
}
.glnav > ul li:nth-of-type(3) a {
  background-color: #0086CD;
}
.glnav > ul li:nth-of-type(4) a {
  background-color: #FFD900;
}
.glnav .hambicon {
  width: 10.33vw;
  height: 9vw;
  position: relative;
}
.glnav .hambicon .menu_icon {
  display: none;
}
.glnav .hambicon .menu_icon:not(:checked) + .menu_txt .txt::before {
  animation: hamb-text2 ease-out;
  animation-duration: 0.2s;
}
.glnav .hambicon .menu_icon:not(:checked) + .menu_txt .txt::after {
  animation: hamb-text-close2 ease-out;
  animation-duration: 0.2s;
}
.glnav .hambicon .menu_icon:checked + .menu_txt .txt::before {
  animation: hamb-text ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
.glnav .hambicon .menu_icon:checked + .menu_txt .txt::after {
  animation: hamb-text-close ease-out;
  animation-fill-mode: forwards;
  animation-duration: 0.2s;
}
.glnav .hambicon .menu_icon:checked + .menu_txt::before {
  animation: hamb-line-top ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}
.glnav .hambicon .menu_icon:checked + .menu_txt::after {
  animation: hamb-line-bottom ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
  animation-delay: 0.2s;
}
.glnav .hambicon .menu_txt {
  display: block;
  width: 10.33vw;
  height: 9vw;
  cursor: pointer;
}
.glnav .hambicon .menu_txt::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #518C4D;
  position: absolute;
  top: 0;
  left: 0;
}
.glnav .hambicon .menu_txt::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #518C4D;
  position: absolute;
  bottom: 0;
  left: 0;
}
.glnav .hambicon .txt::before {
  content: "MENU";
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #518C4D;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.glnav .hambicon .txt::after {
  content: "CLOSE";
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #518C4D;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.hambmenu {
  transform: translate(200%, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: #518C4D;
  animation-name: changeBg;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.hambmenu.open {
  transform: translate(0, 0);
  transition: all 1s ease-out;
  overflow-y: auto;
}
.hambmenu.close {
  transform: translate(200%, 0);
  transition: all 1s ease-out;
  overflow-y: auto;
}
.hambmenu .inner {
  min-height: 100%;
}
.hambmenu .inner > .logo {
  padding: 4vw 0 13.3vw 5.333vw;
  border-radius: 0 100px 0 0/0 100px 0 0;
  background-color: #fff;
  box-shadow: 2px -3px 10px rgba(0, 0, 0, 0.15);
}
.hambmenu .inner > .logo > a {
  display: block;
  width: 27.2%;
}
.hambmenu .inner .content_box {
  padding: 2vw 3vw 5vw;
  background: #fff;
}
.hambmenu .inner .content_box .title_text {
  width: 100%;
  padding-bottom: 1.2vw;
  color: #518c4d;
  font-weight: normal;
  font-size: clamp(18px, 2.1vw, 2.2vw);
  border-bottom: 1px solid #518C4D;
}
.hambmenu .inner .content_box .content_list {
  margin: 0px 0px 0;
  padding: 0;
  border-top: 1px solid #ccc;
}
.hambmenu .inner .content_box .content_list li a {
  display: block;
  padding: 20px 40px 20px 10px;
  border-bottom: 1px solid #ccc;
  color: #000;
  font-size: 100%;
  text-decoration: none;
  position: relative;
  transition: all 0.5s;
}
.hambmenu .inner .content_box .content_list li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #7a0;
  border-right: 1px solid #7a0;
  transform: rotate(45deg);
}
.hambmenu .grouplist {
  display: flex;
  flex-wrap: wrap;
  padding: 2vw 4vw 5vw;
  background-color: #fff;
}
.hambmenu .grouplist dt {
  width: 100%;
  padding-bottom: 1.3vw;
  color: #518c4d;
  font-weight: normal;
  font-size: clamp(18px, 2.1vw, 2.2vw);
  border-bottom: 1px solid #518C4D;
}
.hambmenu .grouplist dd {
  width: 28.333%;
  margin-right: 5%;
  margin-top: 3vw;
}
.hambmenu .grouplist dd .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 90px;
  padding: 0;
}
.hambmenu .grouplist dd .logo.ksb img {
  width: 90%;
}
.hambmenu .grouplist dd .logo.ckp img {
  width: 80%;
}
.hambmenu .grouplist dd .logo.cast img {
  width: 75%;
}
.hambmenu .grouplist dd .logo.ms img {
  height: 60px;
}
.hambmenu .grouplist dd .logo img {
  display: block;
  max-width: 100%;
  max-height: 90px;
  height: auto;
  margin: 0 auto;
}
.hambmenu .grouplist dd span {
  display: block;
  margin-top: 5px;
  text-align: center;
}
.hambmenu .grouplist dd span a {
  padding-right: 25px;
  text-decoration: none;
  color: #518C4D;
  background: url(../images/common/ico_arrow_g.svg) no-repeat 100% 50%;
}
.hambmenu .grouplist dd span a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #518C4D;
  transition: width 0.3s;
}
.hambmenu .grouplist dd span a:hover::after {
  width: 100%;
}
.hambmenu .originallist {
  padding: 2vw 3vw 5vw;
  background-color: #fff;
}
.hambmenu .originallist p {
  width: 100%;
  padding-bottom: 1.2vw;
  color: #518c4d;
  font-weight: normal;
  font-size: clamp(18px, 2.1vw, 2.2vw);
  border-bottom: 1px solid #518C4D;
}
.hambmenu .originallist p b {
  font-weight: normal;
}
.hambmenu .originallist ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3vw 3vw 0;
  padding: 0;
}
.hambmenu .originallist ul li {
  width: 100%;
}
.hambmenu .originallist ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 5.6vw;
  font-size: 1.8rem;
  padding: 10px 15px 10px 20px;
  color: #000;
  text-decoration: none;
  border: 1px solid #dadada;
  border-radius: 40px 40px 0 40px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.hambmenu .originallist ul li.nolink {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 5.6vw;
  font-size: 1.8rem;
  padding: 10px 25px 10px 35px;
  color: #000;
  text-decoration: none;
  border: 1px solid #dadada;
  border-radius: 40px 40px 0 40px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  background-color: #e8e8e8;
}
.hambmenu .originallist ul li span {
  font-size: 1.4rem;
  color: #999;
}
.hambmenu .flex:last-child {
  padding-bottom: 100px;
  background-color: #fff;
}

.page-top .top {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100vh;
  z-index: -1;
}
.page-top .top h1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 73.6%;
  margin: 0 auto;
  text-align: center;
  animation: logo-fade-in 1.2s ease-in-out both;
}
.page-top .top h1.scrolled {
  animation: logo-fade-out 0.5s ease-in-out both;
}
.page-top .top h1.scroll_off {
  animation: logo-fade-in 0.5s ease-in-out both;
}
.page-top .top h1 img {
  width: 100%;
  margin: 0 auto;
}
.page-top .top .logo_subtxt {
  color: #518C4D;
  font-size: 1.9rem;
  position: absolute;
  top: calc(50% + 3vw);
  left: 50%;
  opacity: 1;
  transform: translate(-50%, -60%);
  animation: logo-fade-in 1.2s ease-in-out both;
  animation-delay: 0.8s;
  transition: top 0.1s, opacity 0.5s;
}
.page-top .top .logo_subtxt .arrow_scroll {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transition-delay: 2.4s;
  opacity: 1;
  transform: translateZ(0);
  transition-timing-function: ease;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.page-top .top .logo_subtxt .arrow_scroll .scroll {
  animation: animate-svg-stroke 4s linear infinite;
  animation-delay: 0.8s;
  fill: none;
  stroke: #518C4D;
  stroke-width: 1px;
}
@keyframes animate-svg-stroke {
  0% {
    opacity: 1;
    stroke-dashoffset: 500px;
    stroke-dasharray: 500px;
  }
  90% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
  }
}
.page-top .top .logo_subtxt.scrolled {
  opacity: 0;
  display: none;
}
.page-top .sphere_about {
  overflow: hidden;
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1.8rem;
  background-color: #fff;
  padding-top: 10vw;
}
.page-top .sphere_about.is-scroll .inner_top p, .page-top .sphere_about.is-scroll .inner_top .btn {
  opacity: 1;
  top: 0;
  visibility: visible;
}
.page-top .sphere_about .inner_top {
  min-height: 300px;
  margin: 0 -3vw;
  padding: 35px 4vw 65px;
  text-align: center;
  background-color: #0086CD;
  border-radius: 1500px 1500px 1500px 1500px/400px 400px 400px 400px;
}
.page-top .sphere_about .inner_top .btn {
  margin-top: 12%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, top 0.5s ease;
  transition-delay: 1.3s, 1.4s;
}
.page-top .sphere_about .inner_top .btn a, .page-top .sphere_about .inner_top .btn .modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}
.page-top .sphere_about .inner_top .btn a:before, .page-top .sphere_about .inner_top .btn .modal__btn:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  border: 1px solid #DADADA;
  border-radius: 50%;
  background: url(../images/common/ico_arrow_w.svg) no-repeat 53% 50%;
  background-size: 20px;
}
.page-top .sphere_about .txt_catch {
  text-align: center;
}
.page-top .sphere_about .txt_catch strong {
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 0em;
}
.page-top .sphere_about .txt_catch strong span {
  margin-left: -0.3em;
}
.page-top .sphere_about .txt_message .author {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-size: 1.6rem;
}
.page-top .sphere_about p {
  padding: 0 4% 0;
  line-height: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  opacity: 0;
  position: relative;
  top: 70px;
  visibility: hidden;
  transition: opacity 0.7s ease, top 0.5s ease;
  transition-delay: 0.2s, 0s;
}
.page-top .sphere_about .movie {
  padding: 10% 5% 15%;
  background-color: #0086CD;
}
.page-top .sphere_about .movie .moviename {
  padding: 0;
  text-align: center;
  opacity: 1;
}
.page-top .sphere_about video {
  top: 0;
  width: 100%;
  height: 100%;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.page-top .sphere_about .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-top .sphere_about .modal__container {
  background-color: #fff;
  padding: 1rem 30px 30px;
  max-width: 500px;
  min-width: 50vw;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.page-top .sphere_about .modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-top .sphere_about .modal__header .modal__close:before {
  content: "✕";
}
.page-top .sphere_about .modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
}
.page-top .sphere_about .modal__close {
  background: transparent;
  border: 0;
}
.page-top .sphere_about .modal__content {
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  border: 5px solid #eee;
}
.page-top .sphere_about .modal__btn {
  border-style: none;
  border-width: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  text-transform: none;
  overflow: visible;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
  margin: 0 auto;
}
.page-top .sphere_about .micromodal-slide {
  display: none;
}
.page-top .sphere_about .micromodal-slide .modal__container {
  will-change: transform;
}
.page-top .sphere_about .micromodal-slide .modal__overlay {
  will-change: transform;
}
.page-top .sphere_about .micromodal-slide.is-open {
  display: block;
}
.page-top .sphere_about .micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.page-top .sphere_about .micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.page-top .sphere_about .micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.page-top .sphere_about .micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media screen and (max-width: 480px) {
  .page-top .sphere_about .modal__container {
    max-height: 90vh;
    max-width: 300px;
  }
}
.page-top .read {
  overflow: hidden;
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 1.8rem;
  background-color: #fff;
}
.page-top .read.is-scroll .inner_top p, .page-top .read.is-scroll .inner_top .btn {
  opacity: 1;
  top: 0;
  visibility: visible;
}
.page-top .read .inner_top {
  min-height: 300px;
  margin: 0 -3vw;
  padding: 35px 4vw 65px;
  text-align: center;
  background-color: #518C4D;
  border-radius: 1500px 1500px 1500px 1500px/400px 400px 400px 400px;
}
.page-top .read .inner_top .btn {
  margin-top: 12%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, top 0.5s ease;
  transition-delay: 1.3s, 1.4s;
}
.page-top .read .inner_top .btn a, .page-top .read .inner_top .btn .modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}
.page-top .read .inner_top .btn a:before, .page-top .read .inner_top .btn .modal__btn:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  border: 1px solid #DADADA;
  border-radius: 50%;
  background: url(../images/common/ico_arrow_w.svg) no-repeat 53% 50%;
  background-size: 20px;
}
.page-top .read .txt_catch {
  text-align: center;
}
.page-top .read .txt_catch strong {
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 0em;
}
.page-top .read .txt_catch strong span {
  margin-left: -0.3em;
}
.page-top .read .txt_message .author {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-size: 1.6rem;
}
.page-top .read p {
  padding: 0 4% 0;
  line-height: 2;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  opacity: 0;
  position: relative;
  top: 70px;
  visibility: hidden;
  transition: opacity 0.7s ease, top 0.5s ease;
  transition-delay: 0.2s, 0s;
}
.page-top .read .movie {
  padding: 10% 5% 15%;
  background-color: #518C4D;
}
.page-top .read .movie .moviename {
  padding: 0;
  text-align: center;
  opacity: 1;
}
.page-top .read video {
  top: 0;
  width: 100%;
  height: 100%;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.page-top .read .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-top .read .modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  min-width: 50vw;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.page-top .read .modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-top .read .modal__header .modal__close:before {
  content: "✕";
}
.page-top .read .modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  box-sizing: border-box;
}
.page-top .read .modal__close {
  background: transparent;
  border: 0;
}
.page-top .read .modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.page-top .read .modal__btn {
  border-style: none;
  border-width: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  text-transform: none;
  overflow: visible;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}
.page-top .read .micromodal-slide {
  display: none;
}
.page-top .read .micromodal-slide .modal__container {
  will-change: transform;
}
.page-top .read .micromodal-slide .modal__overlay {
  will-change: transform;
}
.page-top .read .micromodal-slide.is-open {
  display: block;
}
.page-top .read .micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.page-top .read .micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.page-top .read .micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.page-top .read .micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
@media screen and (max-width: 480px) {
  .page-top .read .modal__container {
    max-height: 90vh;
    max-width: 300px;
  }
}
.page-top .list {
  background-color: #fff;
  padding-top: 13vw;
  padding-bottom: 27.78vw;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.page-top .list ul {
  padding: 13vw 0 0;
}
.page-top .list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.33vw;
  height: 11.33vw;
  margin: 0 auto 85.66vw;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  transition: border-radius 0.5s;
  border-radius: 50%;
  position: relative;
}
.page-top .list li:nth-of-type(1) {
  background-color: #518C4D;
}
.page-top .list li:nth-of-type(2) {
  background-color: #00A5E3;
}
.page-top .list li:nth-of-type(3) {
  background-color: #0086CD;
}
.page-top .list li:nth-of-type(4) {
  background-color: #FFD900;
}
.page-top .list li .listitem_text {
  width: 100vw;
  position: absolute;
  top: calc(50% + 60px);
  opacity: 0;
  transform: translateY(-50%);
}
.page-top .list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  bottom: 30px;
  color: #fff;
  font-weight: normal;
  font-size: 1.6rem;
  text-decoration: none;
}
.page-top .list li a::before {
  content: "";
  display: inline-block;
  width: 13.6vw;
  height: 13.6vw;
  margin-right: 25px;
  background: url(../images/common/ico_link.svg) no-repeat;
  background-size: cover;
}
.page-top .news {
  padding: 20% 5% 25%;
  background-color: #F7F7F7;
  background: linear-gradient(180deg, rgb(247, 247, 247) 0%, rgb(254, 255, 254) 100%);
  position: relative;
  z-index: 2;
}
.page-top .news h2 {
  color: #518C4D;
  font-weight: normal;
  text-align: center;
}
.page-top .news ul {
  margin: 0;
  padding: 4% 0 0;
}
.page-top .news ul li {
  padding: 8% 0;
  line-height: 1.4;
  border-bottom: 1px solid #DADADA;
}
.page-top .news ul li a {
  color: #000;
  text-decoration: none;
}
.page-top .news ul li a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 20px;
  margin-left: 5px;
  background: url(../images/common/ico_blank.svg) no-repeat 0 2px;
  background-size: contain;
  position: relative;
  top: 2px;
}
.page-top .news ul li time {
  display: block;
  margin: 0 0 3%;
  color: #333;
  font-size: 1.4rem;
}
.page-top .news .btn {
  margin-top: 8%;
  text-align: center;
}
.page-top .news .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #518C4D;
  text-decoration: none;
  vertical-align: middle;
}
.page-top .news .btn a:before {
  content: "";
  display: inline-block;
  width: 15vw;
  height: 15vw;
  margin-right: 5vw;
  border: 1px solid #DADADA;
  border-radius: 50%;
  background: url(../images/common/ico_arrow_g.svg) no-repeat 53% 50%;
  background-size: 6vw;
}

.page-lower {
  position: relative;
}
.page-lower .glheader {
  padding: 4vw 0 4vw 5.333vw;
  background-color: #fff;
}
.page-lower .glheader .logo {
  width: 27.2%;
}
.page-lower .glnav {
  animation-delay: 3.4s;
}
.page-lower::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 9999;
  opacity: 1;
  animation-name: fadeOutBg;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}
.page-lower.-type_green::after {
  background-color: #518C4D;
}
.page-lower.-type_green .contents {
  background-color: #518C4D;
  background: linear-gradient(180deg, rgb(81, 140, 77) 0%, rgb(81, 140, 77) 97%, rgba(81, 140, 77, 0) 100%);
}
.page-lower.-type_green .hl3 {
  border-top-color: #518C4D;
}
.page-lower.-type_lblue::after {
  background-color: #00A5E3;
}
.page-lower.-type_lblue .contents {
  background-color: #00A5E3;
  background: linear-gradient(180deg, rgb(0, 165, 227) 0%, rgb(0, 165, 227) 97%, rgba(0, 165, 227, 0) 100%);
}
.page-lower.-type_lblue .hl3 {
  border-top-color: #00A5E3;
}
.page-lower.-type_dblue::after {
  background-color: #0086CD;
}
.page-lower.-type_dblue .contents {
  background-color: #0086CD;
  background: linear-gradient(180deg, rgb(0, 134, 205) 0%, rgb(0, 134, 205) 97%, rgba(0, 134, 205, 0) 100%);
}
.page-lower.-type_dblue .hl3 {
  border-top-color: #0086CD;
}
.page-lower.-type_yellow::after {
  background-color: #FFD900;
}
.page-lower.-type_yellow .contents {
  background-color: #FFD900;
  background: linear-gradient(180deg, rgb(255, 217, 0) 0%, rgb(255, 217, 0) 97%, rgba(255, 217, 0, 0) 100%);
}
.page-lower.-type_yellow .hl3 {
  border-top-color: #FFD900;
}
.page-lower .contents {
  padding-bottom: 30%;
}
.page-lower .hl1 {
  padding: 20% 0 20%;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}
.page-lower .hl1 span {
  color: transparent;
  animation: blur 1s ease-out forwards;
}
.page-lower .hl1 span:nth-child(1) {
  animation-delay: 0.1s;
}
.page-lower .hl1 span:nth-child(2) {
  animation-delay: 0.2s;
}
.page-lower .hl1 span:nth-child(3) {
  animation-delay: 0.3s;
}
.page-lower .hl1 span:nth-child(4) {
  animation-delay: 0.4s;
}
.page-lower .hl1 span:nth-child(5) {
  animation-delay: 0.5s;
}
.page-lower .hl1 span:nth-child(6) {
  animation-delay: 0.6s;
}
.page-lower .hl1 span:nth-child(7) {
  animation-delay: 0.7s;
}
.page-lower .hl3 {
  margin-top: 12vw;
  margin-bottom: 5vw;
  padding-top: 4.5vw;
  font-size: 2rem;
  line-height: 1.6;
  border-top: 1px solid #000;
}
.page-lower .contents_nav .title {
  margin: 15vw 6vw 5vw;
  padding-top: 4.5vw;
  font-size: 2rem;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid #fff;
}
.page-lower .contents_list {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.page-lower .contents_list li {
  margin: 0 4% 10%;
  position: relative;
  bottom: -30px;
  opacity: 0;
  animation-name: listUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.page-lower .contents_list li:nth-child(odd) {
  margin-left: 8%;
}
.page-lower .contents_list li:nth-child(odd) a {
  border-radius: 20px 20px 0 20px;
}
.page-lower .contents_list li a {
  display: flex;
  align-items: center;
  min-height: 25vw;
  padding: 0 8%;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #DADADA;
  border-radius: 20px 20px 20px 0;
  position: relative;
}
.page-lower .contents_list li a::before {
  content: "";
  display: inline-block;
  width: 12vw;
  height: 12vw;
  margin-right: 5vw;
  border: 1px solid #DADADA;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-lower .contents_list li a::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 21px;
  margin-top: -2px;
  margin-right: 7vw;
  background: url(../images/common/ico_arrow_g.svg) no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-lower .contents_list li.nolink {
  min-height: 18vw;
  padding: 4% 8%;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #DADADA;
  border-radius: 20px 20px 20px 0;
  position: relative;
}
.page-lower .contents_list li.nolink .cmingsoon {
  padding-left: 1.3em;
  font-size: 1.4rem;
  font-weight: normal;
  position: relative;
  z-index: 2;
}
.page-lower .contents_list li.nolink .cmingsoon::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-color: #518C4D;
  border-radius: 50%;
  position: absolute;
  top: 0.08em;
  left: 0;
  z-index: -1;
}
.page-lower .contents_list2 {
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  width: 90%;
  max-width: 1100px;
}
.page-lower .contents_list2 li {
  margin-bottom: 5%;
}
.page-lower .contents_list2 li img {
  width: 100%;
}
.page-lower.-type_green .contents_list li.nolink .cmingsoon::before {
  background-color: #518C4D;
}
.page-lower.-type_lblue .contents_list li.nolink .cmingsoon::before {
  background-color: #00A5E3;
}
.page-lower.-type_dblue .contents_list li.nolink .cmingsoon::before {
  background-color: #0086CD;
}
.page-lower.-type_yellow .contents_list li.nolink .cmingsoon::before {
  background-color: #FFD900;
}
.page-lower.-type_green .contents_list2 li.nolink .cmingsoon::before {
  background-color: #518C4D;
}
.page-lower.-type_lblue .contents_list2 li.nolink .cmingsoon::before {
  background-color: #00A5E3;
}
.page-lower.-type_dblue .contents_list2 li.nolink .cmingsoon::before {
  background-color: #0086CD;
}
.page-lower.-type_yellow .contents_list2 li.nolink .cmingsoon::before {
  background-color: #FFD900;
}
.page-lower.page-cat.-type_green .contents {
  background: linear-gradient(180deg, rgb(81, 140, 77) 0%, rgb(81, 140, 77) 80%, rgba(81, 140, 77, 0) 100%);
}
.page-lower.page-cat.-type_lblue .contents {
  background: linear-gradient(180deg, rgb(0, 165, 227) 0%, rgb(0, 165, 227) 80%, rgba(0, 165, 227, 0) 100%);
}
.page-lower.page-cat.-type_dblue .contents {
  background: linear-gradient(180deg, rgb(0, 134, 205) 0%, rgb(0, 134, 205) 80%, rgba(0, 134, 205, 0) 100%);
}
.page-lower.page-cat.-type_yellow .contents {
  background: linear-gradient(180deg, rgb(255, 217, 0) 0%, rgb(255, 217, 0) 80%, rgba(255, 217, 0, 0) 100%);
}
.page-lower.page-cat .readtxt {
  text-align: center;
  font-size: 2rem;
  line-height: 1.8;
  opacity: 0;
  animation: cate2-text linear 1s forwards;
  animation-delay: 1s;
}
.page-lower.page-cat .contents_list.-type_cate3 {
  display: flex;
  justify-content: space-between;
  margin-top: 7%;
  overflow: visible;
  transition: opacity 0.5s, transition;
  transition-delay: 1.5s;
}
.page-lower.page-cat .contents_list.-type_cate3 li {
  width: 45%;
}
.page-lower.page-cat .contents_list.-type_cate3 li a {
  display: block;
  text-align: center;
  font-weight: bold;
  border-radius: 40px;
}
.page-lower.page-cat .contents_list.-type_cate3 li a::before, .page-lower.page-cat .contents_list.-type_cate3 li a::after {
  display: none;
}
.page-lower.page-cat .contents_list.-type_cate3 li .logo {
  text-align: center;
  margin-bottom: 20px;
}
.page-lower.page-cat .contents_list.-type_cate3 li .logo img {
  width: auto;
  height: 200px;
  margin: auto;
}
.page-lower.page-interview .contents__detail {
  margin: 0 2vw;
  padding: 14vw 4vw;
  font-size: 1.5rem;
  line-height: 1.8;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  animation-name: listUp;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.page-lower.page-interview .contents__detail .readtxt {
  margin: 6vw 0;
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: left;
}
.page-lower.page-interview .contents__detail .caption_main {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 5px;
  line-height: 1.6;
}
.page-lower.page-interview .contents__detail .profile {
  padding: 6.666vw 4.666vw;
  background-color: #f7f7f7;
  border-radius: 40px;
}
.page-lower.page-interview .contents__detail .profile .person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.6;
}
.page-lower.page-interview .contents__detail .profile .person a {
  color: #000;
}
.page-lower.page-interview .contents__detail .profile .person .thumb {
  width: 21.333vw;
  height: 21.333vw;
  overflow: hidden;
  border-radius: 50%;
}
.page-lower.page-interview .contents__detail .profile .person .text {
  width: calc(100% - 26vw);
}
.page-lower.page-interview .contents__detail .profile .person .text .join {
  color: #777777;
  font-size: 1.4rem;
}
.page-lower.page-interview .contents__detail .profile .person .text .name {
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.7rem;
}
.page-lower.page-interview .contents__detail .profile .person .text .from {
  line-height: 1;
}
.page-lower.page-interview .contents__detail .profile .person .job {
  margin-top: 15px;
  font-size: 1.4rem;
}
.page-lower.page-interview .contents__detail .profile .person:not(:first-child) {
  margin-top: 5.333vw;
  padding-top: 5.333vw;
  border-top: 1px solid #999999;
}
.page-lower.page-interview .contents__detail .linkbnr {
  margin-top: 100px;
}
.page-lower.page-interview .contents__detail .linkbnr .text_title {
  padding-bottom: 30px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box {
  width: 100%;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border: 10px solid #eee;
  padding: 2%;
  text-decoration: none;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a:hover {
  border: 10px solid #cfe4f0;
  background: #f4f9fc;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a img {
  width: 25%;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a .text_box {
  padding: 2% 6% 2% 3%;
  width: 75%;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a .text_box p {
  font-size: 120%;
  font-weight: bold;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a .text_box span {
  display: block;
  margin-top: 10px;
  font-size: 100%;
  color: #999;
}
.page-lower.page-interview .contents__detail .linkbnr .link_box a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 3%;
  border-top: solid 2px #518c4d;
  border-right: solid 2px #518c4d;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .page-lower.page-interview .contents__detail .linkbnr .link_box {
    width: 100%;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a {
    border: 6px solid #eee;
    padding: 2%;
    text-decoration: none;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a:hover {
    border: 6px solid #cfe4f0;
    background: #f4f9fc;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a img {
    width: 40%;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a .text_box {
    padding: 2% 8% 2% 4%;
    width: 60%;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a .text_box p {
    font-size: 100%;
    line-height: 1.6;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a .text_box span {
    display: block;
    margin-top: 5px;
    font-size: 80%;
    color: #999;
  }
  .page-lower.page-interview .contents__detail .linkbnr .link_box a::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 5%;
    border-top: solid 2px #518c4d;
    border-right: solid 2px #518c4d;
    transform: translateY(-50%) rotate(45deg);
  }
}
.page-lower.page-interview .contents__detail .project {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #333;
}
.page-lower.page-interview .contents__detail .project .projectlist {
  margin: 0 auto 0;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper {
  margin-bottom: 30px;
  padding-bottom: 40px;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-slide img {
  margin: auto;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-button-next, .page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  top: calc(100% - 17px);
  background-color: #f7f7f7;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-button-next {
  right: 0;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-button-prev {
  left: 0;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-button-next::after, .page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-button-prev::after {
  font-size: 22px;
  color: #518C4D;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-horizontal > .swiper-pagination-bullets, .page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-pagination-custom, .page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-pagination-fraction {
  bottom: 7px;
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}
.page-lower.page-interview .contents__detail .project .projectlist.swiper .swiper-pagination-bullet-active {
  background-color: #518C4D;
}
.page-lower.page-interview .contents__detail .project a {
  color: #000;
}
.page-lower.page-interview .contents__detail .txt_foreword {
  margin-top: 4vw;
}
.page-lower.page-interview .contents__detail .interview .hl3 {
  margin-top: 15vw;
  margin-bottom: 11vw;
}
.page-lower.page-interview .contents__detail .interview .txt_q {
  margin-top: 4vw;
  margin-bottom: 7vw;
  font-weight: bold;
  font-style: italic;
}
.page-lower.page-interview .contents__detail .interview .txt_q::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  margin-right: 0.5em;
  vertical-align: middle;
  background-color: #000;
}
.page-lower.page-interview .contents__detail .interview .txt_a {
  margin-bottom: 7vw;
}
.page-lower.page-interview .contents__detail .interview .txt_a.p1 .name::before {
  background-color: #518C4D;
}
.page-lower.page-interview .contents__detail .interview .txt_a.p2 .name::before {
  background-color: #0086CD;
}
.page-lower.page-interview .contents__detail .interview .txt_a.p3 .name::before {
  background-color: #00A5E3;
}
.page-lower.page-interview .contents__detail .interview .txt_a.p4 .name::before {
  background-color: #FFD900;
}
.page-lower.page-interview .contents__detail .interview .txt_a.p0 .name::before {
  background-color: #777;
}
.page-lower.page-interview .contents__detail .interview .txt_a .name {
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
}
.page-lower.page-interview .contents__detail .interview .txt_a .name::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-top: -2px;
  margin-right: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
}
.page-lower.page-interview .contents__detail .interview .txt_a .name::after {
  content: "：";
}
.page-lower.page-interview .contents__detail .interview .img {
  margin: 7vw 0;
}
.page-lower.page-interview .contents__detail .interview .img .caption {
  margin-top: 5px;
  line-height: 1.6;
}
.page-lower.page-interview .contents__detail .interview .btm_box {
  margin-top: 40px;
}
.page-lower.page-interview .contents__detail .interview .btm_box p {
  text-align: right;
}
.page-lower.page-interview .contents__detail .interview .btm_box p span {
  display: block;
  margin-top: 10px;
  font-size: 90%;
}
.page-lower.page-interview .contents .comingsoon {
  display: flex;
  justify-content: center;
  margin-bottom: 10%;
  overflow: hidden;
  color: #000000;
  font-size: 5rem;
  opacity: 0;
}
.page-lower.page-interview .contents .comingsoon.-visible {
  opacity: 1;
}
.page-lower.page-interview .contents .comingsoon.-visible span {
  transform: translate(0, 0);
}
.page-lower.page-interview .contents .comingsoon span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(2) {
  transition-delay: 0.06s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(3) {
  transition-delay: 0.12s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(4) {
  transition-delay: 0.18s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(5) {
  transition-delay: 0.24s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(6) {
  transition-delay: 0.3s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(7) {
  transition-delay: 0.36s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(8) {
  transition-delay: 0.42s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(9) {
  transition-delay: 0.48s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(10) {
  transition-delay: 0.54s;
}
.page-lower.page-interview .contents .comingsoon span:nth-child(11) {
  transition-delay: 0.6s;
}
.page-lower.page-interview .contents .relationship {
  padding-bottom: 5vw;
}
.page-lower.page-interview .contents .relationship .title {
  margin: 12vw 6vw 5vw;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
.page-lower.page-interview .contents .relationship .relationship_list {
  display: flex;
  justify-content: center;
  margin: 0 6vw;
  padding: 0;
}
.page-lower.page-interview .contents .relationship .relationship_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47%;
  background-color: #fff;
  border: 1px solid #dadada;
  margin-right: 3%;
}
@media screen and (max-width: 767px) {
  .page-lower.page-interview .contents .relationship .relationship_list li:last-child {
    margin-right: 0%;
  }
}
.page-lower.page-interview .contents .relationship .relationship_list li a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 15px 10px;
}
.page-lower.page-office .contents__detail h3::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-top: -2px;
  margin-right: 0.5em;
  background-color: #518C4D;
  border-radius: 50%;
  vertical-align: middle;
}
.page-lower.page-single .contents__detail {
  margin: 0 2vw;
  padding: 2vw 4vw 0;
  font-size: 1.5rem;
  line-height: 1.8;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  animation-name: listUp;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
}
.page-lower.page-single .contents .health_dots {
  display: block;
  width: 100%;
  box-sizing: content-box;
}
.page-lower.page-single .contents .health_dots .group1 {
  width: 100%;
  position: relative;
}
.page-lower.page-single .contents .health_dots .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: calc(50% + 15px);
  opacity: 1;
  transition: opacity 0.5s;
  transition-delay: 1.2s;
}
.page-lower.page-single .contents .health_dots .dot.c_gr {
  left: calc(50% - 100px);
  background-color: #518C4D;
  animation: bound-healthG 3.5s infinite;
}
.page-lower.page-single .contents .health_dots .dot.c_lb {
  width: 40px;
  height: 40px;
  background-color: #00A5E3;
  animation: bound-healthLB 4.5s infinite;
}
.page-lower.page-single .contents .health_dots .dot.c_db {
  width: 35px;
  height: 35px;
  background-color: #0086CD;
  animation: bound-healthDB 5s infinite;
}
.page-lower.page-single .contents .health_dots .dot.c_ye {
  background-color: #FFD900;
  animation: bound-healthY 3s infinite;
}
.page-lower.page-single .contents .declaration {
  padding: 6vw 4.666vw 5vw;
  color: #fff;
  background-color: #518C4D;
  border-radius: 40px;
  position: relative;
}
.page-lower.page-single .contents .declaration .txt {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2;
}
.page-lower.page-single .contents .declaration .txt b {
  display: block;
  width: 100%;
  margin: 0 auto 1em;
  font-size: 1.7rem;
  font-weight: bold;
}
.page-lower.page-single .contents .declaration .txt2 {
  margin-top: 1.4em;
  text-align: right;
}
.page-lower.page-sitepolicy .hl3 {
  margin-top: 5vw;
  margin-bottom: 2vw;
  padding-top: 5vw;
  font-weight: bold;
}
.page-lower.page-sitepolicy .list {
  padding: 0;
}
.page-lower.page-sitepolicy .list.last {
  padding-bottom: 5vw;
  border-bottom: 1px solid #000;
}
.page-lower.page-sitepolicy .list li a[target=_blank] {
  color: #000;
}
.page-lower.page-sitepolicy .list li a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 20px;
  margin-left: 5px;
  background: url(../images/common/ico_blank.svg) no-repeat 0 2px;
  background-size: contain;
  position: relative;
  top: 2px;
}
.page-lower.page-sitepolicy .list.orderlist {
  margin-left: 1.5em;
}
.page-lower.page-sitepolicy .list.orderlist li {
  margin-top: 1em;
  list-style: decimal;
}
.page-lower.page-sitepolicy .list.orderlist li:last-child {
  margin-left: -1.5em;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .page-top .sphere_about .btn {
    font-size: 1.6rem;
  }
  .page-top .read .btn {
    font-size: 1.6rem;
  }
  .page-lower.-type_white .contents {
    background-color: #fff;
  }
  .page-lower.-type_white .contents .hl1 {
    padding: 10% 0 20%;
    color: #000;
  }
  .page-lower.-type_white .contents .hl1 span {
    color: #000;
  }
  .page-lower.page-cat .contents_list.-type_cate3 {
    margin-left: 4%;
    margin-right: 4%;
  }
  .page-lower.page-cat .contents_list.-type_cate3 li {
    width: 48%;
    margin: 0;
  }
  .page-lower.page-cat .contents_list.-type_cate3 li:nth-child(odd) {
    margin-left: 0;
  }
  .page-lower.page-cat .contents_list.-type_cate3 li a {
    padding: 8%;
  }
  .page-lower.page-cat .contents_list.-type_cate3 li .logo img {
    height: auto;
    max-height: 120px;
  }
  .page-lower.page-cat .readtxt {
    font-size: 1.8rem;
    color: #fff;
  }
  .page-lower.page-single .contents__detail {
    margin: 0;
  }
  .page-lower.page-office .photolist {
    margin: 20px 0 40px;
    padding: 0;
  }
  .page-lower.page-office .photolist li {
    margin-top: 20px;
  }
  .page-lower.page-office .photo {
    margin: 40px auto 0;
    text-align: center;
  }
  .page-lower.page-office .photo img {
    margin: auto;
  }
  .page-lower.page-office .mb0 {
    margin-bottom: 0;
  }
  @keyframes bound-healthG {
    0% {
      bottom: 0px;
      transform: scale(1);
      left: calc(50% - 30px);
    }
    10% {
      bottom: 5px;
      transform: scale(1.04, 1);
    }
    15% {
      transform: scale(1);
    }
    20% {
      bottom: 0px;
      left: calc(50% - 30px);
      transform: scale(0.9, 1);
    }
    25% {
      bottom: 20px;
      left: calc(50% - 35px);
      transform: scale(1.04, 0.96);
    }
    35% {
      transform: scale(1);
    }
    40% {
      bottom: 0px;
      left: calc(50% - 50px);
      transform: scale(0.9, 1);
    }
    45% {
      bottom: 5px;
      left: calc(50% - 50px);
      transform: scale(1.04, 1);
    }
    55% {
      transform: scale(1);
    }
    63% {
      bottom: 0px;
      left: calc(50% - 40px);
      transform: scale(0.9, 1);
    }
    77% {
      bottom: 20px;
      transform: scale(1.04, 0.96);
    }
    80% {
      left: calc(50% - 50px);
      transform: scale(1);
    }
    90% {
      bottom: 0px;
      left: calc(50% - 30px);
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0px;
      left: calc(50% - 30px);
      transform: scale(1);
    }
  }
  @keyframes bound-healthLB {
    0% {
      left: calc(50% + 5px);
    }
    30% {
      left: calc(50% + 80px);
    }
    33% {
      left: calc(50% + 82px);
    }
    61% {
      left: calc(50% + 5px);
    }
    62% {
      bottom: 0;
      transform: scale(1);
    }
    65% {
      bottom: 15px;
      transform: scale(1.04, 1);
    }
    68% {
      transform: scale(1);
    }
    72% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    76% {
      bottom: 30px;
      transform: scale(1.04, 0.96);
    }
    80% {
      transform: scale(1);
    }
    90% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0;
      transform: scale(1.04, 1);
      width: 40px;
      height: 40px;
      left: calc(50% + 5px);
    }
  }
  @keyframes bound-healthDB {
    0% {
      left: calc(50% - 135px);
    }
    20% {
      left: calc(50% - 160px);
    }
    40% {
      left: calc(50% - 110px);
    }
    55% {
      left: calc(50% - 120px);
    }
    61% {
      left: calc(50% - 105px);
    }
    62% {
      bottom: 0;
      transform: scale(1);
    }
    65% {
      bottom: 15px;
      transform: scale(1.04, 1);
    }
    68% {
      transform: scale(1);
    }
    72% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    76% {
      bottom: 30px;
      transform: scale(1.04, 0.96);
    }
    80% {
      transform: scale(1);
      left: calc(50% - 105px);
    }
    84% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0;
      transform: scale(1.04, 1);
      left: calc(50% - 135px);
    }
  }
  @keyframes bound-healthY {
    0% {
      left: calc(50% + 110px);
      width: 50px;
      height: 50px;
    }
    40% {
      left: calc(50% + 80px);
    }
    61% {
      left: calc(50% + 80px);
      width: 30px;
      height: 30px;
    }
    62% {
      bottom: 0;
      transform: scale(1);
    }
    65% {
      bottom: 15px;
      transform: scale(1.04, 1);
    }
    68% {
      transform: scale(1);
    }
    72% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    76% {
      bottom: 30px;
      transform: scale(1.04, 0.96);
    }
    80% {
      transform: scale(1);
    }
    84% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0;
      width: 50px;
      height: 50px;
      left: calc(50% + 110px);
    }
  }
  .glfooter .policylist {
    margin-right: 1em;
    justify-content: flex-end;
  }
}
@keyframes logo-fade-out {
  0% {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -90%);
    opacity: 0;
  }
}
@keyframes logo-fade-in {
  0% {
    transform: translate(-50%, -90%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
}
@keyframes border-strech {
  0% {
    height: 0px;
  }
  100% {
    height: 90px;
  }
}
@keyframes border-strech2 {
  0% {
    height: 0px;
  }
  100% {
    height: 15px;
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blur {
  0% {
    text-shadow: 0 0 100px #fff;
    opacity: 0;
  }
  20% {
    text-shadow: 0 0 90px #fff;
  }
  85% {
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 0px #fff;
  }
}
@keyframes listUp {
  0% {
    opacity: 0;
    bottom: -30px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes fadeOutBg {
  0% {
    opacity: 1;
  }
  99% {
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes changeBg {
  0%, 100% {
    background-color: #518C4D;
  }
  25% {
    background-color: #00A5E3;
  }
  50% {
    background-color: #0086CD;
  }
  75% {
    background-color: #FFD900;
  }
}
@keyframes hamb-text {
  0% {
    top: 50%;
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes hamb-text-close {
  0% {
    top: 50%;
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
@keyframes hamb-line-top {
  0% {
    top: 0;
    transform: scale(1);
  }
  20% {
    top: 40%;
    transform: scale(1);
  }
  40% {
    top: 40%;
  }
  100% {
    top: 40%;
    transform: rotate(-225deg) scale(0.8);
  }
}
@keyframes hamb-line-bottom {
  0% {
    bottom: 0;
    transform: scale(1);
  }
  20% {
    bottom: 60%;
    transform: scale(1);
  }
  40% {
    bottom: 60%;
  }
  100% {
    bottom: 60%;
    transform: rotate(225deg) scale(0.8);
  }
}
@keyframes hamb-text2 {
  0% {
    top: 100%;
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}
@keyframes hamb-text-close2 {
  0% {
    top: 100%;
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    top: 50%;
    opacity: 0;
  }
}
@keyframes hamb-line-top2 {
  0% {
    top: 40%;
    transform: rotate(-225deg) scale(0.8);
  }
  40% {
    top: 40%;
  }
  80% {
    top: 40%;
    transform: scale(1);
  }
  100% {
    top: 0;
    transform: scale(1);
  }
}
@keyframes hamb-line-bottom2 {
  0% {
    bottom: 60%;
    transform: rotate(225deg) scale(0.8);
  }
  40% {
    bottom: 60%;
  }
  80% {
    bottom: 60%;
    transform: scale(1);
  }
  100% {
    bottom: 0;
    transform: scale(1);
  }
}
@keyframes cate2-text {
  0% {
    opacity: 0;
    transform: translate(0, 70%);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/*##############################################################################################################################

　ＰＣレイアウト

##############################################################################################################################*/
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
  html {
    scroll-behavior: smooth;
  }
  #contents.open #scbar {
    opacity: 0;
  }
  .glfooter {
    margin-left: 220px;
    padding: 20px 0 35px;
  }
  .glnav {
    display: block;
    width: 220px;
    min-height: 570px;
    height: 100%;
    padding-top: 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    animation-name: none;
    transform: translate(-180px, 0);
    transition: transform 0.5s ease-in-out, opacity 0.2s;
    transition-delay: 0.2s, 0;
    opacity: 0;
  }
  .glnav.scrolled {
    transform: translate(0, 0);
    left: 0;
    opacity: 1;
  }
  .glnav.scrolled #scbar a {
    top: calc(100% - 13px);
    opacity: 1;
    animation: bound-anim 2.5s infinite;
  }
  .glnav #scbar.sc_end a {
    width: 40px;
    height: 40px;
    top: calc(100% - 20px);
    opacity: 1;
    animation: none;
    background-image: url(../images/common/ico_arrow_w.svg);
    background-size: 80%;
    transform: rotate(-90deg);
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: auto;
  }
  .glnav #scbar {
    display: inline-block;
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
    height: 0;
    background-color: #666666;
    transition: opacity 0.3s;
  }
  .glnav #scbar a {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #FFD900;
    background-image: none;
    position: absolute;
    top: -30px;
    left: 0;
    opacity: 0;
    transition-property: top, opacity, width, height;
    transition-duration: 0s, 0s, 0.3s, 0.3s;
    transition-timing-function: ease-in, linear, ease-out, ease-out;
    transition-delay: 0.1s, 0s, 0s, 0s;
    pointer-events: none;
  }
  .glnav #scbar.sc_top a {
    top: -30px;
  }
  @keyframes bound-anim {
    0%, 100% {
      left: 0;
      transform: scale(1);
    }
    15% {
      left: 20px;
      transform: scale(0.96, 1.04);
    }
    30% {
      transform: scale(1);
    }
    45% {
      left: 0;
      transform: scale(1, 0.9);
    }
    60% {
      left: 10px;
      transform: scale(0.96, 1.04);
    }
    75% {
      transform: scale(1);
    }
    90% {
      left: 0;
      transform: scale(1, 0.9);
    }
  }
  .glnav .logo {
    display: block;
    width: 150px;
    margin: 0 auto 13.255vh;
    padding-top: 6.5vh;
  }
  .glnav > ul {
    display: block;
    width: auto;
    margin-left: 0;
    text-align: center;
  }
  .glnav > ul li {
    width: auto;
    height: auto;
    margin-left: inherit;
    padding: 0 15px;
    list-style: none;
    text-align: left;
  }
  .glnav > ul li:not(:first-child) {
    margin-top: 5.103vh;
  }
  .glnav > ul li a {
    display: flex;
    width: auto;
    height: auto;
    border-radius: 0;
    position: relative;
    cursor: pointer;
    background-color: transparent;
  }
  .glnav > ul li a.on {
    z-index: 100;
  }
  .glnav > ul li a.on::before {
    animation: dotTap linear 0.7s forwards;
  }
  @keyframes dotTap {
    0% {
      scale: 1;
    }
    100% {
      scale: 200;
    }
  }
  .glnav > ul li a span {
    display: inline;
    width: calc(100% - 30px);
  }
  .glnav > ul li a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
    vertical-align: middle;
    transform: var(--dot-scale);
  }
  .glnav > ul li:nth-of-type(1) a, .glnav > ul li:nth-of-type(2) a, .glnav > ul li:nth-of-type(3) a, .glnav > ul li:nth-of-type(4) a {
    background-color: transparent;
  }
  .glnav > ul li:nth-of-type(1) a::before {
    background-color: #518C4D;
  }
  .glnav > ul li:nth-of-type(2) a::before {
    background-color: #00A5E3;
  }
  .glnav > ul li:nth-of-type(3) a::before {
    background-color: #0086CD;
  }
  .glnav > ul li:nth-of-type(4) a::before {
    background-color: #FFD900;
  }
  .glnav .hambicon {
    width: 60px;
    height: 50px;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
  }
  .glnav .hambicon .menu_icon:not(:checked) + .menu_txt .txt::before {
    animation: hamb-text2 ease-out;
    animation-duration: 0.2s;
  }
  .glnav .hambicon .menu_icon:not(:checked) + .menu_txt .txt::after {
    animation: hamb-text-close2 ease-out;
    animation-duration: 0.2s;
  }
  .glnav .hambicon .menu_icon:checked + .menu_txt .txt::before {
    animation: hamb-text ease-out;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
  }
  .glnav .hambicon .menu_icon:checked + .menu_txt .txt::after {
    animation: hamb-text-close ease-out;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
  }
  .glnav .hambicon .menu_icon:checked + .menu_txt::before {
    animation: hamb-line-top ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.2s;
  }
  .glnav .hambicon .menu_icon:checked + .menu_txt::after {
    animation: hamb-line-bottom ease-in-out;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-delay: 0.2s;
  }
  .glnav .hambicon .menu_txt {
    width: 60px;
    height: 50px;
  }
  .hambmenu {
    transform: translate(-200%, 0);
    padding-left: 220px;
    opacity: 0;
    transition: transition 0.7s linear, opacity 0.4s linear;
  }
  .hambmenu.open {
    transform: translate(0, 0);
    opacity: 1;
  }
  .hambmenu.close {
    transform: translate(-200%, 0);
    opacity: 0;
  }
  .hambmenu .inner {
    border-left: 1px solid #c1c1c1;
  }
  .hambmenu .inner > .logo {
    padding: 5vw 0 0vw 5.333vw;
  }
  .hambmenu .inner > .logo > a {
    display: none;
  }
  .hambmenu .content_box {
    padding: 0vw 3vw 5vw;
    background: #fff;
  }
  .hambmenu .content_box .title_text {
    width: 100%;
    padding-bottom: 1.2vw;
    color: #518c4d;
    font-weight: normal;
    font-size: clamp(18px, 2.1vw, 2.2vw);
    border-bottom: 1px solid #518C4D;
  }
  .hambmenu .content_box .content_list {
    margin: 60px 40px 0;
    padding: 0;
    border-top: 1px solid #ccc;
  }
  .hambmenu .content_box .content_list li a {
    display: block;
    padding: 30px 20px;
    border-bottom: 1px solid #ccc;
    color: #000;
    font-size: 120%;
    text-decoration: none;
    position: relative;
    transition: all 0.5s;
  }
  .hambmenu .content_box .content_list li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 1px solid #7a0;
    border-right: 1px solid #7a0;
    transform: rotate(45deg);
  }
  .hambmenu .content_box .content_list li a:hover {
    color: #fff;
    background-color: #518C4D;
  }
  .hambmenu .content_box .content_list li a:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .hambmenu .grouplist {
    padding: 2vw 3vw 5vw;
  }
  .hambmenu .grouplist dt {
    padding-bottom: 1.2vw;
    font-size: clamp(18px, 2.1vw, 2.2vw);
  }
  .hambmenu .grouplist dd {
    width: 20%;
    margin-right: 5%;
    margin-top: 3vw;
  }
  .hambmenu .grouplist dd .logo {
    height: 110px;
  }
  .hambmenu .grouplist dd .logo.ksb img {
    width: 75%;
  }
  .hambmenu .grouplist dd .logo.fm img {
    width: 90%;
  }
  .hambmenu .grouplist dd .logo.ckp img {
    width: 90%;
  }
  .hambmenu .grouplist dd .logo.cast img {
    width: 90%;
  }
  .hambmenu .grouplist dd .logo.ms img {
    height: 110px;
  }
  .hambmenu .grouplist dd .logo.wiz img {
    width: 90%;
  }
  .hambmenu .grouplist dd span {
    margin-top: 15px;
  }
  .hambmenu .grouplist dd span a {
    padding-right: 25px;
  }
  .hambmenu .grouplist dd span a::after {
    transition: width 0.3s;
  }
  .hambmenu .grouplist dd span a:hover::after {
    width: 100%;
  }
  .hambmenu .originallist {
    padding: 2vw 3vw 5vw;
  }
  .hambmenu .originallist p {
    padding-bottom: 1.2vw;
    font-size: clamp(18px, 2.1vw, 2.2vw);
  }
  .hambmenu .originallist ul {
    display: block;
    margin: 3vw 0 0;
    padding: 0;
  }
  .hambmenu .originallist ul li {
    width: 30%;
  }
  .hambmenu .originallist ul li a {
    height: 100%;
    min-height: 5.6vw;
    font-size: 1.8rem;
    padding: 10px 25px 10px 35px;
    border-radius: 40px 40px 0 40px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-out, background-color 0.3s ease-in, color 0.3s;
  }
  .hambmenu .originallist ul li a:hover {
    transform: scale(1.05);
    background-color: #518C4D;
    color: #fff;
  }
  .hambmenu .originallist ul li.nolink {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 5.6vw;
    font-size: 1.8rem;
    padding: 10px 25px 10px 35px;
    color: #000;
    text-decoration: none;
    border: 1px solid #dadada;
    border-radius: 40px 40px 0 40px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    background-color: #e8e8e8;
  }
  .hambmenu .originallist ul li span {
    font-size: 1.4rem;
    color: #999;
  }
  .hambmenu .originallist.-w_100, .hambmenu .originallist .-w_100 {
    width: 100%;
  }
  .hambmenu .originallist.-w_50, .hambmenu .originallist .-w_50 {
    width: 50%;
  }
  .hambmenu .originallist.-w_45, .hambmenu .originallist .-w_45 {
    width: 45%;
  }
  .hambmenu .flex {
    display: flex;
  }
  .page-top .top {
    z-index: 0;
  }
  .page-top .top h1 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 370px;
    height: 160px;
    margin: 0 auto;
    text-align: center;
    animation: logo-fade-in 1.2s ease-in-out both;
    transition: all 0.5s;
  }
  .page-top .top h1.scrolled {
    animation: logo-fade-out 0.5s ease-in-out both;
  }
  .page-top .top h1.scroll_off {
    animation: logo-fade-in 0.5s ease-in-out both;
  }
  .page-top .sphere_about {
    margin: 0;
    width: calc(100% - 220px);
    margin-left: 220px;
    font-size: 2rem;
    padding-top: 10vw;
  }
  .page-top .sphere_about .inner_top {
    width: 30px;
    height: 30px;
    min-height: 30px;
    margin: 0 auto 0;
    padding: 0;
    border-radius: 50%;
    position: relative;
    transition: width 0.8s ease-in, height 0.8s ease-in, padding 0.8s ease-in, left 0.8s ease-in;
    transition-delay: 0s, 0s, 0s, 0s;
  }
  .page-top .sphere_about .inner_top p {
    opacity: 0;
    position: relative;
    top: 50px;
    visibility: hidden;
    transition: opacity 0.7s ease, top 0.5s ease;
    transition-delay: 1.3s, 1.4s;
  }
  .page-top .sphere_about .inner_top .btn {
    margin-top: 8%;
    text-align: center;
    opacity: 0;
    position: relative;
    top: 50px;
    visibility: hidden;
    transition: opacity 0.7s ease, top 0.5s ease;
    transition-delay: 1.3s, 1.4s;
  }
  .page-top .sphere_about .inner_top .btn a:before, .page-top .sphere_about .inner_top .btn .modal__btn:before {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background-size: 20px;
  }
  .page-top .sphere_about .inner_top .btn .modal__btn {
    left: 50%;
  }
  .page-top .sphere_about.is-scroll .inner_top {
    width: 600px;
    height: 600px;
    padding: 100px 50px 0;
  }
  .page-top .sphere_about.is-scroll .inner_top p, .page-top .sphere_about.is-scroll .inner_top .btn {
    opacity: 1;
    top: 0;
    visibility: visible;
  }
  .page-top .sphere_about .txt_catch {
    margin-bottom: 2.428vw;
    padding: 0 0 0;
    position: initial;
    text-align: center;
  }
  .page-top .sphere_about .txt_catch strong {
    font-size: 3.2rem;
    font-weight: normal;
  }
  .page-top .sphere_about .txt_catch strong span {
    margin-left: 0;
  }
  .page-top .sphere_about .txt_message {
    margin-top: -0.5em;
    padding: 0;
    line-height: 2.2;
    font-size: 1.8rem;
    text-align: center;
  }
  .page-top .sphere_about .txt_message .author {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .page-top .sphere_about p {
    padding: 0 4% 0;
    line-height: 2.4;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
  }
  .page-top .sphere_about .movie {
    clear: both;
    max-width: 40vw;
    margin: 0 0 0 5%;
    padding: 10% 0 0;
    background-color: transparent;
    box-sizing: border-box;
  }
  .page-top .sphere_about .modal__container {
    margin-left: 200px;
  }
  .page-top .read {
    margin: 0;
    width: calc(100% - 220px);
    margin-left: 220px;
    font-size: 2rem;
  }
  .page-top .read .inner_top {
    width: 30px;
    height: 30px;
    min-height: 30px;
    margin: 0 auto 0;
    left: -110px;
    padding: 0;
    border-radius: 50%;
    position: relative;
    transition: width 0.8s ease-in, height 0.8s ease-in, padding 0.8s ease-in, left 0.8s ease-in;
    transition-delay: 0s, 0s, 0s, 0s;
  }
  .page-top .read .inner_top p {
    opacity: 0;
    position: relative;
    top: 50px;
    visibility: hidden;
    transition: opacity 0.7s ease, top 0.5s ease;
    transition-delay: 1.3s, 1.4s;
  }
  .page-top .read .inner_top .btn {
    margin-top: 8%;
    text-align: center;
    opacity: 0;
    position: relative;
    top: 50px;
    visibility: hidden;
    transition: opacity 0.7s ease, top 0.5s ease;
    transition-delay: 1.3s, 1.4s;
  }
  .page-top .read .inner_top .btn a:before, .page-top .read .inner_top .btn .modal__btn:before {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background-size: 20px;
  }
  .page-top .read .inner_top .btn .modal__btn {
    left: 50%;
    transform: translateZ(0) translateX(25%);
  }
  .page-top .read.is-scroll .inner_top {
    width: clamp(980px, 77.14vw, 1080px);
    height: clamp(980px, 77.14vw, 1080px);
    padding: 100px 170px 0;
    left: 0;
  }
  .page-top .read.is-scroll .inner_top p, .page-top .read.is-scroll .inner_top .btn {
    opacity: 1;
    top: 0;
    visibility: visible;
  }
  .page-top .read .txt_catch {
    margin-bottom: 2.428vw;
    padding: 0 0 0;
    position: initial;
  }
  .page-top .read .txt_catch strong {
    font-size: 3.2rem;
    font-weight: normal;
  }
  .page-top .read .txt_catch strong span {
    margin-left: 0;
  }
  .page-top .read .txt_message {
    margin-top: -0.5em;
    padding: 0;
    line-height: 2.2;
    font-size: 1.8rem;
  }
  .page-top .read .txt_message .author {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  .page-top .read p {
    padding: 0 4% 0;
    line-height: 2.4;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
  }
  .page-top .read .movie {
    clear: both;
    max-width: 40vw;
    margin: 0 0 0 5%;
    padding: 10% 0 0;
    background-color: transparent;
    box-sizing: border-box;
  }
  .page-top .read .modal__container {
    margin-left: 200px;
  }
  .page-top .list {
    width: calc(100% - 220px);
    margin-left: 220px;
    /*margin-bottom: 80px;*/
    background-color: #fff;
    padding-top: 5vw;
    padding-bottom: 11vw;
    position: relative;
    z-index: 2;
    overflow: hidden;
    position: relative;
  }
  .page-top .list ul {
    height: 130vh;
    padding: 0 0 0;
  }
  .page-top .list li {
    display: block;
    margin: 0 auto 85.66vw;
    text-align: center;
    line-height: 1.8;
    color: #fff;
    font-weight: bold;
    font-size: 2.4rem;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
  }
  .page-top .list li:nth-of-type(1) {
    width: 60px;
    height: 60px;
    top: 18%;
    left: 27%;
    background-color: #518C4D;
    opacity: 0;
  }
  .page-top .list li:nth-of-type(2) {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 65%;
    background-color: #00A5E3;
    opacity: 0;
  }
  .page-top .list li:nth-of-type(3) {
    width: 60px;
    height: 60px;
    top: 38%;
    left: 19%;
    background-color: #0086CD;
    opacity: 0;
  }
  .page-top .list li:nth-of-type(4) {
    width: 60px;
    height: 60px;
    top: 45%;
    left: 57%;
    background-color: #FFD900;
    opacity: 0;
  }
  .page-top .list li .listitem_text {
    width: 100%;
    position: absolute;
    top: calc(50% + 60px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: top 0.5s, opacity 0.5s;
    transition-delay: 2.7s;
  }
  .page-top .list li a {
    opacity: 0;
    position: absolute;
    bottom: -50px;
    left: 25%;
    font-weight: normal;
    font-size: 1.6rem;
    visibility: hidden;
    transition: bottom 0.8s, opacity 0.8s;
    transition-delay: 3s;
  }
  .page-top .list li a::before {
    width: 50px;
    height: 50px;
    margin-right: 25px;
  }
  @keyframes bound-animG {
    0% {
      opacity: 0;
      top: 18%;
      transform: scale(1);
    }
    5% {
      opacity: 1;
      top: 18%;
      transform: scale(1);
    }
    23% {
      top: calc(18% + 15px);
      transform: scale(1.04, 1);
    }
    25% {
      transform: scale(1);
    }
    30% {
      top: 18%;
      transform: scale(0.9, 1);
    }
    35% {
      top: calc(18% + 30px);
      transform: scale(1.04, 0.96);
    }
    50% {
      transform: scale(1);
    }
    54% {
      top: 18%;
      transform: scale(0.9, 1);
    }
    60% {
      top: calc(18% + 10px);
      transform: scale(1.04, 1);
    }
    70% {
      width: 60px;
      height: 60px;
      top: 18%;
      left: 27%;
      transform: scale(0.9, 1);
    }
    100% {
      width: 25vw;
      height: 25vw;
      top: 18%;
      left: 17%;
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes bound-animLB {
    0% {
      opacity: 0;
      top: 25%;
      transform: scale(1);
    }
    5% {
      opacity: 1;
      top: 25%;
      transform: scale(1);
    }
    23% {
      top: calc(25% + 15px);
      transform: scale(1.04, 1);
    }
    25% {
      transform: scale(1);
    }
    30% {
      top: 25%;
      transform: scale(0.9, 1);
    }
    35% {
      top: calc(25% + 30px);
      transform: scale(1.04, 0.96);
    }
    50% {
      transform: scale(1);
    }
    54% {
      top: 25%;
      transform: scale(0.9, 1);
    }
    60% {
      top: calc(25% + 10px);
      transform: scale(1.04, 1);
    }
    70% {
      width: 60px;
      height: 60px;
      top: 25%;
      left: 65%;
      transform: scale(0.9, 1);
    }
    100% {
      width: 25vw;
      height: 25vw;
      top: 25%;
      left: 55%;
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes bound-animDB {
    0% {
      opacity: 0;
      top: 36%;
      transform: scale(1);
    }
    5% {
      opacity: 1;
      top: 36%;
      transform: scale(1);
    }
    23% {
      top: calc(36% + 15px);
      transform: scale(1.04, 1);
    }
    25% {
      transform: scale(1);
    }
    30% {
      top: 36%;
      transform: scale(0.9, 1);
    }
    35% {
      top: calc(36% + 30px);
      transform: scale(1.04, 0.96);
    }
    50% {
      transform: scale(1);
    }
    54% {
      top: 36%;
      transform: scale(0.9, 1);
    }
    60% {
      top: calc(36% + 10px);
      transform: scale(1.04, 1);
    }
    70% {
      width: 60px;
      height: 60px;
      top: 36%;
      left: 19%;
      transform: scale(0.9, 1);
    }
    100% {
      width: 25vw;
      height: 25vw;
      top: 58%;
      left: 9%;
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes bound-animY {
    0% {
      opacity: 0;
      top: 43%;
      transform: scale(1);
    }
    5% {
      opacity: 1;
      top: 43%;
      transform: scale(1);
    }
    23% {
      top: calc(43% + 15px);
      transform: scale(1.04, 1);
    }
    25% {
      transform: scale(1);
    }
    30% {
      top: 43%;
      transform: scale(0.9, 1);
    }
    35% {
      top: calc(43% + 30px);
      transform: scale(1.04, 0.96);
    }
    50% {
      transform: scale(1);
    }
    54% {
      top: 43%;
      transform: scale(0.9, 1);
    }
    60% {
      top: calc(43% + 10px);
      transform: scale(1.04, 1);
    }
    70% {
      width: 60px;
      height: 60px;
      top: 43%;
      left: 57%;
      transform: scale(0.9, 1);
    }
    100% {
      width: 25vw;
      height: 25vw;
      top: 65%;
      left: 47%;
      transform: scale(1);
      opacity: 1;
    }
  }
  .page-top .list.is-scroll li:nth-of-type(1) {
    animation: bound-animG 2.5s ease-in-out forwards;
  }
  .page-top .list.is-scroll li:nth-of-type(2) {
    animation: bound-animLB 2.5s ease-in-out forwards;
  }
  .page-top .list.is-scroll li:nth-of-type(3) {
    animation: bound-animDB 2.5s ease-in-out forwards;
  }
  .page-top .list.is-scroll li:nth-of-type(4) {
    animation: bound-animY 2.5s ease-in-out forwards;
  }
  .page-top .list.is-scroll li .listitem_text {
    top: 48%;
    opacity: 1;
  }
  .page-top .list.is-scroll li a {
    bottom: 50px;
    opacity: 1;
    visibility: visible;
  }
  .page-top .news {
    width: calc(100% - 220px);
    margin-left: 220px;
    padding: 110px 5%;
    z-index: 2;
  }
  .page-top .news h2 {
    font-size: 3.4rem;
  }
  .page-top .news ul {
    margin: 0;
    padding: 4% 0 0;
  }
  .page-top .news ul li {
    padding: 3.5% 0;
    display: flex;
  }
  .page-top .news ul li time {
    margin: 4px 50px 0 0;
    color: #666;
  }
  .page-top .news .btn {
    margin-top: 50px;
  }
  .page-top .news .btn a:before {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border: 2px solid #DADADA;
    background-size: 23px 23px;
  }
  .page-lower .glheader {
    display: none;
    padding: 0;
  }
  .page-lower .contents {
    width: calc(100% - 220px);
    margin-left: 220px;
    padding-bottom: calc(300px - 10%);
    background: #fff !important;
  }
  @keyframes bound-healthG {
    0% {
      bottom: 0px;
      transform: scale(1);
      left: calc(50% - 100px);
    }
    10% {
      bottom: 5px;
      transform: scale(1.04, 1);
    }
    15% {
      transform: scale(1);
    }
    20% {
      bottom: 0px;
      left: calc(50% - 100px);
      transform: scale(0.9, 1);
    }
    25% {
      bottom: 20px;
      left: calc(50% - 105px);
      transform: scale(1.04, 0.96);
    }
    35% {
      transform: scale(1);
    }
    40% {
      bottom: 0px;
      left: calc(50% - 120px);
      transform: scale(0.9, 1);
    }
    45% {
      bottom: 5px;
      left: calc(50% - 120px);
      transform: scale(1.04, 1);
    }
    55% {
      transform: scale(1);
    }
    63% {
      bottom: 0px;
      left: calc(50% - 110px);
      transform: scale(0.9, 1);
    }
    77% {
      bottom: 20px;
      transform: scale(1.04, 0.96);
    }
    80% {
      left: calc(50% - 100px);
      transform: scale(1);
    }
    90% {
      bottom: 0px;
      left: calc(50% - 100px);
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0px;
      left: calc(50% - 100px);
      transform: scale(1);
    }
  }
  @keyframes bound-healthLB {
    0% {
      left: calc(50% + 5px);
    }
    30% {
      left: calc(50% + 80px);
    }
    33% {
      left: calc(50% + 82px);
    }
    61% {
      left: calc(50% + 5px);
    }
    62% {
      bottom: 0;
      transform: scale(1);
    }
    65% {
      bottom: 15px;
      transform: scale(1.04, 1);
    }
    68% {
      transform: scale(1);
    }
    72% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    76% {
      bottom: 30px;
      transform: scale(1.04, 0.96);
    }
    80% {
      transform: scale(1);
    }
    90% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0;
      transform: scale(1.04, 1);
      width: 40px;
      height: 40px;
      left: calc(50% + 5px);
    }
  }
  @keyframes bound-healthDB {
    0% {
      left: calc(50% - 175px);
    }
    20% {
      left: calc(50% - 220px);
    }
    40% {
      left: calc(50% - 150px);
    }
    55% {
      left: calc(50% - 160px);
    }
    61% {
      left: calc(50% - 145px);
    }
    62% {
      bottom: 0;
      transform: scale(1);
    }
    65% {
      bottom: 15px;
      transform: scale(1.04, 1);
    }
    68% {
      transform: scale(1);
    }
    72% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    76% {
      bottom: 30px;
      transform: scale(1.04, 0.96);
    }
    80% {
      transform: scale(1);
      left: calc(50% - 145px);
    }
    84% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0;
      transform: scale(1.04, 1);
      left: calc(50% - 175px);
    }
  }
  @keyframes bound-healthY {
    0% {
      left: calc(50% + 160px);
      width: 50px;
      height: 50px;
    }
    40% {
      left: calc(50% + 80px);
    }
    61% {
      left: calc(50% + 80px);
      width: 30px;
      height: 30px;
    }
    62% {
      bottom: 0;
      transform: scale(1);
    }
    65% {
      bottom: 15px;
      transform: scale(1.04, 1);
    }
    68% {
      transform: scale(1);
    }
    72% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    76% {
      bottom: 30px;
      transform: scale(1.04, 0.96);
    }
    80% {
      transform: scale(1);
    }
    84% {
      bottom: 0;
      transform: scale(0.9, 1);
    }
    100% {
      bottom: 0;
      width: 50px;
      height: 50px;
      left: calc(50% + 160px);
    }
  }
  .page-lower .contents .declaration {
    padding: 4vw 4.666vw;
  }
  .page-lower .contents .declaration .txt {
    font-size: 1.8rem;
    text-align: center;
  }
  .page-lower .contents .declaration .txt b {
    width: -moz-max-content;
    width: max-content;
    font-size: 2.2rem;
  }
  .page-lower .hl1 {
    padding: 14% 0 12%;
    font-size: 5rem;
  }
  @keyframes blur {
    0% {
      text-shadow: 0 0 100px #333;
      opacity: 0;
    }
    20% {
      text-shadow: 0 0 90px #333;
    }
    85% {
      opacity: 1;
    }
    100% {
      text-shadow: 0 0 0px #333;
    }
  }
  .page-lower .hl3 {
    margin-top: 12vw;
    margin-bottom: 5vw;
    padding-top: 30px;
    font-size: 2rem;
    line-height: 1.6;
  }
  .page-lower .contents_nav .title {
    margin: 170px 70px 55px;
    padding-top: 35px;
    font-size: 2.6rem;
    color: #333;
    border-top-color: #333;
  }
  .page-lower .contents_list {
    margin: 0;
    padding: 0 40px 0 100px;
  }
  .page-lower .contents_list li {
    width: 49.28vw;
    margin: 0 0 75px;
    font-size: 2.2rem;
    float: right;
  }
  .page-lower .contents_list li:nth-child(odd) {
    margin: 0 0 75px;
    float: left;
  }
  .page-lower .contents_list li:nth-child(odd) a {
    border-radius: 40px 40px 0 40px;
  }
  .page-lower .contents_list li a {
    min-height: auto;
    padding: 40px 8%;
    font-weight: normal;
    border-radius: 40px 40px 40px 0;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease-out, background-color 0.3s ease-in, color 0.3s;
  }
  .page-lower .contents_list li a::before {
    width: 3vw;
    height: 3vw;
    margin-right: 3vw;
    transition: border-color 0.3s;
  }
  .page-lower .contents_list li a::after {
    margin-right: 3.7vw;
    transition: background-image 0.3s;
  }
  .page-lower .contents_list li a:hover {
    transform: scale(1.05);
    color: #fff;
  }
  .page-lower .contents_list li a:hover::before {
    border-color: #fff;
  }
  .page-lower .contents_list li a:hover::after {
    background-image: url(../images/common/ico_arrow_w.svg);
  }
  .page-lower .contents_list li.nolink {
    min-height: auto;
    padding: 25px 8%;
    font-weight: normal;
    border-radius: 40px 40px 40px 0;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .page-lower .contents_list li.nolink .cmingsoon {
    padding-left: 1.3em;
    font-size: 1.6rem;
    transition: color 0.7s;
  }
  .page-lower .contents_list li.nolink .cmingsoon::before {
    transition: width 0.5s, border-radius 0.2s;
  }
  .page-lower .contents_list li.nolink:hover .cmingsoon {
    color: #fff;
  }
  .page-lower .contents_list li.nolink:hover .cmingsoon::before {
    width: calc(100% + 1.2em);
    border-radius: 20px;
  }
  .page-lower.-type_green .contents_list li a:hover {
    background-color: #518C4D;
  }
  .page-lower.-type_lblue .contents_list li a:hover {
    background-color: #00A5E3;
  }
  .page-lower.-type_dblue .contents_list li a:hover {
    background-color: #0086CD;
  }
  .page-lower.-type_yellow .contents_list li a:hover {
    background-color: #FFD900;
  }
  .page-lower.-type_green .contents_list2 li a:hover {
    background-color: #518C4D;
  }
  .page-lower.-type_lblue .contents_list2 li a:hover {
    background-color: #00A5E3;
  }
  .page-lower.-type_dblue .contents_list2 li a:hover {
    background-color: #0086CD;
  }
  .page-lower.-type_yellow .contents_list2 li a:hover {
    background-color: #FFD900;
  }
  .page-lower.page-interview .contents__detail {
    margin: 0 35px;
    padding: 60px;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .page-lower.page-interview .contents__detail img {
    margin: 0 auto;
  }
  .page-lower.page-interview .contents__detail .readtxt {
    margin: 20px 0 60px;
    font-size: 1.8rem;
    text-align: center;
  }
  .page-lower.page-interview .contents__detail .profile {
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-lower.page-interview .contents__detail .profile.type-3p {
    padding: 40px 10px;
  }
  .page-lower.page-interview .contents__detail .profile.type-3p .person {
    width: 33%;
  }
  .page-lower.page-interview .contents__detail .profile.type-4p {
    padding: 40px 10px;
  }
  .page-lower.page-interview .contents__detail .profile.type-4p .person {
    width: 25%;
  }
  .page-lower.page-interview .contents__detail .profile.type-4p .person .thumb {
    max-width: 160px;
    width: 80% !important;
    height: auto !important;
  }
  .page-lower.page-interview .contents__detail .profile.type-4p .person .thumb img {
    width: 100%;
    border-radius: 500px;
  }
  .page-lower.page-interview .contents__detail .profile .person {
    width: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .page-lower.page-interview .contents__detail .profile .person .thumb {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
  }
  .page-lower.page-interview .contents__detail .profile .person .text {
    width: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .page-lower.page-interview .contents__detail .profile .person .text .corp {
    min-height: 3em;
    margin-bottom: 10px;
  }
  .page-lower.page-interview .contents__detail .profile .person .text .join {
    margin-top: 5px;
    margin-top: auto;
  }
  .page-lower.page-interview .contents__detail .profile .person .text .name {
    margin-top: 5px;
    font-size: 1.8rem;
  }
  .page-lower.page-interview .contents__detail .profile .person .text .from {
    line-height: 1;
  }
  .page-lower.page-interview .contents__detail .profile .person .text .stxt {
    margin-top: 10px;
    font-size: 90%;
    min-height: 4em;
  }
  .page-lower.page-interview .contents__detail .profile .person .job {
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .page-lower.page-interview .contents__detail .profile .person:not(:first-child) {
    margin-top: 0;
    padding-top: 0;
    border-left: 1px solid #999999;
    border-top: none;
  }
  .page-lower.page-interview .contents__detail .projectlist {
    max-width: 640px;
    margin: 60px auto 0;
  }
  .page-lower.page-interview .contents__detail .projectlist.swiper .swiper-slide img {
    width: 640px;
    height: auto;
    margin: auto;
  }
  .page-lower.page-interview .contents__detail .txt_foreword {
    margin-top: 50px;
  }
  .page-lower.page-interview .contents__detail .interview .hl3 {
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .page-lower.page-interview .contents__detail .interview .txt_q {
    margin-top: 35px;
    margin-bottom: 20px;
  }
  .page-lower.page-interview .contents__detail .interview .txt_a {
    display: flex;
    margin-bottom: 20px;
  }
  .page-lower.page-interview .contents__detail .interview .txt_a .name {
    margin-right: 5px;
    margin-bottom: 10px;
    font-size: 1.8rem;
    white-space: nowrap;
  }
  .page-lower.page-interview .contents__detail .interview .txt_a .name::before {
    width: 0.9em;
    height: 0.9em;
  }
  .page-lower.page-interview .contents__detail .interview .img {
    margin: 60px auto;
    max-width: 750px;
  }
  .page-lower.page-interview .contents__detail .interview .img .caption {
    margin-top: 5px;
  }
  .page-lower.page-interview .contents .relationship {
    padding-bottom: 20px;
  }
  .page-lower.page-interview .contents .relationship .title {
    margin: 0 70px 55px;
    padding-top: 55px;
    font-size: 2.6rem;
    color: #333;
    border-top: 1px solid #333;
  }
  .page-lower.page-interview .contents .relationship .relationship_list {
    justify-content: center;
    margin: 0 70px;
  }
  .page-lower.page-interview .contents .relationship .relationship_list li {
    width: 30%;
    margin: 0 20px;
    border: 1px solid #333333;
  }
  .page-lower.page-interview .contents .relationship .relationship_list li a {
    padding: 25px 10px;
    transition: scale 0.3s;
  }
  .page-lower.page-interview .contents .relationship .relationship_list li a img {
    transform: scale(1);
    transition: all 0.3s;
  }
  .page-lower.page-interview .contents .relationship .relationship_list li a:hover img {
    transform: scale(1.15);
  }
  .page-lower.page-interview .contents .contents_nav .title {
    margin: 50px 70px 55px;
    padding-top: 80px;
    font-size: 2.6rem;
    color: #333;
    border-top-color: #333;
  }
  .page-lower.page-interview .contents .contents_list li {
    margin-bottom: 45px;
  }
  .page-lower.page-office .photolist {
    display: flex;
    gap: 20px;
    margin: 20px 0 40px;
    padding: 0;
  }
  .page-lower.page-office .photolist li {
    width: calc(50% - 20px);
  }
  .page-lower.page-office .photo {
    margin: 80px auto 0;
    text-align: center;
  }
  .page-lower.page-office .photo img {
    margin: auto;
  }
  .page-lower .glfooter {
    margin-left: 220px;
    padding: 20px 0 55px;
  }
  /*------------------*/
  .topPage #report ul {
    gap: 0 !important;
  }
  .topPage #report ul li {
    width: 31% !important;
    margin-right: 3.5%;
  }
  .topPage #report ul li:nth-child(n+4) {
    margin-top: 3.5%;
  }
}
@media screen and (min-width: 1080px) {
  .page-top .read.is-scroll .inner_top {
    width: clamp(980px, 77.14vw, 1080px);
    height: clamp(980px, 77.14vw, 1080px);
    padding: 100px 150px 0;
    left: 0;
  }
}
@media screen and (min-width: 1400px) {
  .page-top .read.is-scroll .inner_top {
    width: clamp(980px, 77.14vw, 1180px);
    height: clamp(980px, 77.14vw, 1180px);
    padding: 200px 200px 0;
    left: 0;
  }
  .page-top .list {
    padding-bottom: 16vw;
  }
}
.interview01 .contents_list2 .no01 {
  display: none;
}

.interview02 .contents_list2 .no02 {
  display: none;
}

.interview03 .contents_list2 .no03 {
  display: none;
}

.interview04 .contents_list2 .no04 {
  display: none;
}

.interview05 .contents_list2 .no05 {
  display: none;
}

.interview06 .contents_list2 .no06 {
  display: none;
}

.interview07 .contents_list2 .no07 {
  display: none;
}

.interview08 .contents_list2 .no08 {
  display: none;
}

.interview09 .contents_list2 .no09 {
  display: none;
}

.interview10 .contents_list2 .no10 {
  display: none;
}

.interview11 .contents_list2 .no11 {
  display: none;
}

.interview12 .contents_list2 .no12 {
  display: none;
}

.interview13 .contents_list2 .no13 {
  display: none;
}

.interview14 .contents_list2 .no14 {
  display: none;
}

.interview15 .contents_list2 .no15 {
  display: none;
}

.interview16 .contents_list2 .no16 {
  display: none;
}

.interview17 .contents_list2 .no17 {
  display: none;
}

.interview18 .contents_list2 .no18 {
  display: none;
}

.interview19 .contents_list2 .no19 {
  display: none;
}

.interview20 .contents_list2 .no20 {
  display: none;
}/*# sourceMappingURL=style.css.map */