@charset "UTF-8";
.d-none {
  display: none !important;
}

body.fixed {
  overflow: hidden;
  height: 100vh;
}

#header .key-ttl {
  text-align: center;
  line-height: 1;
  height: 100vh;
  top: 0;
  left: 0;
  font-size: 16vw;
  letter-spacing: 0.02em;
  position: absolute;
  z-index: 4;
  color: #f1eae2;
  opacity: 0;
  transition: opacity 0.5s;
}
#header .key-ttl.fixed {
  position: fixed;
}
#header .key-ttl.end {
  top: auto;
  bottom: 0;
}
#header .key-ttl.show {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #header .header-content h1 {
    left: 17vw;
    right: 17vw;
    bottom: 32vw;
  }
}
@media screen and (min-width: 768px) {
  #header .key-ttl {
    font-size: min(108px, 12vh);
  }
  #header .header-content h1 {
    bottom: 77px;
  }
  #header .group-nav {
    opacity: 0;
    transition: opacity 0.5s;
    visibility: hidden;
  }
  #header .group-nav.fixed {
    position: fixed;
  }
  #header .group-nav.end {
    top: auto;
    bottom: 0;
  }
  #header .group-nav.show {
    opacity: 1;
    visibility: visible;
  }
}

.preloader {
  background: url("../img/index/opening_bg.jpg") no-repeat center/cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.preloader .group-pre {
  width: 61vw;
  height: 61vh;
  min-height: -moz-fit-content;
  min-height: fit-content;
  max-height: calc(100vh - 40px);
  position: relative;
  box-sizing: border-box;
  padding: 7vh 0 4vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5vh;
  text-align: center;
  margin: 0 auto;
}
.preloader .group-pre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(50% - 1px);
  clip-path: inset(0 0 100% 0);
  animation: expandBottomUp 0.8s forwards;
  animation-timing-function: linear;
  animation-play-state: paused;
  background: url("../img/index/opening_border_sp.png") no-repeat top center/100% auto;
}
.preloader .group-pre:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  background: url("../img/index/opening_border_sp.png") no-repeat bottom center/100% auto;
  clip-path: inset(100% 0 0 0);
  /* アニメーションの定義 */
  animation: expandTopDown 0.8s forwards;
  animation-timing-function: linear;
  animation-play-state: paused;
}
.preloader .group-pre.show::before, .preloader .group-pre.show:after {
  animation-play-state: running;
}
@media screen and (max-width: 767px) {
  .preloader .group-pre .title {
    width: 10vw;
  }
}
.preloader .group-pre .logo {
  position: relative;
  width: 90%;
}
.preloader .group-pre .logo .on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}
.preloader .group-pre .logo .off {
  transition: opacity 0.5s;
}
.preloader .group-pre .logo.show .on {
  opacity: 1;
}
.preloader .group-pre .logo.show .off {
  opacity: 0;
}
.preloader .group-pre .since {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 4vw;
  line-height: 1.5;
  font-size: 4vw;
  color: #fff;
  letter-spacing: 0.06em;
}
.preloader .scrolldown {
  position: absolute;
  bottom: 0;
  right: 4.9vw;
  font-size: 4vw;
  line-height: 1.5;
  padding: 0 0 0 1vw;
  height: 50vw;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 11;
  cursor: pointer;
}
.preloader .scrolldown .txt-latin {
  letter-spacing: 0.06em;
  cursor: pointer;
      text-decoration: none;
}
.preloader .scrolldown a:hover {
      text-decoration: none;
}
.preloader .scrolldown::before {
  content: "";
  position: absolute;
  top: 0;
  animation: scrollone 2s infinite;
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 1px;
}
.preloader .scrolldown.show {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .preloader .group-pre {
    width: 680px;
    height: 760px;
    max-height: calc(100vh - 40px);
    padding: 0 0 12px;
    gap: 35px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .preloader .group-pre {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .preloader .group-pre::before {
    background: url("../img/index/opening_border.png") no-repeat top center/100% auto;
  }
  .preloader .group-pre:after {
    background: url("../img/index/opening_border.png") no-repeat bottom center/100% auto;
  }
  .preloader .group-pre .title {
    max-height: 35vh;
    height: 221px;
  }
  .preloader .group-pre .title img {
    width: auto;
    height: 100%;
  }
  .preloader .group-pre .logo {
    width: 408px;
    height: 360px;
    max-height: 50vh;
  }
  .preloader .group-pre .logo img {
    height: 100%;
    width: auto;
  }
  .preloader .group-pre .logo .on {
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .preloader .group-pre .since {
    bottom: 30px;
    font-size: 17px;
  }
  .preloader .scrolldown {
    right: 100px;
    font-size: 17px;
    padding: 0 0 0 7px;
    height: 160px;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .preloader .scrolldown {
    right: 15px;
  }
}

@keyframes expandBottomUp {
  0% {
    /* 初期状態: 下部100%がクリップされ、非表示 */
    clip-path: inset(0 0 100% 0);
  }
  100% {
    /* 最終状態: 完全に表示 */
    clip-path: inset(0 0 0 0);
  }
}
/* 上から下へ広がるアニメーションのキーフレーム定義 */
@keyframes expandTopDown {
  0% {
    /* 初期状態: 上部100%がクリップされ、非表示 */
    clip-path: inset(100% 0 0 0);
  }
  100% {
    /* 最終状態: 完全に表示 */
    clip-path: inset(0 0 0 0);
  }
}
@keyframes scrollone {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.hamburger, #ft-fixed {
  opacity: 0;
  visibility: hidden;
}

.has-nav .hamburger, .has-nav #ft-fixed {
  opacity: 1;
  visibility: visible;
}

#key {
  position: relative;
}
#key .group-bnr {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 28.5vw);
  opacity: 0;
}
#key .group-bnr .bnr {
  margin: 0 3.8vw;
  padding: 0 0 30px;
}
#key .group-bnr .bnr a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  width: 62vw;
}
#key .group-bnr .bnr a img {
  opacity: 1;
}
#key .group-bnr .bnr a .tit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 6.216vw;
  line-height: 1.5;
  letter-spacing: 0.25em;
  z-index: 5;
}
#key .group-bnr .bnr a .tit::before {
  content: "";
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  background: url("../img/index/key_deco_sp.png") no-repeat center/auto 100%;
  width: 9vw;
  height: 3.6vw;
  right: calc(50% + 17.73vw);
}
#key .group-bnr .bnr a .tit::after {
  content: "";
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  background: url("../img/index/key_deco_sp.png") no-repeat center/auto 100%;
  width: 9vw;
  height: 3.6vw;
  left: calc(50% + 17.73vw);
}


