@charset "UTF-8";
/*========================================================
colors
========================================================*/
/*========================================================
fonts
========================================================*/
/*========================================================
spacing
========================================================*/
/*========================================================
breakpoint
========================================================*/
/*========================================================
mixin
========================================================*/
@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(20em);
  }
}
/*========================================================
button
========================================================*/
.c-link_btn {
  text-align: center;
}
.c-link_btn .btn {
  width: 300px;
  height: 60px;
  background: linear-gradient(225deg, rgb(234, 81, 75) 0%, rgb(247, 173, 53) 100%);
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  border-radius: 100px;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  .c-link_btn .btn {
    width: 250px;
    height: 50px;
  }
}
.c-link_btn .btn:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -100px;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.c-link_btn .btn:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.c-link_btn .btn:hover:before {
  transform: skewX(-45deg) translateX(500px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--header {
    width: 130px;
    height: 30px;
  }
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--header .txt {
    font-size: 10px;
  }
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--header .arrow {
    width: 20px;
    height: 20px;
    right: 5px;
  }
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--header .arrow:before {
    width: 10px;
    height: 10px;
  }
}
.c-link_btn .btn.--company {
  background: #fff;
  height: 100px;
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--company {
    width: 150px;
    height: 50px;
  }
}
.c-link_btn .btn.--company .txt {
  color: #F29600;
  font-size: 24px;
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--company .txt {
    font-size: 14px;
  }
}
.c-link_btn .btn.--company .arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #F29600;
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--company .arrow {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
.c-link_btn .btn.--company .arrow:before {
  width: 15px;
  height: 15px;
  background-color: #F29600;
}
@media (max-width: 1000px) {
  .c-link_btn .btn.--company .arrow:before {
    width: 10px;
    height: 10px;
  }
}
.c-link_btn .btn.--magazine {
  margin-left: 0;
}
@media (max-width: 1200px) {
  .c-link_btn .btn.--magazine {
    margin: 100px auto 0;
  }
}
.c-link_btn .btn .txt {
  color: #fff;
  padding-right: 20px;
  font-size: 18px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1000px) {
  .c-link_btn .btn .txt {
    font-size: 14px;
  }
}
.c-link_btn .btn .arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
@media (max-width: 1000px) {
  .c-link_btn .btn .arrow {
    width: 30px;
    height: 30px;
    right: 10px;
  }
}
.c-link_btn .btn .arrow:before {
  content: "";
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../../assets/images/common/arrow.svg);
  mask-image: url(../../assets/images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1000px) {
  .c-link_btn .btn .arrow:before {
    width: 10px;
    height: 10px;
  }
}

/*========================================================
ページャー
========================================================*/
.c-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-pager span {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #F29600;
  border: 1px solid #F29600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
  font-weight: normal;
}
@media (max-width: 1000px) {
  .c-pager span {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.c-pager span.current, .c-pager span:hover {
  background: #F29600;
  color: #fff;
}

/*========================================================
display
========================================================*/
.c-display_pc-none {
  display: none !important;
}
@media (max-width: 1000px) {
  .c-display_pc-none {
    display: block !important;
  }
}

@media (max-width: 1200px) {
  .c-display_mac-none {
    display: none !important;
  }
}

.c-display_sp-none {
  display: block !important;
}
@media (max-width: 1000px) {
  .c-display_sp-none {
    display: none !important;
  }
}

/*========================================================
animation
========================================================*/
.js-inview {
  opacity: 0;
  transition: 1s;
}
.js-inview.--bottom_top {
  transform: translateY(100px);
}
.js-inview.--left_right {
  transform: translateX(-100px);
}
.js-inview.--right_left {
  transform: translateX(100px);
}
.js-inview.--delay {
  transition-delay: 0.7s;
}
.js-inview.--delay.--1 {
  transition-delay: 1s;
}
.js-inview.--delay.--2 {
  transition-delay: 1.5s;
}
.js-inview.--delay.--3 {
  transition-delay: 2s;
}
.js-inview.--delay.--4 {
  transition-delay: 1.5s;
}
.js-inview.--show {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/*========================================================
パンくずリスト
========================================================*/
.c-breadcrumb {
  width: 1400px;
  margin: 300px auto 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 5px;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .c-breadcrumb {
    width: 100%;
    margin: 100px auto 0;
    padding: 0 20px 40px;
  }
}
@media (max-width: 1000px) {
  .c-breadcrumb {
    margin: 60px auto 0;
    font-size: 12px;
    border-bottom: 1px solid #ccc;
  }
}
.c-breadcrumb a {
  color: #ccc;
}
.c-breadcrumb h3 {
  color: #000;
}

/*========================================================
header
========================================================*/
header {
  position: relative;
  width: 100%;
  height: 100px;
  opacity: 1;
  transition: 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11111;
}
@media (max-width: 1000px) {
  header {
    height: auto;
  }
}
header.show {
  opacity: 1;
}
header .h-inner {
  padding: 40px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  header .h-inner {
    padding: 10px 20px;
  }
}
header .h-inner.scroll {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(100, 100, 100, 0.5) 100%);
}
header .h-inner_btn {
  width: 30px;
  height: 20px;
  position: relative;
  margin-right: 20px;
  z-index: 11111;
  cursor: pointer;
}
@media (max-width: 1000px) {
  header .h-inner_btn {
    width: 25px;
    height: 16px;
    margin-right: 10px;
  }
}
header .h-inner_btn.close span:nth-child(1) {
  opacity: 0;
}
header .h-inner_btn.close span:nth-child(2) {
  left: 0;
  width: 100%;
  right: auto;
}
header .h-inner_btn.close span:nth-child(3) {
  opacity: 0;
}
header .h-inner_btn.close + .h-inner_logo {
  position: fixed;
  top: auto;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
}
header .h-inner_btn span {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
}
header .h-inner_btn span:nth-child(1) {
  top: 0;
}
header .h-inner_btn span:nth-child(2) {
  width: 70%;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
header .h-inner_btn span:nth-child(3) {
  bottom: 0;
}
header .h-inner_logo {
  z-index: 11111;
  width: 160px;
}
@media (max-width: 1000px) {
  header .h-inner_logo {
    width: 100px;
    transition: 0.3s;
  }
}
header .h-inner nav {
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
  transition: 0.3s;
  z-index: 1111;
}
header .h-inner nav.active {
  top: 0;
}
header .h-inner .h-gnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1000px) {
  header .h-inner .h-gnav {
    top: 60px;
    transform: translateY(0);
  }
}
header .h-inner .h-gnav_item {
  text-align: center;
}
header .h-inner .h-gnav_item + .h-gnav_item {
  margin-top: 40px;
}
header .h-inner .h-gnav_link {
  color: #333;
  transition: 0.3s;
  display: inline-block;
}
header .h-inner .h-gnav_link.--active {
  border-left: 3px solid #F29600;
  padding-left: 10px;
}
header .h-inner .h-gnav_link span {
  display: block;
}
header .h-inner .h-gnav_link span:nth-child(1) {
  font-size: 28px;
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  header .h-inner .h-gnav_link span:nth-child(1) {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
header .h-inner .h-gnav_link span:nth-child(2) {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
}
@media (max-width: 1000px) {
  header .h-inner .h-gnav_link span:nth-child(2) {
    font-size: 16px;
  }
}
header .h-link_btn {
  margin-left: auto;
}
@media (max-width: 1000px) {
  header .h-link_btn {
    width: 130px;
  }
}

/*========================================================
footer
========================================================*/
footer {
  background: #fff;
  padding: 120px 0 40px;
}
@media (max-width: 1200px) {
  footer {
    padding: 100px 20px 20px;
  }
}
@media (max-width: 1000px) {
  footer {
    padding: 60px 20px;
  }
}
footer .f-inner {
  width: 1400px;
  margin: 0 auto 160px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  footer .f-inner {
    width: 100%;
    margin-bottom: 100px;
  }
}
@media (max-width: 1000px) {
  footer .f-inner {
    display: block;
  }
}
@media (max-width: 1000px) {
  footer .f-inner .f-logo {
    text-align: center;
    margin-bottom: 30px;
  }
}
footer .f-inner .f-logo img {
  width: 300px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  footer .f-inner .f-logo img {
    width: 200px;
    margin-bottom: 30px;
  }
}
footer .f-inner .f-logo .f-address {
  margin-bottom: 30px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  footer .f-inner .f-logo .f-address {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1000px) {
  footer .f-inner nav {
    margin-top: 50px;
  }
}
footer .f-inner nav .f-gnav {
  display: flex;
  flex-wrap: wrap;
  width: 400px;
}
@media (max-width: 1000px) {
  footer .f-inner nav .f-gnav {
    width: 100%;
    display: block;
    padding-left: 40px;
  }
}
footer .f-inner nav .f-gnav_item {
  width: 50%;
  margin-bottom: 30px;
}
footer .f-inner nav .f-gnav_link {
  color: #333;
  transition: 0.3s;
  display: block;
}
footer .f-inner nav .f-gnav_link span {
  display: block;
}
footer .f-inner nav .f-gnav_link span:nth-child(1) {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
}
footer .f-inner nav .f-gnav_link span:nth-child(2) {
  font-size: 14px;
  font-weight: normal;
  color: #d6d6d6;
}
footer .copyright {
  text-align: center;
  color: #d6d6d6;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 1000px) {
  footer .copyright {
    font-size: 12px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-weight: 500;
  color: #333;
}

a {
  text-decoration: none;
}

section {
  background: #fff;
}

.s-inner {
  width: 1400px;
  margin: 0 auto;
  padding: 100px 0;
}
@media (max-width: 1440px) {
  .s-inner {
    width: 80%;
  }
}
@media (max-width: 1200px) {
  .s-inner {
    width: 100%;
    padding: 100px 20px;
  }
}
@media (max-width: 1000px) {
  .s-inner {
    padding: 40px 20px;
  }
}
.s-inner.--mv {
  padding: 0;
  width: 100%;
  height: 1080px;
  position: relative;
}
.s-inner.--sub_kv {
  width: 100%;
  padding: 0 0 200px;
}
@media (max-width: 1000px) {
  .s-inner.--sub_kv {
    padding: 0 0 100px;
  }
}
@media (max-width: 1000px) {
  .s-inner.--movement {
    padding: 60px 20px;
  }
}
.s-inner.--loop-slider {
  width: 100%;
  padding: 170px 0 70px;
}
@media (max-width: 1000px) {
  .s-inner.--loop-slider {
    padding: 70px 0;
  }
}
.s-inner.--voice {
  padding: 75px 0;
}
@media (max-width: 1440px) {
  .s-inner.--voice {
    width: 90%;
  }
}
@media (max-width: 1000px) {
  .s-inner.--voice {
    padding: 60px 20px;
  }
}
.s-inner.--open-session {
  width: 100%;
}
.s-inner.--news {
  width: 1000px;
}
@media (max-width: 1000px) {
  .s-inner.--news {
    width: 100%;
  }
}
.s-inner.--page-company {
  padding: 0 0 100px;
}
@media (max-width: 1200px) {
  .s-inner.--page-company {
    padding: 0 20px 50px;
  }
}

.s-page_head {
  width: 100%;
  height: 600px;
  position: relative;
}
@media (max-width: 1000px) {
  .s-page_head {
    height: 240px;
  }
}
.s-page_head:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1000px) {
  .s-page_head.--open-session {
    height: 360px;
  }
}
@media (max-width: 1000px) {
  .s-page_head.--open-session img {
    height: 360px;
  }
}
.s-page_head.--news:before, .s-page_head.--contact:before {
  background: rgba(0, 0, 0, 0.7);
}
.s-page_head.--privacy:before {
  background: none;
}
.s-page_head.--privacy span {
  color: #000;
}
.s-page_head img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1000px) {
  .s-page_head img {
    height: 240px;
  }
}
.s-page_head-ttl {
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  bottom: 60px;
  margin: auto;
  text-align: center;
  color: #fff;
}
.s-page_head-ttl.--open-session {
  transform: translateY(-50%);
  top: 50%;
  right: 13.54%;
  left: auto;
  bottom: auto;
  text-align: right;
}
@media (max-width: 1000px) {
  .s-page_head-ttl.--open-session {
    right: 0;
    text-align: center;
    top: auto;
    left: 0;
    right: 0;
    bottom: 40px;
    transform: translateY(0);
  }
}
.s-page_head-ttl h2 {
  font-size: 48px;
  color: #F29600;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .s-page_head-ttl h2 {
    font-size: 24px;
  }
}
.s-page_head-ttl span {
  display: block;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .s-page_head-ttl span {
    font-size: 14px;
  }
}
.s-page_head-ttl p {
  font-size: 18px;
  margin-top: 70px;
  line-height: 2;
}
@media (max-width: 1000px) {
  .s-page_head-ttl p {
    font-size: 12px;
    margin-top: 30px;
  }
}

.s-category {
  margin-bottom: 50px;
}
.s-category h3 {
  font-size: 18px;
  margin-bottom: 30px;
}
.s-category ul {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .s-category ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.s-category ul li {
  margin-right: 10px;
}
@media (max-width: 1000px) {
  .s-category ul li {
    margin: 0;
  }
}
.s-category ul li a {
  display: block;
  color: #F29600;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #F29600;
  font-size: 14px;
  transition: 0.3s;
}
.s-category ul li a.current, .s-category ul li a:hover {
  color: #fff;
  background: #F29600;
}

.s-font-en {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.s-commingsoon {
  text-align: center;
  font-size: 40px;
}
@media (max-width: 1000px) {
  .s-commingsoon {
    font-size: 24px;
  }
}
.s-commingsoon.--voice {
  color: #fff;
}

#top .kv {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
#top .kv .kv-bg {
  width: 100%;
  height: 1080px;
  background: url(../../assets/images/top/kv_pc.jpg) no-repeat;
  background-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  #top .kv .kv-bg {
    height: 100vh;
  }
}
@media (max-width: 1000px) {
  #top .kv .kv-bg {
    background-size: cover;
  }
}
@media (max-width: 1000px) {
  #top .kv .kv-bg.--pc {
    display: none;
  }
}
@media (max-width: 1000px) {
  #top .kv .kv-bg.--sp {
    display: block;
  }
}
#top .kv .kv-txt {
  position: absolute;
  z-index: 111;
  font-weight: 900;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
  animation-timing-function: ease;
}
#top .kv .kv-txt.slide-top {
  animation-name: slideFromTop;
}
#top .kv .kv-txt.slide-right {
  animation-name: slideFromRight;
}
#top .kv .kv-txt.slide-left {
  animation-name: slideFromLeft;
}
#top .kv .kv-txt.slide-bottom {
  animation-name: slideFromBottom;
}
#top .kv .kv-txt.slide-center {
  animation-name: slideFromCenter;
}
#top .kv .kv-txt.--img01 {
  width: 34.7395833333vw;
  aspect-ratio: 667/263;
  top: 2%;
  left: 20%;
  background-image: url("../../assets/images/top/kv_txt01.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img01 {
    width: 60%;
    top: 20%;
    left: 5%;
  }
}
#top .kv .kv-txt.--img02 {
  width: 37.4479166667vw;
  aspect-ratio: 709/102;
  top: 12%;
  right: 1%;
  background-image: url("../../assets/images/top/kv_txt02.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img02 {
    background-image: url("../../assets/images/top/kv_txt02_sp.png");
    width: 70%;
    top: 9%;
    right: 5%;
  }
}
#top .kv .kv-txt.--img03 {
  width: 26.40625vw;
  aspect-ratio: 507/457;
  top: 16%;
  left: 1%;
  background-image: url("../../assets/images/top/kv_txt03.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img03 {
    top: 45%;
    left: 2%;
    width: 40%;
    background-image: url("../../assets/images/top/kv_txt03_sp.png");
  }
}
#top .kv .kv-txt.--img04 {
  width: 46.4583333333vw;
  aspect-ratio: 892/95;
  bottom: 20%;
  left: 1%;
  background-image: url("../../assets/images/top/kv_txt04.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img04 {
    width: 80%;
    bottom: 5%;
  }
}
#top .kv .kv-txt.--img05 {
  width: 36.0416666667vw;
  aspect-ratio: 692/215;
  bottom: 40%;
  right: 1%;
  background-image: url("../../assets/images/top/kv_txt05.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img05 {
    width: 45%;
    bottom: 23%;
    right: 1%;
  }
}
#top .kv .kv-txt.--img06 {
  width: 41.6666666667vw;
  aspect-ratio: 32/3;
  bottom: 20%;
  right: 1%;
  background-image: url("../../assets/images/top/kv_txt06.png");
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img06 {
    background-image: url("../../assets/images/top/kv_txt06_sp.png");
    width: 90%;
    bottom: 14%;
    right: 3%;
  }
}
#top .kv .kv-txt.--img07 {
  top: 18vh;
  right: 0;
  left: 0;
  margin: auto;
  animation-duration: 3s;
  animation-delay: 0.5s;
  position: absolute;
}
@media (max-width: 1000px) {
  #top .kv .kv-txt.--img07 {
    display: block;
    top: 30%;
    width: 10%;
    padding: 10px;
    background: #000;
  }
}
@keyframes slideFromTop {
  from {
    opacity: 0;
    transform: translateY(-200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(200%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-200%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(200%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideFromCenter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#top .catch {
  background: transparent;
  margin-top: 100vh;
  position: relative;
}
#top .catch:before {
  content: "";
  width: 100%;
  height: 80%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1200px) {
  #top .catch:before {
    height: 90%;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch_01 {
    position: relative;
  }
}
#top .catch .catch_01 img {
  width: 100%;
}
#top .catch-txt {
  font-size: clamp(1.375em, 1.2678571429em + 0.5357142857vw, 1.75em);
  font-weight: bold;
  position: absolute;
  top: 517px;
  left: 10%;
}
@media (max-width: 1440px) {
  #top .catch-txt {
    left: 5%;
  }
}
@media (max-width: 1000px) {
  #top .catch-txt {
    left: 0;
    right: 0;
    text-align: center;
    line-height: 2;
    top: auto;
    bottom: 10%;
  }
}
#top .catch .catch-flex_01 {
  padding: 200px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media (max-width: 1440px) {
  #top .catch .catch-flex_01 {
    padding: 200px 20px;
  }
}
@media (max-width: 1200px) {
  #top .catch .catch-flex_01 {
    padding: 100px 20px;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_01 {
    display: block;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  #top .catch .catch-flex_01-item {
    width: 45%;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_01-item {
    width: 80%;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_01-item + .catch-flex_01-item {
    margin-top: 100px;
  }
}
#top .catch .catch-flex_02 {
  padding: 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 180px;
       column-gap: 180px;
}
@media (max-width: 1440px) {
  #top .catch .catch-flex_02 {
    -moz-column-gap: 100px;
         column-gap: 100px;
    padding: 200px 20px;
  }
}
@media (max-width: 1200px) {
  #top .catch .catch-flex_02 {
    padding: 100px 20px;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_02 {
    display: block;
    padding: 0 20px;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_02-left {
    padding-top: 140px;
    position: relative;
  }
}
#top .catch .catch-flex_02-left:before {
  content: "";
  width: 1px;
  height: 100px;
  background: #333;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#top .catch .catch-flex_02-left_txt {
  font-size: 32px;
  line-height: 2;
  letter-spacing: 10px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_02-left_txt {
    font-size: 18px;
  }
}
#top .catch .catch-flex_02-left_txt:nth-child(2) {
  font-size: 42px;
  text-indent: -24px;
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_02-left_txt:nth-child(2) {
    font-size: 24px;
    text-indent: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#top .catch .catch-flex_02-left_txt:nth-child(2) span {
  color: #F29600;
}
@media (max-width: 1200px) {
  #top .catch .catch-flex_02-item {
    width: 45%;
  }
}
@media (max-width: 1000px) {
  #top .catch .catch-flex_02-item {
    width: 80%;
  }
}
#top .warning {
  background: linear-gradient(270deg, rgb(125, 125, 125) 0%, rgb(177, 177, 177) 100%);
  position: relative;
  color: #fff;
}
@media (max-width: 1000px) {
  #top .warning {
    padding-top: 50px;
    margin-bottom: 150px;
  }
}
#top .warning:after {
  content: "";
  width: 100%;
  height: 150px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -150px;
  display: none;
}
@media (max-width: 1000px) {
  #top .warning:after {
    display: block;
  }
}
#top .warning:before {
  content: "";
  width: 150px;
  height: 150px;
  background: url(../../assets/images/top/warning.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1000px) {
  #top .warning:before {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}
#top .warning .warning-ttl {
  font-size: 48px;
  font-weight: bold;
  position: relative;
  padding: 0 20px;
  background: transparent;
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 1000px) {
  #top .warning .warning-ttl {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
#top .warning .warning-ttl:before, #top .warning .warning-ttl:after {
  content: "";
  width: calc(50% - 200px);
  height: 3px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1000px) {
  #top .warning .warning-ttl:before, #top .warning .warning-ttl:after {
    width: calc(50% - 80px);
    height: 1px;
  }
}
#top .warning .warning-ttl::before {
  left: 0;
}
@media (max-width: 1000px) {
  #top .warning .warning-ttl::before {
    left: -20px;
  }
}
#top .warning .warning-ttl::after {
  right: 0;
}
@media (max-width: 1000px) {
  #top .warning .warning-ttl::after {
    width: calc(50% - 80px);
    right: -20px;
  }
}
#top .warning .warning-flex {
  display: flex;
  justify-content: center;
  -moz-column-gap: 170px;
       column-gap: 170px;
}
@media (max-width: 1200px) {
  #top .warning .warning-flex {
    display: block;
  }
}
#top .warning .warning-flex .warning-flex_item .warning-item_txt {
  font-size: 32px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_txt {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_txt {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1200px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check {
    width: 60%;
    margin: 0 auto 60px;
  }
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check {
    width: 100%;
    margin-bottom: 60px;
  }
}
#top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex {
    align-items: flex-start;
  }
}
@media (min-width: 480px) and (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex {
    justify-content: center;
  }
}
#top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex + .warning-check_flex {
  margin-top: 40px;
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex + .warning-check_flex {
    margin-top: 20px;
  }
}
#top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex img {
  width: 30px;
  height: 30px;
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex img {
    width: 19px;
    height: 19px;
  }
}
#top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex span {
  display: inline-block;
  font-size: 20px;
  margin-left: 10px;
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex span {
    font-size: 14px;
    line-height: 1.5;
    margin-top: -2px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #top .warning .warning-flex .warning-flex_item .warning-item_check .warning-check_flex span {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  #top .warning .warning-flex .warning-flex_item .flex_item-img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  #top .warning .warning-flex .warning-flex_item .flex_item-img {
    width: 250px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -90px;
    margin: auto;
    z-index: 111;
  }
}
#top .movement {
  background: url(../../assets/images/top/movement.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
#top .movement .movement-txt_box {
  padding: 120px 0;
  width: 1400px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 1440px) {
  #top .movement .movement-txt_box {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  #top .movement .movement-txt_box {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  #top .movement .movement-txt_box {
    padding: 80px 0;
  }
}
#top .movement .movement-txt_box h3 {
  font-size: clamp(1.75em, 1.1071428571em + 3.2142857143vw, 4em);
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #top .movement .movement-txt_box h3 {
    line-height: 2;
  }
}
#top .movement .movement-txt_box p {
  font-size: clamp(1.125em, 0.875em + 1.25vw, 2em);
  line-height: 2;
}
@media (max-width: 1000px) {
  #top .movement .movement-txt_box p {
    line-height: 2.5;
  }
}
#top .loop-slider .head-ttl {
  text-align: center;
  font-size: clamp(1.75em, 1.1785714286em + 2.8571428571vw, 3.75em);
  color: #F29600;
  margin-bottom: 200px;
}
@media (max-width: 1000px) {
  #top .loop-slider .head-ttl {
    line-height: 1.5;
    margin: 60px 0;
  }
}
#top .loop-slider .head-ttl span {
  display: block;
}
@media (max-width: 1000px) {
  #top .loop-slider .head-ttl span + span {
    margin-top: 70px;
  }
}
#top .loop-slider .slick-list {
  padding-top: 70px;
}
#top .loop-slider .loop-slider_list .looop-slider_item {
  width: 25%;
  margin: 0 20px;
}
@media (max-width: 1000px) {
  #top .loop-slider .loop-slider_list .looop-slider_item {
    margin: 0 10px;
  }
}
#top .loop-slider .loop-slider_list .looop-slider_item:nth-child(even) {
  transform: translateY(-70px);
}
@media (max-width: 1000px) {
  #top .loop-slider .loop-slider_list .looop-slider_item:nth-child(even) {
    transform: translateY(-40px);
  }
}
#top .loop-slider .loop-slider_list .looop-slider_item img {
  border-radius: 20px;
}
#top .voice {
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
}
#top .voice .ttl {
  margin-bottom: 100px;
  color: #fff;
}
@media (max-width: 1200px) {
  #top .voice .ttl {
    display: none;
  }
}
#top .voice .ttl span {
  display: block;
}
#top .voice .ttl span:nth-child(1) {
  font-size: 18px;
  margin-bottom: 10px;
}
#top .voice .ttl span:nth-child(2) {
  font-size: 48px;
}
#top .voice .voice-slider {
  position: relative;
  /* .voice-ttl{
    display: inline-block;
    padding-top: 30px;
    border-top: 2px dashed #fff;
    margin-top: 60px;
    font-size: 34px;
    color:#fff;
    position: absolute;
    left:0;
    bottom: 30px;

    span{
      display: block;
      font-size: 28px;
      font-weight: normal;
      margin-bottom: 20px;
    }

  } */
}
#top .voice .voice-slider .slick-next,
#top .voice .voice-slider .slick-prev {
  width: 50px;
  height: 50px;
  background: url(../../assets/images/common/slider_arrow.png) no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: 111;
  transform: translate(0, 0);
}
#top .voice .voice-slider .slick-next:before,
#top .voice .voice-slider .slick-prev:before {
  display: none;
}
#top .voice .voice-slider .slick-next {
  right: 30%;
  top: 30%;
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .slick-next {
    top: 29%;
    right: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #top .voice .voice-slider .slick-next {
    top: 34%;
    right: 28%;
  }
}
#top .voice .voice-slider .slick-prev {
  left: 30%;
  top: 30%;
  transform: rotate(180deg);
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .slick-prev {
    top: 29%;
    left: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #top .voice .voice-slider .slick-prev {
    top: 34%;
    left: 28%;
  }
}
#top .voice .voice-slider .voice-dot {
  position: absolute;
  top: 40px;
  right: -40px;
}
#top .voice .voice-slider .voice-dot li {
  margin: 8px 0;
  width: 20px;
  height: 20px;
  display: block;
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 2px;
}
#top .voice .voice-slider .voice-dot li:hover {
  opacity: 0.7;
}
#top .voice .voice-slider .voice-dot li button {
  width: 100%;
  height: 100%;
  display: block;
  background: #009FE8;
  border: none;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.3s;
}
#top .voice .voice-slider .voice-dot li.slick-active button {
  transform: scale(1);
}
#top .voice .voice-slider .voice-dot li.slick-active button:focus-visible {
  outline: #009FE8;
}
#top .voice .voice-slider .voice-body {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body {
    display: block;
    padding: 0;
  }
}
#top .voice .voice-slider .voice-body .voice-info {
  width: 450px;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-info {
    width: 100%;
  }
}
#top .voice .voice-slider .voice-body .voice-info .voice-info_inner {
  padding-left: 55px;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info .voice-info_inner {
    padding: 0;
  }
}
#top .voice .voice-slider .voice-body .voice-info .voice-company {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info .voice-company {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-info .voice-company {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
    padding-left: 55px;
  }
}
#top .voice .voice-slider .voice-body .voice-info .voice-company:before {
  content: "";
  width: 45px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -55px;
  margin: auto;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info .voice-company:before {
    left: 0;
  }
}
#top .voice .voice-slider .voice-body .voice-info .voice-catch {
  font-size: clamp(1.375em, 1.0178571429em + 1.7857142857vw, 2.625em);
  line-height: 2;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info .voice-catch {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-info .voice-catch {
    text-align: left;
  }
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info picture {
    display: block;
  }
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-info picture img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-info picture img {
    width: 250px;
    height: 250px;
  }
}
#top .voice .voice-slider .voice-body .voice-detail {
  width: 840px;
}
@media (max-width: 1200px) {
  #top .voice .voice-slider .voice-body .voice-detail {
    width: 90%;
    margin: 30px auto 0;
  }
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-detail {
    width: 100%;
    margin: -40px auto 0;
  }
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner {
  background: #fff;
  padding: 100px 40px;
  border-radius: 20px;
  height: 100%;
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner {
    padding: 60px 20px;
  }
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner span {
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner span:after {
  content: "";
  width: 100%;
  height: 1px;
  margin-left: 15px;
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner span.before {
  color: #959595;
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner span.before:after {
  background: #959595;
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner span.after {
  color: #F29600;
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner span.after:after {
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl {
  padding: 60px 90px;
  position: relative;
  font-size: 24px;
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl.--before {
  color: #959595;
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl.--before {
    padding: 20px 10px 80px 0px;
    font-size: 18px;
    line-height: 1.5;
  }
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl.--before:before {
  content: "";
  width: 10px;
  height: 120px;
  background: url(../../assets/images/top/arrow.png) no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl.--before:before {
    height: 50px;
    left: 10px;
    top: auto;
    bottom: 20px;
  }
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl.--after {
  color: #F29600;
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_ttl.--after {
    padding: 20px 10px 20px 0px;
    font-size: 18px;
    line-height: 1.5;
  }
}
#top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_txt {
  font-size: 18px;
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 1000px) {
  #top .voice .voice-slider .voice-body .voice-detail .voice-detail_inner .voice-detail_txt {
    font-size: 14px;
  }
}
#top .company .logo-flex {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  #top .company .logo-flex {
    display: block;
  }
}
@media (max-width: 1000px) {
  #top .company .logo-flex {
    margin-bottom: 40px;
  }
}
#top .company .logo-flex_item {
  width: 50%;
}
@media (max-width: 1200px) {
  #top .company .logo-flex_item {
    width: 100%;
  }
}
#top .company .logo-flex_item.--logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  #top .company .logo-flex_item.--logo {
    margin-bottom: 40px;
  }
}
#top .company .logo-flex_item.--txt strong {
  display: block;
  font-size: clamp(1.5em, 1.3571428571em + 0.7142857143vw, 2em);
  line-height: 1.7;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  #top .company .logo-flex_item.--txt strong {
    text-align: center;
    margin-bottom: 40px;
  }
}
#top .company .logo-flex_item.--txt p {
  display: block;
  font-size: 24px;
  line-height: 2;
}
@media (max-width: 1200px) {
  #top .company .logo-flex_item.--txt p {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #top .company .logo-flex_item.--txt p {
    font-size: 16px;
  }
}
#top .company .num-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 180px;
}
@media (max-width: 1000px) {
  #top .company .num-flex {
    gap: 20px;
    margin-bottom: 100px;
  }
}
#top .company .num-flex_item {
  width: calc(50% - 20px);
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-radius: 20px;
}
@media (max-width: 1000px) {
  #top .company .num-flex_item {
    width: 100%;
    border-radius: 10px;
    padding: 15px 0;
  }
}
#top .company .num-flex_item {
  /* &:nth-child(2),
  &:nth-child(3){
    background: #F7AD35;
  } */
}
#top .company .num-flex_item .num {
  width: 150px;
  height: 140px;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1200px) {
  #top .company .num-flex_item .num {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1000px) {
  #top .company .num-flex_item .num {
    width: 70px;
    height: 70px;
  }
}
#top .company .num-flex_item .num:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
}
#top .company .num-flex_item .txt {
  padding-left: 40px;
  font-size: clamp(0.875em, 0.6964285714em + 0.8928571429vw, 1.5em);
}
@media (max-width: 1200px) {
  #top .company .num-flex_item .txt {
    padding-left: 20px;
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  #top .company .num-flex_item .txt {
    padding-left: 20px;
    font-size: clamp(0.875em, 0.6964285714em + 0.8928571429vw, 1.5em);
  }
}
#top .company .company-message {
  text-align: center;
}
#top .company .company-message strong {
  display: block;
  font-size: clamp(1.5em, 1.0357142857em + 2.3214285714vw, 3.125em);
  margin-bottom: 120px;
}
@media (max-width: 1000px) {
  #top .company .company-message strong {
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
#top .company .company-message .txt01 {
  font-size: 18px;
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 120px;
}
@media (max-width: 1000px) {
  #top .company .company-message .txt01 {
    font-size: 14px;
    margin-bottom: 60px;
  }
}
#top .company .company-message .txt02 {
  line-height: 1.8;
  font-size: 18px;
}
@media (max-width: 1000px) {
  #top .company .company-message .txt02 {
    font-size: 14px;
  }
}
#top .features {
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
}
#top .features .features-ttl {
  text-align: center;
  margin-bottom: 145px;
}
@media (max-width: 1200px) {
  #top .features .features-ttl {
    margin-bottom: 80px;
  }
}
#top .features .features-ttl h2 {
  display: inline-block;
}
#top .features .features-ttl span {
  display: block;
  color: #fff;
}
#top .features .features-ttl span:nth-child(1) {
  font-size: 150px;
  text-align: center;
}
@media (max-width: 1200px) {
  #top .features .features-ttl span:nth-child(1) {
    font-size: 100px;
  }
}
@media (max-width: 1000px) {
  #top .features .features-ttl span:nth-child(1) {
    font-size: 50px;
  }
}
#top .features .features-ttl span:nth-child(2) {
  text-align: right;
  font-size: 32px;
}
@media (max-width: 1000px) {
  #top .features .features-ttl span:nth-child(2) {
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
  }
}
#top .features .features-content {
  width: 900px;
  margin: 0 auto 80px;
}
@media (max-width: 1200px) {
  #top .features .features-content {
    width: 100%;
  }
}
#top .features .features-content .label {
  font-size: 20px;
  display: block;
  color: #fff;
  position: relative;
}
@media (max-width: 1200px) {
  #top .features .features-content .label {
    display: none;
  }
}
#top .features .features-content .label:before {
  content: "";
  width: 90%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#top .features .features-content .label:nth-child(1) {
  top: 0;
}
#top .features .features-content .label:nth-child(2) {
  bottom: 0;
}
#top .features .features-content_inner {
  position: relative;
}
#top .features .features-content_inner .features-index {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}
#top .features .features-content_inner .features-index_num {
  font-size: 32px;
  margin: 10px 0;
  padding: 0 5px;
  color: #fff;
  position: relative;
}
#top .features .features-content_inner .features-index_num:hover:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
#top .features .features-content_inner .features-index .slick-active {
  position: relative;
}
#top .features .features-content_inner .features-index .slick-active:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
#top .features .features-content_inner .features-slider {
  margin: 50px 0 50px 25px;
  border-left: 1px solid #fff;
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider {
    margin: 0;
    border: none;
  }
}
#top .features .features-content_inner .features-slider_item {
  padding: 50px 80px;
  display: flex;
  color: #fff;
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider_item {
    padding: 0;
    display: block;
    margin-bottom: 70px;
  }
}
#top .features .features-content_inner .features-slider_item .num {
  font-size: 100px;
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider_item .num {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1000px) {
  #top .features .features-content_inner .features-slider_item .num {
    font-size: 60px;
    align-items: flex-end;
  }
}
#top .features .features-content_inner .features-slider_item .num span {
  display: none;
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider_item .num span {
    font-size: 30px;
    display: flex;
    margin-left: 15px;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 1000px) {
  #top .features .features-content_inner .features-slider_item .num span {
    align-items: center;
    font-size: 16px;
  }
}
#top .features .features-content_inner .features-slider_item .num span:after {
  background-color: #fff; /* 横線の色 */
  content: "";
  flex-grow: 1; /* 横幅いっぱい */
  height: 1px; /* 横線の高さ */
  margin-left: 15px;
}
#top .features .features-content_inner .features-slider_item .txt {
  padding-left: 20px;
  margin-top: 35px;
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider_item .txt {
    padding-left: 0;
    margin-top: 20px;
  }
}
#top .features .features-content_inner .features-slider_item .txt strong {
  display: block;
  font-size: 32px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider_item .txt strong {
    margin-bottom: 20px;
  }
}
@media (max-width: 1000px) {
  #top .features .features-content_inner .features-slider_item .txt strong {
    font-size: 18px;
  }
}
#top .features .features-content_inner .features-slider_item .txt p {
  font-size: 18px;
  font-weight: 500px;
  line-height: 1.8;
  padding-left: 20px;
}
@media (max-width: 1000px) {
  #top .features .features-content_inner .features-slider_item .txt p {
    font-size: 14px;
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  #top .features .features-content_inner .features-slider_item .txt p br {
    display: none;
  }
}
#top .open-session {
  background: #FFF7E9;
  overflow: hidden;
}
#top .open-session .head-ttl {
  display: flex;
  align-items: flex-end;
  width: 1400px;
  margin: 0 auto 130px;
}
@media (max-width: 1000px) {
  #top .open-session .head-ttl {
    display: block;
    margin: 0 auto 40px;
    width: 100%;
  }
}
#top .open-session .head-ttl h2 {
  margin-right: 60px;
}
@media (max-width: 1000px) {
  #top .open-session .head-ttl h2 {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
#top .open-session .head-ttl h2 span {
  display: block;
}
#top .open-session .head-ttl h2 span:nth-child(1) {
  font-size: 18px;
  margin-bottom: 5px;
}
@media (max-width: 1000px) {
  #top .open-session .head-ttl h2 span:nth-child(1) {
    font-size: 12px;
  }
}
#top .open-session .head-ttl h2 span:nth-child(2) {
  font-size: 48px;
  color: #F29600;
}
@media (max-width: 1000px) {
  #top .open-session .head-ttl h2 span:nth-child(2) {
    font-size: 28px;
  }
}
#top .open-session .head-ttl p {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 1000px) {
  #top .open-session .head-ttl p {
    font-size: 16px;
  }
}
#top .open-session .open-session_slider {
  margin: 0 auto 60px;
}
@media (max-width: 1200px) {
  #top .open-session .open-session_slider {
    margin: 0 auto 160px;
  }
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider {
    margin: 0 auto 90px;
  }
}
#top .open-session .open-session_slider .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #F29600;
  z-index: 111;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  #top .open-session .open-session_slider .slick-arrow {
    top: auto;
    bottom: -100px;
  }
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider .slick-arrow {
    width: 40px;
    height: 40px;
    bottom: -50px;
  }
}
#top .open-session .open-session_slider .slick-arrow:hover {
  opacity: 0.7;
}
#top .open-session .open-session_slider .slick-arrow:before {
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask-image: url(../../assets/images/common/arrow.svg);
  mask-image: url(../../assets/images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #F29600;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#top .open-session .open-session_slider .slick-arrow.slick-next {
  transform: translateX(255px);
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider .slick-arrow.slick-next {
    transform: translateX(0);
    right: 0;
    left: auto;
  }
}
#top .open-session .open-session_slider .slick-arrow.slick-prev {
  transform: translateX(-255px) rotate(-180deg);
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider .slick-arrow.slick-prev {
    transform: translateX(0) rotate(-180deg);
    left: 0;
    right: auto;
  }
}
#top .open-session .open-session_slider .session-dot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider .session-dot {
    bottom: -35px;
  }
}
#top .open-session .open-session_slider .session-dot .slick-active button {
  background: #F29600;
}
#top .open-session .open-session_slider .session-dot button {
  width: 20px;
  height: 20px;
  background: #FFE3B6;
  margin: 0 10px;
  border: none;
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider .session-dot button {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}
#top .open-session .open-session_slider-item {
  border-radius: 20px;
  overflow: hidden;
  width: 500px;
  margin: 0 20px;
  opacity: 0.3;
  background: #fff;
  color: #333;
}
@media (max-width: 1200px) {
  #top .open-session .open-session_slider-item {
    border: 2px solid #F29600;
  }
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider-item {
    margin: 0;
  }
}
#top .open-session .open-session_slider-item.slick-center {
  opacity: 1;
}
#top .open-session .open-session_slider-item .thumb {
  height: 330px;
}
@media (max-width: 1200px) {
  #top .open-session .open-session_slider-item .thumb {
    height: 700px;
  }
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider-item .thumb {
    aspect-ratio: 67/50;
    height: auto;
  }
}
#top .open-session .open-session_slider-item .txt {
  padding: 40px 40px 60px;
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider-item .txt {
    padding: 20px;
  }
}
#top .open-session .open-session_slider-item .txt .ttl {
  font-size: 18px;
  font-weight: 500px;
  line-height: 1.5;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider-item .txt .ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
