@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html.lock {
  overflow: clip;
  overscroll-behavior: none;
}

html,
body {
  overflow-x: hidden;
}

body {
  width: 100%;
  -webkit-text-size-adjust: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
  line-height: 1;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  text-decoration: none;
}

#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 0.3s;
}
#globalHeader.is-scrolled {
  background-color: #fff;
}
#globalHeader.is-scrolled .logo img {
  filter: brightness(0);
}
#globalHeader .inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 40px 0;
}
@media screen and (max-width: 1400px) {
  #globalHeader .inner {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader .inner {
    padding: 6.6666666667vw 4vw;
  }
}
#globalHeader .logo img {
  width: 147px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #globalHeader .logo img {
    width: 20vw;
  }
}
#globalHeader #globalNavi {
  position: fixed;
}

#Menu {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  z-index: 200;
  top: 35px;
  right: 40px;
  background-color: #000;
  border-radius: 9999px;
  transition: background 0.3s;
}
#Menu.noactive span {
  animation-duration: 0s !important;
}
#Menu.active span:nth-of-type(1) {
  animation-name: menuAnim1;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
#Menu.active span:nth-of-type(2) {
  animation-name: menuAnim3;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
#Menu span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1px;
  margin-left: -10px;
  background-color: #fff;
}
#Menu span:nth-of-type(1) {
  top: 20px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim4;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
#Menu span:nth-of-type(2) {
  top: 28px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim6;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
@keyframes menuAnim1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 24px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
}
@keyframes menuAnim2 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes menuAnim3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    top: 24px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}
@keyframes menuAnim4 {
  0% {
    top: 24px;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    top: 20px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes menuAnim5 {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes menuAnim6 {
  0% {
    top: 24px;
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  100% {
    top: 28px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@media screen and (min-width: 769px) {
  #Menu:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #Menu {
    top: 4vw;
    right: 4vw;
  }
}
#Menu.active::before {
  visibility: visible;
}
#Menu span {
  transition: background 0.3s;
}
#Menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  border: 1px solid #fff;
  visibility: hidden;
  transition: visibility 0.3s;
}
@media screen and (max-width: 768px) {
  #Menu::before {
    width: 60px;
    height: 60px;
  }
}

#globalNavi {
  position: fixed;
  z-index: 150;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s, visibility 0.3s;
}
#globalNavi.active {
  visibility: visible;
  opacity: 1;
}
#globalNavi.active .inner ul,
#globalNavi.active .inner .btns {
  opacity: 1;
}
#globalNavi .inner {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 45px 0;
  width: 400px;
  height: 100%;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #globalNavi .inner {
    gap: 12vw 0;
    width: 100%;
  }
}
#globalNavi .inner ul,
#globalNavi .inner .btns {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  #globalNavi .inner ul,
  #globalNavi .inner .btns {
    max-width: 53.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .inner ul {
    padding-inline: 6.6666666667vw;
  }
}
#globalNavi .inner ul li:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #globalNavi .inner ul li:not(:nth-of-type(1)) {
    margin-top: 6.6666666667vw;
  }
}
#globalNavi .inner ul li a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: #fff;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #globalNavi .inner ul li a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #globalNavi .inner ul li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .inner ul li a {
    font-size: 3.7333333333vw;
  }
}
#globalNavi .inner .btns a {
  width: 180px;
  height: 50px;
  font-size: 13px;
  justify-content: flex-start;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  #globalNavi .inner .btns a {
    width: 53.3333333333vw;
    height: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
#globalNavi .inner .btns a:nth-of-type(2) {
  margin-top: 20px;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 50px 0;
  margin-block: 100px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .banner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    gap: 6.6666666667vw 0;
    margin-block: 8vw 16vw;
    padding: 0;
  }
}
.banner img {
  max-width: 800px;
  width: 100%;
  transition: opacity 0.3s;
}
@media (hover: none) {
  .banner img:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  .banner img:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .banner img {
    max-width: 89.3333333333vw;
  }
}

#globalFooter {
  background-color: #000;
}
#globalFooter .c-inner {
  padding-block: 85px 65px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner {
    padding-block: 10.6666666667vw;
  }
}
#globalFooter .c-inner .footer-top {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.left .logo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 4vw;
  }
}
#globalFooter .c-inner .footer-top .col.left .logo img {
  width: 190px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.left .logo img {
    width: 34.1333333333vw;
  }
}
#globalFooter .c-inner .footer-top .col.left p {
  margin-top: 25px;
  font-size: 13px;
  color: #b4b4b4;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.left p {
    margin-top: 0;
    font-size: 2.6666666667vw;
    line-height: 1.4;
  }
}
#globalFooter .c-inner .footer-top .col.right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 65px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.right {
    gap: 0;
    width: 100%;
    margin-top: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.right ul {
    width: 50%;
  }
  #globalFooter .c-inner .footer-top .col.right ul:nth-of-type(1) li {
    width: 14.6666666667vw;
  }
  #globalFooter .c-inner .footer-top .col.right ul:nth-of-type(2) li {
    width: 28vw;
  }
}
#globalFooter .c-inner .footer-top .col.right ul li:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.right ul li:not(:nth-of-type(1)) {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.right ul li {
    margin-inline: auto;
  }
}
#globalFooter .c-inner .footer-top .col.right ul li a {
  font-size: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #fff;
  font-weight: 600;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #globalFooter .c-inner .footer-top .col.right ul li a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #globalFooter .c-inner .footer-top .col.right ul li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-top .col.right ul li a {
    font-size: 3.4666666667vw;
    font-weight: 500;
  }
}
#globalFooter .c-inner .footer-btm {
  justify-content: space-between;
  align-items: center;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-btm {
    margin-top: 13.3333333333vw;
  }
}
#globalFooter .c-inner .footer-btm .copyright {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 200;
  color: #b4b4b4;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-btm .copyright {
    width: 100%;
    margin-top: 10.6666666667vw;
    text-align: right;
    font-size: 2.6666666667vw;
  }
}
#globalFooter .c-inner .footer-btm .btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 35px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-btm .btns {
    order: -1;
    gap: 0 4vw;
  }
}
#globalFooter .c-inner .footer-btm .btns a {
  width: 180px;
  height: 50px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #globalFooter .c-inner .footer-btm .btns a {
    width: 42.6666666667vw;
    height: 13.3333333333vw;
    font-size: 3.2vw;
  }
  #globalFooter .c-inner .footer-btm .btns a::after {
    right: 4vw;
  }
}