@media screen and (max-width: 767px) {
#key .group-bnr .slick-arrow {
  width: 9vw;
  height: 9vw;
  z-index: 3;
  top: 25vw;
  }
  #key .group-bnr .slick-arrow.slick-prev{
  background-image: url("../img/index/slick-prev.png");
  left: 7vw;
  }
  #key .group-bnr .slick-arrow.slick-next{
  background-image: url("../img/index/slick-next.png");
  right: 7vw;
  }
}
@media screen and (min-width: 768px) {
  #key .group-bnr {
    left: 150px;
    right: 150px;
    display: flex;
    justify-content: center;
    gap: 45px;
    top: calc(100% - 62px);
  }
  #key .group-bnr .bnr {
    margin: 0;
    padding: 0;
  }
  #key .group-bnr .bnr a {
    width: auto;
  }
  #key .group-bnr .bnr a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s;
    background: url("../img/index/key_border.png") no-repeat center/100% auto;
  }
  #key .group-bnr .bnr a:hover::before {
    opacity: 1;
  }
  #key .group-bnr .bnr a .tit {
    font-size: 37px;
  }
  #key .group-bnr .bnr a .tit::before {
    background: url("../img/index/key_deco.png") no-repeat center/auto 100%;
    top: 50%;
    width: 54px;
    height: 22px;
    right: calc(50% + 106px);
    max-width: calc(50% - 126px);
  }
  #key .group-bnr .bnr a .tit::after {
    background: url("../img/index/key_deco.png") no-repeat center/auto 100%;
    top: 50%;
    width: 54px;
    height: 22px;
    left: calc(50% + 106px);
    max-width: calc(50% - 126px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  #key .group-bnr .bnr a .tit {
    letter-spacing: 0;
  }
  #key .group-bnr .bnr a .tit::before {
    right: calc(50% + 85px);
    max-width: calc(50% - 95px);
  }
  #key .group-bnr .bnr a .tit::after {
    left: calc(50% + 85px);
    max-width: calc(50% - 95px);
  }
}

