@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header{
  position: fixed;
  width: 100%;
  z-index: 90;
  top: 0;
  background: var(--col-base02);
}
.header h1 span {
  display: block;
}
.header-logo {
  display: block;
  width: 190px;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-inner {
  box-sizing: border-box;
  padding: 8px 20px 8px 20px;
}
.header-info {
  gap: 10px;
  margin-bottom: 18px;
}
.header-nav-list {
  gap: 18px;
  margin: 0 0 0 auto;
  width: fit-content;
}

/*-------------------
header-nav
--------------------*/
.header-nav-link:hover {
  color: var(--col-main);
}

/*-------------------
現在の表示ページ
--------------------*/
.header-nav-link.current {
  color: var(--col-main);
}



.drawer-link.current {
  color: var(--col-main);
}

/*--------------- △ header △ ---------------*/
/*--------------- ▽ footer ▽ ---------------*/
.fix-side-sns {
  position: fixed;
  background: rgb(var(--col-wh-rgb), 0.9);
  bottom: 400px;
  right: 0;
  width: 60px;
  box-sizing: border-box;
  padding: 15px;
  z-index: 100;
}
.fix-side-sns .com-sns-icon-list {
  gap: 15px;
}

.side-bnr-box .side-tel-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  box-sizing: border-box;
  padding: 14px 5px;
  text-align: center;
  border: 1px solid var(--col-main-light);
  display: block;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 20px;
  transform: translateY(-30%);
  width: 90%;
}
.side-bnr-box .side-tel-ttl::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  border: 1px solid var(--col-main-light);
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  bottom: -10px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -2;
}
.side-bnr-box .side-tel-ttl::after {
  position: absolute;
  content: "";
  background: var(--col-wh);
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.side-bnr-box .side-tel-ttl .text {
  position: relative;
  z-index: 5;
}
.side-bnr-box .side-container {
  background: var(--col-base03);
  display: block;
  box-sizing: border-box;
  padding: 75px 10px 10px 10px;
  width: 200px;
}
.side-bnr-box .side-tel {
  margin-bottom: 12px;
  display: block;
}
.side-bnr-box .side-tel .num {
  font-size: 2.2rem !important;
  letter-spacing: 0;
}
.side-bnr-box .side-btn-item {
  margin-bottom: 10px;
}
.side-bnr-box .side-btn-item:last-child {
  margin-bottom: 0;
}

/* close button */
.action-close {
  position: fixed;
  z-index: 60;
  bottom: 30px;
  right: 0;
}

.action-close .btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--col-wh);
  border-radius: 50%;
  z-index: 80;
  padding: 0;
  position: absolute;
  top: -50px;
  right: 0px;
}

.action-close .btn::before, .action-close .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 12px; /* 棒の高さ */
  background: var(--col-main-light);
  margin: 0;
  border: none;
}

.action-close .btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.action-close .btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* checkbox 非表示 */
.add-control .checkbox {
  display: none;
}

/* close button's control */
.add-control .action-close #close:checked ~ .btn {
  display: none;
}

.add-control .action-close #close:checked ~ .box {
  display: none;
}

.footer {
  position: relative;
  box-sizing: border-box;
  padding: 12% 0;
}
.footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--col-main-light);
  left: 0;
  margin: auto;
  right: 0;
  top: -12px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 5;
}
.footer-logo {
  display: block;
  box-sizing: border-box;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--col-gry);
  margin: 0 auto 50px;
  text-align: center;
  width: 200px;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-btn-list {
  gap: 10px;
  margin-bottom: 30px;
}
.footer-wrap {
  position: relative;
  background: var(--col-wh);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 6% 4%;
  display: block;
}
.footer-nav {
  gap: 5%;
}
.footer-nav-link {
  font-size: 1.3rem;
  font-weight: 500;
}
.footer-nav-list {
  width: 50%;
}
.footer-nav-item {
  margin-bottom: 15px;
}
.footer-nav-item:last-child {
  margin-bottom: 0;
}
.footer #copyright {
  text-align: center;
  padding: 7% 0;
  color: var(--col-main);
  z-index: 2;
}
.footer #copyright small {
  color: var(--col-main);
  font-size: 12px;
}
.footer #copyright small a {
  color: var(--col-main);
}
.footer #copyright small a:hover {
  opacity: 0.7;
}

