@charset "UTF-8";
/*--------------- ▽ 変数設定 ▽ ---------------*/
/*メインカラー*/
:root {
  --col-main: #ed8023;
  --col-main-rgb: 234,122,20;
  --col-main-dark: #ed6a36;
  --col-main-light: #f5b53a;
  --col-main-light-rbg: 245,181,58;
  --col-main-light02: #f1d87e;
  --col-main-light02-rbg: 241,216,126;
  --col-sub: #ffea00;
  --col-sub-rgb: 25,234,0;
  --col-sub-light:#fff47f;
  --col-sub-light-rgb:255,244,127;
  --col-gry: #e1dfd7;
  --col-text: #191718;
  --col-text-rgb: 25,23,24;
  --col-wh: #fff;
  --col-wh-rgb: 255,255,255;
  --col-base: #fff;
  --col-base02: #f8f6ed;
  --col-base03: #fffbd1;
  --col-line:#06c755;
}

/*フォント*/
:root {
  --font-text: "Noto Sans JP",sans-serif;
  --font-ttl-ja: "Noto Serif JP",serif;
  --font-ttl-en: "Noto Serif JP",serif;
  --font-serif: "Noto Serif JP",serif;
  --font-text-ja: "Yuji Syuku", serif;
  --font-text-en: "Jost", sans-serif;
}

:root {
  --font-size-base: 1.7rem;
  --font-size-base-sp: 1.5rem;
}

:root {
  --gradation01: linear-gradient(to right, rgba(174,143,78,1) 1%,rgba(187,156,91,1) 25%,rgba(197,176,111,1) 49%,rgba(187,156,91,1) 75%,rgba(174,143,78,1) 100%);
}

/*
  --font-notosans: "Noto Sans JP",sans-serif;
  --font-serif: "Noto Serif JP",serif;
  --font-meirio: "メイリオ",Meiryo,sans-serif;
  --font-yu_go: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic","Noto Sans JP",sans-serif;
*/
:root {
  --round-base: 20px;
  --round-small: 10px;
}

/*--------------- △ 変数設定 △ ---------------*/
/*--------------- ▽ header ▽ ---------------*/
.header{
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  background: var(--col-wh);
}
.header h1 span {
  display: block;
}
.header-logo {
  display: block;
  width: fit-content;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-inner {
  box-sizing: border-box;
  padding: 10px 20px 15px 20px;
  margin: 0 auto;
  min-width: 1150px;
}
.header-info {
  gap: 10px;
  margin-bottom: 18px;
}
.header-nav-list {
  gap: 22px;
  margin: 0 0 0 auto;
  width: fit-content;
}
@media screen and (max-width :1500px){
  .header-inner{
    padding: 10px 20px;
  }

  .header-nav-link{
    font-size: 1.4rem;
  }
  .header-info{
    margin-bottom: 10px;
  }
}
/*-------------------
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: 360px;
  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: 20px;
  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;
}

@media screen and (max-width :1500px){
  .fix-side-sns .com-sns-icon-list{
    gap: 15px;
  }
.fix-side-sns .com-sns-icon-list .link img{
  width: 29px!important;
  display: block;
}
.fix-side-sns{
  bottom: 320px;
}
.action-close{
  bottom: 0;
}
}


.footer {
  position: relative;
  box-sizing: border-box;
  padding: 80px 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;
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--col-gry);
}
.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: 60px 160px;
}
.footer-left {
  width: 400px;
}
.footer-nav {
  gap: 50px;
}
.footer-nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  display: block;
  left: 0;
}
.footer-nav-link:hover{
  opacity: 0.7;
  left: 8px;
}
.footer-nav-item {
  margin-bottom: 25px;
}
.footer-nav-item:last-child {
  margin-bottom: 0;
}
.footer #copyright {
  text-align: center;
  padding: 5px 0;
  position: absolute;
  bottom: 60px;
  right: 160px;
  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 ▽ ---------------*/
.top-section {
  padding: 110px 0 120px;
  box-sizing: border-box;
}

/*--------------- ▼ main-visual ▼ ---------------*/
#mv {
  z-index: 0;
  position: relative;
  margin-top: 126px;
}
#mv .bx-wrapper,
#mv ul {
  height: 100%;
  margin: 0 0 0 auto!important;
  width: clamp(900px, 75vw, 1400px) !important;
}
#mv li {
  height: clamp(550px, 50vw, 850px)!important;
    width: clamp(900px, 75vw, 1400px)!important;
  margin: 0 0 0 auto!important;
}
#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;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 50px;
}
.mv-catch {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  width: clamp(450px, 40vw, 680px);
}