#sec1 {
  position: relative;
  padding: 57.6vw 0 65.3vw;
  overflow: hidden;
  background: url("../img/index/s1_deco3_sp.png") no-repeat top center/100% auto, url("../img/index/s1_bg_sp.png") no-repeat bottom center/100% auto;
}
#sec1 .tit {
  position: absolute;
  transform: rotate(90deg);
  font-size: 2.8vw;
  line-height: 1.53;
  color: #a1715c;
  top: 140vw;
  left: -30vw;
  letter-spacing: 0.13em;
}
#sec1 .deco {
  position: absolute;
  width: 52.53vw;
  top: 38.67vw;
  left: calc(50% + 15.3vw);
}
#sec1 .deco2 {
  position: absolute;
  width: 55.73vw;
  bottom: 36.67vw;
  right: calc(50% - 4.8vw);
}
#sec1 .wrap {
  z-index: 2;
}
@media screen and (max-width: 767px) {
  #sec1 h2 {
    margin: 0 23.6vw 12vw 37.6vw;
  }
}
#sec1 .txt {
  letter-spacing: 0.1em;
  margin: 0 -20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #sec1 {
    padding: 459px 0 690px;
    background: url("../img/index/s1_deco3.png") no-repeat top left, url("../img/index/s1_bg.png") no-repeat bottom center;
            background-size: 93%, 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #sec1 {
            background-size: 1450px, 100%;
  }
}
@media screen and (min-width: 1881px) {
  #sec1 {
            background-size: 1750px, 100%;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .tit {
    font-size: 15px;
    line-height: 23px;
    top: 1068px;
    left: auto;
    right: calc(50% + 274px);
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #sec1 .tit {
    right: auto;
    left: -140px;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .deco {
    width: 346px;
    top: 276px;
    left: calc(50% + 356px);
  }
  #sec1 .deco2 {
    width: 366px;
    top: 605px;
    bottom: auto;
    right: calc(50% + 237px);
  }
  #sec1 .wrap {
    width: 1200px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  #sec1 .txt {
    letter-spacing: 0.14em;
    margin: 0 0 4px 95px;
    text-align: left;
  }
}

#sec2 {
  position: relative;
  z-index: 2;
  padding: 0 0 48vw;
}
#sec2::before {
  content: "";
  position: absolute;
  top: -23.2vw;
  z-index: 2;
  right: 0;
  height: 184.5vw;
  left: calc(50% + 11.5vw);
  background: url("../img/shared/bg3.jpg");
}
#sec2 .bg-sec {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 108px;
  z-index: 1;
}
#sec2 .bg-sec::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  right: 10.67vw;
  height: 34vw;
  background: url("../img/index/s2_img3_sp.jpg") no-repeat center/cover;
}
#sec2 .wrap {
  z-index: 2;
  padding: 0;
}
#sec2 .group-content h2 {
  color: #f1eae2;
  padding: 0 5vw 0 0;
  background: url("../img/index/s2_border_sp.png") no-repeat top right/3.2vw auto;
  font-size: 20vw;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
#sec2 .group-content h2 small {
  font-size: 12.3vw;
}
@media screen and (max-width: 767px) {
  #sec2 .group-content h2 {
    top: 12.53vw;
    right: 3.5vw;
    position: absolute;
    z-index: 2;
  }
}
#sec2 .group-content h3 {
  margin: -4.53vw 10.67vw 8.4vw;
  position: relative;
  z-index: 2;
}
#sec2 .group-content .txt {
  margin: 0 10.67vw 11vw;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: justify;
}
#sec2 .group-content .btn-link {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #sec2 {
    margin: -333px 0 0;
    padding: 0 0 77px;
  }
  #sec2::before {
    top: -142px;
    bottom: 370px;
    height: auto;
    left: calc(50% + 117px);
  }
  #sec2 .bg-sec {
    top: auto;
    height: 624px;
  }
  #sec2 .bg-sec::before {
    left: calc(50% - 309px);
    top: 0;
    right: 0;
    height: auto;
    background: url("../img/index/s2_bg.png");
  }
  #sec2 .wrap {
    width: 1208px;
  }
  #sec2 .img {
    position: absolute;
    top: 75px;
    width: 1025px;
    height: 602px;
    left: 2px;
    max-width: calc(100% - 181px);
    box-shadow: -2.828px -2.828px 46px 4px rgba(0, 0, 0, 0.22);
  }
  #sec2 .group-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
  }
  #sec2 .group-content h2 {
    padding: 0 30px 0 0;
    background: url("../img/index/s2_border.png") no-repeat top right;
    font-size: 172px;
    height: 880px;
  }
  #sec2 .group-content h2 small {
    font-size: 106px;
  }
  #sec2 .group-content h3 {
    margin: 0 11px 78px 36px;
  }
  #sec2 .group-content .txt {
    height: 238px;
    margin: 0 0 73px 18px;
    text-align: left;
  }
  #sec2 .group-content .btn-link {
    margin: 0 0 78px;
  }
}