#top .open-session .open-session_slider-item .txt .date,
#top .open-session .open-session_slider-item .txt .spkr {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
#top .open-session .open-session_slider-item .txt .date span,
#top .open-session .open-session_slider-item .txt .spkr span {
  display: inline-block;
}
#top .open-session .open-session_slider-item .txt .date span:nth-child(1),
#top .open-session .open-session_slider-item .txt .spkr span:nth-child(1) {
  width: 70px;
  padding: 7px 0;
  background: #F29600;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider-item .txt .date span:nth-child(1),
  #top .open-session .open-session_slider-item .txt .spkr span:nth-child(1) {
    font-size: 12px;
  }
}
#top .open-session .open-session_slider-item .txt .date span:nth-child(2),
#top .open-session .open-session_slider-item .txt .spkr span:nth-child(2) {
  width: calc(100% - 70px);
  padding-left: 10px;
  padding-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 1000px) {
  #top .open-session .open-session_slider-item .txt .date span:nth-child(2),
  #top .open-session .open-session_slider-item .txt .spkr span:nth-child(2) {
    font-size: 12px;
  }
}
#top .magazine .flex {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  #top .magazine .flex {
    display: block;
  }
}
#top .magazine .ttl {
  width: calc(100% - 920px);
}
@media (max-width: 1200px) {
  #top .magazine .ttl {
    width: 100%;
  }
}
#top .magazine .ttl h2 {
  margin-right: 60px;
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  #top .magazine .ttl h2 {
    margin-bottom: 50px;
  }
}
#top .magazine .ttl h2 span {
  display: block;
}
#top .magazine .ttl h2 span:nth-child(1) {
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  #top .magazine .ttl h2 span:nth-child(1) {
    font-size: 18px;
  }
}
#top .magazine .ttl h2 span:nth-child(2) {
  font-size: 48px;
}
@media (max-width: 1000px) {
  #top .magazine .ttl h2 span:nth-child(2) {
    font-size: 28px;
  }
}
#top .magazine .magazine-content {
  width: 920px;
  border: solid #333;
  border-width: 1px 0 0 0;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content {
    width: 100%;
  }
}
#top .magazine .magazine-content .magazine-row {
  padding: 30px;
  display: flex;
  position: relative;
  border-bottom: 1px solid #333;
  transition: 0.3s;
  width: 100%;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row {
    display: block;
    padding: 20px;
  }
}
#top .magazine .magazine-content .magazine-row:hover {
  box-shadow: 0 0 10px 5px rgba(125, 125, 125, 0.1);
}
#top .magazine .magazine-content .magazine-row:hover .arrow {
  border: 1px solid #F29600;
}
#top .magazine .magazine-content .magazine-row:hover .arrow:before {
  background: #F29600;
}
#top .magazine .magazine-content .magazine-row .magazine-thumb {
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .magazine-thumb {
    margin-bottom: 20px;
  }
}
#top .magazine .magazine-content .magazine-row .magazine-thumb img {
  width: 200px;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .magazine-thumb img {
    width: 100%;
    aspect-ratio: 59/32;
    height: auto;
  }
}
#top .magazine .magazine-content .magazine-row .magazine-detail {
  width: calc(100% - 300px);
  padding-left: 40px;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .magazine-detail {
    width: 100%;
    padding-left: 0;
  }
}
#top .magazine .magazine-content .magazine-row .magazine-detail {
  /* &_cat{
    font-size: 14px;
    font-weight: 500;
    padding: 5px 30px;
    background: $main-color;
    color:#fff;
    margin-bottom: 15px;
    display: inline-block;

    @include mq(sp){
      font-size: 12px;
    }
  } */
}
#top .magazine .magazine-content .magazine-row .magazine-detail_date {
  font-size: 18px;
  color: #F29600;
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .magazine-detail_date {
    font-size: 12px;
  }
}
#top .magazine .magazine-content .magazine-row .magazine-detail_ttl {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .magazine-detail_ttl {
    font-size: 16px;
  }
}
#top .magazine .magazine-content .magazine-row .magazine-detail_txt {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .magazine-detail_txt {
    font-size: 14px;
  }
}
#top .magazine .magazine-content .magazine-row .arrow {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #CACACA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  margin: auto;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  #top .magazine .magazine-content .magazine-row .arrow {
    width: 40px;
    height: 40px;
    right: 20px;
    top: auto;
    bottom: 16%;
    display: none;
  }
}
#top .magazine .magazine-content .magazine-row .arrow:before {
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask-image: url(../../assets/images/common/arrow.svg);
  mask-image: url(../../assets/images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #CACACA;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}
#top .news {
  border: solid #e6e6e6;
  border-width: 1px 0;
}
#top .news h2 {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #top .news h2 {
    margin-bottom: 40px;
  }
}
#top .news h2 span {
  display: block;
}
#top .news h2 span:nth-child(1) {
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  #top .news h2 span:nth-child(1) {
    font-size: 12px;
  }
}
#top .news h2 span:nth-child(2) {
  font-size: 48px;
}
@media (max-width: 1000px) {
  #top .news h2 span:nth-child(2) {
    font-size: 28px;
  }
}
#top .news .news-list {
  border-top: 1px solid #D0D0D0;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #top .news .news-list {
    margin-bottom: 40px;
  }
}
#top .news .news-list_link {
  display: flex;
  align-items: center;
  color: #333;
  position: relative;
  padding: 20px 70px 20px 20px;
  border-bottom: 1px solid #D0D0D0;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  #top .news .news-list_link {
    padding: 15px 10px;
    flex-wrap: wrap;
  }
}
#top .news .news-list_link:hover {
  box-shadow: 0 0 10px 5px rgba(125, 125, 125, 0.1);
}
#top .news .news-list_link:hover .arrow {
  border: 1px solid #F29600;
}
#top .news .news-list_link:hover .arrow:before {
  background: #F29600;
}
#top .news .news-list_link .news-date {
  font-weight: 500;
  font-size: 18px;
  width: 100px;
}
@media (max-width: 1000px) {
  #top .news .news-list_link .news-date {
    font-size: 14px;
    margin-right: 15px;
    width: auto;
  }
}
#top .news .news-list_link .news-cat {
  font-weight: 500;
  font-size: 16px;
  color: #F29600;
  width: 120px;
  text-align: center;
}
@media (max-width: 1000px) {
  #top .news .news-list_link .news-cat {
    font-size: 14px;
    width: auto;
  }
}
#top .news .news-list_link .news-ttl {
  font-weight: 500;
  width: calc(100% - 250px);
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #top .news .news-list_link .news-ttl {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }
}
#top .news .news-list_link .arrow {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #CACACA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  #top .news .news-list_link .arrow {
    display: none;
  }
}
#top .news .news-list_link .arrow:before {
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask-image: url(../../assets/images/common/arrow.svg);
  mask-image: url(../../assets/images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #CACACA;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}

#open-session {
  background: #FFF7E9 !important;
}
#open-session section {
  background: none;
}
@media (max-width: 1000px) {
  #open-session section {
    padding-top: 50px;
  }
}
#open-session .open-session_inner {
  padding: 0 0 200px;
}
@media (max-width: 1200px) {
  #open-session .open-session_inner {
    padding: 0 20px 0px;
  }
}
#open-session .open-session_content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 111;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #open-session .open-session_content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
#open-session .open-session_content-card {
  width: calc(50% - 20px);
  border: 2px solid #F29600;
  border-radius: 20px;
  overflow: hidden;
  color: #333;
  background: #fff;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-card {
    width: 100%;
  }
}
#open-session .open-session_content-thum {
  width: 100%;
  display: block;
}
#open-session .open-session_content-thum img {
  width: 100%;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  #open-session .open-session_content-thum img {
    aspect-ratio: 169/170;
    height: auto;
  }
}
#open-session .open-session_content-detail {
  padding: 40px;
  font-weight: 500;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-detail {
    padding: 20px;
  }
}
#open-session .open-session_content-ttl {
  font-size: 18px;
  margin-bottom: 20px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-ttl {
    font-size: 16px;
    text-overflow: inherit;
  }
}
#open-session .open-session_content-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#open-session .open-session_content-label {
  width: 70px;
  padding: 7px 0;
  background: #F29600;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-label {
    font-size: 12px;
  }
}
#open-session .open-session_content-date {
  width: calc(100% - 70px);
  padding-left: 10px;
  padding-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-date {
    font-size: 12px;
  }
}
#open-session .open-session_content-spkr {
  width: calc(100% - 70px);
  padding-left: 10px;
  padding-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-spkr {
    font-size: 12px;
  }
}
#open-session .open-session_content-txt {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1000px) {
  #open-session .open-session_content-txt {
    font-size: 14px;
  }
}