.to-top {
  position: fixed;
  z-index: 10;
  bottom: 40px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .to-top {
    bottom: 5.3333333333vw;
    right: 5.3333333333vw;
  }
}
.to-top a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background-image: url("../images/common/icn-ar-t-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 13px 13px;
  background-color: #000;
  transition: background 0.3s;
}
@media (hover: none) {
  .to-top a:active {
    background-position: center calc(50% - 5px);
  }
}
@media (hover: hover) {
  .to-top a:hover {
    background-position: center calc(50% - 5px);
  }
}
@media screen and (max-width: 768px) {
  .to-top a {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    background-size: 2vw 2vw;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-white {
  color: #fff;
}

.lh10 {
  line-height: 1em;
}

.lh11 {
  line-height: 1.1em;
}

.lh12 {
  line-height: 1.2em;
}

.lh13 {
  line-height: 1.3em;
}

.lh14 {
  line-height: 1.4em;
}

.lh15 {
  line-height: 1.5em;
}

.lh16 {
  line-height: 1.6em;
}

.lh17 {
  line-height: 1.7em;
}

.lh18 {
  line-height: 1.8em;
}

.lh19 {
  line-height: 1.9em;
}

.lh20 {
  line-height: 2em;
}

.lh21 {
  line-height: 2.1em;
}

.lh22 {
  line-height: 2.2em;
}

.lh23 {
  line-height: 2.3em;
}

.lh24 {
  line-height: 2.4em;
}

.lh25 {
  line-height: 2.5em;
}

.lh26 {
  line-height: 2.6em;
}

.lh27 {
  line-height: 2.7em;
}

.lh28 {
  line-height: 2.8em;
}

.lh29 {
  line-height: 2.9em;
}

.lh30 {
  line-height: 3em;
}

.lh31 {
  line-height: 3.1em;
}

.lh32 {
  line-height: 3.2em;
}

.lh33 {
  line-height: 3.3em;
}

.lh34 {
  line-height: 3.4em;
}

.lh35 {
  line-height: 3.5em;
}

.lh36 {
  line-height: 3.6em;
}

.lh37 {
  line-height: 3.7em;
}

.lh38 {
  line-height: 3.8em;
}

.lh39 {
  line-height: 3.9em;
}

.lh40 {
  line-height: 4em;
}

@media screen and (max-width: 768px) {
  .lhs10 {
    line-height: 1em;
  }
  .lhs11 {
    line-height: 1.1em;
  }
  .lhs12 {
    line-height: 1.2em;
  }
  .lhs13 {
    line-height: 1.3em;
  }
  .lhs14 {
    line-height: 1.4em;
  }
  .lhs15 {
    line-height: 1.5em;
  }
  .lhs16 {
    line-height: 1.6em;
  }
  .lhs17 {
    line-height: 1.7em;
  }
  .lhs18 {
    line-height: 1.8em;
  }
  .lhs19 {
    line-height: 1.9em;
  }
  .lhs20 {
    line-height: 2em;
  }
  .lhs21 {
    line-height: 2.1em;
  }
  .lhs22 {
    line-height: 2.2em;
  }
  .lhs23 {
    line-height: 2.3em;
  }
  .lhs24 {
    line-height: 2.4em;
  }
  .lhs25 {
    line-height: 2.5em;
  }
  .lhs26 {
    line-height: 2.6em;
  }
  .lhs27 {
    line-height: 2.7em;
  }
  .lhs28 {
    line-height: 2.8em;
  }
  .lhs29 {
    line-height: 2.9em;
  }
  .lhs30 {
    line-height: 3em;
  }
  .lhs31 {
    line-height: 3.1em;
  }
  .lhs32 {
    line-height: 3.2em;
  }
  .lhs33 {
    line-height: 3.3em;
  }
  .lhs34 {
    line-height: 3.4em;
  }
  .lhs35 {
    line-height: 3.5em;
  }
  .lhs36 {
    line-height: 3.6em;
  }
  .lhs37 {
    line-height: 3.7em;
  }
  .lhs38 {
    line-height: 3.8em;
  }
  .lhs39 {
    line-height: 3.9em;
  }
  .lhs40 {
    line-height: 4em;
  }
}
.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.fs31 {
  font-size: 31px;
}

.fs32 {
  font-size: 32px;
}

.fs33 {
  font-size: 33px;
}

.fs34 {
  font-size: 34px;
}

.fs35 {
  font-size: 35px;
}

.fs36 {
  font-size: 36px;
}

.fs37 {
  font-size: 37px;
}

.fs38 {
  font-size: 38px;
}

.fs39 {
  font-size: 39px;
}

.fs40 {
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .fss10 {
    font-size: 1.3333333333vw;
  }
  .fss11 {
    font-size: 1.4666666667vw;
  }
  .fss12 {
    font-size: 1.6vw;
  }
  .fss13 {
    font-size: 1.7333333333vw;
  }
  .fss14 {
    font-size: 1.8666666667vw;
  }
  .fss15 {
    font-size: 2vw;
  }
  .fss16 {
    font-size: 2.1333333333vw;
  }
  .fss17 {
    font-size: 2.2666666667vw;
  }
  .fss18 {
    font-size: 2.4vw;
  }
  .fss19 {
    font-size: 2.5333333333vw;
  }
  .fss20 {
    font-size: 2.6666666667vw;
  }
  .fss21 {
    font-size: 2.8vw;
  }
  .fss22 {
    font-size: 2.9333333333vw;
  }
  .fss23 {
    font-size: 3.0666666667vw;
  }
  .fss24 {
    font-size: 3.2vw;
  }
  .fss25 {
    font-size: 3.3333333333vw;
  }
  .fss26 {
    font-size: 3.4666666667vw;
  }
  .fss27 {
    font-size: 3.6vw;
  }
  .fss28 {
    font-size: 3.7333333333vw;
  }
  .fss29 {
    font-size: 3.8666666667vw;
  }
  .fss30 {
    font-size: 4vw;
  }
  .fss31 {
    font-size: 4.1333333333vw;
  }
  .fss32 {
    font-size: 4.2666666667vw;
  }
  .fss33 {
    font-size: 4.4vw;
  }
  .fss34 {
    font-size: 4.5333333333vw;
  }
  .fss35 {
    font-size: 4.6666666667vw;
  }
  .fss36 {
    font-size: 4.8vw;
  }
  .fss37 {
    font-size: 4.9333333333vw;
  }
  .fss38 {
    font-size: 5.0666666667vw;
  }
  .fss39 {
    font-size: 5.2vw;
  }
  .fss40 {
    font-size: 5.3333333333vw;
  }
  .fss41 {
    font-size: 5.4666666667vw;
  }
  .fss42 {
    font-size: 5.6vw;
  }
  .fss43 {
    font-size: 5.7333333333vw;
  }
  .fss44 {
    font-size: 5.8666666667vw;
  }
  .fss45 {
    font-size: 6vw;
  }
  .fss46 {
    font-size: 6.1333333333vw;
  }
  .fss47 {
    font-size: 6.2666666667vw;
  }
  .fss48 {
    font-size: 6.4vw;
  }
  .fss49 {
    font-size: 6.5333333333vw;
  }
  .fss50 {
    font-size: 6.6666666667vw;
  }
  .fss51 {
    font-size: 6.8vw;
  }
  .fss52 {
    font-size: 6.9333333333vw;
  }
  .fss53 {
    font-size: 7.0666666667vw;
  }
  .fss54 {
    font-size: 7.2vw;
  }
  .fss55 {
    font-size: 7.3333333333vw;
  }
  .fss56 {
    font-size: 7.4666666667vw;
  }
  .fss57 {
    font-size: 7.6vw;
  }
  .fss58 {
    font-size: 7.7333333333vw;
  }
  .fss59 {
    font-size: 7.8666666667vw;
  }
  .fss60 {
    font-size: 8vw;
  }
  .fss61 {
    font-size: 8.1333333333vw;
  }
  .fss62 {
    font-size: 8.2666666667vw;
  }
  .fss63 {
    font-size: 8.4vw;
  }
  .fss64 {
    font-size: 8.5333333333vw;
  }
  .fss65 {
    font-size: 8.6666666667vw;
  }
  .fss66 {
    font-size: 8.8vw;
  }
  .fss67 {
    font-size: 8.9333333333vw;
  }
  .fss68 {
    font-size: 9.0666666667vw;
  }
  .fss69 {
    font-size: 9.2vw;
  }
  .fss70 {
    font-size: 9.3333333333vw;
  }
  .fss71 {
    font-size: 9.4666666667vw;
  }
  .fss72 {
    font-size: 9.6vw;
  }
  .fss73 {
    font-size: 9.7333333333vw;
  }
  .fss74 {
    font-size: 9.8666666667vw;
  }
  .fss75 {
    font-size: 10vw;
  }
  .fss76 {
    font-size: 10.1333333333vw;
  }
  .fss77 {
    font-size: 10.2666666667vw;
  }
  .fss78 {
    font-size: 10.4vw;
  }
  .fss79 {
    font-size: 10.5333333333vw;
  }
  .fss80 {
    font-size: 10.6666666667vw;
  }
}
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.mt150 {
  margin-top: 150px !important;
}

@media screen and (max-width: 768px) {
  .mts0 {
    margin-top: 0vw !important;
  }
  .mts5 {
    margin-top: 0.6666666667vw !important;
  }
  .mts10 {
    margin-top: 1.3333333333vw !important;
  }
  .mts15 {
    margin-top: 2vw !important;
  }
  .mts20 {
    margin-top: 2.6666666667vw !important;
  }
  .mts25 {
    margin-top: 3.3333333333vw !important;
  }
  .mts30 {
    margin-top: 4vw !important;
  }
  .mts35 {
    margin-top: 4.6666666667vw !important;
  }
  .mts40 {
    margin-top: 5.3333333333vw !important;
  }
  .mts45 {
    margin-top: 6vw !important;
  }
  .mts50 {
    margin-top: 6.6666666667vw !important;
  }
  .mts55 {
    margin-top: 7.3333333333vw !important;
  }
  .mts60 {
    margin-top: 8vw !important;
  }
  .mts65 {
    margin-top: 8.6666666667vw !important;
  }
  .mts70 {
    margin-top: 9.3333333333vw !important;
  }
  .mts75 {
    margin-top: 10vw !important;
  }
  .mts80 {
    margin-top: 10.6666666667vw !important;
  }
  .mts85 {
    margin-top: 11.3333333333vw !important;
  }
  .mts90 {
    margin-top: 12vw !important;
  }
  .mts95 {
    margin-top: 12.6666666667vw !important;
  }
  .mts100 {
    margin-top: 13.3333333333vw !important;
  }
  .mts105 {
    margin-top: 14vw !important;
  }
  .mts110 {
    margin-top: 14.6666666667vw !important;
  }
  .mts115 {
    margin-top: 15.3333333333vw !important;
  }
  .mts120 {
    margin-top: 16vw !important;
  }
  .mts125 {
    margin-top: 16.6666666667vw !important;
  }
  .mts130 {
    margin-top: 17.3333333333vw !important;
  }
  .mts135 {
    margin-top: 18vw !important;
  }
  .mts140 {
    margin-top: 18.6666666667vw !important;
  }
  .mts145 {
    margin-top: 19.3333333333vw !important;
  }
  .mts150 {
    margin-top: 20vw !important;
  }
}
.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb105 {
  margin-bottom: 105px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb115 {
  margin-bottom: 115px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb125 {
  margin-bottom: 125px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb135 {
  margin-bottom: 135px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb145 {
  margin-bottom: 145px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

@media screen and (max-width: 768px) {
  .mbs0 {
    margin-bottom: 0vw !important;
  }
  .mbs5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .mbs10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .mbs15 {
    margin-bottom: 2vw !important;
  }
  .mbs20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .mbs25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .mbs30 {
    margin-bottom: 4vw !important;
  }
  .mbs35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .mbs40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .mbs45 {
    margin-bottom: 6vw !important;
  }
  .mbs50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .mbs55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .mbs60 {
    margin-bottom: 8vw !important;
  }
  .mbs65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .mbs70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .mbs75 {
    margin-bottom: 10vw !important;
  }
  .mbs80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .mbs85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .mbs90 {
    margin-bottom: 12vw !important;
  }
  .mbs95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .mbs100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .mbs105 {
    margin-bottom: 14vw !important;
  }
  .mbs110 {
    margin-bottom: 14.6666666667vw !important;
  }
  .mbs115 {
    margin-bottom: 15.3333333333vw !important;
  }
  .mbs120 {
    margin-bottom: 16vw !important;
  }
  .mbs125 {
    margin-bottom: 16.6666666667vw !important;
  }
  .mbs130 {
    margin-bottom: 17.3333333333vw !important;
  }
  .mbs135 {
    margin-bottom: 18vw !important;
  }
  .mbs140 {
    margin-bottom: 18.6666666667vw !important;
  }
  .mbs145 {
    margin-bottom: 19.3333333333vw !important;
  }
  .mbs150 {
    margin-bottom: 20vw !important;
  }
}
.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt105 {
  padding-top: 105px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pt115 {
  padding-top: 115px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pt125 {
  padding-top: 125px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pt135 {
  padding-top: 135px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pt145 {
  padding-top: 145px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb105 {
  padding-bottom: 105px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb115 {
  padding-bottom: 115px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb125 {
  padding-bottom: 125px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb135 {
  padding-bottom: 135px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb145 {
  padding-bottom: 145px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.c-right-border-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 35px;
}
@media screen and (max-width: 768px) {
  .c-right-border-title {
    gap: 0 4.6666666667vw;
  }
}
.c-right-border-title.white::after {
  background-color: #fff;
}
.c-right-border-title span {
  font-size: 44px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-right-border-title span {
    font-size: 6.6666666667vw;
  }
}
.c-right-border-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #000;
}

.c-section-title .sub {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 9px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-section-title .sub {
    gap: 0 1.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-section-title .sub::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .c-section-title .sub::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
.c-section-title .main {
  margin-top: 30px;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .c-section-title .main {
    margin-top: 3.3333333333vw;
    font-size: 5.3333333333vw;
    line-height: 1.55;
  }
}

.c-round-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 220px;
  height: 60px;
  font-size: 14px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-round-btn {
    width: 58.6666666667vw;
    height: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-round-btn.anim {
  transition: 0.3s;
}
@media (hover: none) {
  .c-round-btn.anim:active.bg-black {
    background-color: #fff;
    border: 1px solid #000;
  }
  .c-round-btn.anim:active.bg-black.arrow::after {
    filter: brightness(0);
  }
  .c-round-btn.anim:active.text-white {
    color: #000;
  }
}
@media (hover: hover) {
  .c-round-btn.anim:hover.bg-black {
    background-color: #fff;
    border: 1px solid #000;
  }
  .c-round-btn.anim:hover.bg-black.arrow::after {
    filter: brightness(0);
  }
  .c-round-btn.anim:hover.text-white {
    color: #000;
  }
}
.c-round-btn.center {
  margin: 0 auto;
}
.c-round-btn.bg-black {
  background-color: #000;
}
.c-round-btn.bg-black.arrow::after {
  background-image: url("../images/common/icn-ar-r-white.svg");
  transition: 0.3s;
}
.c-round-btn.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
  width: 11px;
  height: 11px;
  background-image: url("../images/common/icn-ar-r-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .c-round-btn.arrow::after {
    right: 6.6666666667vw;
    width: 2.5333333333vw;
    height: 2.6666666667vw;
  }
}
.c-round-btn.text-white {
  color: #fff;
}
.c-round-btn.border-white {
  border: 1px solid #fff;
}

.c-inner {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
.c-inner.mw1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .c-inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-inner {
    padding-inline: 5.3333333333vw;
  }
}

.c-flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .c-flex {
    flex-direction: column;
  }
}

.c-text {
  font-size: 16px;
  line-height: 2.38;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-text {
    font-size: 3.4666666667vw;
    line-height: 1.92;
  }
}

.c-franchise-box {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-block: 60px 40px;
  text-align: center;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 1200px) {
  .c-franchise-box {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-franchise-box {
    width: 89.3333333333vw;
    margin-inline: auto;
    padding: 8vw 14.6666666667vw;
  }
}
.c-franchise-box .box-title .main {
  font-size: 36px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-franchise-box .box-title .main {
    font-size: 6.1333333333vw;
  }
}
.c-franchise-box .box-title .sub {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-franchise-box .box-title .sub {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.c-franchise-box .text01 {
  margin-top: 35px;
  font-size: 15px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-franchise-box .text01 {
    margin-top: 5.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.c-franchise-box .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-franchise-box .btn {
    margin-top: 6.6666666667vw;
  }
}
.c-franchise-box .btn a {
  width: 180px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .c-franchise-box .btn a {
    width: 100%;
    height: 13.3333333333vw;
  }
}

.c-page-description {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.58;
}
@media screen and (max-width: 768px) {
  .c-page-description {
    font-size: 4vw;
    line-height: 2;
  }
}

.c-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-top: 120px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .c-breadcrumb {
    max-width: 100%;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    gap: 0 5.3333333333vw;
    margin-top: 8vw;
    padding-inline: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-breadcrumb a span {
  color: #000;
}
.c-breadcrumb a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  .c-breadcrumb a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  .c-breadcrumb a:hover {
    opacity: 0.5;
  }
}

.c-accordion.active .c-accordion-head::before {
  background-image: url("../images/common/icn-ar-t-white.svg");
}
.c-accordion .c-accordion-head {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-right: 120px;
  height: 120px;
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .c-accordion .c-accordion-head:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion .c-accordion-head {
    height: 16vw;
    padding-right: 10.6666666667vw;
  }
}
.c-accordion .c-accordion-head::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  width: 21px;
  height: 21px;
  background-image: url("../images/common/icn-ar-b-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1100px) {
  .c-accordion .c-accordion-head::before {
    right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion .c-accordion-head::before {
    right: 6.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.c-accordion .c-accordion-content {
  display: none;
  border: 1px solid #dad7d7;
}

.c-dot-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .c-dot-list {
    flex-wrap: wrap;
    gap: 12vw 0;
  }
}
.c-dot-list .list-item {
  position: relative;
  width: 180px;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  .c-dot-list .list-item {
    width: 17.3076923077vw;
  }
  .c-dot-list .list-item .icn img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-dot-list .list-item {
    width: 50%;
  }
  .c-dot-list .list-item .icn {
    text-align: center;
  }
  .c-dot-list .list-item .icn img {
    width: 26.6666666667vw;
  }
}
.c-dot-list .list-item:last-child::before {
  content: none;
}
.c-dot-list .list-item::before {
  content: "";
  position: absolute;
  top: 135px;
  right: -50px;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background-color: #000;
}
@media screen and (max-width: 1040px) {
  .c-dot-list .list-item::before {
    top: 12.9807692308vw;
    right: -4.8076923077vw;
    width: 0.8653846154vw;
    height: 0.8653846154vw;
  }
}
@media screen and (max-width: 768px) {
  .c-dot-list .list-item::before {
    content: none;
  }
}
.c-dot-list .list-item .item-title {
  margin-top: 40px;
  font-size: 34px;
  font-family: "Marcellus", serif;
  font-weight: normal;
}
@media screen and (max-width: 1040px) {
  .c-dot-list .list-item .item-title {
    margin-top: 5.3333333333vw;
    font-size: 3.2692307692vw;
  }
}
@media screen and (max-width: 768px) {
  .c-dot-list .list-item .item-title {
    margin-top: 6.6666666667vw;
    font-size: 5.6vw;
  }
}
.c-dot-list .list-item p {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 35px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
}
@media screen and (max-width: 1040px) {
  .c-dot-list .list-item p {
    margin-top: 3.3653846154vw;
    font-size: 1.7307692308vw;
  }
}
@media screen and (max-width: 768px) {
  .c-dot-list .list-item p {
    margin-top: 4vw;
    font-size: 3.4666666667vw;
  }
}

/*--------------------------
HOME
----------------------------*/
body:has(#contents.home) #globalHeader.is-scrolled .logo {
  opacity: 1;
}
body:has(#contents.home) #globalHeader .logo {
  opacity: 0;
  transition: opacity 0.3s;
}

#contents.home .con-mv {
  position: relative;
  height: 55.7142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .con-mv {
    height: 100vw;
  }
}
#contents.home .con-mv .video {
  height: 100%;
}
#contents.home .con-mv .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contents.home .con-mv button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  border-radius: 9999px;
  background-image: url("../images/common/icn-speaker02.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px auto;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #contents.home .con-mv button:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 1200px) {
  #contents.home .con-mv button {
    right: 2.5vw;
    bottom: 2.5vw;
    width: 3.75vw;
    height: 3.75vw;
    background-size: 1.5vw auto;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .con-mv button {
    right: auto;
    left: 5.3333333333vw;
    bottom: 5.3333333333vw;
    width: 8vw;
    height: 8vw;
    background-size: 3.3333333333vw auto;
  }
}
#contents.home .con-mv button.is-on {
  background-image: url("../images/common/icn-speaker.png");
  background-color: #000;
}
#contents.home .con-mv .content {
  position: absolute;
  right: 110px;
  bottom: 60px;
  width: 360px;
}
@media screen and (max-width: 1200px) {
  #contents.home .con-mv .content {
    right: 9.1666666667vw;
    bottom: 5vw;
    width: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .con-mv .content {
    right: 6.6666666667vw;
    bottom: 6.6666666667vw;
    width: 48vw;
  }
}
#contents.home .con-mv .content .content-text {
  font-size: 34px;
  line-height: 1.65;
  font-weight: bold;
  color: #fff;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1200px) {
  #contents.home .con-mv .content .content-text {
    font-size: 2.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .con-mv .content .content-text {
    font-size: 4.5333333333vw;
  }
}
#contents.home .con-mv .content .logo {
  margin-top: 30px;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  #contents.home .con-mv .content .logo {
    margin-top: 2.5vw;
  }
}
#contents.home .con-mv .content .logo img {
  width: 260px;
}
@media screen and (max-width: 1200px) {
  #contents.home .con-mv .content .logo img {
    width: 21.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .con-mv .content .logo img {
    width: 29.3333333333vw;
  }
}
#contents.home .con-box01 {
  padding-block: 120px 100px;
  background-image: url("../images/top/bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 {
    padding-block: 10.6666666667vw 8vw;
  }
}
#contents.home .con-box01 .text01 {
  text-align: center;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-size: 56px;
  font-weight: normal;
  line-height: 1.43;
}
@media screen and (max-width: 1000px) {
  #contents.home .con-box01 .text01 {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 .text01 {
    font-size: 5.8666666667vw;
    line-height: 1.6;
    text-align: center;
  }
}
#contents.home .con-box01 .text02 {
  margin-top: 70px;
  font-size: 23px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 .text02 {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    margin-top: 8vw;
    font-size: 3.4666666667vw;
    line-height: 1.85;
  }
  #contents.home .con-box01 .text02::before, #contents.home .con-box01 .text02::after {
    content: "";
    width: 20vw;
    height: 0.2666666667vw;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
  }
  #contents.home .con-box01 .text02::before {
    background-image: url("../images/top/border-left.png");
  }
  #contents.home .con-box01 .text02::after {
    background-image: url("../images/top/border-right.png");
  }
}
#contents.home .con-box01 .text03 {
  margin-top: 70px;
  font-size: 14px;
  line-height: 3.57;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 .text03 {
    margin-top: 8vw;
    font-size: 2.9333333333vw;
    line-height: 2.64;
  }
}
#contents.home .con-box01 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 60px 0.5%;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 .list {
    gap: 1.3333333333vw 1.6%;
    margin-top: 13.3333333333vw;
  }
}
#contents.home .con-box01 .list .list-item {
  width: 33%;
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 .list .list-item {
    width: 49.2%;
  }
}
#contents.home .con-box01 .list .list-item a {
  display: block;
  position: relative;
}
@media (hover: none) {
  #contents.home .con-box01 .list .list-item a:active img {
    filter: grayscale(100%);
  }
}
@media (hover: hover) {
  #contents.home .con-box01 .list .list-item a:hover img {
    filter: grayscale(100%);
  }
}
#contents.home .con-box01 .list .list-item a img {
  transition: 0.3s;
}
#contents.home .con-box01 .list .list-item a .item-title {
  position: absolute;
  bottom: 20px;
  left: 35px;
  font-size: 22px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  #contents.home .con-box01 .list .list-item a .item-title {
    bottom: 2vw;
    left: 3.5vw;
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .con-box01 .list .list-item a .item-title {
    bottom: 2.6666666667vw;
    left: 4vw;
    font-size: 3.4666666667vw;
  }
}