/*--------------- △ footer △ ---------------*/
/*--------------- ▽ top-page ▽ ---------------*/
/*--------------- ▼ main-visual ▼ ---------------*/
#mv {
  z-index: 0;
  position: relative;
  margin-top: 65px;
}
#mv .bx-wrapper,
#mv ul {
  height: 100%;
}
#mv li {
  position: relative;
  height: 300px;
}
#mv li:nth-child(1) {
  background: url(../img/mv/mv-slide01.jpg) no-repeat center center/cover;
}
#mv li:nth-child(2) {
  background: url(../img/mv/mv-slide02.jpg) no-repeat center center/cover;
}
#mv li:nth-child(3) {
  background: url(../img/mv/mv-slide03.jpg) no-repeat center center/cover;
}

.mv {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: url(../img/mv/mv-bg.jpg) no-repeat center center/cover;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 50px;
}
.mv-catch {
  z-index: 100;
  width: clamp(250px, 90%, 500px);
  position: relative;
  top: -40px;
  margin: 0 auto;
}

#mv {
  position: relative;
}
#mv li {
  width: 100%;
  margin: 0 0 0 auto;
}

.mv-news {
  display: block;
  position: relative;
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 15px 30px 15px 30px;
  border-bottom: 2px solid var(--col-main-light);
  border-top: 2px solid var(--col-main-light);
  width: 90%;
  margin: 0 auto;
}
.mv-news::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw02-main.png) no-repeat;
  width: 12px;
  height: 12px;
  bottom: 0;
  margin: auto;
  right: 15px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.mv-news-ttl {
  margin-bottom: 6%;
}
.mv-news-ttl .ttl-ja {
  font-size: 1.8rem;
  font-weight: 700;
}
.mv-news-ttl .ttl-en {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}
.mv-news .news-text {
  gap: 10px;
}
.mv-news-wrap {
  display: block;
}
.mv-news-item {
  position: relative;
  flex: 1;
}
.mv-news-link {
  position: relative;
  display: block;
  box-sizing: border-box;
}
.mv-news .news-text-wrap {
  display: block;
  width: 100%;
}
.mv-news .news-post-ttl {
  font-size: 1.3rem;
}
.mv-news .news-post-time {
  display: block;
  font-family: var(--font-text-en);
  font-size: 1.5rem;
  font-weight: 500;
  width: 100px;
}
.mv-news .mv-news-tag {
  font-size: 1.3rem;
  font-weight: 600;
  gap: 15px;
  margin-bottom: 5px;
}
.mv-news .mv-news-tag .tag {
  box-sizing: border-box;
  padding: 0 0 0 10px;
  position: relative;
  color: var(--col-main-light);
}
.mv-news .mv-news-tag .tag::before {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
.top-section {
  padding: 17% 0;
  box-sizing: border-box;
}

/*--------------------
top-event
---------------------*/
.top-event-btn {
  margin: 60px auto 0;
}

/*--------------------
top-about
---------------------*/
.top-about {
  position: relative;
}
.top-about::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 100%;
  height: 150px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-about::after {
  position: absolute;
  content: "";
  background: rgb(var(--col-main-light02-rbg), 0.3);
  width: 12%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}

/*top-about-lead*/
.top-about-lead {
  display: block;
}
.top-about-lead-movie {
  aspect-ratio: 1000/560;
  width: 100%;
  height: fit-content;
}
.top-about-lead-movie iframe{
  width: 100%;
  height: 100%;
}
.top-about-lead-ttl {
  margin: 6% 0 10%;
  font-size: 2.1rem;
}
.top-about-lead-ttl .line {
  color: var(--col-text);
  background: linear-gradient(transparent 97%, var(--col-main) 0%);
}
.top-about-lead-ttl .color-sub {
  color: var(--col-main);
}
.top-about-lead-ttl .deco::before {
  opacity: 0.5;
}
.top-about-lead-text-wrap {
  position: relative;
  margin: 0 auto 15%;
}

/*top-about-links*/
.top-about-links-list {
  flex-wrap: wrap;
  gap: 30px;
}
.top-about-links-item {
  position: relative;
  width: 100%;
  height: 150px;
}
.top-about-links-item .item-bnr {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.top-about-links-item .item-bnr::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-wh.png) no-repeat;
  width: 40px;
  height: 8px;
  bottom: 7%;
  margin: auto;
  right: 5%;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 2;
}
.top-about-links-item .item-bnr:hover::before {
  right: 40px;
}
.top-about-links-item .item-img {
  width: 100%;
  height: 100%;
}
.top-about-links-item .item-ttl {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 60%;
  height: fit-content;
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
}
.top-about-links-item .item-ttl::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-about-links-item .item-ttl .text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.top-about-links-item:nth-child(1) .item-ttl::after {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 80px;
  height: 100%;
  left: -5px;
  margin: auto;
  top: -5px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -2;
}
.top-about-links-item:nth-child(2) .item-ttl::after {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 80px;
  height: 100%;
  left: -5px;
  margin: auto;
  top: -5px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -2;
}