#single-open-session {
  background: #FFF7E9 !important;
}
#single-open-session section {
  background: none;
}
#single-open-session .open-session_inner {
  padding: 0 0 200px;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_inner {
    padding: 0 20px 0;
  }
}
#single-open-session .open-session_content {
  margin-top: -60px;
  position: relative;
  z-index: 111;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content {
    margin-top: 40px;
  }
}
#single-open-session .open-session_content-thum {
  display: block;
  text-align: center;
  margin-bottom: 140px;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content-thum {
    margin-bottom: 80px;
  }
}
#single-open-session .open-session_content-thum img {
  border-radius: 30px;
}
#single-open-session .open-session_content-detail {
  background: #fff;
  padding: 180px 20% 80px;
  border-radius: 20px;
  font-weight: 500;
  border: 2px solid #F29600;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content-detail {
    padding: 80px 20px;
    margin-bottom: 60px;
  }
}
#single-open-session .open-session_content-ttl {
  font-size: 28px;
  margin-bottom: 50px;
  line-height: 1.5;
  color: #F29600;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content-ttl {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
#single-open-session .open-session_content-info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#single-open-session .open-session_content-label {
  width: 70px;
  padding: 7px 0;
  background: #F29600;
  color: #fff;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
#single-open-session .open-session_content-date {
  width: calc(100% - 70px);
  padding-left: 10px;
  padding-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
