@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

body {
  color: #000;
}

@media screen and (min-width: 768px) {
  .logo {
    padding-left: 5%;
  }
  .logo a {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .logo a:hover {
    opacity: .6;
  }
  .logo img {
    max-width: 72px;
  }
  .scroll_head {
    -webkit-transition: 0s;
    transition: 0s;
  }
  .scroll_head .logo {
    padding-left: 0;
  }
  .scroll_head .logo img {
    max-width: 56px;
    padding-left: 0;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
  .index_header {
    padding-bottom: 20px;
  }
  footer .logo {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .logo img {
    max-width: 45px;
  }
  .fv {
    padding-top: 100px;
  }
}

.line_btn {
  background: #3EC755;
  color: #fff;
  font-weight: bold;
  border: 1px solid #3EC755;
  -webkit-transition: .3s;
  transition: .3s;
}

.line_btn:hover {
  background: #fff;
  color: #3EC755;
}

.btn {
  min-width: 200px;
}

.bnr a {
  display: block;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .bnr a {
    margin-bottom: 20px;
  }
}

.bnr a:last-child {
  margin-bottom: 0;
}

.navi_main .navi a {
  position: relative;
}

.navi_main .navi a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.navi_main .navi a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header {
  background: transparent;
}

.header.scroll_head {
  background: #fff;
  -webkit-transition: 0s;
  transition: 0s;
}

.top-bg,
.voice {
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

.top-bg .fv,
.voice .fv {
  background: transparent;
}

.top-bg .about,
.voice .about {
  background: transparent;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes gradationTest {
  0% {
    background-color: #7285ae;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #b6c6e2;
  }
  100% {
    background-color: #7285ae;
  }
}

@-webkit-keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
}

@keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
}

@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    padding-bottom: 0;
  }
}

.fv .wrap::before {
  content: '';
  background-image: url(../img/stamp.svg);
  background-repeat: no-repeat;
  width: 21%;
  height: 40%;
  display: block;
  position: absolute;
  top: 16%;
  right: -15%;
  z-index: 1;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.fv .swiper-container {
  width: 100%;
}

.fv .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fv .img-wrap {
  position: relative;
  padding-top: 52%;
  width: 100%;
}

.fv .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 70px 0 70px 0;
}

@media screen and (max-width: 767px) {
  .fv .img-wrap img {
    border-radius: 30px 0 30px 0;
  }
}

.about {
  padding-bottom: 12vw;
}

@media screen and (min-width: 768px) {
  .about {
    padding-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 23vw;
  }
}

.service {
  padding-top: 9vw;
  padding-bottom: 5vw;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 15vw;
  }
}

.h_line:after {
  width: 100%;
  margin-left: 2rem;
}

.service:before {
  background: url(../img/wave1.svg) no-repeat center center/cover;
  top: -7vw;
  padding-top: 7.835504886%;
}

@media screen and (max-width: 767px) {
  .service:before {
    top: -23vw;
    padding-top: 27.2727272727%;
  }
}

.top-voice {
  position: relative;
  padding-top: 19vw;
}

@media screen and (max-width: 767px) {
  .top-voice {
    padding-top: 35vw;
  }
}

.top-voice::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 7.835504886%;
  background: url(../img/wave2.svg) no-repeat center center/cover;
  top: -2px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top-voice::before {
    top: -1px;
    padding-top: 27.2727272727%;
  }
}

h2 small {
  margin-top: 0;
}

.btn_area {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .btn_area {
    margin-top: 40px;
  }
}

h2 b {
  color: #FFFBA6;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}

.more {
  color: #000;
  font-size: 28px;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  border-bottom: 2px solid #000;
}

.more:hover {
  -webkit-transition: .3s;
  transition: .3s;
}

.more:hover::before {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateY(-50%) scale(1.2);
          transform: translateY(-50%) scale(1.2);
}

.more::before {
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background: #FFFBA6;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  left: -20px;
  z-index: -1;
}

.more::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #000;
}

@media screen and (max-width: 767px) {
  .more {
    font-size: 20px;
  }
}

.h_line2 b {
  color: #BAEDFF;
}

.line_btn {
  letter-spacing: 1px;
}

.service .item figure img {
  border-radius: 50%;
}