/*--------------------
top-service
---------------------*/
.top-service {
  position: relative;
  margin: 0 auto;
  padding: 17% 0 0;
}
.top-service::before {
  position: absolute;
  content: "";
  background: url(../img/top/service-bg-top.jpg) no-repeat center top;
  width: 100%;
  height: 490px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: cover;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-service-main-list {
  gap: 20px 5%;
  flex-wrap: wrap;
}
.top-service-main-item {
  position: relative;
  display: block;
  width: 100%;
}
.top-service-main-item .item-link {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -ms-flexbox;
  -js-display: flex;
  display: flex;
  gap: 5%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 5%;
  background: var(--col-wh);
}
.top-service-main-item .item-link::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-main.png) no-repeat;
  width: 30px;
  height: 10px;
  bottom: 15px;
  margin: auto;
  right: 15px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.top-service-main-item .item-link::after {
  position: absolute;
  content: "";
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: var(--col-sub);
  width: 40px;
  height: 35px;
  bottom: 10px;
  margin: auto;
  right: 10px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-service-main-item .item-link:hover::before {
  right: 5px;
}
.top-service-main-item .item-img {
  aspect-ratio: 3/2;
  width: 35vw;
  height: fit-content;
}
.top-service-main-item .item-ttl {
  font-size: 1.6rem;
  width: 60vw;
  margin-bottom: 0;
  height: fit-content;
}
.top-service-sub-container {
  background: var(--col-base02);
  margin: 10% auto 0;
  box-sizing: border-box;
  border-top: 2px solid var(--col-gry);
  position: relative;
  padding-top: 10%;
}
.top-service-sub-container::before {
  position: absolute;
  content: "";
  background: var(--col-base02);
  width: 100%;
  height: 120px;
  left: 0;
  margin: auto;
  right: 0;
  top: -120px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 60px 60px 0 0;
}
.top-service-sub-list {
  margin: 0 auto 15%;
  box-sizing: border-box;
}

/*--------------------
top-point
---------------------*/
.top-sec-wrap {
  position: relative;
  background: url(../img/top/message-bg.jpg) no-repeat center top;
}
.top-sec-wrap::before {
  position: absolute;
  content: "";
  background: var(--col-base02);
  width: 100%;
  height: clamp(100px, 12.5vw, 240px);
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.top-point-container {
  box-sizing: border-box;
  padding: 6%;
}
.top-point-list {
  gap: 20px 3%;
  flex-wrap: wrap;
}
.top-point-item {
  width: 48.5%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  background: url(../img/common/deco-frame01.png) no-repeat center center/contain;
}
.top-point-item .item-text {
  line-height: 1.4;
  font-family: var(--font-ttl-ja);
  font-weight: 700;
  padding: 0 0 20px;
  text-align: center;
  color: var(--col-wh);
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgb(var(--col-text-rgb), 0.5);
}
.top-point-item .item-text .small {
  font-size: 1rem;
  line-height: 1.2;
  display: block;
  font-family: var(--font-text);
  font-weight: 500;
}
.top-point-item .item-text .catch {
  margin-bottom: 10px;
}

/*--------------------
top-message
---------------------*/
.top-message {
  box-sizing: border-box;
}
.top-message-wrap {
  flex-wrap: wrap;
}
.top-message-text-wrap {
  display: block;
}
.top-message-text {
  margin-bottom: 8%;
}
.top-message-btn {
  margin: 0 auto;
}
.top-message-img-wrap {
  width: 80%;
  height: fit-content;
  position: relative;
  margin-bottom: 30px;
  display: block;
  margin: 0 auto 6%;
  order: 1;
}
.top-message-img-wrap::before {
  position: absolute;
  content: "";
  border: 1px solid var(--col-wh);
  width: 100%;
  height: 100%;
  margin: auto;
  right: -10px;
  top: 10px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-message-img-wrap::after {
  position: absolute;
  content: "";
  background: url(../img/common/deco03.png) no-repeat;
  width: 93px;
  height: 93px;
  bottom: 20px;
  left: -50px;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-message-img {
  aspect-ratio: 500/540;
  width: 100%;
  height: fit-content;
  margin-bottom: 15px;
}
.top-message-img-name {
  position: relative;
  z-index: 1;
  gap: 15px;
  justify-content: center;
}
.top-message-img-name .name-ja {
  display: block;
  font-size: 2rem;
  font-family: var(--font-text-ja);
}
.top-message-img-name .name-en {
  font-size: 1.2rem;
  font-family: var(--font-text-en);
  font-weight: 500;
  top: 5px;
  position: relative;
  box-sizing: border-box;
  padding: 0 10px;
}
.top-message-img-name .name-en::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 5px;
  height: 1px;
  bottom: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-message-img-name .name-en::after {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 5px;
  height: 1px;
  bottom: 0;
  right: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.top-interview-bnr {
  display: block;
  position: relative;
  bottom: 0;
  margin: 0 auto;
  text-align: center;
  width: 90%;
}

/*--------------------
top-news
---------------------*/
.top-sec-wrap02 {
  position: relative;
  background: url(../img/top/news-bg.jpg) no-repeat center center/cover;
}
.top-sec-wrap02::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 100%;
  height: 70px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.top-news {
  position: relative;
}
.top-news-ttl .ttl-ja {
  font-size: 2.4rem;
}
.top-news-btn {
  margin: 10% auto 0;
  position: relative;
  bottom: -30px;
}
.top-news-container {
  width: 90%;
  border: 5px solid var(--col-wh);
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10% 0 0;
}

/*--------------------
top-links
---------------------*/
.top-links-list {
  gap: 30px 5%;
  flex-wrap: wrap;
}
.top-links-item {
  width: 47.5%;
  height: 120px;
  position: relative;
}
.top-links-item .item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.top-links-item .item-link::before {
  position: absolute;
  content: "";
  border: 1px solid var(--col-main);
  width: 100%;
  height: 100%;
  left: 5px;
  margin: auto;
  top: 5px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.top-links-item .item-link::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-wh.png) no-repeat;
  width: 40px;
  height: 10px;
  bottom: 15px;
  margin: auto;
  right: 15px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.top-links-item .item-link:hover::after {
  right: 5px;
}
.top-links-item .item-img .img {
  width: 100%;
  height: 120px;
}
.top-links-item .item-ttl {
  position: absolute;
  left: 0;
  top: 15px;
  width: 90%;
  z-index: 10;
  box-sizing: border-box;
  padding: 10px;
  background: var(--col-main);
  height: 40px;
}
.top-links-item .item-ttl::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 15px;
  height: 40px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  bottom: 0;
  top: 0;
  margin: auto;
  right: -14px;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-links-item .item-ttl .text {
  color: var(--col-wh);
  display: block;
  font-size: 1.5rem;
}

/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
  padding: 20% 0;
  box-sizing: border-box;
  position: relative;
}

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
  box-sizing: border-box;
    margin-top: 65px;
    background: url(../img/sv/sv-bg.jpg)no-repeat center center/cover;
}
.sv-ttl {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--col-wh);
  font-size: 2rem;
  background: var(--col-main);
  text-align: center;
  box-sizing: border-box;
  padding: 15px;
  font-weight: 700;
  z-index: 5;
  width: fit-content;
}
.sv-img {
  width: 82%;
  height: 180px;
  margin: 0 0 0 auto;
}

/*--------------- ▼ ぱんくず ▼ ---------------*/
#bread-clumb {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 2% 0;
  z-index: 100;
  line-height: 1;
}
#bread-clumb li {
  position: relative;
  color: var(--col-text);
  font-size: 14px;
  float: left;
  margin-right: 20px;
}
#bread-clumb li:after {
  content: ">";
  position: absolute;
  display: block;
  right: -15px;
  top: 0;
}
#bread-clumb li:last-child {
  margin-right: 0;
}
#bread-clumb li:last-child:after {
  display: none;
}
#bread-clumb li a {
  color: var(--col-text);
  border-bottom: 1px solid;
  display: block;
}
#bread-clumb li a:hover {
  opacity: 0.7;
}