#sec3 {
  position: relative;
  z-index: 2;
  background: url("../img/shared/bg4.jpg");
  box-sizing: border-box;
  padding: 0 0 23.5vw;
}
#sec3 .right {
  margin: 0 var(--wrapPadding);
}
#sec3 h2 {
  text-align: center;
  padding: 23.2vw 0 0;
  position: relative;
}
#sec3 h2::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 27.867vw;
  background: #391512;
  top: -8.67vw;
}
#sec3 .txt {
  margin: 6vw 0;
  letter-spacing: 0.1em;
}
#sec3 .group-img {
  margin: 0 var(--wrapPadding);
}
#sec3 .group-img .tit {
  font-size: 10.5px;
  line-height: 1.53;
  letter-spacing: 0.12em;
  color: #a27f51;
}
#sec3 .btn-link {
  margin: 8vw auto 0;
}
@media screen and (min-width: 768px) {
  #sec3 {
    padding: 0 0 166px;
    min-height: 50vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #sec3 {
    min-height: 800px;
  }
}
@media screen and (min-width: 768px) {
  #sec3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: calc(50% + 106px);
    background: url("../img/shared/bg.jpg");
    height: 128px;
  }
  #sec3 .right {
    margin: 0 auto;
    width: 1328px;
    max-width: calc(100% - 60px);
  }
  #sec3 h2 {
    text-align: right;
    width: 358px;
    margin: 0 0 0 auto;
    padding: 252px 0 0;
    position: relative;
  }
  #sec3 h2::before {
    height: 196px;
    top: 0;
  }
  #sec3 .txt {
    margin: 47px 3px 0 auto;
    width: 350px;
    letter-spacing: 0.1em;
  }
  #sec3 .group-img {
    position: absolute;
    z-index: 2;
    top: 40px;
    left: 0;
    width: calc(50% + 217px);
    max-width: calc(100% - 474px);
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
  }
  #sec3 .group-img .img img {
    width: 100%;
  }
  #sec3 .group-img .tit {
    margin: 0 0 14px 72px;
    font-size: 15px;
    line-height: 23px;
  }
  #sec3 .btn-link {
    margin: 51px 18px 0 auto;
  }
}

#sec4 {
  background: url("../img/index/s4_deco2_sp.png") no-repeat top center/100% auto, url("../img/shared/bg5.jpg");
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 22.267vw 0 16.5vw;
}
#sec4 .deco {
  position: absolute;
  width: 51.5vw;
  top: -5vw;
  right: calc(50% + 5.73vw);
}
#sec4 .wrap {
  z-index: 2;
  padding: 0;
}
#sec4 .group h2 {
  margin: 0 18vw 10vw;
}
#sec4 .group .s4-slide .slick-dots {
  bottom: 12px;
  right: 0;
  left: 0;
  justify-content: center;
}
#sec4 .group-txt {
  margin: 12vw 0 0;
}
#sec4 .group-txt .map {
  margin: 0 3.3vw;
}
#sec4 .group-txt .txt {
  text-align: justify;
  padding: 8vw var(--wrapPadding) 0;
  position: relative;
  letter-spacing: 0.1em;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #sec4 {
    padding: 78px 0 115px;
    background: url("../img/index/s4_deco2.png") no-repeat top center, url("../img/shared/bg5.jpg");
  }
  #sec4 .deco {
    width: 346px;
    top: 204px;
    right: calc(50% + 372px);
  }
  #sec4 .wrap {
    width: 1198px;
  }
  #sec4 .group {
    position: relative;
  }
  #sec4 .group h2 {
    position: absolute;
    z-index: 2;
    bottom: 102px;
    right: calc(50% + 211px);
    margin: 0;
  }
  #sec4 .group .s4-slide {
    margin: 0 0 0 auto;
    width: calc(50% + 268px);
  }
  #sec4 .group .s4-slide .img {
    height: 494px;
  }
  #sec4 .group .s4-slide .slick-dots {
    bottom: 50px;
    right: calc(100% + 53px);
    left: auto;
  }
  #sec4 .group-txt {
    position: relative;
    margin: 55px auto 0;
    width: 1000px;
    max-width: calc(100% - 76px);
    box-sizing: content-box;
    padding: 0 38px;
  }
  #sec4 .group-txt .map {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  #sec4 .group-txt .txt {
    width: 422px;
    padding: 42px 0 0;
    margin: 0 0 0 auto;
  }
}