#single-open-session .open-session_content-spkr {
  width: calc(100% - 70px);
  padding-left: 10px;
  padding-top: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
#single-open-session .open-session_content-txt {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content-txt {
    font-size: 14px;
  }
}
#single-open-session .open-session_content .entry {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 22px;
  border: 2px solid #fff;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content .entry {
    width: 100px;
    height: 100px;
    font-size: 14px;
    top: -50px;
  }
}
#single-open-session .open-session_content .open-session_form strong {
  display: block;
  text-align: center;
  font-size: 24px;
  margin-bottom: 120px;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content .open-session_form strong {
    font-size: 16px;
    margin-bottom: 60px;
  }
}
#single-open-session .open-session_content .open-session_form form {
  width: 800px;
  margin: 0 auto 180px;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content .open-session_form form {
    width: 100%;
    margin: 0 auto 60px;
  }
}
#single-open-session .open-session_content .open-session_form form input {
  font-size: 18px;
  padding: 27px 40px;
  border-radius: 10px;
  border: 1px solid #ccc;
  color: #333;
}
@media (max-width: 1000px) {
  #single-open-session .open-session_content .open-session_form form input {
    font-size: 14px;
    padding: 20px;
  }
}
#single-open-session .open-session_content .open-session_form form input + input {
  margin-top: 25px;
}
#single-open-session .open-session_content .open-session_form form input[type=submit] {
  width: 315px;
  height: 60px;
  margin: 75px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(225deg, rgb(247, 173, 53) 0%, rgb(242, 150, 0) 100%);
  color: #fff;
  border-radius: 60px;
  border: none;
}
#single-open-session .open-session_content .open-session_form .back-btn {
  width: 315px;
  height: 60px;
  margin: 75px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  color: #F29600;
  border-radius: 60px;
  border: 2px solid #F29600;
}