#mv {
  position: relative;
}


.mv-news {
  position: absolute;
  display: block;
  bottom: 80px;
  left: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 1080px;
  background: var(--col-wh);
  box-sizing: border-box;
  padding: 15px 80px 15px 30px;
  border-bottom: 2px solid var(--col-main-light);
  border-top: 2px solid var(--col-main-light);
  z-index: 1000;
}
.mv-news::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-arw02-main.png) no-repeat;
  width: 25px;
  height: 25px;
  bottom: 0;
  margin: auto;
  right: 30px;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.mv-news:hover {
  opacity: 0.8;
  left: 10px;
}
.mv-news-ttl {
  width: 130px;
}
.mv-news-ttl .ttl-ja {
  font-size: 2rem;
  font-weight: 700;
}
.mv-news-ttl .ttl-en {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
}
.mv-news .news-text {
  gap: 10px;
}
.mv-news-item {
  position: relative;
  width: 800px;
  flex: 1;
}
.mv-news-link {
  position: relative;
  display: block;
  box-sizing: border-box;
}
.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;
}

@media screen and (max-width: 1800px) {
  .mv li {
    right: -100px;
  }
}
/*--------------- ▲ main-visual ▲ ---------------*/
/*--------------- ▼ top ▼ ---------------*/
/*--------------------
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: clamp(300px, 18vw, 343px);
  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: 400px;
  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 {
  gap: clamp(50px, 4.26vw, 80px);
  margin: 0 auto clamp(90px, 6.25vw, 120px);
  justify-content: center;
  gap: clamp(40px, 4.1vw, 80px);
}
.top-about-lead-movie {
  aspect-ratio: 1000/560;
  width: clamp(650px, 52vw, 1000px);
  height: fit-content;
}
.top-about-lead-movie iframe{
  width: 100%;
  height: 100%;
}
.top-about-lead-ttl {
  margin: 35px 0 90px;
  font-size: clamp(2.8rem, 1.8vw, 3.5rem);
}
.top-about-lead-text-wrap {
  position: relative;
  width: clamp(400px, 30vw, 570px);
}

@media screen and (max-width: 1500px) {
  .top-about-lead {
    justify-content: center;
    gap: 50px;
  }
  .top-about-lead-movie {
    width: clamp(500px, 55vw, 650px);
  }
  .top-about-lead-text-wrap {
    width: clamp(350px, 45vw, 500px);
    margin: 0;
  }
}
/*top-about-links*/
.top-about-links-item {
  position: relative;
  width: 50%;
  height: 350px;
}
.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: 55px;
  height: 14px;
  bottom: 36px;
  margin: auto;
  right: 50px;
  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;
  left: 75px;
  top: 28px;
  width: 80px;
  height: 280px;
}
.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 {
  writing-mode: vertical-lr;
  font-size: 3rem;
  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: 145px;
  left: -5px;
  margin: auto;
  top: -5px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -2;
}
.top-about-links-item:nth-child(1):hover .item-ttl {
  color: var(--col-wh);
}
.top-about-links-item:nth-child(1):hover .item-ttl::before {
  background: var(--col-main);
}
.top-about-links-item:nth-child(1):hover .item-ttl::after {
  opacity: 0.5;
}
.top-about-links-item:nth-child(1):hover .item-ttl .large {
  color: var(--col-wh);
}
.top-about-links-item:nth-child(2) .item-ttl::after {
  position: absolute;
  content: "";
  background: var(--col-main-light);
  width: 80px;
  height: 145px;
  left: -5px;
  margin: auto;
  top: -5px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -2;
}
.top-about-links-item:nth-child(2):hover .item-ttl {
  color: var(--col-wh);
}
.top-about-links-item:nth-child(2):hover .item-ttl::before {
  background: var(--col-main-light);
}
.top-about-links-item:nth-child(2):hover .item-ttl::after {
  opacity: 0.5;
}
.top-about-links-item:nth-child(2):hover .item-ttl .large {
  color: var(--col-wh);
}