footer address dl dd {
  font-size: 14px;
}

footer .col {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .logo {
  margin-bottom: 0;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  footer .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

footer .wrap2 {
  max-width: 1000px;
}

.bnr .popular-release {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 24px 0;
}

.bnr a {
  -webkit-transition: .3s;
  transition: .3s;
}

.bnr a:hover {
  opacity: .6;
}

@media screen and (min-width: 768px) {
  .bnr {
    padding: 100px 0;
  }
}

.bnr .wrap2 {
  max-width: 1000px;
}

.bottom-dd a {
  border-bottom: 1px solid #000;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 13px;
  margin-right: 13px;
}

.bottom-dd a:hover {
  opacity: .6;
}

.bottom-dd a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .bottom-dd a {
    font-size: 13px;
    margin-right: 13px;
  }
  .bottom-dd a:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .bottom-dd a {
    font-size: 12px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer address dl dd {
    white-space: wrap;
  }
  footer address dl dd {
    text-align: left;
  }
  .bottom-dd {
    margin-top: 20px;
  }
  footer .copyright {
    font-size: 2.5vw;
  }
  .header {
    padding-top: 10px;
  }
  footer {
    padding-top: 30px;
  }
}

.page_header {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .page_header {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .page_header {
    padding-bottom: 20px;
  }
  .page_header main {
    padding-top: 91px;
  }
  .page_header .logo {
    padding-left: 0;
  }
  .page_header .logo img {
    max-width: 56px;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
}

.page_visual {
  background: #7285ae;
  color: #fff;
}

.page_visual article h1 b {
  color: #FFFBA6;
}

.about_intro .h_line {
  font-weight: 600;
  font-size: 2.7rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 850px) {
  .about_intro .h_line {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about_intro .h_line {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 360px) {
  .about_intro .h_line {
    font-size: 1.35rem;
  }
}

.about_intro .h_line span {
  width: 75%;
}

@media screen and (max-width: 767px) {
  .about_intro .h_line span {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about_intro .h_line:after {
    margin-left: 0em;
    width: 22%;
    height: 1.5px;
    position: relative;
    top: 35px;
  }
  .breadcrumb {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 850px) {
  .wrap2 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .wrap2 {
    padding: 0;
  }
}

body,
html {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  .about_intro .h_line:after {
    display: none;
  }
}

.page_link a:before {
  color: #7285ae;
}

@media screen and (min-width: 768px) {
  .about_intro .photo_img {
    margin-top: 120px;
  }
  .media_box article h3 {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .about_intro p + .photo_img::before {
    padding-top: 31%;
  }
}

.blue {
  color: #7285ae;
}

.yellow {
  color: #FFFBA6;
}

.media_box .photo_img:before {
  padding-top: 68.5%;
}

.media_box .photo_img img {
  border-radius: 68px;
}

@media screen and (min-width: 768px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 26px;
  }
  .message {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 20px;
  }
}

.active-section {
  margin-bottom: 200px;
}

@media screen and (max-width: 767px) {
  .active-section {
    margin-bottom: 40px;
  }
}

.profile {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 768px) {
  .profile .photo_img2 {
    width: 65vw;
    margin-bottom: 37px;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

@media screen and (max-width: 767px) {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .profile .photo_img2 {
    width: 95vw;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

.message {
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

@media screen and (min-width: 768px) {
  .message p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .message p {
    text-align: left;
  }
}

.staff .media_box .photo_img img {
  border-radius: 86px;
}

@media screen and (min-width: 768px) {
  .profile .text {
    margin-left: 0vw;
    max-width: 577px;
    margin: 0 auto;
  }
  .profile .photo_img:before {
    padding-top: 49%;
  }
  .profile .photo_img {
    width: 75vw;
  }
  .dl_table dl dt {
    width: 5em;
  }
}

.dl_table {
  font-weight: 500;
}

.company {
  background: -webkit-gradient(linear, left top, right top, from(#7285ae), color-stop(60%, #7285ae), to(#b6c6e2));
  background: linear-gradient(to right, #7285ae 0%, #7285ae 60%, #b6c6e2 100%);
}

@media screen and (max-width: 767px) {
  .staff .media_box .photo_img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .media_box article h3 {
    text-align: center;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    text-align: center;
  }
  .message h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .service .item figure {
    margin-bottom: 10px;
  }
  .service h3 {
    margin-bottom: 40px;
  }
  .service .col {
    margin-bottom: 50px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .service .col .item {
    width: 45%;
    margin-bottom: 20px;
  }
  .service .item p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 360px) {
  .service .item p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.page_visual {
  background: -webkit-gradient(linear, left top, right top, from(#7285ae), color-stop(60%, #7285ae), to(#b6c6e2));
  background: linear-gradient(to right, #7285ae 0%, #7285ae 60%, #b6c6e2 100%);
}

.b-posi article {
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .b-posi .landscape {
    margin: 0;
    margin-bottom: 57px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box article {
    width: 48%;
  }
}

.b-posi .media_box.photo_right .photo_img3 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 50%;
    margin: 0 auto 20px;
  }
}

.b-posi .media_box.photo_right .photo_img3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #b6c6e2;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3::before {
    width: 250px;
    height: 250px;
  }
}

.b-posi .media_box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .page_service .landscape:before {
    padding-top: 31%;
  }
}

.page_service .h3Title {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .page_service .h3Title {
    font-size: 20px;
  }
}

.b-posi .item figcaption {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .b-posi .item figcaption {
    font-size: 18px;
  }
}

.b-posi {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .b-posi {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .attention {
    margin-top: 20px;
  }
}

.vision {
  padding: 100px 0;
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

@media screen and (max-width: 767px) {
  .vision {
    padding: 50px 0;
  }
}

.vision h2 {
  font-size: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .vision h2 {
    font-size: 20px;
  }
}

.vision .row {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .vision .row {
    margin-bottom: 30px;
  }
}

.vision .row:last-child {
  margin-bottom: 0;
}

.vision h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .vision h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.vision .wrap2 {
  max-width: 900px;
}

.cta2 {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .cta2 {
    padding: 50px 0;
  }
}

.cta2 .btn2 {
  text-align: center;
}

.cta2 .btn2 a {
  font-size: 18px;
  font-weight: 600;
  background: #3EC755;
  text-align: center;
  padding: 20px 40px;
  border: 1px solid #3EC755;
  color: #fff;
  border-radius: 20px;
  display: block;
  max-width: 386px;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.cta2 .btn2 a:hover {
  background: #fff;
  color: #3EC755;
}

@media screen and (min-width: 768px) {
  p {
    line-height: 2.2;
  }
  .page_voice .item {
    margin-bottom: 50px;
  }
  .page_voice .col_3 > * {
    margin-right: 28px;
    margin-left: 0px;
    width: calc(33.33333% - 28px * 2/3);
  }
  .page_voice .col_3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

.page_voice .item .photo_img {
  margin-bottom: 10px;
}

.page_voice .item time {
  margin-bottom: 5px;
}

.page_voice .item h2 {
  font-size: 17px;
  margin-bottom: 0;
}

.single {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .single {
    padding-bottom: 50px;
  }
}

.single .movie-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比 (高さ / 幅 * 100) */
  height: 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .single .movie-wrap {
    margin-bottom: 20px;
  }
}

.single iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .single iframe {
    border-radius: 15px;
  }
}

.single h1 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single h1 {
    margin-bottom: 20px;
  }
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #7285ae;
  font-size: 24px;
  margin-bottom: 60px;
  margin-top: 40px;
  color: #7285ae;
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.single .h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single .h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #000;
  font-size: 20px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.single h3,
.single h4,
.single h5,
.single h6 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single h3,
  .single h4,
  .single h5,
  .single h6 {
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single p {
    font-size: 14px;
  }
}

.single ul li {
  list-style: inside;
}

.single .contents {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .single .contents {
    margin-bottom: 40px;
  }
}

.single .contents a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.single .contents a:hover {
  opacity: .6;
}

.single .thumbnail img {
  width: 100%;
  height: auto;
}

.pagenation .p-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagenation a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagenation a:hover {
  opacity: .6;
}

.pagenation .center a {
  background: #F1EB77;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 15px;
  position: relative;
  top: -3px;
}

.pagenation .p-item {
  width: 55px;
  margin: 0 15px;
  min-width: 55px;
}

.pagenation .p-item a,
.pagenation .p-item span {
  width: 55px;
  min-width: 55px;
}

.pagenation .p-item span {
  opacity: 0;
}

.media-cateogry {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .media-cateogry {
    padding-bottom: 50px;
  }
}

.pagenation2 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .pagenation2 {
    margin-top: 40px;
  }
}

.media-cateogry .category-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area {
    display: block;
    margin-bottom: 20px;
  }
}

.media-cateogry .category-area .category-title {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area .category-title {
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.media-cateogry .category-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.media-cateogry .category-items .c-item {
  margin-right: 20px;
  margin-bottom: 20px;
}

.media-cateogry .category-items .c-item a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .category-items .c-item a:hover {
  opacity: .6;
}

.media-cateogry .ul-lists li {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #000;
}

.media-cateogry .ul-lists li:first-child {
  border-top: 1px solid #000;
}

.media-cateogry .ul-lists li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex {
    display: block;
  }
}

.media-cateogry .ul-lists li .flex .left {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .left {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

.media-cateogry .ul-lists li .flex .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .right {
    display: block;
    width: 100%;
  }
}

.media-cateogry .ul-lists li a {
  font-size: 16px;
  font-weight: 500;
}

.media-cateogry .ul-lists li .time {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .time {
    width: 100%;
    margin-bottom: 7px;
  }
}

.media-cateogry .ul-lists li .ul-title {
  width: calc(100% - 120px);
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-title {
    width: 100%;
    margin-bottom: 5px;
  }
}

.media-cateogry .ul-lists li .ul-category {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-category {
    margin-bottom: 10px;
  }
}

.media-cateogry .ul-lists li .ul-btn {
  text-align: right;
}

.media-cateogry .ul-lists li .ul-btn a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .ul-lists li .ul-btn a:hover {
  opacity: .6;
}

.privacy {
  padding: 100px 0;
}

.privacy h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .privacy {
    padding: 50px 0;
  }
}

.privacy p {
  font-size: 14px;
}

body {
  -webkit-animation: fadein 3s forwards;
          animation: fadein 3s forwards;
  opacity: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .dl_table dl dd {
    width: calc(100% - 6em);
  }
}

.pagenation2 .pagination a,
.pagenation2 .pagination span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .pagenation2 .pagination a,
  .pagenation2 .pagination span {
    margin: 0 5px;
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.pagenation2 .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single p {
  min-height: 20px;
}

@media screen and (max-width: 767px) {
  .navi_main .navi a:hover::after {
    display: none;
  }
}

/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

body {
  color: #000;
}

@media screen and (min-width: 768px) {
  .logo {
    padding-left: 5%;
  }
  .logo a {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .logo a:hover {
    opacity: .6;
  }
  .logo img {
    max-width: 72px;
  }
  .scroll_head {
    -webkit-transition: 0s;
    transition: 0s;
  }
  .scroll_head .logo {
    padding-left: 0;
  }
  .scroll_head .logo img {
    max-width: 56px;
    padding-left: 0;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
  .index_header {
    padding-bottom: 20px;
  }
  footer .logo {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .logo img {
    max-width: 45px;
  }
  .fv {
    padding-top: 100px;
  }
  .index_header {
    background-color: #fff !important;
  }
}

.line_btn {
  background: #3EC755;
  color: #fff;
  font-weight: bold;
  border: 1px solid #3EC755;
  -webkit-transition: .3s;
  transition: .3s;
}

.line_btn:hover {
  background: #fff;
  color: #3EC755;
}

.btn {
  min-width: 200px;
}

.navi_main .navi a {
  position: relative;
}

.navi_main .navi a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.navi_main .navi a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header {
  background: transparent;
}

.header.scroll_head {
  background: #fff;
  -webkit-transition: 0s;
  transition: 0s;
}

.top-bg,
.voice {
  /* background-color: #7285ae; */
  /* -webkit-animation: gradationTest 13s infinite;
  animation: gradationTest 13s infinite; */
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
  position: relative;
}

.top-bg .fv,
.voice .fv {
  background: transparent;
}

.top-bg .about,
.voice .about {
  background-color: transparent;
}

@-webkit-keyframes gradationTest {
  0% {
    background-color: #7285ae;
  }
  25% {
    background-color: #c6e4e4;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c6e4e4;
  }
  100% {
    background-color: #7285ae;
  }
}

@keyframes gradationTest {
  0% {
    background-color: #7285ae;
  }
  25% {
    background-color: #c6e4e4;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c6e4e4;
  }
  100% {
    background-color: #7285ae;
  }
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}

/* @-webkit-keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
}

@keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
} */
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    padding-bottom: 0;
  }
}

.top-bg .fv .wrap::before {
  content: '';
  background-image: url(../img/stamp.svg);
  background-repeat: no-repeat;
  width: 21%;
  height: 40%;
  display: block;
  position: absolute;
  top: 16%;
  right: -15%;
  z-index: 1;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.fv .swiper-container {
  width: 100%;
}

.fv .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fv .img-wrap {
  position: relative;
  padding-top: 52%;
  width: 100%;
}

.fv .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 70px 0 70px 0;
}

@media screen and (max-width: 767px) {
  .fv .img-wrap img {
    border-radius: 30px 0 30px 0;
  }
}

.about {
  padding-bottom: 12vw;
}

@media screen and (min-width: 768px) {
  .about {
    padding-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 23vw;
  }
}

.service {
  padding-top: 9vw;
  padding-bottom: 5vw;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 15vw;
  }
}

.h_line:after {
  width: 100%;
  margin-left: 2rem;
}

.service:before {
  background: url(../img/wave1.svg) no-repeat center center/cover;
  top: -7vw;
  padding-top: 7.835504886%;
}

@media screen and (max-width: 767px) {
  .service:before {
    top: -23vw;
    padding-top: 27.2727272727%;
  }
}

.top-voice {
  position: relative;
  padding-top: 19vw;
}

@media screen and (max-width: 767px) {
  .top-voice {
    padding-top: 35vw;
  }
}

.top-voice::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 7.835504886%;
  background: url(../img/wave2.svg) no-repeat center center/cover;
  top: -2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top-voice::before {
    top: -1px;
    padding-top: 27.2727272727%;
  }
}

h2 small {
  margin-top: 0;
}

.btn_area {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .btn_area {
    margin-top: 40px;
  }
}

h2 b {
  color: #FFFBA6;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}

.more {
  color: #000;
  font-size: 28px;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  border-bottom: 2px solid #000;
}

.more:hover {
  -webkit-transition: .3s;
  transition: .3s;
}

.more:hover::before {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateY(-50%) scale(1.2);
  transform: translateY(-50%) scale(1.2);
}

.more::before {
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  background: #FFFBA6;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  left: -20px;
  z-index: -1;
}

.more::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #000;
}

@media screen and (max-width: 767px) {
  .more {
    font-size: 20px;
  }
}

.h_line2 b {
  color: #BAEDFF;
}

.line_btn {
  letter-spacing: 1px;
}

.service .item figure img {
  border-radius: 50%;
}

footer address dl dd {
  font-size: 14px;
}

footer .col {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .logo {
  margin-bottom: 0;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  footer .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

footer .wrap2 {
  max-width: 1000px;
}

.bnr .popular-release {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 24px 0;
}

.bnr a {
  -webkit-transition: .3s;
  transition: .3s;
}

.bnr a:hover {
  opacity: .6;
}

@media screen and (min-width: 768px) {
  .bnr {
    padding: 100px 0;
  }
}

.bnr .wrap2 {
  max-width: 1000px;
}

.bottom-dd a {
  border-bottom: 1px solid #000;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 13px;
  margin-right: 13px;
}

.bottom-dd a:hover {
  opacity: .6;
}

.bottom-dd a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .bottom-dd a {
    font-size: 13px;
    margin-right: 13px;
  }
  .bottom-dd a:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .bottom-dd a {
    font-size: 12px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer address dl dd {
    white-space: wrap;
  }
  footer address dl dd {
    text-align: left;
  }
  .bottom-dd {
    margin-top: 20px;
  }
  footer .copyright {
    font-size: 2.5vw;
  }
  .header {
    padding-top: 10px;
  }
  footer {
    padding-top: 30px;
  }
}

.page_header {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .page_header {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .page_header {
    padding-bottom: 20px;
  }
  .page_header main {
    padding-top: 91px;
  }
  .page_header .logo {
    padding-left: 0;
  }
  .page_header .logo img {
    max-width: 56px;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
}

.page_visual {
  background: #7285ae;
  color: #fff;
}

.page_visual article h1 b {
  color: #FFFBA6;
}

.about_intro .h_line {
  font-weight: 600;
  font-size: 2.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 850px) {
  .about_intro .h_line {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about_intro .h_line {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 360px) {
  .about_intro .h_line {
    font-size: 1.35rem;
  }
}

.about_intro .h_line span {
  width: 75%;
}

@media screen and (max-width: 767px) {
  .about_intro .h_line span {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about_intro .h_line:after {
    margin-left: 0em;
    width: 22%;
    height: 1.5px;
    position: relative;
    top: 35px;
  }
  .breadcrumb {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 850px) {
  .wrap2 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .wrap2 {
    padding: 0;
  }
}

body,
html {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  .about_intro .h_line:after {
    display: none;
  }
}

.page_link a:before {
  color: #7285ae;
}

@media screen and (min-width: 768px) {
  .about_intro .photo_img {
    margin-top: 120px;
  }
  .media_box article h3 {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .about_intro p + .photo_img::before {
    padding-top: 31%;
  }
}

.blue {
  color: #7285ae;
}

.yellow {
  color: #FFFBA6;
}

.media_box .photo_img:before {
  padding-top: 68.5%;
}

.media_box .photo_img img {
  border-radius: 68px;
}

@media screen and (min-width: 768px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 26px;
  }
  .message {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 20px;
  }
}

.active-section {
  margin-bottom: 200px;
}

@media screen and (max-width: 767px) {
  .active-section {
    margin-bottom: 40px;
  }
}

.profile {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 768px) {
  .profile .photo_img2 {
    width: 65vw;
    margin-bottom: 37px;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

/* @media screen and (max-width: 767px) {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
} */
@media screen and (max-width: 767px) {
  .profile .photo_img2 {
    width: 95vw;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

.message {
  /* background-color: #7285ae;
  -webkit-animation: gradationTest2 7s infinite;
  animation: gradationTest2 7s infinite; */
  background: linear-gradient(45deg, #ecffff 30%, #cce3e4, #b0c4ea);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

@media screen and (min-width: 768px) {
  .message p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
  }
  .message-name {
    text-align: right !important;
    margin-top: 48px;
  }
  .br-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .message p {
    text-align: left;
  }
  .message-name {
    text-align: right !important;
    margin-top: 32px;
  }
  .br-sp {
    display: block;
  }
}

/* @media screen and (max-width: 767px) {
  .message p {
    text-align: left;
  }
} */
.staff .media_box .photo_img img {
  border-radius: 86px;
}

@media screen and (min-width: 768px) {
  .profile .text {
    margin-left: 0vw;
    max-width: 577px;
    margin: 0 auto;
  }
  .profile .photo_img:before {
    padding-top: 49%;
  }
  .profile .photo_img {
    width: 75vw;
  }
  .dl_table dl dt {
    width: 5em;
  }
}

.dl_table {
  font-weight: 500;
}

.company {
  background: -webkit-gradient(linear, left top, right bottom, from(#7285ae), color-stop(60%, #7285ae), to(#b6c6e2));
  background: linear-gradient(to bottom right, #7285ae 0%, #7285ae 60%, #b6c6e2 100%);
}

.company .wrap3 {
  margin-bottom: 64px;
}

.company .wrap3 h3.title,
.company .wrap3 .row h4 {
  text-align: center;
  margin-bottom: 8px;
}

.company .wrap3 h3.title {
  margin-bottom: 32px;
}

.company .wrap3 .row {
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .staff .media_box .photo_img {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .media_box article h3 {
    text-align: center;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    text-align: center;
  }
  .message h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .service .item figure {
    margin-bottom: 10px;
  }
  .service h3 {
    margin-bottom: 40px;
  }
  .service .col {
    margin-bottom: 50px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .service .col .item {
    width: 45%;
    margin-bottom: 20px;
  }
  .service .item p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 360px) {
  .service .item p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.page_visual {
  background: -webkit-gradient(linear, left top, right top, from(#7285ae), color-stop(60%, #7285ae), to(#b6c6e2));
  background: linear-gradient(to right, #7285ae 0%, #7285ae 60%, #b6c6e2 100%);
}

.b-posi article {
  padding: 0;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .b-posi .landscape {
    margin: 0;
    margin-bottom: 57px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box article {
    width: 48%;
  }
}

.b-posi .media_box.photo_right .photo_img3 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 50%;
    margin: 0 auto 20px;
  }
}

.b-posi .media_box.photo_right .photo_img3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #b6c6e2;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3::before {
    width: 250px;
    height: 250px;
  }
}

.b-posi .media_box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (min-width: 768px) {
  .page_service .landscape:before {
    padding-top: 31%;
  }
}

.page_service .h3Title {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .page_service .h3Title {
    font-size: 20px;
  }
}

.b-posi .item figcaption {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .b-posi .item figcaption {
    font-size: 18px;
  }
}

.b-posi {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .b-posi {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .attention {
    margin-top: 20px;
  }
}

.vision {
  /* background-color: #7285ae;
  -webkit-animation: gradationTest2 7s infinite;
  animation: gradationTest2 7s infinite; */
  padding: 100px 0;
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

@media screen and (max-width: 767px) {
  .vision {
    padding: 50px 0;
  }
}

.vision h2 {
  font-size: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .vision h2 {
    font-size: 20px;
  }
}

.vision .row {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .vision .row {
    margin-bottom: 30px;
  }
}

.vision .row:last-child {
  margin-bottom: 0;
}

.vision h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .vision h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.vision .wrap2 {
  max-width: 900px;
}

.cta2 {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .cta2 {
    padding: 50px 0;
  }
}

.cta2 .btn2 {
  text-align: center;
}

.cta2 .btn2 a {
  font-size: 18px;
  font-weight: 600;
  background: #3EC755;
  text-align: center;
  padding: 20px 40px;
  border: 1px solid #3EC755;
  color: #fff;
  border-radius: 20px;
  display: block;
  max-width: 386px;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.cta2 .btn2 a:hover {
  background: #fff;
  color: #3EC755;
}

@media screen and (min-width: 768px) {
  p {
    line-height: 2.2;
  }
  .page_voice .item {
    margin-bottom: 50px;
  }
  .page_voice .col_3 > * {
    margin-right: 28px;
    margin-left: 0px;
    width: calc(33.33333% - 28px * 2/3);
  }
  .page_voice .col_3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

.page_voice .item .photo_img {
  margin-bottom: 10px;
}

.page_voice .item time {
  margin-bottom: 5px;
}

.page_voice .item h2 {
  font-size: 17px;
  margin-bottom: 0;
}

.single {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .single {
    padding-bottom: 50px;
  }
}

.single .movie-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比 (高さ / 幅 * 100) */
  height: 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .single .movie-wrap {
    margin-bottom: 20px;
  }
}

.single iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .single iframe {
    border-radius: 15px;
  }
}

.single h1 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single h1 {
    margin-bottom: 20px;
  }
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #7285ae;
  font-size: 24px;
  margin-bottom: 60px;
  margin-top: 40px;
  color: #7285ae;
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.single .h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single .h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #000;
  font-size: 20px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.single h3,
.single h4,
.single h5,
.single h6 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .single h3,
  .single h4,
  .single h5,
  .single h6 {
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single p {
    font-size: 14px;
  }
}

.single ul li {
  list-style: inside;
}

.single .contents {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .single .contents {
    margin-bottom: 40px;
  }
}

.single .contents a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.single .contents a:hover {
  opacity: .6;
}

.single .thumbnail img {
  width: 100%;
  height: auto;
}

.pagenation .p-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagenation a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagenation a:hover {
  opacity: .6;
}

.pagenation .center a {
  background: #F1EB77;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 15px;
  position: relative;
  top: -3px;
}

.pagenation .p-item {
  width: 55px;
  margin: 0 15px;
  min-width: 55px;
}

.pagenation .p-item a,
.pagenation .p-item span {
  width: 55px;
  min-width: 55px;
}

.pagenation .p-item span {
  opacity: 0;
}

.media-cateogry {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .media-cateogry {
    padding-bottom: 50px;
  }
}

.pagenation2 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .pagenation2 {
    margin-top: 40px;
  }
}

.media-cateogry .category-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area {
    display: block;
    margin-bottom: 20px;
  }
}

.media-cateogry .category-area .category-title {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area .category-title {
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.media-cateogry .category-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media-cateogry .category-items .c-item {
  margin-right: 20px;
  margin-bottom: 20px;
}

.media-cateogry .category-items .c-item a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .category-items .c-item a:hover {
  opacity: .6;
}

.media-cateogry .ul-lists li {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #000;
}

.media-cateogry .ul-lists li:first-child {
  border-top: 1px solid #000;
}

.media-cateogry .ul-lists li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex {
    display: block;
  }
}

.media-cateogry .ul-lists li .flex .left {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .left {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

.media-cateogry .ul-lists li .flex .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .right {
    display: block;
    width: 100%;
  }
}

.media-cateogry .ul-lists li a {
  font-size: 16px;
  font-weight: 500;
}

.media-cateogry .ul-lists li .time {
  width: 120px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .time {
    width: 100%;
    margin-bottom: 7px;
  }
}

.media-cateogry .ul-lists li .ul-title {
  width: calc(100% - 120px);
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-title {
    width: 100%;
    margin-bottom: 5px;
  }
}

.media-cateogry .ul-lists li .ul-category {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-category {
    margin-bottom: 10px;
  }
}

.media-cateogry .ul-lists li .ul-btn {
  text-align: right;
}

.media-cateogry .ul-lists li .ul-btn a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .ul-lists li .ul-btn a:hover {
  opacity: .6;
}

.privacy {
  padding: 100px 0;
}

.privacy h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .privacy {
    padding: 50px 0;
  }
}

.privacy p {
  font-size: 14px;
}

body {
  -webkit-animation: fadein 3s forwards;
  animation: fadein 3s forwards;
  opacity: 0;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .dl_table dl dd {
    width: calc(100% - 6em);
  }
}

.pagenation2 .pagination a,
.pagenation2 .pagination span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .pagenation2 .pagination a,
  .pagenation2 .pagination span {
    margin: 0 5px;
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.pagenation2 .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single p {
  min-height: 20px;
}

@media screen and (max-width: 767px) {
  .navi_main .navi a:hover::after {
    display: none;
  }
}

.staff2 .media_box .photo_img img {
  border-radius: 0;
}

.company .dl_table {
  border-top: 1px solid #fff;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .company .dl_table {
    padding-top: 30px;
  }
}

.company .dl_table dl {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .company .dl_table dl {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

.company .wrap3 {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .company .wrap3 {
    margin-bottom: 3ch;
  }
}

@media screen and (min-width: 768px) {
  .top-bg .fv .wrap::before {
    content: '';
    background-image: url(../img/stamp.svg);
    background-repeat: no-repeat;
    width: 24%;
    height: 46%;
    display: block;
    position: absolute;
    top: 62%;
    right: -12%;
    z-index: 2;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
}

@media screen and (max-width: 767px) {
  .top-bg .fv .wrap::before {
    content: '';
    background-image: url(../img/stamp.svg);
    background-repeat: no-repeat;
    width: 30%;
    height: 62%;
    display: block;
    position: absolute;
    top: 77%;
    right: -5%;
    z-index: 2;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
}

.more {
  border-bottom: 1px solid #000;
}

.more:after {
  display: none;
}

.bnr-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .bnr-flex {
    display: block;
  }
}

.bnr-flex .bnr-item {
  width: 48.5%;
}

@media screen and (max-width: 767px) {
  .bnr-flex .bnr-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .bnr-flex .bnr-item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .bnr .popular-release {
    font-size: 1.6rem;
    margin-bottom: 10px !important;
  }
  .bnr {
    margin-bottom: 46px;
  }
}

@media screen and (min-width: 768px) {
  .bnr .popular-release {
    margin-top: 0;
  }
}

.more {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .more {
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
  }
}

.single .thumbnail img {
  max-height: 500px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .single .thumbnail img {
    max-height: 300px;
    width: auto;
  }
}