#company .idea-content {
  display: flex;
  align-items: center;
  padding: 120px 0;
}
@media (max-width: 1000px) {
  #company .idea-content {
    display: block;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
}
#company .idea-label {
  width: 25%;
}
@media (max-width: 1000px) {
  #company .idea-label {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
#company .idea-label span {
  display: block;
}
#company .idea-label span:nth-child(1) {
  font-size: 48px;
  color: #F29600;
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  #company .idea-label span:nth-child(1) {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
#company .idea-label span:nth-child(2) {
  font-size: 20px;
}
@media (max-width: 1000px) {
  #company .idea-label span:nth-child(2) {
    font-size: 14px;
  }
}
#company .idea-txt {
  width: 75%;
}
@media (max-width: 1000px) {
  #company .idea-txt {
    width: 100%;
    line-height: 1.5;
  }
}
#company .idea-txt span {
  display: block;
}
#company .idea-txt span:nth-child(1) {
  font-size: 48px;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  #company .idea-txt span:nth-child(1) {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
#company .idea-txt span:nth-child(2) {
  font-size: 32px;
}
@media (max-width: 1000px) {
  #company .idea-txt span:nth-child(2) {
    font-size: 16px;
  }
}
#company .company picture {
  display: block;
  text-align: center;
  margin-bottom: 180px;
}
@media (max-width: 1000px) {
  #company .company picture {
    width: 200px;
    display: block;
    margin: 0 auto 60px;
  }
}
#company .company .company-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.5;
  padding: 38px 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 1000px) {
  #company .company .company-dl {
    display: block;
    padding: 20px;
  }
}
#company .company .company-dl_label {
  width: 15%;
  font-size: 22px;
  color: #F29600;
}
@media (max-width: 1000px) {
  #company .company .company-dl_label {
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
#company .company .company-dl_desc {
  width: 85%;
  font-size: 20px;
}
@media (max-width: 1000px) {
  #company .company .company-dl_desc {
    width: 100%;
    font-size: 16px;
  }
}
#company .company .company-dl_desc p {
  padding-left: 15px;
  position: relative;
}
#company .company .company-dl_desc p:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #F29600;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media (max-width: 1000px) {
  #company .company .company-dl_desc p:before {
    top: 12px;
    bottom: auto;
  }
}