#rss {
  background: url("../img/shared/bg6.jpg");
  padding: 12vw 0 10vw;
}
#rss h2 {
  font-size: 5.867vw;
  line-height: 1.5;
  letter-spacing: 0.25em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #rss h2 {
    overflow: hidden;
  }
  #rss h2 span {
    display: inline-block;
    padding: 0 3vw;
    position: relative;
  }
  #rss h2 span::before, #rss h2 span:after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 1px;
    background: #000;
    top: 50%;
    opacity: 0.4;
  }
  #rss h2 span::before {
    right: 100%;
  }
  #rss h2 span:after {
    left: 100%;
  }
#rss .btn-more {
  margin-top: 1em;
  }
  #rss #feed{
        display: flex;
       gap: 4vw;
    flex-wrap: wrap;
  margin-top: 1em;
  }  
  #rss #feed .item{
        display: flex;
    gap: 4vw;
  }
  #rss #feed .item a span{
           width: 160px !important;
        height: 88px !important;
        margin-left: 13px;
  }
}

#rss .btn-more {
  line-height: 1.5;
  text-align: center;
}
#rss .btn-more a {
  text-decoration: none;
  border-bottom: 1px solid;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #rss {
    padding: 62px 0 54px;
  }
  #rss .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #rss .col{
        display: flex;
    flex-wrap: wrap;
    width: 120px;
    justify-content: center;
    padding-right: 60px;
    gap: 16px;
  }
  #rss h2 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.25em;
  }
  #rss .btn-more {
  }
  #rss #feed{
        display: flex;
    gap: 30px;
            min-width: 600px;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  #rss .btn-more a:hover {
    border-color: transparent;
  }
}

#sec6 {
  padding: 16vw 0 0;
  text-align: center;
}
#sec6 .logo {
  margin: 0 auto;
  width: 117px;
}
#sec6 .name {
  margin: 18px 0 30px;
}
@media screen and (max-width: 767px) {
  #sec6 .name {
    font-size: 13px;
    line-height: 1.77;
  }
}
#sec6 .group-tel-btn {
  margin: 0 var(--wrapPadding) 12vw;
  color: #fff;
  padding: 21px 0 30px;
  background: url("../img/shared/bg5.jpg");
}
#sec6 .group-tel-btn .tel .sub-tel {
  display: block;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 0 0 10px;
}
#sec6 .group-tel-btn .tel span {
  display: block;
  line-height: 1;
  font-size: 23px;
  letter-spacing: 0.06em;
}
#sec6 .group-tel-btn .tel span small {
  font-size: 15px;
}
#sec6 .group-tel-btn .tel .note-tel {
  display: inline-block;
  font-size: 11.5px;
  line-height: 1.5;
  padding: 5px 0 15px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #sec6 .group-tel-btn .tel .note-tel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }
}
#sec6 .group-tel-btn .btn-web {
  margin: 22px auto 0;
  width: 285px;
}
#sec6 .group {
  position: relative;
}
#sec6 .group #ggmap {
  margin: 13vw var(--wrapPadding) 12vw;
  height: 475px;
  filter: grayscale(1);
}
#sec6 .group #ggmap iframe {
  width: 100%;
  height: 100%;
}
#sec6 .group .right {
  margin: 0 10px;
  text-align: left;
}
#sec6 .group .right .info dl {
  line-height: 1.75;
  padding: 0 10px 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