/*--------------------
top-service
---------------------*/
.top-service {
  position: relative;
  margin: 0 auto;
  padding: 120px 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-ttl {
  margin: 0 auto 70px;
}
.top-service-main-list {
  gap: clamp(30px, 3.125vw, 60px);
}
.top-service-main-item {
  position: relative;
  display: block;
  width: calc((100% - clamp(30px, 3.125vw, 60px)) / 3);
}
.top-service-main-item .item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(15px, 1.5625vw, 30px);
  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: clamp(40px, 2.8vw, 55px);
  height: 14px;
  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 {
  width: 100%;
  height: clamp(120px, 9.375vw, 180px);
  margin-bottom: 12px;
}
.top-service-main-item .item-ttl {
  font-size: clamp(1.7rem, 1.3vw, 2.5rem);
}
.top-service-sub-container {
  background: var(--col-base02);
  margin: 80px auto 0;
  box-sizing: border-box;
  padding: 80px 0 120px 0;
  border-top: 2px solid var(--col-gry);
  position: relative;
}
.top-service-sub-container::before {
  position: absolute;
  content: "";
  background: var(--col-base02);
  width: 100%;
  height: 270px;
  left: 0;
  margin: auto;
  right: 0;
  top: -270px;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 60px 60px 0 0;
}
.top-service-sub-list {
  margin: 0 auto 70px;
  box-sizing: border-box;
  padding: 0 50px;
}

/*--------------------
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{
  padding: 0;
}
.top-point-container {
  box-sizing: border-box;
  padding: 60px clamp(60px, 8.2vw, 130px);
}
.top-point-list {
  gap: clamp(30px, 3.125vw, 60px);
}
.top-point-item {
  width: calc((100% - clamp(30px, 3.125vw, 60px)) / 4);
  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: 20px 20px 60px;
  text-align: center;
  color: var(--col-wh);
  font-size: clamp(1.7rem, 1.3vw, 2.5rem);
  text-shadow: 0 0 10px rgb(var(--col-text-rgb), 0.3);
}
.top-point-item .item-text .small {
  font-size: clamp(1.1rem, 0.8vw, 1.7rem);
  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;
  padding: 120px 100px 0;
}
.top-message .outbox {
  max-width: 1220px;
}
.top-message-text-wrap {
  display: block;
  width: 50%;
  margin-top: 20px;
}
.top-message-text {
  margin-bottom: 80px;
}
.top-message-img-wrap {
  width: 40%;
  height: fit-content;
  position: relative;
  margin-bottom: 30px;
  display: block;
  right: 50px;
}
.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: 25px;
}
.top-message-img-name .name-ja {
  font-size: 3.5rem;
  font-family: var(--font-text-ja);
}
.top-message-img-name .name-en {
  font-size: 2rem;
  font-family: var(--font-text-en);
  font-weight: 500;
  top: 5px;
  position: relative;
  box-sizing: border-box;
  padding: 0 18px;
}
.top-message-img-name .name-en::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 10px;
  height: 2px;
  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: 10px;
  height: 2px;
  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: 70px auto 0;
  text-align: center;
}
.top-interview-bnr:hover {
  opacity: 0.7;
  bottom: 10px;
}

/*--------------------
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: 170px;
  left: 0;
  margin: auto;
  right: 0;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.top-news {
  position: relative;
}
.top-news-btn {
  margin: 60px 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: 120px 0 0;
}

/*--------------------
top-links
---------------------*/
.top-links-list {
  gap: 80px;
}
.top-links-item {
  width: calc((100% - 240px) / 4);
  height: 220px;
  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-light);
  width: 100%;
  height: 100%;
  left: 10px;
  margin: auto;
  top: 10px;
  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: 220px;
}
.top-links-item .item-ttl {
  position: absolute;
  left: 15px;
  top: -10px;
  z-index: 10;
  background: var(--col-main);
  width: 60px;
  height: 180px;
}
.top-links-item .item-ttl::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: 60px;
  height: 20px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  bottom: -19px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.top-links-item .item-ttl .text {
  color: var(--col-wh);
  display: block;
  writing-mode: vertical-lr;
  font-size: 2.2rem;
}