#magazine .magazine-content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #magazine .magazine-content {
    display: block;
    margin-bottom: 60px;
  }
}
#magazine .magazine-content .magazine-post {
  width: calc(50% - 20px);
  border-radius: 20px;
  box-shadow: 2px 2px 20px 0 rgba(160, 160, 160, 0.1);
  display: block;
  overflow: hidden;
}
@media (max-width: 1000px) {
  #magazine .magazine-content .magazine-post {
    width: 100%;
    margin-bottom: 20px;
  }
}
#magazine .magazine-content .magazine-post_thum {
  display: block;
  width: 100%;
  aspect-ratio: 68/43;
}
#magazine .magazine-content .magazine-post_thum img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 68/43;
}
#magazine .magazine-content .magazine-post_txt {
  padding: 40px;
}
@media (max-width: 1000px) {
  #magazine .magazine-content .magazine-post_txt {
    padding: 20px;
  }
}
#magazine .magazine-content .magazine-post_txt ul {
  margin-bottom: 15px;
}
#magazine .magazine-content .magazine-post_txt ul li a {
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
  background: #F29600;
}
@media (max-width: 1000px) {
  #magazine .magazine-content .magazine-post_txt ul li a {
    font-size: 12px;
  }
}
#magazine .magazine-content .magazine-post_date {
  color: #F29600;
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 1000px) {
  #magazine .magazine-content .magazine-post_date {
    font-size: 12px;
  }
}
#magazine .magazine-content .magazine-post_ttl {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  #magazine .magazine-content .magazine-post_ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#magazine .magazine-content .magazine-post_ttl a {
  color: #333;
}
#magazine .magazine-content .magazine-post_disp {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #magazine .magazine-content .magazine-post_disp {
    font-size: 14px;
  }
}