/*--------------------------
SUB
----------------------------*/
body:has(#contents.sub):has(#globalHeader.is-scrolled) #Menu {
  background-color: #000;
}
body:has(#contents.sub):has(#globalHeader.is-scrolled) #Menu span {
  background-color: #fff;
}
body:has(#contents.sub) #Menu {
  background-color: #fff;
}
body:has(#contents.sub) #Menu span {
  background-color: #000;
}

#contents.sub .con-mv {
  position: relative;
}
#contents.sub .con-mv .c-page-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  max-width: 1000px;
  width: 100%;
  font-size: 90px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  #contents.sub .con-mv .c-page-title {
    bottom: 4.1666666667vw;
    max-width: 83.3333333333vw;
    font-size: 7.5vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.sub .con-mv .c-page-title {
    transform: initial;
    left: 5.3333333333vw;
    bottom: 6vw;
    font-size: 12vw;
  }
}
#contents.sub .con-mv .img img {
  width: 100%;
}

/*--------------------------
COMPANY
----------------------------*/
@media screen and (max-width: 768px) {
  #contents.company .con-mv .c-page-title {
    font-size: 10.6666666667vw;
  }
}
#contents.company .con-box01 {
  padding-block: 100px 150px;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 {
    padding-block: 13.3333333333vw 20vw;
  }
}
#contents.company .con-box01 .c-inner {
  max-width: 800px;
}
#contents.company .con-box01 .c-inner table th,
#contents.company .con-box01 .c-inner table td {
  padding-block: 30px;
  border-bottom: 1px solid #dad7d7;
  line-height: 2.13;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner table th,
  #contents.company .con-box01 .c-inner table td {
    padding-block: 4.6666666667vw;
    line-height: 1.46;
  }
}
#contents.company .con-box01 .c-inner table th {
  width: 235px;
  padding-left: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner table th {
    width: 29.3333333333vw;
    padding-left: 4vw;
    font-size: 3.4666666667vw;
  }
}
#contents.company .con-box01 .c-inner table td {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner table td {
    font-size: 3.2vw;
  }
}
#contents.company .con-box01 .c-inner .map {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner .map {
    margin-top: 10.6666666667vw;
  }
}
#contents.company .con-box01 .c-inner .map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner .map iframe {
    height: 53.3333333333vw;
  }
}
#contents.company .con-box01 .c-inner .map .access {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 30px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner .map .access {
    gap: 0 2.6666666667vw;
    margin-top: 4vw;
    padding-left: 4vw;
  }
}
#contents.company .con-box01 .c-inner .map .access .access-headline {
  font-size: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #contents.company .con-box01 .c-inner .map .access .access-headline {
    font-size: 3.7333333333vw;
  }
}

