@charset "UTF-8";
/*　アニメーション
=============================================================================================== */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes menuOpen02 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: rotate(-40deg) translate(3px, -4px);
  }
}
@keyframes scrollAnime {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(20%);
  }
}
@keyframes loop-slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
/*　基本
=============================================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto !important;
}

body {
  background-color: #181818;
  color: #C1BDB6;
  margin: 0;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  -webkit-tap-highlight-color: transparent;
  font-size: 1rem;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.8;
  letter-spacing: 2px;
}
body #scroll-wrap {
  opacity: 0;
  transition: 1s;
}
body.Onload #scroll-wrap {
  opacity: 1;
}

p {
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
a.txtLink {
  transition: 0.3s;
}
a.txtLink:hover, a.txtLink:focus {
  transform: scale(1.15);
}

img {
  width: 100%;
  height: auto;
}

.section {
  margin: auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .section {
    width: 900px;
  }
}
@media (min-width: 1200px) {
  .section {
    width: 1100px;
  }
}

.section-b {
  margin-top: 128px;
}
@media (max-width: 767px) {
  .section-b {
    margin-top: 96px;
  }
}

h1 {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  font-size: 3.875rem;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }
}

h3 {
  font-weight: 400;
}

.wp-block-table table,
section:not(.calendar) table {
  border-color: inherit;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.wp-block-table table tr,
section:not(.calendar) table tr {
  border-bottom: 1px solid #787383;
}
.wp-block-table table tr th,
section:not(.calendar) table tr th {
  background-clip: padding-box;
  text-align: left;
}
.wp-block-table table tr th, .wp-block-table table tr td,
section:not(.calendar) table tr th,
section:not(.calendar) table tr td {
  padding: 24px 16px;
  border: none;
}
.wp-block-table table tr th:first-child, .wp-block-table table tr td:first-child,
section:not(.calendar) table tr th:first-child,
section:not(.calendar) table tr td:first-child {
  width: 30%;
}
.wp-block-table table tr p:last-child,
section:not(.calendar) table tr p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .wp-block-table table tr td:first-child, .wp-block-table table tr th:first-child,
  section:not(.calendar) table tr td:first-child,
  section:not(.calendar) table tr th:first-child {
    width: 50%;
  }
}
ul.wp-block-list li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
ul.wp-block-list li::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: #C4C4C4;
  position: absolute;
  left: 4px;
  top: 8px;
}

br.sp {
  display: none;
}
@media (max-width: 575px) {
  br.sp {
    display: block;
  }
}

hr.wp-block-separator {
  border-top: 1px solid #787383;
  margin-top: 40px;
  margin-bottom: 40px;
}

/*　ヘッダー
=============================================================================================== */
header .site-title a.logo {
  display: block;
}
header .site-title a.logo::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 30px;
  mask: url(../images/logo01.svg);
  -webkit-mask: url(../images/logo01.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
  transition: 0.5s;
}
header a {
  color: #fff;
}
header .header-navi .nav-menu {
  padding-left: 0;
  margin: 0;
}
header .header-navi .nav-menu > li {
  list-style: none;
}
@media (min-width: 992px) {
  header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 16px 40px;
    z-index: 300;
  }
  header .site-title a.logo {
    background-color: #fff;
    border-radius: 200px;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .site-title a.logo::before {
    background-color: #000;
  }
  header .site-title a.logo:hover, header .site-title a.logo:focus {
    background-color: #181818;
  }
  header .site-title a.logo:hover::before, header .site-title a.logo:focus::before {
    background-color: #C1BDB6;
  }
  header .header-navi .nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
  }
  header .header-navi .nav-menu > li {
    display: inline-block;
  }
  header .header-navi .nav-menu > li a {
    display: inline-block;
    padding: 8px 16px;
    transition: 0.3s;
    font-size: 14px;
  }
  header .header-navi .nav-menu > li a:hover {
    transform: scale(1.15);
  }
  header .toggle-btn {
    display: none;
  }
}
@media (max-width: 991px) {
  header .site-title {
    position: fixed;
    right: 74px;
    top: 13px;
    z-index: 300;
    transition: 0.5s;
  }
  header .site-title a.logo {
    display: block;
  }
  header .site-title a.logo::before {
    content: "";
    display: inline-block;
    width: 88px;
    height: 39px;
    background-image: url(../images/logo02.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-mask: none;
            mask: none;
    background-color: transparent;
  }
  header .header-navi {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(24, 24, 24, 0.4);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    display: none;
    opacity: 0;
    transition: 0.4s;
    padding: 96px 40px 40px;
  }
  header .header-navi.open {
    display: block;
  }
  header .header-navi.open.on {
    opacity: 1;
  }
  header .header-navi .nav-menu > li {
    list-style: none;
    display: block;
  }
  header .header-navi .nav-menu > li a {
    display: inline-block;
    padding: 8px 16px;
    transition: 0.3s;
    font-size: 1.125rem;
  }
  header .header-navi .nav-menu > li a:hover {
    opacity: 0.6;
  }
  header .toggle-btn {
    position: fixed;
    right: 8px;
    top: 8px;
    width: 50px;
    height: 50px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #000;
    z-index: 300;
    transition: 0.5s;
    border: 1px solid #181818;
  }
  header .toggle-btn .toggle-btn-box {
    position: relative;
    width: 20px;
    height: 18px;
    cursor: pointer;
  }
  header .toggle-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: 0.3s;
  }
  header .toggle-btn span:nth-child(1) {
    top: 0;
  }
  header .toggle-btn span:nth-child(2) {
    top: 8px;
  }
  header .toggle-btn span:nth-child(3) {
    bottom: 0;
  }
  .header-navi-open header .site-title {
    background-color: transparent;
  }
  .header-navi-open header .toggle-btn {
    background-color: transparent;
  }
  .header-navi-open header .toggle-btn span {
    background-color: #C4C4C4;
  }
  .header-navi-open header .toggle-btn span:nth-child(1) {
    top: 8px;
  }
  .header-navi-open header .toggle-btn span:nth-child(2) {
    top: 8px;
  }
  .header-navi-open header .toggle-btn span:nth-child(3) {
    bottom: 8px;
  }
}
/*　メイン
=============================================================================================== */
main {
  background-color: #181818;
  position: relative;
  z-index: 11;
}