#news .news .news-list {
  border-top: 1px solid #D0D0D0;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #news .news .news-list {
    margin-bottom: 40px;
  }
}
#news .news .news-list_link {
  display: flex;
  align-items: center;
  color: #333;
  position: relative;
  padding: 20px 70px 20px 20px;
  border-bottom: 1px solid #D0D0D0;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  #news .news .news-list_link {
    padding: 15px 10px;
    flex-wrap: wrap;
  }
}
#news .news .news-list_link:hover {
  box-shadow: 0 0 10px 5px rgba(125, 125, 125, 0.1);
}
#news .news .news-list_link:hover .arrow {
  border: 1px solid #F29600;
}
#news .news .news-list_link:hover .arrow:before {
  background: #F29600;
}
#news .news .news-list_link .news-date {
  font-weight: 500;
  font-size: 18px;
  width: 100px;
}
@media (max-width: 1000px) {
  #news .news .news-list_link .news-date {
    font-size: 14px;
    margin-right: 15px;
    width: auto;
  }
}
#news .news .news-list_link .news-cat {
  font-weight: 500;
  font-size: 16px;
  color: #F29600;
  width: 120px;
  text-align: center;
}
@media (max-width: 1000px) {
  #news .news .news-list_link .news-cat {
    font-size: 14px;
    width: auto;
  }
}
#news .news .news-list_link .news-ttl {
  font-weight: 500;
  width: calc(100% - 250px);
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  #news .news .news-list_link .news-ttl {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
  }
}
#news .news .news-list_link .arrow {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #CACACA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: 0.3s;
}
@media (max-width: 1000px) {
  #news .news .news-list_link .arrow {
    display: none;
  }
}
#news .news .news-list_link .arrow:before {
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask-image: url(../../assets/images/common/arrow.svg);
  mask-image: url(../../assets/images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #CACACA;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}

#single .post-head {
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  #single .post-head {
    margin-bottom: 40px;
  }
}
#single .post-category {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background: #F29600;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
  margin-bottom: 16px;
}
#single .post-ttl {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  #single .post-ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#single .post-date {
  font-size: 18px;
  color: #F29600;
}
@media (max-width: 1000px) {
  #single .post-date {
    font-size: 12px;
  }
}
#single .post-content {
  margin-bottom: 150px;
}
@media (max-width: 1000px) {
  #single .post-content {
    margin-bottom: 60px;
  }
}
#single .post-content * {
  line-height: 2;
  margin-bottom: 30px;
}
#single .post-content p {
  font-size: 16px;
}
@media (max-width: 1000px) {
  #single .post-content p {
    font-size: 14px;
  }
}
#single .post .back-btn {
  width: 315px;
  height: 60px;
  margin: 75px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  color: #F29600;
  border-radius: 60px;
  border: 2px solid #F29600;
}