@media screen and (max-width: 1400px) {
  .top-links-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
  }
  .top-links-item {
    width: calc((100% - 160px) / 2);
    max-width: 360px;
  }
}
/*--------------- ▲ top ▲ ---------------*/
/*--------------- ▽ sub-page ▽ ---------------*/
.sub-section {
  position: relative;
  padding: 120px 0;
  box-sizing: border-box;
}

/*--------------- ▼ sub-visual ▼ ---------------*/
.sv {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 50px;
  box-sizing: border-box;
    margin-top: 126px;
    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: 3.5rem;
  background: var(--col-main);
  min-height: 200px;
  text-align: center;
  box-sizing: border-box;
  padding: 30px;
  font-weight: 700;
  min-width: 680px;
  z-index: 5;
}
.sv-img {
  width: clamp(1000px, 70vw, 1300px);
  height: 400px;
  margin: 0 0 0 auto;
}


/*--------------- ▼ 下層共通タイトル ▼ ---------------*/
/*--------------- ▲ 下層共通タイトル ▲ ---------------*/
/*--------------- ▼ ぱんくず ▼ ---------------*/
#bread-clumb {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  padding: 20px 0;
  z-index: 1;
  min-width: 1280px;
}
#bread-clumb ul {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
#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-main);
  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;
}
.about-lead-sub-ttl .ttl {
  writing-mode: vertical-rl;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.2em;
  width: fit-content;
  margin: 0 auto 60px;
}
.about-lead-sub-ttl .ttl .deco {
  display: block;
  position: relative;
  border-left: 1px solid var(--col-wh);
  height: fit-content;
}
.about-lead-text {
  font-size: 2rem;
}

.abbut-interview-bnr {
  position: relative;
  margin: 0 auto;
  display: block;
  bottom: 0;
}
.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 280px center, var(--col-base02);
  position: relative;
}
.about-sec-wrap01::before {
  position: absolute;
  content: "";
  background: var(--col-wh);
  width: 100%;
  height: 280px;
  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: 280px;
  left: 0;
  margin: auto;
  right: 0;
  background-size: contain;
  transition: all 0.3s ease;
}

.about-movie {
  aspect-ratio: 1080/610;
  width: 1080px;
  height: fit-content;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.about-movie-wrap{
  aspect-ratio: 1080/610;
  width: 1080px;
  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.3rem;
  font-family: var(--font-text);
  letter-spacing: 0.05em;
}
.about-message-name .name .name-ruby .text01 {
  position: relative;
  left: 10px;
}
.about-message-name .name .name-ruby .text02 {
  position: relative;
  left: 70px;
}
.about-message-img {
  order: 2;
  position: relative;
  height: fit-content;
}
.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: 380px;
}
.about-message-history {
  width: 650px;
}
.about-message-contents {
  margin-bottom: 80px;
}