/*--------------------------
CONTACT
----------------------------*/
body:has(#contents.contact .snow-monkey-form[data-screen=complete]) #globalHeader .logo img {
  filter: brightness(0);
}
body:has(#contents.contact .snow-monkey-form[data-screen=complete]) .con-mv {
  display: none;
}
body:has(#contents.contact .snow-monkey-form[data-screen=complete]) .con-box01 {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  body:has(#contents.contact .snow-monkey-form[data-screen=complete]) .con-box01 {
    padding-top: 21.3333333333vw;
  }
}

#contents.contact .con-box01 {
  padding-block: 80px 150px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 {
    padding-block: 10.6666666667vw 20vw;
  }
}
#contents.contact .con-box01 .form-box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-item {
  margin-top: 0 !important;
  padding: 25px 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-item {
    padding: 5.3333333333vw 0;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-item__col--label {
  padding-top: 0 !important;
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-item.name .smf-placeholder {
  width: initial !important;
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-item.must .smf-item__label::before {
  content: none;
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-item.check {
  display: none;
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-action {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=confirm] .smf-action {
    flex-direction: column;
    gap: 5.3333333333vw 0;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=complete] .title {
  font-size: 90px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=complete] .title {
    font-size: 10.6666666667vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=complete] p {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=complete] p {
    margin-top: 9.3333333333vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=complete] .btn {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form[data-screen=complete] .btn {
    margin-top: 10.6666666667vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .custom-error-message {
  display: none;
  color: #cc3033;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-error-messages {
  margin-top: 10px;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html {
  margin-bottom: 80px;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 18px;
  font-family: "Wix Madefor Display", sans-serif;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box {
    gap: 0 2.4vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box .sub {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box .sub {
    font-size: 3.7333333333vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box .main {
  font-size: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box .main {
    font-size: 7.4666666667vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box .main a {
  color: #000;
}
@media screen and (min-width: 769px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .wp-block-html .tel-box .main a {
    pointer-events: none;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw 0;
    margin-top: 8vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.must .smf-item__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.must .smf-item__label {
    gap: 0 3.3333333333vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.must .smf-item__label::before {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 50px;
  height: 20px;
  background-color: #000;
  color: #fff;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.must .smf-item__label::before {
    width: 9.3333333333vw;
    height: 4.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check {
    margin-top: 6.6666666667vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-item__col--label {
  display: none;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label {
    font-size: 2.9333333333vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  padding-left: 45px;
  box-sizing: border-box;
  height: 30px;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  top: 0;
  border: 1px solid #fff;
  z-index: 3;
  box-sizing: border-box;
  background-color: #000;
  border-radius: 3px;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 10px;
  display: block;
  width: 11px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 3;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: -1px;
  left: -43px;
  width: 26px;
  height: 26px;
  display: block;
  box-shadow: 41px 0px #fff;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label input[type=checkbox]:checked {
  box-shadow: none;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label label input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label a {
  padding-bottom: 3px;
  border-bottom: 1px solid #000;
  color: #000;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label a:active {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-label a:hover {
    opacity: 0.7;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item.check .smf-error-messages {
  text-align: center;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--label {
  flex-shrink: 0;
  width: 270px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--label {
    width: 100%;
    font-size: 3.7333333333vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls {
    width: 100%;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text],
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel],
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email],
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 100%;
  height: 60px;
  padding-inline: 30px;
  font-size: 16px;
  border: 1px solid #000;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text]:placeholder-shown,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel]:placeholder-shown,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email]:placeholder-shown,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select:placeholder-shown,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea:placeholder-shown {
  color: #dad7d7;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text]::-webkit-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel]::-webkit-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email]::-webkit-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select::-webkit-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea::-webkit-input-placeholder {
  color: #dad7d7;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text]:-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel]:-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email]:-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select:-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea:-moz-placeholder {
  color: #dad7d7;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text]::-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel]::-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email]::-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select::-moz-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea::-moz-placeholder {
  color: #dad7d7;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text]:-ms-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel]:-ms-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email]:-ms-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select:-ms-input-placeholder,
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea:-ms-input-placeholder {
  color: #dad7d7;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=text],
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=tel],
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls input[type=email],
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select,
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea {
    height: 13.3333333333vw;
    padding-inline: 4.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select {
  background-image: url("../images/common/icn-tri-b-bk.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  background-size: 14px 8px;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls select {
    background-size: 2.9333333333vw 1.7333333333vw;
    background-position: calc(100% - 5.3333333333vw) center;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea {
  height: 250px;
  padding-block: 20px;
  resize: none;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form .smf-item__col--controls textarea {
    height: 42.6666666667vw;
    padding-block: 4vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-action {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 50px;
}
#contents.contact .con-box01 .form-box .snow-monkey-form .smf-action .smf-sending {
  display: none;
}
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back],
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete],
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 220px;
  height: 60px;
  border-radius: 9999px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]:hover,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]:hover,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]:hover {
    cursor: pointer;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]:disabled,
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]:disabled,
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]:disabled {
  pointer-events: none;
  background-color: #ccc;
}
@media (hover: none) {
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]:active,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]:active,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]:active {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
  }
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]:active::after,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]:active::after,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]:active::after {
    filter: brightness(0);
  }
}
@media (hover: hover) {
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]:hover,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]:hover,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]:hover {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
  }
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]:hover::after,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]:hover::after,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]:hover::after {
    filter: brightness(0);
  }
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back],
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete],
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm] {
    width: 58.6666666667vw;
    height: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]::after,
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]::after,
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
  width: 11px;
  height: 11px;
  background-image: url("../images/common/icn-ar-r-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]::after,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=complete]::after,
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=confirm]::after {
    right: 5.3333333333vw;
    width: 2.4vw;
    height: 2.4vw;
  }
}
#contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]::after {
  right: auto;
  left: 23px;
  transform: rotate(180deg) translateY(50%);
}
@media screen and (max-width: 768px) {
  #contents.contact .con-box01 .form-box .snow-monkey-form button[data-action=back]::after {
    right: auto;
    left: 5.3333333333vw;
  }
}

/*--------------------------
FRANCHISE
----------------------------*/
body:has(#contents.franchise) .c-franchise-box {
  display: none;
}
body:has(#contents.franchise) .c-breadcrumb {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  #contents.franchise .con-mv .c-page-title {
    font-size: 10.6666666667vw;
  }
}
#contents.franchise .franchise-text01 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .franchise-text01 {
    margin-top: 8vw;
  }
}
#contents.franchise .con-box01 {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 {
    padding-block: 10.6666666667vw 16vw;
  }
}
#contents.franchise .con-box01 .c-inner {
  max-width: 1000px;
}
#contents.franchise .con-box01 .box01 .list {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box01 .list {
    margin-top: 18.6666666667vw;
  }
}
#contents.franchise .con-box01 .box02 {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box02 {
    margin-top: 16vw;
  }
}
#contents.franchise .con-box01 .box02 .inner-box {
  gap: 0 65px;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  #contents.franchise .con-box01 .box02 .inner-box {
    gap: 0 30px;
  }
  #contents.franchise .con-box01 .box02 .inner-box .c-section-title .main {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box02 .inner-box {
    gap: 8vw 0;
    margin-top: 13.3333333333vw;
  }
}
#contents.franchise .con-box01 .box02 .inner-box.inner-box01 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box02 .inner-box.inner-box01 {
    margin-top: 10.6666666667vw;
  }
}
#contents.franchise .con-box01 .box02 .inner-box .content p {
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  #contents.franchise .con-box01 .box02 .inner-box .content p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box02 .inner-box .content p {
    margin-top: 6.6666666667vw;
  }
}
#contents.franchise .con-box01 .box02 .inner-box .thumbnail {
  flex-shrink: 0;
  width: 500px;
}
@media screen and (max-width: 1200px) {
  #contents.franchise .con-box01 .box02 .inner-box .thumbnail {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box02 .inner-box .thumbnail {
    width: 100%;
  }
}
#contents.franchise .con-box01 .box03 {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box03 {
    margin-top: 16vw;
  }
}
#contents.franchise .con-box01 .box03 .list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box03 .list {
    margin-top: 10.6666666667vw;
  }
}
#contents.franchise .con-box01 .box03 .text01 {
  margin-top: 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box01 .box03 .text01 {
    margin-top: 10.6666666667vw;
  }
}
#contents.franchise .con-box02 {
  padding: 100px 0;
  color: #fff;
  background-image: url("../images/franchise/voice-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 {
    padding-block: 13.3333333333vw;
    background-image: url("../images/franchise/voice-bg-sp.png");
  }
}
#contents.franchise .con-box02 .c-inner {
  max-width: 1000px;
}
#contents.franchise .con-box02 .slider {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider {
    margin-top: 10.6666666667vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide {
  position: relative;
  background-color: #fff;
}
#contents.franchise .con-box02 .slider .swiper-slide::before, #contents.franchise .con-box02 .slider .swiper-slide::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background-image: url("../images/franchise/voice-frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide::before, #contents.franchise .con-box02 .slider .swiper-slide::after {
    width: 10vw;
    height: 10vw;
    opacity: 0.2;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide::before {
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide::before {
    top: 1.3333333333vw;
    left: 1.3333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide::after {
  transform: rotate(90deg);
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide::after {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 5px;
  height: calc(100% - 180px);
  border-left: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .wrap::before {
    left: 1.3333333333vw;
    width: 0.8vw;
    height: calc(100% - 25.3333333333vw);
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 5px;
  height: calc(100% - 180px);
  border-left: 1px solid #f3f3f3;
  border-right: 1px solid #f3f3f3;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .wrap::after {
    right: 1.3333333333vw;
    width: 0.8vw;
    height: calc(100% - 25.3333333333vw);
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner {
  padding: 70px 50px 100px;
  color: #000;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner {
    padding: 8vw 6.6666666667vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner::before, #contents.franchise .con-box02 .slider .swiper-slide .inner::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  background-image: url("../images/franchise/voice-frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner::before, #contents.franchise .con-box02 .slider .swiper-slide .inner::after {
    width: 10vw;
    height: 10vw;
    opacity: 0.2;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner::before {
  transform: rotate(-90deg);
  bottom: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner::before {
    bottom: 1.3333333333vw;
    left: 1.3333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner::after {
  transform: rotate(180deg);
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner::after {
    bottom: 1.3333333333vw;
    right: 1.3333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner .voice-information {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner .voice-information {
    font-size: 2.9333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner .voice-title {
  margin-top: 15px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner .voice-title {
    margin-top: 4vw;
    font-size: 4.5333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-slide .inner p {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-slide .inner p {
    margin-top: 5.3333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
  width: fit-content;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-controls {
    gap: 0 10.6666666667vw;
    margin-top: 6vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-controls .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-controls .swiper-pagination {
    gap: 0 4vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-controls .swiper-pagination span {
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid #fff;
  background-color: #000;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-controls .swiper-pagination span {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
#contents.franchise .con-box02 .slider .swiper-controls .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #fff;
}
#contents.franchise .con-box02 .slider .swiper-controls .swiper-prev,
#contents.franchise .con-box02 .slider .swiper-controls .swiper-next {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  #contents.franchise .con-box02 .slider .swiper-controls .swiper-prev:hover,
  #contents.franchise .con-box02 .slider .swiper-controls .swiper-next:hover {
    cursor: pointer;
  }
}
#contents.franchise .con-box02 .slider .swiper-controls .swiper-prev img,
#contents.franchise .con-box02 .slider .swiper-controls .swiper-next img {
  width: 18px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box02 .slider .swiper-controls .swiper-prev img,
  #contents.franchise .con-box02 .slider .swiper-controls .swiper-next img {
    width: 2.9333333333vw;
  }
}
#contents.franchise .con-box03 {
  padding-block: 100px 180px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 {
    padding-block: 13.3333333333vw 23.3333333333vw;
  }
}
#contents.franchise .con-box03 .c-inner {
  max-width: 1000px;
}
#contents.franchise .con-box03 .box01 .flow-list {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list {
    margin-top: 10.6666666667vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents.franchise .con-box03 .box01 .flow-list .list-item:last-child::before {
  content: none;
}
#contents.franchise .con-box03 .box01 .flow-list .list-item::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 40px;
  width: 1px;
  height: 60px;
  background-image: url("../images/franchise/flow-border.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item::before {
    top: auto;
    bottom: -4vw;
    width: 0.2666666667vw;
    height: 8vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item:not(:nth-of-type(1)) {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item:not(:nth-of-type(1)) {
    margin-top: 13.3333333333vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item .step {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .step {
    gap: 0 1.3333333333vw;
    padding-top: 2vw;
    font-size: 3.2vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item .step::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .step::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item .icn {
  flex-shrink: 0;
  margin-inline: 15px 30px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .icn {
    position: absolute;
    top: 10vw;
    left: -2.6666666667vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item .icn img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .icn img {
    width: 21.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .content {
    padding-left: 13.3333333333vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item .content .item-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.77;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .content .item-title {
    font-size: 4.2666666667vw;
  }
}
#contents.franchise .con-box03 .box01 .flow-list .list-item .content p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.86;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box01 .flow-list .list-item .content p {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}
#contents.franchise .con-box03 .box02 {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 {
    margin-top: 16vw;
  }
}
#contents.franchise .con-box03 .box02 .list {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list {
    margin-top: 8.6666666667vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item:not(:nth-of-type(1)) {
    margin-top: 6.6666666667vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: auto;
  gap: 0 40px;
  padding: 30px 120px 30px 40px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-head {
    align-items: flex-start;
    gap: 0 4vw;
    padding: 6.6666666667vw 12vw 6.6666666667vw 4vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-head .sub {
  flex-shrink: 0;
  font-size: 30px;
  font-family: "Marcellus", serif;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-head .sub {
    line-height: 1.86;
    font-size: 4vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-head .main {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-head .main {
    font-size: 3.7333333333vw;
    line-height: 1.86;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-head::before {
  right: 40px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-head::before {
    right: 4vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-content .inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
  padding: 40px 120px 40px 40px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-content .inner {
    gap: 0 4vw;
    padding: 6.6666666667vw 12vw 6.6666666667vw 4vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-content .inner .sub {
  flex-shrink: 0;
  font-size: 30px;
  font-family: "Marcellus", serif;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-content .inner .sub {
    font-size: 4vw;
  }
}
#contents.franchise .con-box03 .box02 .list .list-item .item-content .inner .main p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box02 .list .list-item .item-content .inner .main p {
    font-size: 3.4666666667vw;
  }
}
#contents.franchise .con-box03 .box03 {
  gap: 0 160px;
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  #contents.franchise .con-box03 .box03 {
    gap: 0 80px;
  }
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box03 {
    margin-top: 20vw;
  }
}
#contents.franchise .con-box03 .box03 .left {
  flex-shrink: 0;
}
#contents.franchise .con-box03 .box03 .left .box-title {
  font-size: 72px;
  font-family: "Marcellus", serif;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  #contents.franchise .con-box03 .box03 .left .box-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box03 .left .box-title {
    font-size: 9.6vw;
  }
}
#contents.franchise .con-box03 .box03 .right {
  padding-top: 35px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box03 .right {
    padding-top: 0;
    margin-top: 10.6666666667vw;
  }
}
#contents.franchise .con-box03 .box03 .right .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.franchise .con-box03 .box03 .right .btn {
    margin-top: 10.6666666667vw;
  }
  #contents.franchise .con-box03 .box03 .right .btn a {
    margin-inline: auto;
  }
}

/*--------------------------
GROUP
----------------------------*/
#contents.group .con-box01 {
  padding-block: 100px 175px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 {
    padding-block: 10.6666666667vw 20vw;
  }
}
#contents.group .con-box01 .c-inner {
  max-width: 1000px;
}
#contents.group .con-box01 .local-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .local-link {
    margin-top: 18.6666666667vw;
  }
}
#contents.group .con-box01 .local-link a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 480px;
  height: 100px;
  padding-inline: 80px;
  border: 1px solid #000;
  color: #000;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-size: 26px;
  border-radius: 9999px;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.group .con-box01 .local-link a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.group .con-box01 .local-link a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1000px) {
  #contents.group .con-box01 .local-link a {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .local-link a {
    justify-content: flex-start;
    width: 42.6666666667vw;
    height: 13.3333333333vw;
    padding-inline: 6.6666666667vw;
    font-size: 3.4666666667vw;
  }
  #contents.group .con-box01 .local-link a span {
    flex-grow: 1;
  }
}
#contents.group .con-box01 .local-link a::after {
  content: "";
  width: 13px;
  height: 17px;
  background-image: url("../images/common/icn-ar-b-bk.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .local-link a::after {
    width: 1.7333333333vw;
    height: 2.2666666667vw;
  }
}
#contents.group .con-box01 .group-headline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 50px;
  gap: 0 20px;
  color: #fff;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-headline {
    gap: 0 1.6vw;
    height: 7.3333333333vw;
  }
}
#contents.group .con-box01 .group-headline::before, #contents.group .con-box01 .group-headline::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-headline::before, #contents.group .con-box01 .group-headline::after {
    width: 8vw;
    height: 8vw;
  }
}
#contents.group .con-box01 .group-headline::before {
  left: -45px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-headline::before {
    left: -6.6666666667vw;
  }
}
#contents.group .con-box01 .group-headline::after {
  right: -45px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-headline::after {
    right: -6.6666666667vw;
  }
}
#contents.group .con-box01 .group-headline .main {
  font-size: 40px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-headline .main {
    font-size: 6.1333333333vw;
  }
}
#contents.group .con-box01 .group-headline .sub {
  font-size: 20px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-headline .sub {
    font-size: 2.9333333333vw;
  }
}
#contents.group .con-box01 .group-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: fit-content;
  height: 30px;
  padding-inline: 30px;
  font-size: 16px;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .group-tag {
    width: 26.6666666667vw;
    height: 5.3333333333vw;
    padding: 0;
    font-size: 2.9333333333vw;
  }
}
#contents.group .con-box01 .box01 {
  margin-top: 150px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box01 {
    margin-top: 13.3333333333vw;
  }
}
#contents.group .con-box01 .box01 .logo {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box01 .logo {
    margin-top: 12vw;
  }
}
#contents.group .con-box01 .box01 .logo img {
  width: 290px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box01 .logo img {
    width: 38.6666666667vw;
  }
}
#contents.group .con-box01 .box01 .group-tag {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box01 .group-tag {
    margin-top: 7.3333333333vw;
  }
}
#contents.group .con-box01 .box01 .text01 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box01 .text01 {
    margin-top: 5.3333333333vw;
  }
}
#contents.group .con-box01 .box02 {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box02 {
    margin-top: 13.3333333333vw;
  }
}
#contents.group .con-box01 .box02 .list {
  margin-top: 80px;
}
#contents.group .con-box01 .box03 {
  position: relative;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 {
    margin-top: 20vw;
  }
}
#contents.group .con-box01 .box03 .c-right-border-title {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  #contents.group .con-box01 .box03 .c-right-border-title {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .c-right-border-title {
    padding-inline: 5.3333333333vw;
  }
}
#contents.group .con-box01 .box03 .slider {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider {
    margin-top: 10.6666666667vw;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-slide {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide {
    display: block;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-slide .thumbnail {
  flex-shrink: 0;
  width: 400px;
}
@media screen and (max-width: 1200px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .thumbnail {
    width: 33.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .thumbnail {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 5.3333333333vw;
    width: 100%;
    height: auto !important;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-slide .thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .thumbnail img {
    object-fit: initial;
    width: 34.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .thumbnail .content-title {
    padding: 5.3333333333vw 5.3333333333vw 0 0;
    font-size: 4.5333333333vw;
    font-weight: bold;
    line-height: 1.65;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-slide .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 30px 60px;
}
@media screen and (max-width: 1200px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .content {
    padding-inline: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .content {
    padding: 5.3333333333vw;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-slide .content .content-title {
  font-size: 30px;
  line-height: 1.67;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .content .content-title {
    font-size: 2.5vw;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-slide .content p {
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .content p {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-slide .content p {
    margin-top: 0;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
  width: fit-content;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-controls {
    gap: 0 10.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-controls .swiper-pagination {
    gap: 0 4vw;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-pagination span {
  width: 10px;
  height: 10px;
  margin: 0;
  border: 1px solid #000;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-controls .swiper-pagination span {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #000;
}
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-prev,
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-next {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  #contents.group .con-box01 .box03 .slider .swiper-controls .swiper-prev:hover,
  #contents.group .con-box01 .box03 .slider .swiper-controls .swiper-next:hover {
    cursor: pointer;
  }
}
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-prev img,
#contents.group .con-box01 .box03 .slider .swiper-controls .swiper-next img {
  width: 18px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .slider .swiper-controls .swiper-prev img,
  #contents.group .con-box01 .box03 .slider .swiper-controls .swiper-next img {
    width: 2.9333333333vw;
  }
}
#contents.group .con-box01 .box03 .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box03 .btns {
    flex-direction: column;
    gap: 4.6666666667vw 0;
    margin-top: 10vw;
  }
}
#contents.group .con-box01 .box04 {
  margin-top: 250px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 {
    margin-top: 26.6666666667vw;
  }
}
#contents.group .con-box01 .box04 .group-box {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box {
    flex-direction: column;
    gap: 0;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box01 {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box01 {
    margin-top: 13.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box01 .logo img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box01 .logo img {
    width: 39.4666666667vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table {
  font-family: "Plus Jakarta Sans", sans-serif;
}
#contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table th {
  width: 160px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table th {
    width: 32vw;
    font-size: 3.4666666667vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table td {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table td {
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table th,
#contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table td {
  padding: 10px 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table th,
  #contents.group .con-box01 .box04 .group-box.group-box01 .content .content-table table td {
    padding: 2.6666666667vw 0;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box02 {
  margin-top: 250px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 {
    margin-top: 36vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box02 .col.left {
  width: 500px;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 .col.left {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 .col.left {
    width: auto;
    padding-left: 40vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box02 .col.left img {
  width: 220px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 .col.left img {
    width: 32vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 .col.right .content-headline {
    padding-left: 40vw;
  }
  #contents.group .con-box01 .box04 .group-box.group-box02 .col.right .content-headline .main {
    white-space: nowrap;
  }
  #contents.group .con-box01 .box04 .group-box.group-box02 .col.right .content-headline .group-tag {
    flex-grow: 1;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box02 .img {
  position: absolute;
  top: -66px;
  left: -200px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 .img {
    top: -28vw;
    left: -5.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box02 .img img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box02 .img img {
    width: 33.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box03 {
  margin-top: 250px;
  padding-right: 270px;
}
@media screen and (max-width: 1000px) {
  #contents.group .con-box01 .box04 .group-box.group-box03 {
    padding-right: 150px;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box03 {
    margin-top: 41.3333333333vw;
    padding-right: 0;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box03 .logo {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box03 .logo {
    text-align: left;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box03 .logo img {
  width: 105px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box03 .logo img {
    width: 14vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box03 .img {
  position: absolute;
  top: -66px;
  right: -200px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box03 .img {
    top: -30.6666666667vw;
    right: -5.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box03 .img img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box03 .img img {
    width: 33.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box.group-box04 .col.right .content-headline {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px 0;
}
#contents.group .con-box01 .box04 .group-box.group-box04 .col.right .content-headline .main {
  white-space: normal;
  font-size: 35px;
}
@media screen and (max-width: 880px) {
  #contents.group .con-box01 .box04 .group-box.group-box04 .col.right .content-headline .main {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box.group-box04 .col.right .content-headline .main {
    font-size: 5.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box .col.left {
  flex-shrink: 0;
  width: 240px;
}
#contents.group .con-box01 .box04 .group-box .col.right .content-headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  #contents.group .con-box01 .box04 .group-box .col.right .content-headline {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box .col.right .content-headline {
    flex-direction: row;
    gap: 0 4vw;
    margin-block: 8vw 9.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box .col.right .content-headline .main {
  font-size: 40px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box .col.right .content-headline .main {
    font-size: 5.3333333333vw;
  }
}
#contents.group .con-box01 .box04 .group-box .col.right .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box .col.right .btn {
    margin-top: 10.6666666667vw;
  }
}
#contents.group .con-box01 .box04 .group-box .col.right .btn a {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #contents.group .con-box01 .box04 .group-box .col.right .btn a {
    margin-inline: auto;
  }
}

/*--------------------------
MESSAGE
----------------------------*/
#contents.message .con-box01 {
  padding-block: 150px 170px;
}
@media screen and (max-width: 768px) {
  #contents.message .con-box01 {
    padding-block: 12vw 20vw;
  }
}
#contents.message .con-box01 .c-inner {
  max-width: 845px;
}
#contents.message .con-box01 .c-inner .box01 .content-title {
  font-size: 28px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #contents.message .con-box01 .c-inner .box01 .content-title {
    font-size: 4.8vw;
    text-align: center;
  }
}
#contents.message .con-box01 .c-inner .box01 p {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  #contents.message .con-box01 .c-inner .box01 p {
    margin-top: 10.6666666667vw;
  }
}
#contents.message .con-box01 .c-inner .box01 .name {
  margin-top: 50px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #contents.message .con-box01 .c-inner .box01 .name {
    margin-top: 6.6666666667vw;
  }
}
#contents.message .con-box01 .c-inner .box01 .name img {
  width: 287px;
}
@media screen and (max-width: 768px) {
  #contents.message .con-box01 .c-inner .box01 .name img {
    width: 38.2666666667vw;
  }
}
#contents.message .con-box01 .c-inner .img01 {
  margin: 13.3333333333vw -5.3333333333vw 0;
}
#contents.message .con-box01 .c-inner .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  #contents.message .con-box01 .c-inner .btns {
    flex-direction: column;
    gap: 4vw 0;
    margin-top: 10.6666666667vw;
  }
}

/*--------------------------
RECRUIT
----------------------------*/
body:has(#contents.recruit) .c-franchise-box {
  display: none;
}
body:has(#contents.recruit) .c-breadcrumb {
  margin-top: 0;
}

#contents.recruit .con-box01 {
  padding-block: 120px 125px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 {
    padding-block: 13.3333333333vw 20vw;
  }
}
#contents.recruit .con-box01 .c-inner {
  max-width: 1000px;
}
#contents.recruit .con-box01 .box01 .c-inner {
  position: relative;
}
#contents.recruit .con-box01 .box01 .text01 {
  max-width: 890px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box01 .text01 {
    max-width: initial;
    margin-top: 6.6666666667vw;
  }
}
#contents.recruit .con-box01 .box01 .img {
  position: absolute;
  top: -60px;
  right: -300px;
}
@media screen and (max-width: 1200px) {
  #contents.recruit .con-box01 .box01 .img {
    right: -100px;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box01 .img {
    top: auto;
    bottom: -21.3333333333vw;
    right: 0;
  }
}
#contents.recruit .con-box01 .box01 .img img {
  width: 660px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box01 .img img {
    width: 61.3333333333vw;
  }
}
#contents.recruit .con-box01 .box02 {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-top: 300px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 {
    margin-top: 48vw;
    padding-inline: 5.3333333333vw;
  }
}
#contents.recruit .con-box01 .box02 .inner-box {
  position: relative;
  z-index: 2;
  width: 940px;
  margin-left: auto;
  padding: 90px 45px 120px;
  background-color: #fff;
  border-bottom: 8px solid #000;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .inner-box {
    margin-left: 100px;
    width: calc(100% - 100px);
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .inner-box {
    width: 100%;
    margin-left: 0;
    padding: 10.6666666667vw 6.6666666667vw;
    border-bottom-width: 1.0666666667vw;
  }
}
#contents.recruit .con-box01 .box02 .inner-box p {
  margin-top: 35px;
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .inner-box p {
    max-width: initial;
    margin-top: 6.6666666667vw;
  }
}
#contents.recruit .con-box01 .box02 .inner-box .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 75px;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .inner-box .list {
    gap: 0 1.9230769231vw;
    margin-top: 7.2115384615vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .inner-box .list {
    flex-wrap: wrap;
    gap: 8vw 0;
    margin-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .inner-box .list .list-item {
    width: 50%;
    padding-inline: 3.3333333333vw 2.6666666667vw;
  }
}
#contents.recruit .con-box01 .box02 .inner-box .list .list-item .icn img {
  width: 190px;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .inner-box .list .list-item .icn img {
    width: 18.2692307692vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .inner-box .list .list-item .icn img {
    width: 100%;
  }
}
#contents.recruit .con-box01 .box02 .inner-box .list .list-item .icn figcaption {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .inner-box .list .list-item .icn figcaption {
    margin-top: 1.9230769231vw;
    font-size: 1.9230769231vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .inner-box .list .list-item .icn figcaption {
    margin-top: 3.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
#contents.recruit .con-box01 .box02 .img01 {
  position: absolute;
  top: -90px;
  left: 0;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .img01 {
    top: -8.6538461538vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .img01 {
    top: -24vw;
    left: 0;
  }
}
#contents.recruit .con-box01 .box02 .img01 img {
  width: 900px;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .img01 img {
    width: 86.5384615385vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .img01 img {
    width: 66.6666666667vw;
  }
}
#contents.recruit .con-box01 .box02 .img02 {
  position: absolute;
  bottom: -130px;
  left: 200px;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .img02 {
    bottom: auto;
    top: 67.3076923077vw;
    left: 3.8461538462vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .img02 {
    bottom: -24vw;
    top: auto;
    left: auto;
    right: 0;
  }
}
#contents.recruit .con-box01 .box02 .img02 img {
  width: 490px;
}
@media screen and (max-width: 1040px) {
  #contents.recruit .con-box01 .box02 .img02 img {
    width: 47.1153846154vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box02 .img02 img {
    width: 34.6666666667vw;
  }
}
#contents.recruit .con-box01 .box03 {
  margin-top: 280px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 {
    margin-top: 34.6666666667vw;
  }
}
#contents.recruit .con-box01 .box03 .list {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list {
    margin-top: 8vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item:not(:nth-of-type(1)) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item:not(:nth-of-type(1)) {
    margin-top: 6.6666666667vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-headline {
  gap: 0 30px;
  padding-left: 100px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-headline {
    gap: 0 2.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-headline .main {
  font-size: 50px;
  font-family: "Marcellus", serif;
  font-weight: normal;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-headline .main {
    font-size: 6.6666666667vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-headline .sub {
  font-size: 20px;
  font-weight: 500;
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content {
  padding: 20px 40px 60px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content {
    padding: 2.6666666667vw 5.3333333333vw 8vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content table {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table tr,
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table th,
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table td {
    display: block;
    width: 100%;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content table th,
#contents.recruit .con-box01 .box03 .list .list-item .item-content table td {
  padding-block: 30px;
  line-height: 2.38;
  vertical-align: top;
  border-bottom: 1px solid #dad7d7;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table th,
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table td {
    padding: 0;
    line-height: 1.9;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content table th {
  width: 200px;
  padding-left: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table th {
    width: 100%;
    padding: 5.3333333333vw 0 2.6666666667vw;
    font-size: 3.4666666667vw;
    border-bottom: none;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content table td {
  padding-right: 20px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content table td {
    padding-bottom: 4vw;
    font-size: 3.2vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content .text01 {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content .text01 {
    margin-top: 8vw;
  }
}
#contents.recruit .con-box01 .box03 .list .list-item .item-content .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box03 .list .list-item .item-content .btn {
    margin-top: 8vw;
  }
}
#contents.recruit .con-box01 .box04 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box04 {
    margin-top: 13.3333333333vw;
  }
}
#contents.recruit .con-box01 .box04 .btns {
  justify-content: center;
  gap: 0 70px;
}
@media screen and (max-width: 768px) {
  #contents.recruit .con-box01 .box04 .btns {
    align-items: center;
    flex-direction: column;
    gap: 8vw 0;
  }
}

/*--------------------------
SUPPORT
----------------------------*/
#contents.support .con-box01 {
  padding-block: 100px 150px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 {
    padding-block: 10.6666666667vw 20vw;
  }
}
#contents.support .con-box01 .sponsorship-box {
  gap: 0 85px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
#contents.support .con-box01 .sponsorship-box .logo {
  flex-shrink: 0;
  width: 232px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .sponsorship-box .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 6vw;
    width: 100%;
  }
  #contents.support .con-box01 .sponsorship-box .logo img {
    width: 34.6666666667vw;
  }
  #contents.support .con-box01 .sponsorship-box .logo .content-head {
    font-size: 5.3333333333vw;
    font-family: "Marcellus", serif;
    font-weight: normal;
  }
}
#contents.support .con-box01 .sponsorship-box .content {
  flex-grow: 1;
}
#contents.support .con-box01 .sponsorship-box .content .content-head {
  font-size: 40px;
  font-weight: normal;
  font-family: "Marcellus", serif;
  font-weight: normal;
}
#contents.support .con-box01 .sponsorship-box .content p {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .sponsorship-box .content p {
    margin-top: 6.6666666667vw;
  }
}
#contents.support .con-box01 .sponsorship-box .content .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .sponsorship-box .content .btn {
    margin-top: 8vw;
  }
}
#contents.support .con-box01 .sponsorship-box .content .btn a {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .sponsorship-box .content .btn a {
    margin-inline: auto;
  }
}
#contents.support .con-box01 .box01 {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  #contents.support .con-box01 .box01 {
    padding-right: 350px;
  }
  #contents.support .con-box01 .box01 .c-section-title .main {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box01 {
    margin-top: 10vw;
    padding-right: 0;
  }
}
#contents.support .con-box01 .box01 p {
  max-width: 600px;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box01 p {
    max-width: initial;
    margin-top: 6.6666666667vw;
  }
}
#contents.support .con-box01 .box01 .img {
  position: absolute;
  top: 0;
  right: -200px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box01 .img {
    position: static;
    margin: 10.6666666667vw -5.3333333333vw 0;
    text-align: right;
  }
}
#contents.support .con-box01 .box01 .img img {
  width: 500px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box01 .img img {
    width: 58.6666666667vw;
  }
}
#contents.support .con-box01 .box02 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box02 {
    margin-top: 10.6666666667vw;
  }
}
#contents.support .con-box01 .box02 .sponsorship-box {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box02 .sponsorship-box {
    margin-top: 9.3333333333vw;
  }
}
#contents.support .con-box01 .box03 {
  position: relative;
  margin-top: 100px;
  padding: 50px 80px;
  border: 1px solid #000;
}
@media screen and (max-width: 1000px) {
  #contents.support .con-box01 .box03 {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box03 {
    margin-top: 10.6666666667vw;
    padding: 6.6666666667vw;
  }
}
#contents.support .con-box01 .box03::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 19px solid #000000;
  border-top: 0;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box03::before {
    top: -2.5333333333vw;
    border-right-width: 1.6vw;
    border-left-width: 1.6vw;
    border-bottom-width: 2.6666666667vw;
  }
}
#contents.support .con-box01 .box03 .box-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.58;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box03 .box-title {
    font-size: 4vw;
  }
}
#contents.support .con-box01 .box03 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 2%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box03 .list {
    flex-wrap: wrap;
    gap: 6.6666666667vw 5%;
    margin-top: 6.6666666667vw;
  }
}
#contents.support .con-box01 .box03 .list .list-item {
  width: 24%;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box03 .list .list-item {
    width: 47.5%;
  }
}
#contents.support .con-box01 .box03 .list .list-item figcaption {
  margin-top: 30px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box03 .list .list-item figcaption {
    margin-top: 3.3333333333vw;
    font-size: 3.2vw;
  }
}
#contents.support .con-box01 .box04 {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  #contents.support .con-box01 .box04 {
    margin-top: 16vw;
  }
}