#contact .contact .head {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1000px) {
  #contact .contact .head {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
#contact .contact .screen-reader-response {
  display: none;
}
#contact .contact .invalid + .wpcf7-response-output {
  width: 800px;
  margin: 30px auto 0;
  padding: 20px;
  border: #b41212 solid 2px;
  color: #b41212;
  display: block;
}
@media (max-width: 1000px) {
  #contact .contact .invalid + .wpcf7-response-output {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
}
#contact .contact .sent {
  display: none;
}
#contact .contact .sent + .wpcf7-response-output {
  width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
  padding: 20px;
  border: #60d186 solid 2px;
  color: #60d186;
}
@media (max-width: 1000px) {
  #contact .contact .sent + .wpcf7-response-output {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
}
#contact .contact .wpcf7-not-valid-tip {
  display: block;
  color: #b41212;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  #contact .contact .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}
#contact .contact form {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #contact .contact form {
    width: 100%;
  }
}
#contact .contact form input[type=text],
#contact .contact form input[type=email] {
  padding: 30px;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #ccc;
}
@media (max-width: 1000px) {
  #contact .contact form input[type=text],
  #contact .contact form input[type=email] {
    padding: 20px;
    font-size: 14px;
  }
}
#contact .contact form input[type=text].require:before,
#contact .contact form input[type=email].require:before {
  content: "*";
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 16px;
  color: #5c1616;
}
#contact .contact form textarea {
  margin-top: 50px;
  padding: 30px;
  font-size: 18px;
  min-height: 200px;
  resize: vertical;
  border-radius: 0;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  #contact .contact form textarea {
    padding: 20px;
    font-size: 14px;
  }
}
#contact .contact form .radio {
  margin-top: 30px;
}
#contact .contact form .radio + .radio {
  margin-top: 50px;
}
#contact .contact form .radio .radio-ttl {
  margin-bottom: 20px;
}
#contact .contact form .radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
}
#contact .contact form .radio span {
  display: block;
  font-size: 18px;
}
@media (max-width: 1000px) {
  #contact .contact form .radio span {
    font-size: 14px;
  }
}
#contact .contact form .radio label {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  #contact .contact form .radio label {
    font-size: 14px;
  }
}
#contact .contact form .radio label input {
  width: 15px;
  height: 15px;
  background: #D9D9D9;
  border: 1px solid #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  position: relative;
  margin: 0 5px 0 0;
}
#contact .contact form .radio label input:before {
  content: "";
  width: 13px;
  height: 13px;
  background: #F29600;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  transform: scale(0, 0);
  transition: 0.3s;
}
#contact .contact form .radio label input:checked:before {
  transform: scale(1, 1);
}
#contact .contact form .privacy-check {
  margin-top: 40px;
}
#contact .contact form .privacy-check h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  #contact .contact form .privacy-check h3 {
    font-size: 14px;
  }
}
#contact .contact form .privacy-check_txt {
  padding: 30px;
  border: 1px solid #ccc;
  color: #333;
  line-height: 2;
  height: 200px;
  overflow-y: scroll;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  #contact .contact form .privacy-check_txt {
    padding: 10px;
    font-size: 12px;
  }
}
#contact .contact form .privacy-check_txt dl + dl {
  margin-top: 20px;
}
#contact .contact form .privacy-check_txt dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 1000px) {
  #contact .contact form .privacy-check_txt dl dt {
    font-size: 14px;
  }
}
#contact .contact form .privacy-check_txt dl dd {
  line-height: 2;
}
@media (max-width: 1000px) {
  #contact .contact form .privacy-check_txt dl dd {
    font-size: 12px;
  }
}
#contact .contact form .privacy-check_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
#contact .contact form .privacy-check_btn input {
  width: 20px;
  height: 20px;
  border-radius: 0;
  background: #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 10px 0 0;
  position: relative;
}
#contact .contact form .privacy-check_btn input:before, #contact .contact form .privacy-check_btn input:after {
  opacity: 0;
  transition: 0.3s;
}
#contact .contact form .privacy-check_btn input:checked:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #F29600;
  opacity: 1;
}
#contact .contact form .privacy-check_btn input:checked:after {
  content: "";
  width: 7px;
  height: 11px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#contact .contact form .privacy-check_btn label {
  margin-bottom: 2px;
}
@media (max-width: 1000px) {
  #contact .contact form .privacy-check_btn label {
    font-size: 14px;
  }
}
#contact .contact form input[type=submit] {
  width: 300px;
  height: 60px;
  background: transparent;
  align-items: center;
  position: relative;
  border-radius: 100px;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.3s;
  color: white;
  font-size: 18px;
  border: none;
}
@media (max-width: 1000px) {
  #contact .contact form input[type=submit] {
    width: 250px;
    height: 50px;
    font-size: 14px;
  }
}

#privacy .privacy dl {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #privacy .privacy dl {
    width: 100%;
  }
}
#privacy .privacy dl + dl {
  margin-top: 40px;
}
#privacy .privacy dl dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  #privacy .privacy dl dt {
    font-size: 16px;
  }
}
#privacy .privacy dl dd {
  line-height: 2;
}
@media (max-width: 1000px) {
  #privacy .privacy dl dd {
    font-size: 14px;
  }
}