/*-----------------------
about-feature
-------------------------*/
.about-feature-list {
  box-sizing: border-box;
  padding: 60px 100px;
  border: 2px solid;
  border-image: var(--gradation01);
  border-image-slice: 1;
  gap: 40px;
}
.about-feature-item {
  width: 240px;
  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: 20px 20px 60px;
  text-align: center;
  color: var(--col-wh);
  font-size: 2rem;
  background: var(--gradation01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.about-feature-item .item-text .small {
  font-size: 1.3rem;
  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 {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding: 0 0 120px;
}
.about-point .inbox {
  position: relative;
}
.about-point-sec {
  position: relative;
  margin: 0 auto 100px;
  min-height: 550px;
}
.about-point-sec:last-of-type {
  margin: 0 auto;
}
.about-point-sec::before {
  position: absolute;
  content: "";
  background: var(--col-main);
  width: calc(1280px + 30% - 540px);
  height: 300px;
  left: 0;
  margin: auto;
  top: 0;
  background-size: contain;
  transition: all 0.3s ease;
}
.about-point-sec:nth-child(even)::before {
  right: 0;
  left: auto;
}
.about-point-sec:nth-child(even) .about-point-img {
  left: -420px;
  right: auto;
}
.about-point-sec:nth-child(even) .about-point-text-wrap {
  margin: 0 0 0 auto;
}
.about-point-img {
  aspect-ratio: 960/500;
  width: 960px;
  height: 500px;
  position: absolute;
  z-index: 2;
  top: 50px;
  right: -420px;
}
.about-point-text-wrap {
  width: 480px;
}
.about-point-ttl {
  top: 80px;
  margin-bottom: 200px;
}

/*--------------- ▲ sub02_about ▲ ---------------*/
/*--------------- ▼ sub03_service ▼ ---------------*/
/*-----------------------
com-page-links-list
-------------------------*/
.com-page-links {
  padding: 120px 0 0;
}

.com-page-links-list {
  gap: 120px;
}
.com-page-links-list .item {
  width: 400px;
}

/*-----------------------
service-about
-------------------------*/
.service-about {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.service-about-sub-list {
  padding: 100px 0 0;
  border-top: 2px solid var(--col-gry);
}
.service-about-list {
  margin-bottom: 100px;
  box-sizing: border-box;
}
.service-about-item {
  position: relative;
  margin-bottom: 100px;
  min-height: 500px;
}
.service-about-item:last-child {
  margin-bottom: 0;
}
.service-about-item::before {
  position: absolute;
  content: "";
  background: var(--col-base02);
  width: 1200px;
  height: 375px;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  transition: all 0.3s ease;
  z-index: -1;
}
.service-about-item:nth-child(1) {
  min-height: 530px;
}
.service-about-item:nth-child(even)::before {
  right: 0;
  left: auto;
}
.service-about-item:nth-child(even) .service-about-img {
  left: -100px;
  right: auto;
}
.service-about-item:nth-child(even) .service-about-text-wrap {
  margin: 0 0 0 auto;
}
.service-about-item .inbox {
  position: relative;
}
.service-about-text-wrap {
  width: 480px;
}
.service-about-img {
  aspect-ratio: 640/400;
  width: 640px;
  height: fit-content;
  position: absolute;
  right: -100px;
  top: 0;
}
.service-about-item-ttl {
  margin-bottom: 70px;
}


/*advisor*/
.service-about-advisor-wrap{
  margin: 0 auto 150px;
  position: relative;
}
.service-about-advisor-ttl{
  margin: 0 auto 80px;
}
.service-about-advisor-img{
  position: absolute;
  aspect-ratio: 620/380;
  width: 620px;
  height: 380px;
  left: -100px;
  top: 0;
}
.service-about-advisor-text-wrap{
  position: relative;
  margin: 0 0 0 auto;
  width: 500px;
}
.service-about-advisor-text{
  margin-bottom: 50px;
}
.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: 60px 80px;
  margin: 0 auto 100px;
}
.service-about-advisor-case-container .container-table th{
  width: 34%;
}

.service-about-advisor-case-container .container-table td{
  width: 66%;
  padding: 10px 0;
}

/*service-about-advisor-flow*/
.service-about-advisor-flow{
  margin: 0 auto 100px;
}
.service-about-advisor-flow-list{
  position: relative;
  margin: 0 auto 50px;
  gap: 20px;
}
.service-about-advisor-flow-list::before{
  position: absolute;
  content: "";
  background: var(--col-sub);
  width: 100%;
  height: 60px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.service-about-advisor-flow-item{
  width: 255px;
  min-height: 250px;
  height: 100%;
  background: var(--col-main);
  box-sizing: border-box;
  padding: 50px 30px;
  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: 20px 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: 2rem;
}
.service-about-advisor-flow-item .item-text .small{
  font-size: 1.7rem;
}
/*-----------------------
service-price
-------------------------*/
.service-price {
  padding: 120px 0;
  background: url(../img/service/service-bg-top.png) no-repeat top center;
}
.service-price-links-list {
  margin: 0 auto 100px;
}
.service-price-contents-com-table {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.service-price-contents01 {
  margin: 0 auto 100px;
}
.service-price-contents01-text {
  font-size: 2rem;
  margin-bottom: 50px;
}
.service-price-contents01-list {
  margin-bottom: 80px;
}
.service-price-contents02-point-list {
  gap: 30px;
  margin: 50px 0 60px;
}
.service-price-contents02-point-item {
  width: 340px;
  min-height: 93px;
  box-sizing: border-box;
  padding: 20px;
  border: 2px solid var(--col-main);
  font-size: 2rem;
  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: 60px;
  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;
}

#event .com-event-list{
  gap: 80px 30px;
}
#event .com-event-item{
  width: 340px;
}
#event .com-event-post-img{
aspect-ratio: 340/220;
}
/*-----------------------
/*--------------- ▲ sub04_event ▲ ---------------*/
/*--------------- ▼ sub05_info ▼ ---------------*/
/*-----------------------
info-outline
-------------------------*/
.info-outline-img {
  aspect-ratio: 440/470;
  width: 440px;
}
.info-outline-table {
  width: 600px;
}
.info-outline-wrap {
  margin: 0 auto 100px;
}
.info-outline-map-ttl {
  text-align: center;
  margin: 0 auto 30px;
  font-size: 3rem;
  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: 22px;
  height: 30px;
  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;
}
.info-gallery-item {
  width: 340px;
}
.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;
}
.info-gallery .item-link:hover{
  opacity: 0.7;
}
.info-gallery .item-link{
  display: block;
}
/*-----------------------
nfo-gallery-post
-------------------------*/
.info-gallery-post-img img{
  width: 100%;
  object-fit: contain;
}

/*--------------- ▲ sub05_info ▲ ---------------*/
/*--------------- ▼ お知らせ ▼ ---------------*/
.post-wrp .tag-change {
  margin-bottom: 50px;
}
.post-wrp .tag-change li {
  text-align: center;
  width: 19%;
  margin: 2% 1% 0 0;
}
.post-wrp .tag-change li a {
  border: solid 1px ;
  padding: 10px 0;
  display: block;
  color: var(--col-main);
  background: var(--col-base);
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: var(--col-base);
}

/*タグ一覧
-------------------------------*/
.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: 2;
  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 var(--col-text);
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: var(--col-text);
  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: 50px;
}
.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: var(--col-base);
  padding: 10px 15px;
  display: block;
}
.post-wrp .tag-change .current a {
  background: var(--col-main);
}
.post-wrp .tag-change .current a span {
  color: var(--col-base);
}

/*詳細
-------------------------------*/
.s-post .news-tag {
  margin-bottom: 20px;
}

.s-post time {
  margin-bottom: 10px;
}

.s-time-tag {
  margin-bottom: 20px;
}

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

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