.page-link-contents .roundBtn {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  color: #C4C4C4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .page-link-contents .roundBtn {
    width: 190px;
    height: 190px;
  }
}
@media (max-width: 575px) {
  .page-link-contents .roundBtn {
    width: 150px;
    height: 150px;
    padding-bottom: 0;
  }
}
.page-link-contents .roundBtn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #C4C4C4;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  scale: 0;
  opacity: 0;
  transition: 0.5s;
  display: block;
}
.page-link-contents .roundBtn::after {
  content: "";
  width: 24px;
  height: 17px;
  mask: url(../images/arrow.svg);
  -webkit-mask: url(../images/arrow.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #C4C4C4;
  position: absolute;
  bottom: 72px;
  right: 0;
  left: 0;
  transform: 0.5s;
  margin: auto;
}
@media (max-width: 767px) {
  .page-link-contents .roundBtn::after {
    bottom: 48px;
  }
}
@media (max-width: 575px) {
  .page-link-contents .roundBtn::after {
    bottom: 32px;
    width: 18px;
    height: 11px;
  }
}
.page-link-contents .roundBtn .btnText {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .page-link-contents .roundBtn .btnText {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .page-link-contents .roundBtn .btnSub {
    font-size: 0.875rem;
  }
}
.page-link-contents .roundBtn:hover, .page-link-contents .roundBtn:focus {
  color: #fff;
}
.page-link-contents .roundBtn:hover::before, .page-link-contents .roundBtn:focus::before {
  scale: 1;
  opacity: 1;
}
.page-link-contents .roundBtn:hover::after, .page-link-contents .roundBtn:focus::after {
  background-color: #fff;
}

/*　固定ボタン
=============================================================================================== */
.tel {
  background-color: #7e6e4a;
}

.bbs {
  background-color: #632e37;
}

.fix-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: none;
}
.fix-btn a {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
  position: relative;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media (max-width: 767px) {
  .fix-btn a {
    width: 80px;
    height: 80px;
  }
}
.fix-btn a::before {
  content: "";
  display: inline-block;
  margin-bottom: 3px;
  background-color: #fff;
}
.fix-btn a.tel {
  margin-right: 16px;
  border: 1px solid #7e6e4a;
  background-color: rgba(126, 110, 74, 0.3);
}
@media (max-width: 575px) {
  .fix-btn a.tel {
    margin-right: 8px;
  }
}
.fix-btn a.tel::before {
  width: 22px;
  height: 25px;
  mask: url(../images/tel.svg);
  -webkit-mask: url(../images/tel.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  z-index: 10;
}
.fix-btn a.tel::after {
  background-color: #7e6e4a;
}
.fix-btn a.bbs {
  border: 1px solid #632e37;
  background-color: rgba(99, 46, 55, 0.3);
}
.fix-btn a.bbs::before {
  width: 25px;
  height: 25px;
  mask: url(../images/bbs.svg);
  -webkit-mask: url(../images/bbs.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  margin-left: 2px;
}
.fix-btn a.bbs::after {
  background-color: #632e37;
}
.fix-btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.5s;
  display: block;
}
.fix-btn a:hover::after, .fix-btn a:focus::after {
  scale: 0;
}
.fix-btn.active {
  display: flex;
}
.fix-btn.active.on a {
  opacity: 1;
}

/*　ボタン
=============================================================================================== */
/*　スクロールアニメーション
=============================================================================================== */
.h2Anime {
  overflow: hidden;
}
.h2Anime span {
  opacity: 0;
  translate: 0px 100%;
  display: inline-block;
}
.h2Anime.active span {
  opacity: 1;
  translate: 0px 0px;
}

.scroll_target.scale {
  scale: 0;
  opacity: 0;
  transition: 0.5s;
}
.access .scroll_target.scale {
  transition-delay: 0.2s;
}
.scroll_target.scale.active {
  scale: 1;
  opacity: 1;
}
.scroll_target.fade {
  opacity: 0;
  transition: 0.9s;
}
.scroll_target.fade.active {
  opacity: 1;
}
.scroll_target.blur {
  filter: blur(20px);
  transition: 0.7s;
}
.scroll_target.blur.active {
  filter: blur(0px);
}

/*　ロード
=============================================================================================== */
body .contents-body {
  opacity: 0;
  transition: 0.5s;
}
body.Onload .contents-body {
  opacity: 1;
}

.animation-bg {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: #181818;
}

.Onload:not(.ready) .animation-bg {
  opacity: 0;
}

.ready .animation-bg {
  transform-origin: top;
  transform: scaleY(0);
  animation-name: PageAnime-fade02;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
  border-radius: 0 0 50% 50%;
}
@media (max-width: 575px) {
  .ready .animation-bg {
    animation-duration: 0.5s;
  }
}

@keyframes PageAnime-fade02 {
  0% {
    transform-origin: top;
    transform: scaleY(0);
    border-radius: 0 0 50% 50%;
  }
  100% {
    transform-origin: top;
    transform: scaleY(1);
    border-radius: 0;
  }
}
main section {
  opacity: 0;
  transition: 0.5s;
}

.main-text {
  filter: blur(20px);
  opacity: 0;
  transition: 1s;
}

.main-btn-box > div {
  scale: 0;
  opacity: 0;
  transition: 0.5s;
}
.main-btn-box > div.main-btn-box02 {
  transition-delay: 0.2s;
}

.site-title, .header-navi, .toggle-btn {
  translate: 0px -112%;
  transition: 0.3s;
}

.done .site-title, .done .header-navi, .done .toggle-btn {
  translate: 0px 0%;
}
.done .main-v .main-text {
  filter: blur(0px);
  opacity: 1;
}
.done main section {
  opacity: 1;
}
.done .main-btn-box > div {
  scale: 1;
  opacity: 1;
}

/*　メインビジュアル
=============================================================================================== */
.main-v .main-img {
  width: 100%;
  background-color: #141A33;
}
.main-v .main-img img {
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  width: 100%;
  height: 100vh;
  position: fixed;
  filter: blur(4px);
}
.main-v .bgRound {
  position: absolute;
  width: 100%;
  overflow: hidden;
  bottom: -100px;
  z-index: 1;
}
.main-v .bgRound::before {
  content: "";
  width: 120%;
  height: 300px;
  display: block;
  border-radius: 0;
  position: relative;
  left: -10%;
  bottom: 0;
  background-color: #181818;
}
@media (max-width: 575px) {
  .main-v .bgRound::before {
    width: 140%;
    left: -20%;
  }
}

/*　フッター
=============================================================================================== */
footer {
  color: #C1BDB6;
  position: relative;
  z-index: 10;
  width: 100%;
}
footer a {
  color: #C1BDB6;
}
footer .bgRound {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: -100px;
  z-index: 1;
}
footer .bgRound::before {
  content: "";
  width: 120%;
  height: 300px;
  display: block;
  position: relative;
  left: -10%;
  bottom: 0;
  background-color: #181818;
}
@media (max-width: 575px) {
  footer .bgRound::before {
    width: 140%;
    left: -20%;
  }
}
@media (max-width: 575px) {
  footer .bgRound {
    top: -150px;
  }
}
footer .section {
  padding-top: 200px;
}
@media (max-width: 575px) {
  footer .section {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer #footer-navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 32px;
}
@media (max-width: 575px) {
  footer #footer-navi {
    max-width: 300px;
    margin-bottom: 40px;
    justify-content: flex-start;
  }
}
footer #footer-navi a {
  display: inline-block;
  padding: 12px;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 575px) {
  footer #footer-navi a {
    width: 50%;
    padding: 12px 16px;
  }
}
footer #footer-navi a:hover, footer #footer-navi a:focus {
  transform: scale(1.15);
}
footer .footer-box {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
@media (max-width: 767px) {
  footer .footer-box {
    align-items: baseline;
  }
}
@media (max-width: 575px) {
  footer .footer-box {
    margin-top: 40px;
  }
}
footer .footer-box .footer-site-title {
  width: 60%;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  footer .footer-box .footer-site-title {
    width: 100%;
    padding-right: 0;
    align-items: center;
    text-align: center;
  }
}
footer .footer-box .footer-site-title h3 {
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  color: #C4C4C4;
}
footer .footer-box .footer-site-title span {
  display: block;
  margin-bottom: 24px;
}
footer .footer-box .footer-site-title span br {
  display: none;
}
@media (max-width: 575px) {
  footer .footer-box .footer-site-title span br {
    display: block;
  }
}
footer .footer-box .footer-site-title p {
  margin-bottom: 8px;
}
footer .footer-box .footer-btn {
  width: 40%;
  margin: 40px auto 0;
  min-width: 270px;
}
@media (max-width: 575px) {
  footer .footer-box .footer-btn {
    width: 100%;
    margin-top: 40px;
  }
}
footer .footer-box .footer-btn a {
  color: #fff;
  width: 100%;
  padding: 24px 32px 24px 32px;
  text-align: left;
  transition: 0.5s;
  border-radius: 200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-box .footer-btn a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin-right: 24px;
}
footer .footer-box .footer-btn a.footer-btn-x {
  background-color: #632e37;
}
footer .footer-box .footer-btn a.footer-btn-x::before {
  mask: url(../images/sns_x.svg);
  -webkit-mask: url(../images/sns_x.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
footer .footer-box .footer-btn a.footer-btn-bluesky {
  background-color: #7e6e4a;
  margin-top: 16px;
}
footer .footer-box .footer-btn a.footer-btn-bluesky::before {
  mask: url(../images/bluesky.svg);
  -webkit-mask: url(../images/bluesky.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
footer .footer-box .footer-btn a:hover, footer .footer-box .footer-btn afocus {
  transform: scale(1.05);
}
footer address {
  font-size: 12px;
  margin-top: 24px;
  padding-bottom: 24px;
  opacity: 0.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: right;
}
@media (max-width: 575px) {
  footer address {
    text-align: center;
  }
}
footer .padeTop {
  display: none;
}
@media (max-width: 575px) {
  footer .padeTop {
    text-align: center;
    display: block;
  }
}
footer .padeTop a {
  letter-spacing: 1px;
  transition: 0.3s;
  color: #C4C4C4;
}
#vdbanner {
  display: none !important;
}

/*　info
=============================================================================================== */
.info a {
  color: #C1BDB6;
}
.info .info-list-box {
  border-bottom: 1px solid #787383;
}
.info .info-list-box a {
  padding: 24px 0;
  display: block;
}
@media (min-width: 768px) {
  .info .info-list-box a {
    padding: 32px 0;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .info .info-list-box a .data {
    width: 110px;
    margin-right: 32px;
  }
}
@media (min-width: 768px) {
  .info .info-list-box a h4 {
    width: calc(100% - 110px);
  }
}
.info .info-list-box a:hover, .info .info-list-box a:focus {
  color: #C4C4C4;
}
.info .pagination {
  margin-top: 32px;
}
.info .pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.info .pagination .nav-links .page-numbers {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #632e37;
  margin: 0 2px;
}
.info .pagination .nav-links .page-numbers.current {
  background-color: #632e37;
}
.info .pagination .nav-links a {
  color: #632e37;
}
.info .pagination .nav-links a:hover, .info .pagination .nav-links afocus {
  background-color: rgba(99, 46, 55, 0.3);
}

/*　SNS
=============================================================================================== */
.front-sns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 120px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .front-sns {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.front-sns .front-sns-box {
  background-color: rgba(193, 189, 182, 0.3);
  border-radius: 48px;
  padding: 32px;
  margin: 0 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .front-sns .front-sns-box {
    margin: 0 8px;
    padding: 32px 24px;
  }
}
.front-sns .front-sns-spotify {
  width: calc(65% - 32px);
}
@media (max-width: 767px) {
  .front-sns .front-sns-spotify {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .front-sns .front-sns-spotify .spotify-box-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .front-sns .front-sns-spotify .spotify-box-sp {
    display: none;
  }
}
.front-sns .front-sns-spotify .front-sns-box-contents {
  margin-bottom: 26px;
  padding-right: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .front-sns .front-sns-spotify .front-sns-box-contents {
    padding-right: 0;
  }
}
.front-sns .front-sns-spotify .front-sns-box-contents::before {
  content: "";
  background-image: url(../images/spotify.png);
  display: block;
  width: 110px;
  height: 110px;
  background-size: 99%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 767px) {
  .front-sns .front-sns-spotify .front-sns-box-contents::before {
    width: 90px;
    height: 90px;
    top: -50%;
  }
}
@media (min-width: 768px) {
  .front-sns .front-sns-spotify .front-sns-title {
    padding-top: 16px;
  }
}
.front-sns .front-sns-x {
  width: calc(35% - 32px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .front-sns .front-sns-x {
    padding: 32px 16px;
  }
}
@media (max-width: 767px) {
  .front-sns .front-sns-x {
    width: 100%;
    padding: 0;
    background-color: transparent;
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .front-sns .front-sns-x {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
}
.front-sns .front-sns-x .front-sns-x-icon {
  width: 136px;
  height: 136px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #181818;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  .front-sns .front-sns-x .front-sns-x-icon {
    display: none;
  }
}
.front-sns .front-sns-x .front-sns-x-icon::before {
  content: "";
  width: 51px;
  height: 94px;
  mask: url(../images/secret_icon.svg);
  -webkit-mask: url(../images/secret_icon.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #C1BDB6;
}
.front-sns .front-sns-x .front-sns-title {
  text-align: center;
}
@media (max-width: 767px) {
  .front-sns .front-sns-x .front-sns-title {
    display: none;
  }
}
.front-sns .front-sns-x a {
  background-color: rgba(193, 189, 182, 0.3);
  color: #fff;
  width: 100%;
  padding: 24px 24px 24px 64px;
  text-align: left;
  transition: 0.5s;
  border-radius: 200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .front-sns .front-sns-x a {
    font-size: 0.875rem;
  }
}
.front-sns .front-sns-x a::before {
  content: "";
  width: 20px;
  height: 20px;
  mask: url(../images/sns_x.svg);
  -webkit-mask: url(../images/sns_x.svg);
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .front-sns .front-sns-x a::before {
    width: 14px;
    height: 14px;
    left: 23px;
  }
}
.front-sns .front-sns-x a::after {
  content: "";
  width: 60px;
  height: 60px;
  background-color: #181818;
  border-radius: 50%;
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .front-sns .front-sns-x a::after {
    width: 40px;
    height: 40px;
  }
}
.front-sns .front-sns-x a:hover, .front-sns .front-sns-x afocus {
  transform: scale(1.05);
}
.front-sns .front-sns-title {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .front-sns .front-sns-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}
.front-sns .front-sns-text {
  font-size: 0.875rem;
  max-width: 400px;
}

@media (max-width: 350px) {
  .front-sns .front-sns-spotify .front-sns-box-contents::before {
    right: -30px;
  }
}/*# sourceMappingURL=style.css.map */