#sec6 .group .right .info dl + dl {
  margin-top: 16px;
}
#sec6 .group .right .info dl dd {
  letter-spacing: 0;
}
#sec6 .group .right .info dl dd > a {
  display: inline-flex;
  text-decoration: none;
  position: relative;
  align-items: center;
  gap: 4px;
  margin: 0 0 0 10px;
}
#sec6 .group .right .info dl dd > a::before {
  content: "";
  background: url("../img/shared/icon_map_sp.png") no-repeat center/100% auto;
  width: 9px;
  height: 15.5px;
}
#sec6 .group .right .info dl dd > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  bottom: 3px;
}
#sec6 .group .right .info dl dd .sns {
  display: flex;
  margin: 15px 0 0;
  gap: 28px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  #sec6 .group .right .info dl dd .sns li {
    width: 26.5px;
  }
}
#sec6 .group .right .group-btn {
  padding: 0 0 29vw;
  text-align: center;
}
#sec6 .group .right .group-btn .btn-link {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #sec6 {
    padding: 98px 0 0;
    text-align: center;
  }
  #sec6 .logo {
    margin: 0;
    width: auto;
  }
  #sec6 .group-tel-btn {
    margin: 0 auto 66px;
    width: 802px;
    color: #fff;
    padding: 21px 0 20px;
    display: flex;
    align-items: center;
    gap: 33px;
  }
  #sec6 .group-tel-btn .tel {
    width: 441px;
    border-right: 1px solid rgba(255, 255, 255, 0.45);
  }
  #sec6 .group-tel-btn .tel .sub-tel {
    font-size: 16px;
    padding: 7px 0 10px;
  }
  #sec6 .group-tel-btn .tel span {
    display: block;
    line-height: 1;
    font-size: 26px;
    letter-spacing: 0.06em;
  }
  #sec6 .group-tel-btn .tel span small {
    font-size: 17px;
  }
  #sec6 .group-tel-btn .tel .note-tel {
    display: block;
    font-size: 14px;
    padding: 11px 0 5px;
  }
  #sec6 .group-tel-btn .btn-web {
    width: 265px;
  }
  #sec6 .group {
    position: relative;
  }
  #sec6 .group #ggmap {
    margin: 0;
    position: absolute;
    top: 0;
    width: 50%;
    left: 0;
    height: 100vh;
    max-width: calc(100% - 622px);
  }
  #sec6 .group #ggmap.fixed {
    position: fixed;
  }
  #sec6 .group #ggmap.end {
    top: auto;
    bottom: 0;
  }
  #sec6 .group .right {
    width: 50%;
    min-width: 622px;
    margin: 0 0 0 auto;
  }
  #sec6 .group .right .info {
    padding: 44px 0 0;
    width: 562px;
    margin: 0 auto;
  }
  #sec6 .group .right .info dl {
    display: flex;
    line-height: 1.75;
    padding: 0 0 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  #sec6 .group .right .info dl + dl {
    margin-top: 16px;
  }
  #sec6 .group .right .info dl dt {
    width: 120px;
  }
  #sec6 .group .right .info dl dd {
    letter-spacing: 0;
    width: calc(100% - 120px);
  }
  #sec6 .group .right .info dl dd > a {
    margin: 0 0 0 10px;
  }
  #sec6 .group .right .info dl dd > a::before {
    background: url("../img/shared/icon_map.png") no-repeat center/100% auto;
    width: 11px;
    height: 18px;
  }
  #sec6 .group .right .info dl dd > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #000;
    bottom: 3px;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  #sec6 .group .right .info dl dd > a:hover:after {
    background: transparent;
  }
}
@media screen and (min-width: 768px) {
  #sec6 .group .right .info dl dd .sns {
    margin: 10px 0 0;
  }
  #sec6 .group .right .group-btn {
    padding: 63px 0 165px;
  }
  #sec6 .group .right .group-btn .btn-link {
    margin: 0 auto;
  }
  #sec6 .group .right .group-btn .btn2 {
    margin: 14px 0 0;
  }
  #sec6 .group .right .group-btn .btn2 a {
    text-decoration: underline;
    text-underline-offset: 9px;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  #sec6 .group .right .group-btn .btn2 a:hover {
    text-decoration: none;
  }
}