/*--------------- ▲ ぱんくず ▲ ---------------*/
/*--------------- ▼ sub02_about ▼ ---------------*/
/*-----------------------
about-lead
-------------------------*/
.about-lead {
  background: url(../img/about/lead-bg-top.png) no-repeat top center/300%;
}
.about-lead-sub-ttl {
  margin: 0 auto 8%;
}
.about-lead-sub-ttl .ttl {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.2em;
  width: fit-content;
}
.about-lead-sub-ttl .ttl .deco {
  display: block;
  position: relative;
  border-bottom: 1px solid var(--col-wh);
  height: fit-content;
}

.abbut-interview-bnr {
  position: relative;
  margin: 0 auto;
  display: block;
}
.abbut-interview-bnr:hover {
  opacity: 0.7;
  bottom: 10px;
}

/*-----------------------
about-movie
-------------------------*/
.about-sec-wrap01 {
  background: url(../img/common/bg-leaf-top.png) no-repeat top 100px center/100%, var(--col-base02);
  position: relative;
}
.about-sec-wrap01::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 100%;
  height: 100px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-sec-wrap01::after {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 100%;
  height: 2px;
  top: 100px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.about-movie {
  aspect-ratio: 1080/610;
  width: 90%;
  margin: 0 auto;
  height: fit-content;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.about-movie-wrap{
  aspect-ratio: 1080/610;
  width: 100%;
  height: 100%;
}
.about-movie-wrap iframe{
  width: 100%;
  height: 100%;
}
/*-----------------------
about-message
-------------------------*/
.about-message {
  border-bottom: 2px solid var(--col-main-light);
}
.about-message-name .name .name-ja {
  font-family: var(--font-text-ja);
}
.about-message-name .name .name-ruby {
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--font-text);
  letter-spacing: 0.05em;
}
.about-message-name .name .name-ruby .text01 {
  position: relative;
  left: 5px;
}
.about-message-name .name .name-ruby .text02 {
  position: relative;
  left: 25px;
}
.about-message-wrap {
  display: block;
}
.about-message-img {
  order: 2;
  position: relative;
  height: fit-content;
  margin: 0 auto 5%;
  text-align: center;
}
.about-message-img::before {
  position: absolute;
  content: "";
  background: url(../img/common/deco03.png) no-repeat;
  width: 93px;
  height: 93px;
  bottom: -40px;
  margin: auto;
  right: -40px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: 1;
}
.about-message-img .img {
  aspect-ratio: 380/430;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.about-message-contents {
  margin-bottom: 12%;
}

/*-----------------------
about-feature
-------------------------*/
.about-feature-list {
  box-sizing: border-box;
  border: 2px solid;
  border-image: var(--gradation01);
  border-image-slice: 1;
  gap: 30px 3%;
  flex-wrap: wrap;
  padding: 7% 4%;
}
.about-feature-item {
  width: 48.5%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  background: url(../img/common/deco-frame02.png) no-repeat center center/contain;
}
.about-feature-item .item-text {
  display: block;
  line-height: 1.4;
  font-family: var(--font-ttl-ja);
  font-weight: 700;
  padding: 0 0 30px;
  text-align: center;
  color: var(--col-wh);
  font-size: 1.3rem;
  background: var(--gradation01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.about-feature-item .item-text .small {
  font-size: 1rem;
  line-height: 1.2;
  display: block;
  font-family: var(--font-text);
  font-weight: 500;
}
.about-feature-item .item-text .catch {
  margin-bottom: 10px;
}

/*-----------------------
about-point
-------------------------*/
.about-point {
  margin: 0 auto;
  position: relative;
  padding: 0 0 17%;
}
.about-point .inbox {
  position: relative;
}
.about-point-ttl {
  margin-bottom: 70px;
}
.about-point-sec {
  position: relative;
  margin: 0 auto 17%;
}
.about-point-sec:last-of-type {
  margin: 0 auto;
}
.about-point-sec::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 100%;
  height: 300px;
  left: 0;
  margin: auto;
  top: 50px;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-point-wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
.about-point-img {
  width: 100%;
  height: 200px;
  order: 1;
  margin-bottom: 15px;
}
.about-point-text-wrap {
  order: 2;
}

/*--------------- ▲ sub02_about ▲ ---------------*/
/*--------------- ▼ sub03_service ▼ ---------------*/
/*-----------------------
com-page-links-list
-------------------------*/
.com-page-links {
  padding: 17% 0 0;
}
.com-page-links-item {
  width: 47.5%;
}

.com-page-links-list {
  gap: 30px 5%;
}

/*-----------------------
service-about
-------------------------*/
.service-about {
  margin: 0 auto;
  position: relative;
}
.service-about-sub-list {
  padding: 17% 0 0;
  border-top: 2px solid var(--col-gry);
}
.service-about-list {
  margin-bottom: 17%;
  box-sizing: border-box;
}
.service-about-item {
  position: relative;
  margin-bottom: 17%;
}
.service-about-item:last-child {
  margin-bottom: 0;
}
.service-about-item::before {
  position: absolute;
  content: "";
  background: var(--col-base02);
  width: 100%;
  height: 200px;
  bottom: -30px;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.service-about-item .inbox {
  position: relative;
}
.service-about-text-wrap {
  margin: 0 auto 10%;
}
.service-about-img {
  aspect-ratio: 640/400;
  width: 100%;
  height: fit-content;
  top: 0;
}


/*advisor*/
.service-about-advisor-wrap{
  margin: 0 auto 10%;
  position: relative;
  display: block;
}
.service-about-advisor-ttl{
  margin: 0 auto 40px;
}
.service-about-advisor-img{
  aspect-ratio: 620/380;
  width: 100%;
  margin: 0 auto 10%;
}
.service-about-advisor-text-wrap{
  position: relative;
}
.service-about-advisor-text{
  margin-bottom: 10%;
}
.service-about-advisor-note{
  padding:20px;
  text-align: center;
  border: 2px solid var(--col-main)
}
.service-about-advisor-note-ttl{
  color: var(--col-main);
  font-size: 2rem;
  text-align: center;
  margin: 0 auto 20px;
  border-bottom: 1px solid var(--col-main);
  font-weight: 500;
  font-family: var(--font-text);
  padding-bottom: 7px;
  box-sizing: border-box;
}

/*service-about-advisor-case-container*/
.service-about-advisor-case-container{
  background: var(--col-base02);
  padding: 10% 5%;
  margin: 0 auto 10%;
}


/*service-about-advisor-flow*/
.service-about-advisor-flow{
  margin: 0 auto 20%;
}
.service-about-advisor-flow-list{
  position: relative;
  margin: 0 auto 50px;
  gap: 60px;
}
.service-about-advisor-flow-list::before{
  position: absolute;
  content: "";
  background: var(--col-sub);
  width: 50px;
  height: 100%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.service-about-advisor-flow-item{
  width: 100%;
  height: 100%;
  background: var(--col-main);
  box-sizing: border-box;
  padding:43px 15px 25px;
  position: relative;
}
.service-about-advisor-flow-item .item-ttl{
  position: absolute;
  display: block;
  transform: translateY(-50%);
  top: 0;
  left: 0;
  right: 0;
  background: var(--col-wh);
  color: var(--col-main);
  width: 155px;
  margin: auto;
  border: 2px solid var(--col-main);
  text-align: center;
  padding: 10px 10px;
  box-sizing: border-box;
  border-radius: 6px;
  font-family: var(--font-text);
  font-weight: 600;
}
.service-about-advisor-flow-item .item-text{
  color: var(--col-wh);
  font-size: 1.5rem;
}
.service-about-advisor-flow-item .item-text .small{
  font-size: 1.3rem;
}

/*-----------------------
service-price
-------------------------*/
.service-price {
  padding: 17% 0;
  background: url(../img/service/service-bg-top.png) no-repeat top center;
}
.service-price-links-list {
  margin: 0 auto 17%;
}
.service-price-contents-com-table {
  margin: 0 auto;
  display: block;
  text-align: center;
  overflow-x: scroll;
}
.service-price-contents-com-table .img {
  width: 750px;
}
.service-price-contents01 {
  margin: 0 auto 17%;
}
.service-price-contents01-text {
  margin-bottom: 10%;
}
.service-price-contents01-list {
  margin-bottom: 80px;
}
.service-price-contents02-point-list {
  gap: 15px;
  margin: 50px 0 60px;
}
.service-price-contents02-point-item {
  width: 100%;
  min-height: 70px;
  box-sizing: border-box;
  padding: 20px;
  border: 2px solid var(--col-main);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--col-main);
}
.service-price-contents02-table {
  margin: 0 auto 100px;
}
.service-price-contents02-container {
  background: var(--col-base02);
  box-sizing: border-box;
  padding: 7% 5%;
  margin: 0 auto 40px;
}

/*--------------- ▲ sub03_service ▲ ---------------*/
/*--------------- ▼ sub04_event ▼ ---------------*/
/*-----------------------
一覧
-------------------------*/
#event .com-event-post-link::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw-main.png) no-repeat;
  width: 35px;
  height: 10px;
  bottom: -30px;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
#event .com-event-post-link:hover::before {
  right: -10px;
}

/*-----------------------
/*--------------- ▲ sub04_event ▲ ---------------*/
/*--------------- ▼ sub05_info ▼ ---------------*/
/*-----------------------
info-outline
-------------------------*/
.info-outline-wrap {
  display: block;
}
.info-outline-img {
  aspect-ratio: 440/470;
  width: 100%;
}
.info-outline-table {
  margin: 0 auto 6%;
}
.info-outline-wrap {
  margin: 0 auto 100px;
}
.info-outline-map-ttl {
  text-align: center;
  margin: 0 auto 30px;
  font-size: 2.4rem;
  color: var(--col-main);
  font-weight: 600;
  width: fit-content;
}
.info-outline-map-ttl::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-map.png) no-repeat;
  width: 15px;
  height: 20px;
  bottom: 0;
  left: -30px;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

/*-----------------------
info-gallery
-------------------------*/
.info-gallery {
  background: var(--col-base02);
}
.info-gallery-list {
  gap: 30px 5%;
}
.info-gallery-item {
  width: 47.5%;
}
.info-gallery-item .item-img {
  aspect-ratio: 1/1;
  width: 100%;
  height: fit-content;
  margin-bottom: 15px;
}
.info-gallery-item figcaption {
  box-sizing: border-box;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--col-main);
  font-weight: 600;
  font-size: 1.4rem;
}

/*-----------------------
nfo-gallery-post
-------------------------*/
.info-gallery-post-img img{
  width: 100%;
  object-fit: contain;
}

/*--------------- ▲ sub05_info ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
  text-align: center;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin-bottom: 30px;
  -webkit-justify-content: start;
  justify-content: start;
}
.post-wrp .tag-change li {
  flex: 0 0 30%;
  margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
  border: solid 1px var(--col-main);
  padding: 5px 0;
  display: block;
  color: var(--col-main);
  background: #fff;
  font-size: 3vw;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: #fff;
}

/*タグ一覧
-------------------------------*/
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 0 0 20px auto;
  max-width: 230px;
}
.tag-select-box:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--col-text);
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-bottom: 2px solid #333;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #333;
  font-weight: 700;
  -webkit-appearance: none;
  appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  box-sizing: border-box;
}

.post-wrp .tag-change {
  margin-bottom: 10%;
}
.post-wrp .tag-change li {
  text-align: center;
  margin: 10px 10px 0 0;
  min-width: 190px;
  display: inline-block;
  vertical-align: middle;
}
.post-wrp .tag-change li a {
  border: solid 1px var(--col-main);
  color: var(--col-main);
  background: #fff;
  padding: 10px 15px;
  display: block;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: #fff;
}

/*詳細
-------------------------------*/
.s-time-tag {
  margin-bottom: 5%;
}

.sb-post-body {
  margin-bottom: 7%;
  padding-bottom: 7%;
  border-bottom: 1px solid;
  line-height: 2;
}

.s-post-taglist {
  margin-bottom: 30px;
}

/*--------------- ▲ お知らせ ▲ ---------------*//*# sourceMappingURL=style_sp.css.map */