.wp-block[data-type="core/widget-area"] {
  max-width: 1200px;
}

div[data-widget-area-id=sidebar] {
  max-width: 330px !important;
  margin: 0 auto !important;
}

html :where(.wp-block) {
  max-width: 880px;
}

.blocks-widgets-container .editor-styles-wrapper {
  max-width: 100%;
}

.block-editor-block-list__block:not(.is-selected) > .block-editor-block-list__block > .block-list-appender:only-child:after {
  border: 1px dashed !important;
}

.editor-styles-wrapper .clearfix {
  clear: both;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table {
  margin-top: 80px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table {
    margin: 45px 0 20px;
    overflow-x: auto;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table {
  width: 100% !important;
  border-left: 1px #3b3b3b solid !important;
  border-top: 1px #3b3b3b solid !important;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table table {
    width: 800px !important;
    max-width: 800px !important;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th,
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  width: 20% !important;
  vertical-align: middle !important;
  padding: 15px 12px !important;
  text-align: center !important;
  border-right: 1px #3b3b3b solid !important;
  border-bottom: 1px #3b3b3b solid !important;
  font-size: 13px !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th {
  color: #fff !important;
  background: #182636 !important;
  text-align: center !important;
  font-weight: bold !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th:not(:last-child) {
  border-right: none !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th:not(:nth-of-type(1)) {
  border-left: 1px solid #fff !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  background: #fff !important;
}
.editor-styles-wrapper strong {
  font-weight: bold;
}
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  margin: 50px 0 0 0;
  list-style: none;
  padding: 0;
}
.editor-styles-wrapper ul li,
.editor-styles-wrapper ol li {
  position: relative;
  line-height: 1.5;
}
.editor-styles-wrapper ul li:not(:nth-of-type(1)),
.editor-styles-wrapper ol li:not(:nth-of-type(1)) {
  margin-top: 20px;
}
.editor-styles-wrapper ul li {
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul li {
    padding-left: 7.3333333333vw;
  }
}
.editor-styles-wrapper ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #000;
}
.editor-styles-wrapper ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}
.editor-styles-wrapper ol li {
  counter-increment: item;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ol li {
    padding-left: 7.3333333333vw;
  }
}
.editor-styles-wrapper ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(item) ". ";
}
