@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: hidden;
}

body {
  width: 100%;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  line-height: 1.3;
  font-size: 16px;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.4666666667vw;
  }
}

@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;
  color: #231815;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 25px));
  }
}
@keyframes marquee_reverse {
  from {
    transform: translateX(calc(-100% - 25px));
  }
  to {
    transform: translateX(0);
  }
}
main#contents {
  overflow-x: clip;
}

#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 103px;
}
#globalHeader.active .logo {
  position: relative;
  opacity: 0;
  visibility: hidden;
}
#globalHeader.active .inner .nav {
  background-color: #f9f3df !important;
}
#globalHeader.is-scroll .inner .nav {
  background-color: #ebe4ee;
}
@media screen and (max-width: 768px) {
  #globalHeader {
    height: 75px;
  }
}
#globalHeader .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #globalHeader .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
#globalHeader .inner .logo {
  padding-left: 55px;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #globalHeader .inner .logo:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #globalHeader .inner .logo:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader .inner .logo {
    padding-left: 15px;
  }
}
#globalHeader .inner .logo img {
  width: 136px;
}
@media screen and (max-width: 768px) {
  #globalHeader .inner .logo img {
    max-width: 70%;
    width: 28vw;
  }
}
#globalHeader .inner .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  width: 300px;
  height: 100%;
  background-color: transparent;
  border-radius: 0 0 0 30px;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  #globalHeader .inner .nav {
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0 10px;
    width: auto;
    padding: 15px;
    border-radius: 0 0 0 20px;
  }
}
#globalHeader .inner .nav .language .linguise_current_lang {
  justify-content: space-between;
  width: 120px;
  height: 40px;
  padding-left: 10px;
  border-radius: 9999px;
  border: 1px solid #a7aba8;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #globalHeader .inner .nav .language .linguise_current_lang {
    width: 110px;
    height: 35px;
    padding-left: 2.6666666667vw;
    font-size: 12px;
  }
}
#globalHeader .inner .nav .language .linguise_current_lang .linguise_lang_name {
  margin-right: 0 !important;
}
#globalHeader .inner .nav .speaker {
  width: 47px;
  height: 40px;
  border-radius: 9999px;
  background-image: url("../images/common/icn-speaker.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 12px;
  background-color: #f47270;
}
@media screen and (min-width: 769px) {
  #globalHeader .inner .nav .speaker:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .inner .nav .speaker {
    transition: 0.3s;
  }
  #globalHeader .inner .nav .speaker:not(.active):hover {
    background-image: url("../images/common/icn-speaker-pink.svg");
    background-color: #fff;
  }
}
#globalHeader .inner .nav .speaker.active {
  background-color: #8c8c8c;
  background-image: url("../images/common/icn-speaker.png");
  background-size: 18px auto;
}
@media screen and (max-width: 768px) {
  #globalHeader .inner .nav .speaker {
    width: 40px;
    height: 35px;
    background-size: 13px 11px;
  }
}
#globalHeader .inner .nav .menu {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  -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: 70px;
  height: 40px;
  border-radius: 9999px;
  background-color: #231815;
}
#globalHeader .inner .nav .menu.noactive span {
  animation-duration: 0s !important;
}
#globalHeader .inner .nav .menu.active span:nth-of-type(1) {
  animation-name: menuAnim1;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
#globalHeader .inner .nav .menu.active span:nth-of-type(2) {
  animation-name: menuAnim3;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
#globalHeader .inner .nav .menu span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background-color: #fff;
}
#globalHeader .inner .nav .menu span:nth-of-type(1) {
  top: 16px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim4;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
#globalHeader .inner .nav .menu span:nth-of-type(2) {
  top: 22px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim6;
  animation-timing-function: linear;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
@keyframes menuAnim1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    top: 19px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}
@keyframes menuAnim3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    top: 19px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}
@keyframes menuAnim4 {
  0% {
    top: 19px;
    transform: rotate(-35deg) transformY(2px);
  }
  50% {
    top: 16px;
    transform: rotate(0) transformY(2px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes menuAnim6 {
  0% {
    top: 19px;
    transform: rotate(35deg) transformY(-2px);
  }
  50% {
    top: 22px;
    transform: rotate(0) transformY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .inner .nav .menu:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader .inner .nav .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: 35px;
    border-radius: 9999px;
    background-color: #231815;
  }
  #globalHeader .inner .nav .menu.noactive span {
    animation-duration: 0s !important;
  }
  #globalHeader .inner .nav .menu.active span:nth-of-type(1) {
    animation-name: menuAnim1;
    animation-timing-function: linear;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .inner .nav .menu.active span:nth-of-type(2) {
    animation-name: menuAnim3;
    animation-timing-function: linear;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .inner .nav .menu span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    background-color: #fff;
  }
  #globalHeader .inner .nav .menu span:nth-of-type(1) {
    top: 14px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim4;
    animation-timing-function: linear;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .inner .nav .menu span:nth-of-type(2) {
    top: 20px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim6;
    animation-timing-function: linear;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  @keyframes menuAnim1 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      transform: translateY(2px);
    }
    100% {
      top: 17px;
      -webkit-transform: rotate(-35deg);
      transform: rotate(-35deg);
    }
  }
  @keyframes menuAnim3 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    50% {
      transform: translateY(-2px);
    }
    100% {
      top: 17px;
      -webkit-transform: rotate(35deg);
      transform: rotate(35deg);
    }
  }
  @keyframes menuAnim4 {
    0% {
      top: 17px;
      transform: rotate(-35deg) transformY(2px);
    }
    50% {
      top: 14px;
      transform: rotate(0) transformY(2px);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes menuAnim6 {
    0% {
      top: 17px;
      transform: rotate(35deg) transformY(-2px);
    }
    50% {
      top: 20px;
      transform: rotate(0) transformY(-2px);
    }
    100% {
      transform: translateY(0);
    }
  }
}

#globalNavi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: #f9f3df;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.3s, zIndex 0.3s, visibility 0.3s, transform 0.3s;
  overflow: hidden auto;
}
#globalNavi.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#globalNavi.active .inner,
#globalNavi.active .slider {
  opacity: 1;
}
#globalNavi .inner,
#globalNavi .slider {
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.35s;
}
#globalNavi .inner {
  width: 100%;
  height: calc(100vh - 120px);
  padding-bottom: 50px;
  overflow: hidden auto;
}
@media screen and (max-width: 768px) {
  #globalNavi .inner {
    height: calc(100vh - 18.6666666667vw);
    padding-bottom: 6.6666666667vw;
  }
}
#globalNavi .common-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 100px;
  max-width: 1340px;
  padding-top: 140px;
}
@media screen and (max-width: 1380px) {
  #globalNavi .common-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  #globalNavi .common-inner {
    gap: 0 30px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner {
    gap: 0 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner {
    padding-top: 31.3333333333vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
#globalNavi .common-inner .col {
  position: relative;
  z-index: 2;
}
#globalNavi .common-inner .col.left {
  flex-shrink: 0;
  width: 600px;
}
@media screen and (max-width: 1150px) {
  #globalNavi .common-inner .col.left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.left {
    display: none;
  }
}
#globalNavi .common-inner .col.left .box01 {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
  margin-top: -110px;
  padding: 30px 60px;
  border: 2px solid #231815;
  border-radius: 30px;
  background-image: url("../images/common/gnavi-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#globalNavi .common-inner .col.left .box01::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 460px;
  width: 16px;
  height: 3px;
  background-image: url("../images/common/gnavi-frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1100px) {
  #globalNavi .common-inner .col.left .box01 {
    padding: 45px 30px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 {
    gap: 0 5.5555555556vw;
    margin-top: -12.2222222222vw;
    padding: 6vw 3.3333333333vw;
    border-radius: 3.3333333333vw;
  }
}
#globalNavi .common-inner .col.left .box01 .img01,
#globalNavi .common-inner .col.left .box01 .img02 {
  position: absolute;
}
#globalNavi .common-inner .col.left .box01 .img01 img,
#globalNavi .common-inner .col.left .box01 .img02 img {
  width: 65px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .img01 img,
  #globalNavi .common-inner .col.left .box01 .img02 img {
    width: 7.2222222222vw;
  }
}
#globalNavi .common-inner .col.left .box01 .img01 {
  top: 20px;
  left: 140px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .img01 {
    top: 2.2222222222vw;
    left: 15.5555555556vw;
  }
}
#globalNavi .common-inner .col.left .box01 .img02 {
  bottom: 30px;
  left: 20px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .img02 {
    bottom: 3.3333333333vw;
    left: 2.2222222222vw;
  }
}
#globalNavi .common-inner .col.left .box01 .img03 {
  position: absolute;
  right: -30px;
  bottom: -53px;
}
@media screen and (max-width: 1050px) {
  #globalNavi .common-inner .col.left .box01 .img03 {
    right: -20px;
    bottom: -20px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .img03 {
    right: -2.2222222222vw;
    bottom: -2.2222222222vw;
  }
}
#globalNavi .common-inner .col.left .box01 .img03 img {
  width: 128px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .img03 img {
    width: 14.2222222222vw;
  }
}
#globalNavi .common-inner .col.left .box01 .headline {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .headline {
    gap: 0 2.6666666667vw;
  }
}
#globalNavi .common-inner .col.left .box01 .headline .main {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .headline .main {
    font-size: 2.6666666667vw;
  }
}
#globalNavi .common-inner .col.left .box01 .headline .sub {
  order: -1;
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: -1.4px;
  color: rgba(141, 108, 174, 0.3);
  font-weight: bold;
  font-family: "Lexend Giga", sans-serif;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .headline .sub {
    margin-top: 0.5555555556vw;
    font-size: 1.5555555556vw;
  }
}
#globalNavi .common-inner .col.left .box01 .content {
  flex-grow: 1;
}
@media screen and (max-width: 1100px) {
  #globalNavi .common-inner .col.left .box01 .content p {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box01 .content p {
    font-size: 1.5555555556vw;
  }
}
#globalNavi .common-inner .col.left .box02 {
  width: 330px;
  margin-top: 40px;
  margin-left: 70px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 {
    width: 36.6666666667vw;
    margin-top: 4.4444444444vw;
    margin-left: 7.7777777778vw;
  }
}
#globalNavi .common-inner .col.left .box02 .headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-height: 40px;
  padding: 0 20px;
  margin-top: 10px;
  border: 1px solid #231815;
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .headline {
    height: 4.4444444444vw;
    margin-top: 1.1111111111vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information {
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information {
    margin-top: 2.2222222222vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information .information-title {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information .information-title {
    font-size: 1.5555555556vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information .tel-time {
  display: flex;
  justify-content: center;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information .tel-time {
    gap: 0 1.1111111111vw;
    margin-top: 1.1111111111vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information .tel-time .tel {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information .tel-time .tel {
    gap: 0 0.5555555556vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information .tel-time .tel .tel-title {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information .tel-time .tel .tel-title {
    font-size: 1.7777777778vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information .tel-time .tel a {
  font-size: 24px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information .tel-time .tel a {
    font-size: 2.6666666667vw;
  }
}
#globalNavi .common-inner .col.left .box02 .information .tel-time .time {
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.left .box02 .information .tel-time .time {
    font-size: 1.5555555556vw;
  }
}
#globalNavi .common-inner .col.right {
  flex-grow: 1;
  padding-right: 70px;
}
@media screen and (max-width: 1300px) {
  #globalNavi .common-inner .col.right {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right {
    width: 100%;
    padding-right: 0;
  }
}
#globalNavi .common-inner .col.right nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  padding-left: 30px;
}
@media screen and (max-width: 1000px) {
  #globalNavi .common-inner .col.right nav {
    padding-left: 0;
    gap: 0 15px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right nav {
    gap: 0 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right nav {
    gap: 0 4vw;
    padding-left: 6vw;
    padding-right: 5.3333333333vw;
  }
}
#globalNavi .common-inner .col.right nav.no-ja a::before, #globalNavi .common-inner .col.right nav.no-ja a::after {
  content: none !important;
}
#globalNavi .common-inner .col.right nav.no-ja a span {
  opacity: 1 !important;
}
#globalNavi .common-inner .col.right nav ul li.title {
  margin-bottom: 35px;
  font-family: "Kaisei Opti", serif !important;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  #globalNavi .common-inner .col.right nav ul li.title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1100px) {
  #globalNavi .common-inner .col.right nav ul li.title {
    font-size: 17px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right nav ul li.title {
    margin-bottom: 3.8888888889vw;
    font-size: 1.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right nav ul li.title {
    margin-bottom: 10.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
#globalNavi .common-inner .col.right nav ul li.sub {
  padding-left: 45px;
}
@media screen and (max-width: 1300px) {
  #globalNavi .common-inner .col.right nav ul li.sub {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right nav ul li.sub {
    padding-left: 5vw;
    font-size: 1.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right nav ul li.sub {
    padding-left: 9.6vw;
    font-size: 3.2vw;
  }
}
#globalNavi .common-inner .col.right nav ul li.sub.sub01 {
  margin-top: 30px;
  background-image: url("../images/common/gnavi-icn01.svg");
  background-repeat: no-repeat;
  background-position: 22px center;
  background-size: 14px 7px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right nav ul li.sub.sub01 {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right nav ul li.sub.sub01 {
    margin-top: 10.6666666667vw;
    background-size: 2.8vw 1.4666666667vw;
    background-position: 4vw center;
  }
}
#globalNavi .common-inner .col.right nav ul li.sub.sub02 {
  margin-top: 20px;
  margin-bottom: 55px;
  background-image: url("../images/common/gnavi-icn02.svg");
  background-repeat: no-repeat;
  background-position: 22px center;
  background-size: 11px 10px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right nav ul li.sub.sub02 {
    margin-top: 2.2222222222vw;
    margin-bottom: 6.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right nav ul li.sub.sub02 {
    margin-top: 10.6666666667vw;
    margin-bottom: 10.6666666667vw;
    background-size: 2.2666666667vw 2vw;
    background-position: 4vw center;
  }
}
#globalNavi .common-inner .col.right nav ul li a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#globalNavi .common-inner .col.right nav ul li a span {
  opacity: 0;
}
#globalNavi .common-inner .col.right nav ul li a::before, #globalNavi .common-inner .col.right nav ul li a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  font-weight: bold;
  transform: translateY(0%);
  transition: 0.3s;
  will-change: transform;
}
#globalNavi .common-inner .col.right nav ul li a::before {
  top: 0;
}
#globalNavi .common-inner .col.right nav ul li a::after {
  top: 0;
  transform: translateY(100%);
}
@media screen and (min-width: 769px) {
  #globalNavi .common-inner .col.right nav ul li a:hover::before {
    transform: translateY(-100%);
  }
  #globalNavi .common-inner .col.right nav ul li a:hover::after {
    transform: translateY(0);
  }
}
#globalNavi .common-inner .col.right .search-box {
  margin-top: 25px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right .search-box {
    margin-top: 2.7777777778vw;
  }
}
#globalNavi .common-inner .col.right .search-box form {
  position: relative;
  display: block;
}
#globalNavi .common-inner .col.right .search-box form input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 100%;
  height: 110px;
  padding-left: 85px;
  padding-right: 110px;
  background-color: #fff;
  border-radius: 20px;
  font-size: 22px;
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
  background-image: url("../images/common/icn-search.svg");
  background-repeat: no-repeat;
  background-position: 32px center;
  background-size: 32px 32px;
}
#globalNavi .common-inner .col.right .search-box form input[type=text]:placeholder-shown {
  color: #231815;
}
#globalNavi .common-inner .col.right .search-box form input[type=text]::-webkit-input-placeholder {
  color: #231815;
}
#globalNavi .common-inner .col.right .search-box form input[type=text]:-moz-placeholder {
  color: #231815;
}
#globalNavi .common-inner .col.right .search-box form input[type=text]::-moz-placeholder {
  color: #231815;
}
#globalNavi .common-inner .col.right .search-box form input[type=text]:-ms-input-placeholder {
  color: #231815;
}
@media screen and (max-width: 1200px) {
  #globalNavi .common-inner .col.right .search-box form input[type=text] {
    padding-left: 70px;
    background-position: 20px center;
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  #globalNavi .common-inner .col.right .search-box form input[type=text] {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right .search-box form input[type=text] {
    height: 12.2222222222vw;
    padding-left: 7.7777777778vw;
    padding-right: 12.2222222222vw;
    border-radius: 2.2222222222vw;
    font-size: 1.7777777778vw;
    background-position: 2.2222222222vw center;
    background-size: 3.5555555556vw 3.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right .search-box form input[type=text] {
    height: 17.3333333333vw;
    padding-left: 14.2666666667vw;
    padding-right: 16.8vw;
    border-radius: 2.6666666667vw;
    background-position: 5.3333333333vw center;
    background-size: 5.0666666667vw 5.0666666667vw;
    font-size: 3.7333333333vw;
  }
}
#globalNavi .common-inner .col.right .search-box form button[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 65px;
  height: 46px;
  background-color: #6e8b7b;
  border-radius: 10px;
  border: 2px solid #231815;
}
@media screen and (min-width: 769px) {
  #globalNavi .common-inner .col.right .search-box form button[type=submit]:hover {
    cursor: pointer;
  }
}
#globalNavi .common-inner .col.right .search-box form button[type=submit]::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 15px;
  width: 15px;
  height: 2px;
  background-color: #231815;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right .search-box form button[type=submit] {
    right: 3.3333333333vw;
    width: 7.2222222222vw;
    height: 5.1111111111vw;
    border-radius: 1.1111111111vw;
  }
  #globalNavi .common-inner .col.right .search-box form button[type=submit]::before {
    right: 1.6666666667vw;
    width: 1.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right .search-box form button[type=submit] {
    width: 10.1333333333vw;
    height: 7.2vw;
    right: 5.3333333333vw;
    border-radius: 1.3333333333vw;
  }
  #globalNavi .common-inner .col.right .search-box form button[type=submit]::before {
    bottom: -2px;
    right: 2vw;
    width: 2vw;
  }
}
@media screen and (min-width: 769px) {
  #globalNavi .common-inner .col.right .search-box form button[type=submit] {
    transition: 0.3s;
  }
  #globalNavi .common-inner .col.right .search-box form button[type=submit]:hover .ar::before {
    transform: translateX(200%);
  }
  #globalNavi .common-inner .col.right .search-box form button[type=submit]:hover .ar::after {
    transform: translateX(0);
  }
}
#globalNavi .common-inner .col.right .search-box form button[type=submit] .ar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 14px;
  height: 14px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right .search-box form button[type=submit] .ar {
    right: 3.8666666667vw;
    width: 2.4vw;
    height: 2.4vw;
  }
}
#globalNavi .common-inner .col.right .search-box form button[type=submit] .ar::before, #globalNavi .common-inner .col.right .search-box form button[type=submit] .ar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
#globalNavi .common-inner .col.right .search-box form button[type=submit] .ar::after {
  transform: translateX(-200%);
}
#globalNavi .common-inner .col.right .sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right .sns {
    gap: 0 3.3333333333vw;
    margin-top: 3.8888888889vw;
    padding-left: 3.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right .sns {
    justify-content: center;
    gap: 0 9.3333333333vw;
    margin-top: 8.6666666667vw;
    padding-right: 0;
  }
}
#globalNavi .common-inner .col.right .sns a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  #globalNavi .common-inner .col.right .sns a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #globalNavi .common-inner .col.right .sns a:hover {
    opacity: 0.5;
  }
}
#globalNavi .common-inner .col.right .sns img {
  width: 35px;
}
@media screen and (max-width: 900px) {
  #globalNavi .common-inner .col.right .sns img {
    width: 3.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  #globalNavi .common-inner .col.right .sns img {
    width: 8.8vw;
  }
}
#globalNavi .common-inner .col.right .sound-information {
  margin-top: 6.6666666667vw;
}
#globalNavi .common-inner .col.right .sound-information .headline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.2vw;
  font-weight: bold;
}
#globalNavi .common-inner .col.right .sound-information .text01 {
  margin-top: 2.6666666667vw;
  font-size: 3.2vw;
  line-height: 1.5;
}
#globalNavi .common-inner .col.right .sound-information .text02 {
  margin-top: 2.6666666667vw;
  font-size: 2.6666666667vw;
}
#globalNavi .common-inner .img04,
#globalNavi .common-inner .img05 {
  position: absolute;
}
#globalNavi .common-inner .img04 {
  top: 95.7333333333vw;
  right: -6.6666666667vw;
}
#globalNavi .common-inner .img04 img {
  width: 30.6666666667vw;
}
#globalNavi .common-inner .img05 {
  top: 9.3333333333vw;
  left: -10.6666666667vw;
}
#globalNavi .common-inner .img05 img {
  width: 25.3333333333vw;
}
#globalNavi .slider {
  width: 100%;
  height: 120px;
}
@media screen and (max-width: 768px) {
  #globalNavi .slider {
    height: 18.6666666667vw;
  }
}

#globalFooter {
  padding-top: 30px;
}
@media screen and (max-width: 1240px) {
  #globalFooter {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter {
    padding-top: 5.3333333333vw;
    padding-left: 0;
    padding-right: 0;
  }
}
#globalFooter .breadcrumb {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #globalFooter .breadcrumb {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
#globalFooter .breadcrumb .sep {
  display: inline-block;
  width: 25px;
  height: 10px;
  background-image: url("../images/common/icn-ar-r02-gray.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 6px 8px;
}
@media screen and (max-width: 768px) {
  #globalFooter .breadcrumb .sep {
    width: 5.3333333333vw;
    height: 2vw;
    background-size: 1.2vw 1.6vw;
  }
}
#globalFooter .footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid #d4ccb1;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top {
    padding-bottom: 4vw;
  }
}
#globalFooter .footer-top .common-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .common-inner {
    display: block;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.left .logo {
    text-align: center;
  }
}
#globalFooter .footer-top .col.left .logo img {
  width: 490px;
}
@media screen and (max-width: 1260px) {
  #globalFooter .footer-top .col.left .logo img {
    width: 350px;
  }
}
@media screen and (max-width: 950px) {
  #globalFooter .footer-top .col.left .logo img {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.left .logo img {
    width: 65.3333333333vw;
  }
}
#globalFooter .footer-top .col.left .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.left .sns {
    gap: 0 8vw;
    justify-content: center;
    margin-top: 10vw;
  }
}
#globalFooter .footer-top .col.left .sns a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  #globalFooter .footer-top .col.left .sns a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #globalFooter .footer-top .col.left .sns a:hover {
    opacity: 0.5;
  }
}
#globalFooter .footer-top .col.left .sns img {
  width: 35px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.left .sns img {
    width: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right {
    margin-top: 10.6666666667vw;
  }
}
#globalFooter .footer-top .col.right nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
}
@media screen and (max-width: 1100px) {
  #globalFooter .footer-top .col.right nav {
    gap: 0 30px;
  }
}
@media screen and (max-width: 900px) {
  #globalFooter .footer-top .col.right nav {
    gap: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav {
    gap: 0;
  }
}
#globalFooter .footer-top .col.right nav.no-ja a::before, #globalFooter .footer-top .col.right nav.no-ja a::after {
  content: none !important;
}
#globalFooter .footer-top .col.right nav.no-ja a span {
  opacity: 1 !important;
}
#globalFooter .footer-top .col.right nav .nav-col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
}
@media screen and (max-width: 1100px) {
  #globalFooter .footer-top .col.right nav .nav-col {
    gap: 0 30px;
  }
}
@media screen and (max-width: 900px) {
  #globalFooter .footer-top .col.right nav .nav-col {
    gap: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav .nav-col {
    display: block;
  }
  #globalFooter .footer-top .col.right nav .nav-col:nth-of-type(1) {
    flex-grow: 1;
  }
  #globalFooter .footer-top .col.right nav .nav-col:nth-of-type(2) {
    width: 32vw;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav ul + ul {
    margin-top: 8.6666666667vw;
  }
}
#globalFooter .footer-top .col.right nav ul li.title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  #globalFooter .footer-top .col.right nav ul li.title {
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  #globalFooter .footer-top .col.right nav ul li.title {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav ul li.title {
    margin-bottom: 9.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
#globalFooter .footer-top .col.right nav ul li.title + .sub {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav ul li.title + .sub {
    margin-top: 6.6666666667vw;
  }
}
#globalFooter .footer-top .col.right nav ul li.sub {
  position: relative;
  margin-top: 20px;
  padding-left: 18px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  #globalFooter .footer-top .col.right nav ul li.sub {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  #globalFooter .footer-top .col.right nav ul li.sub {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav ul li.sub {
    padding-left: 4.9333333333vw;
    font-size: 3.2vw;
  }
}
#globalFooter .footer-top .col.right nav ul li.sub::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 2px;
  background-color: #a58244;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right nav ul li.sub::before {
    width: 2.6666666667vw;
    height: 0.2666666667vw;
  }
}
#globalFooter .footer-top .col.right nav ul li.sp:not(.sp2) {
  margin-top: 5.3333333333vw;
  font-size: 3.2vw;
}
#globalFooter .footer-top .col.right nav ul li.sp:not(.sp2).sp1 {
  margin-top: 12.6666666667vw;
}
#globalFooter .footer-top .col.right nav ul li a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
#globalFooter .footer-top .col.right nav ul li a span {
  opacity: 0;
}
#globalFooter .footer-top .col.right nav ul li a::before, #globalFooter .footer-top .col.right nav ul li a::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  right: 0;
  font-weight: 500;
  transform: translateY(0%);
  transition: 0.3s;
  will-change: transform;
}
#globalFooter .footer-top .col.right nav ul li a::before {
  top: 0;
}
#globalFooter .footer-top .col.right nav ul li a::after {
  top: 0;
  transform: translateY(100%);
}
@media screen and (min-width: 769px) {
  #globalFooter .footer-top .col.right nav ul li a:hover::before {
    transform: translateY(-100%);
  }
  #globalFooter .footer-top .col.right nav ul li a:hover::after {
    transform: translateY(0);
  }
}
#globalFooter .footer-top .col.right .box01 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-top .col.right .box01 {
    display: block;
    margin-top: 1.3333333333vw;
  }
}
#globalFooter .footer-top .col.right .box01 nav {
  margin-right: 5px;
}
#globalFooter .footer-top .col.right .box01 nav li {
  font-size: 13px;
}
#globalFooter .footer-top .col.right .box01 nav li:not(:last-child) {
  margin-bottom: 12px;
}
#globalFooter .footer-top .col.right .box01 nav li a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  #globalFooter .footer-top .col.right .box01 nav li a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #globalFooter .footer-top .col.right .box01 nav li a:hover {
    opacity: 0.5;
  }
}
#globalFooter .footer-btm {
  padding: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm {
    padding: 5.3333333333vw 0 8vw;
  }
}
#globalFooter .footer-btm .common-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
}
@media screen and (max-width: 950px) {
  #globalFooter .footer-btm .common-inner {
    flex-direction: column;
    justify-content: center;
    gap: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner {
    flex-direction: column;
    gap: 8vw 0;
    padding-left: 6.6666666667vw;
    padding-right: 6.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
#globalFooter .footer-btm .common-inner nav .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner nav .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3333333333vw 0;
  }
}
#globalFooter .footer-btm .common-inner nav .item:not(:nth-of-type(1)) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner nav .item:not(:nth-of-type(1)) {
    margin-top: 4.6666666667vw;
  }
}
#globalFooter .footer-btm .common-inner nav .item .item-title {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner nav .item .item-title {
    font-size: 2.9333333333vw;
  }
}
#globalFooter .footer-btm .common-inner nav .item ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 8px 25px;
}
#globalFooter .footer-btm .common-inner nav .item ul li {
  position: relative;
}
#globalFooter .footer-btm .common-inner nav .item ul li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 1px;
  height: 100%;
  background-color: #dfdfdf;
}
#globalFooter .footer-btm .common-inner nav .item ul li a {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner nav .item ul li a {
    font-size: 2.9333333333vw;
  }
}
#globalFooter .footer-btm .common-inner .box01 {
  text-align: right;
}
@media screen and (max-width: 950px) {
  #globalFooter .footer-btm .common-inner .box01 {
    margin-top: 40px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner .box01 {
    margin-top: 0;
  }
}
#globalFooter .footer-btm .common-inner .box01 .logo img {
  width: 224px;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner .box01 .logo img {
    width: 59.7333333333vw;
  }
}
#globalFooter .footer-btm .common-inner .box01 .copyright {
  margin-top: 20px;
  font-size: 12px;
  font-family: "Figtree", sans-serif;
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .common-inner .box01 .copyright {
    margin-top: 8vw;
    font-size: 2.6666666667vw;
  }
}

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

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

.ff-kaisei {
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
}

.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) {
  .fsp10 {
    font-size: 1.3333333333vw;
  }
  .fsp11 {
    font-size: 1.4666666667vw;
  }
  .fsp12 {
    font-size: 1.6vw;
  }
  .fsp13 {
    font-size: 1.7333333333vw;
  }
  .fsp14 {
    font-size: 1.8666666667vw;
  }
  .fsp15 {
    font-size: 2vw;
  }
  .fsp16 {
    font-size: 2.1333333333vw;
  }
  .fsp17 {
    font-size: 2.2666666667vw;
  }
  .fsp18 {
    font-size: 2.4vw;
  }
  .fsp19 {
    font-size: 2.5333333333vw;
  }
  .fsp20 {
    font-size: 2.6666666667vw;
  }
  .fsp21 {
    font-size: 2.8vw;
  }
  .fsp22 {
    font-size: 2.9333333333vw;
  }
  .fsp23 {
    font-size: 3.0666666667vw;
  }
  .fsp24 {
    font-size: 3.2vw;
  }
  .fsp25 {
    font-size: 3.3333333333vw;
  }
  .fsp26 {
    font-size: 3.4666666667vw;
  }
  .fsp27 {
    font-size: 3.6vw;
  }
  .fsp28 {
    font-size: 3.7333333333vw;
  }
  .fsp29 {
    font-size: 3.8666666667vw;
  }
  .fsp30 {
    font-size: 4vw;
  }
  .fsp31 {
    font-size: 4.1333333333vw;
  }
  .fsp32 {
    font-size: 4.2666666667vw;
  }
  .fsp33 {
    font-size: 4.4vw;
  }
  .fsp34 {
    font-size: 4.5333333333vw;
  }
  .fsp35 {
    font-size: 4.6666666667vw;
  }
  .fsp36 {
    font-size: 4.8vw;
  }
  .fsp37 {
    font-size: 4.9333333333vw;
  }
  .fsp38 {
    font-size: 5.0666666667vw;
  }
  .fsp39 {
    font-size: 5.2vw;
  }
  .fsp40 {
    font-size: 5.3333333333vw;
  }
}
.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mt105 {
  margin-top: 105px;
}

.mt110 {
  margin-top: 110px;
}

.mt115 {
  margin-top: 115px;
}

.mt120 {
  margin-top: 120px;
}

.mt125 {
  margin-top: 125px;
}

.mt130 {
  margin-top: 130px;
}

.mt135 {
  margin-top: 135px;
}

.mt140 {
  margin-top: 140px;
}

.mt145 {
  margin-top: 145px;
}

.mt150 {
  margin-top: 150px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb105 {
  margin-bottom: 105px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb115 {
  margin-bottom: 115px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb135 {
  margin-bottom: 135px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb145 {
  margin-bottom: 145px;
}

.mb150 {
  margin-bottom: 150px;
}

.pt0 {
  padding-top: 0px;
}

.pt5 {
  padding-top: 5px;
}

.pt10 {
  padding-top: 10px;
}

.pt15 {
  padding-top: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pt25 {
  padding-top: 25px;
}

.pt30 {
  padding-top: 30px;
}

.pt35 {
  padding-top: 35px;
}

.pt40 {
  padding-top: 40px;
}

.pt45 {
  padding-top: 45px;
}

.pt50 {
  padding-top: 50px;
}

.pt55 {
  padding-top: 55px;
}

.pt60 {
  padding-top: 60px;
}

.pt65 {
  padding-top: 65px;
}

.pt70 {
  padding-top: 70px;
}

.pt75 {
  padding-top: 75px;
}

.pt80 {
  padding-top: 80px;
}

.pt85 {
  padding-top: 85px;
}

.pt90 {
  padding-top: 90px;
}

.pt95 {
  padding-top: 95px;
}

.pt100 {
  padding-top: 100px;
}

.pt105 {
  padding-top: 105px;
}

.pt110 {
  padding-top: 110px;
}

.pt115 {
  padding-top: 115px;
}

.pt120 {
  padding-top: 120px;
}

.pt125 {
  padding-top: 125px;
}

.pt130 {
  padding-top: 130px;
}

.pt135 {
  padding-top: 135px;
}

.pt140 {
  padding-top: 140px;
}

.pt145 {
  padding-top: 145px;
}

.pt150 {
  padding-top: 150px;
}

.pb0 {
  padding-bottom: 0px;
}

.pb5 {
  padding-bottom: 5px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb25 {
  padding-bottom: 25px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb35 {
  padding-bottom: 35px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb45 {
  padding-bottom: 45px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb65 {
  padding-bottom: 65px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb75 {
  padding-bottom: 75px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb85 {
  padding-bottom: 85px;
}

.pb90 {
  padding-bottom: 90px;
}

.pb95 {
  padding-bottom: 95px;
}

.pb100 {
  padding-bottom: 100px;
}

.pb105 {
  padding-bottom: 105px;
}

.pb110 {
  padding-bottom: 110px;
}

.pb115 {
  padding-bottom: 115px;
}

.pb120 {
  padding-bottom: 120px;
}

.pb125 {
  padding-bottom: 125px;
}

.pb130 {
  padding-bottom: 130px;
}

.pb135 {
  padding-bottom: 135px;
}

.pb140 {
  padding-bottom: 140px;
}

.pb145 {
  padding-bottom: 145px;
}

.pb150 {
  padding-bottom: 150px;
}

.common-section-title {
  padding-top: 65px;
  text-align: center;
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
  background-image: url("../images/common/mark-nami-brown.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 93px 46px;
}
@media screen and (max-width: 768px) {
  .common-section-title {
    padding-top: 12vw !important;
    background-size: 16vw 8vw !important;
  }
}
.common-section-title.white {
  color: #fff;
  background-image: url("../images/common/mark-nami.svg");
}
.common-section-title.aos-animate .sub span,
.common-section-title.aos-animate .main span {
  transform: translateY(0);
}
.common-section-title.aos-animate .sub span:nth-of-type(0) {
  transition-delay: 0s;
}
.common-section-title.aos-animate .sub span:nth-of-type(1) {
  transition-delay: 0.1s;
}
.common-section-title.aos-animate .sub span:nth-of-type(2) {
  transition-delay: 0.2s;
}
.common-section-title.aos-animate .sub span:nth-of-type(3) {
  transition-delay: 0.3s;
}
.common-section-title.aos-animate .sub span:nth-of-type(4) {
  transition-delay: 0.4s;
}
.common-section-title.aos-animate .sub span:nth-of-type(5) {
  transition-delay: 0.5s;
}
.common-section-title.aos-animate .sub span:nth-of-type(6) {
  transition-delay: 0.6s;
}
.common-section-title.aos-animate .sub span:nth-of-type(7) {
  transition-delay: 0.7s;
}
.common-section-title.aos-animate .sub span:nth-of-type(8) {
  transition-delay: 0.8s;
}
.common-section-title.aos-animate .sub span:nth-of-type(9) {
  transition-delay: 0.9s;
}
.common-section-title.aos-animate .sub span:nth-of-type(10) {
  transition-delay: 1s;
}
.common-section-title.aos-animate .sub span:nth-of-type(11) {
  transition-delay: 1.1s;
}
.common-section-title.aos-animate .sub span:nth-of-type(12) {
  transition-delay: 1.2s;
}
.common-section-title.aos-animate .sub span:nth-of-type(13) {
  transition-delay: 1.3s;
}
.common-section-title.aos-animate .sub span:nth-of-type(14) {
  transition-delay: 1.4s;
}
.common-section-title.aos-animate .sub span:nth-of-type(15) {
  transition-delay: 1.5s;
}
.common-section-title.aos-animate .sub span:nth-of-type(16) {
  transition-delay: 1.6s;
}
.common-section-title.aos-animate .sub span:nth-of-type(17) {
  transition-delay: 1.7s;
}
.common-section-title.aos-animate .sub span:nth-of-type(18) {
  transition-delay: 1.8s;
}
.common-section-title.aos-animate .sub span:nth-of-type(19) {
  transition-delay: 1.9s;
}
.common-section-title.aos-animate .sub span:nth-of-type(20) {
  transition-delay: 2s;
}
.common-section-title .sub,
.common-section-title .main {
  overflow: hidden;
}
.common-section-title .sub span,
.common-section-title .main span {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}
.common-section-title .sub {
  font-size: 26px;
}
.common-section-title .sub span {
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .common-section-title .sub {
    font-size: 4vw !important;
  }
}
.common-section-title .main {
  margin-top: 10px;
  font-size: 52px;
  line-height: 1.35;
}
.common-section-title .main span {
  transition: transform 0.6s;
  transition-delay: 1s;
}
@media screen and (max-width: 768px) {
  .common-section-title .main {
    margin-top: 1.3333333333vw !important;
    font-size: 6.9333333333vw !important;
  }
}

.common-page-title {
  width: fit-content;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common-page-title {
    padding-bottom: 2.6666666667vw;
  }
}
.common-page-title.aos-animate .main span {
  transform: translateY(0);
}
.common-page-title.aos-animate .main span:nth-of-type(0) {
  transition-delay: 0s;
}
.common-page-title.aos-animate .main span:nth-of-type(1) {
  transition-delay: 0.1s;
}
.common-page-title.aos-animate .main span:nth-of-type(2) {
  transition-delay: 0.2s;
}
.common-page-title.aos-animate .main span:nth-of-type(3) {
  transition-delay: 0.3s;
}
.common-page-title.aos-animate .main span:nth-of-type(4) {
  transition-delay: 0.4s;
}
.common-page-title.aos-animate .main span:nth-of-type(5) {
  transition-delay: 0.5s;
}
.common-page-title.aos-animate .main span:nth-of-type(6) {
  transition-delay: 0.6s;
}
.common-page-title.aos-animate .main span:nth-of-type(7) {
  transition-delay: 0.7s;
}
.common-page-title.aos-animate .main span:nth-of-type(8) {
  transition-delay: 0.8s;
}
.common-page-title.aos-animate .main span:nth-of-type(9) {
  transition-delay: 0.9s;
}
.common-page-title.aos-animate .main span:nth-of-type(10) {
  transition-delay: 1s;
}
.common-page-title.aos-animate .main span:nth-of-type(11) {
  transition-delay: 1.1s;
}
.common-page-title.aos-animate .main span:nth-of-type(12) {
  transition-delay: 1.2s;
}
.common-page-title.aos-animate .main span:nth-of-type(13) {
  transition-delay: 1.3s;
}
.common-page-title.aos-animate .main span:nth-of-type(14) {
  transition-delay: 1.4s;
}
.common-page-title.aos-animate .main span:nth-of-type(15) {
  transition-delay: 1.5s;
}
.common-page-title.aos-animate .main span:nth-of-type(16) {
  transition-delay: 1.6s;
}
.common-page-title.aos-animate .main span:nth-of-type(17) {
  transition-delay: 1.7s;
}
.common-page-title.aos-animate .main span:nth-of-type(18) {
  transition-delay: 1.8s;
}
.common-page-title.aos-animate .main span:nth-of-type(19) {
  transition-delay: 1.9s;
}
.common-page-title.aos-animate .main span:nth-of-type(20) {
  transition-delay: 2s;
}
.common-page-title.aos-animate .sub {
  opacity: 1;
  transform: translateY(0);
}
.common-page-title.no-ja .sub span::before {
  content: none;
}
.common-page-title .main {
  font-size: 62px;
  font-family: "Lexend Giga", sans-serif;
  font-weight: bold;
  letter-spacing: -0.08em;
  overflow: hidden;
  white-space: nowrap;
}
.common-page-title .main span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.3s;
  will-change: transform;
}
.common-page-title .sub {
  position: relative;
  width: fit-content;
  margin-top: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s, opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .common-page-title .sub {
    margin-top: 2.6666666667vw !important;
  }
}
.common-page-title .sub span {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 12px 20px;
  min-height: 65px;
  text-align: center;
  border: 2px solid #231815;
  border-radius: 9999px;
  background-color: #fff;
  white-space: nowrap;
  font-family: "Kaisei Opti", serif;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .common-page-title .sub span {
    min-height: 8vw !important;
    padding: 1.3333333333vw 2.6666666667vw !important;
    font-size: 4vw !important;
  }
}
.common-page-title .sub span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 40px;
  width: 19px;
  height: 2px;
  background: url("../images/common/sub-page-title-mark.png") no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .common-page-title .sub span::before {
    right: 10.6666666667vw;
  }
}
.common-page-title .sub::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  min-height: 65px;
  height: 100%;
  border-radius: 9999px;
  border: 2px solid #231815;
  background-color: #d6ebf4;
}
@media screen and (max-width: 768px) {
  .common-page-title .sub::after {
    min-height: 8vw !important;
    bottom: -2.6666666667vw !important;
    right: -2.6666666667vw !important;
  }
}

.common-lb-title {
  padding: 10px 0 10px 25px;
  font-family: "Kaisei Opti", serif;
  font-size: 32px;
  line-height: 1.3;
  border-left: 4px solid #673b93;
}
@media screen and (max-width: 768px) {
  .common-lb-title {
    padding: 1.3333333333vw 0 1.3333333333vw 4.6666666667vw;
    font-size: 5.0666666667vw;
    line-height: 1.6;
    border-left-width: 0.8vw;
  }
}

.common-bb-title {
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #673b93;
  line-height: 1.5;
  border-bottom: 1px solid #673b93;
}
@media screen and (max-width: 768px) {
  .common-bb-title {
    padding-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.common-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 40px 0 20px;
  font-weight: 500;
  border: 1px solid #231815;
  background-color: #fff;
  line-height: 1.3;
  color: #231815;
}
@media screen and (max-width: 768px) {
  .common-btn {
    padding: 0 8vw 0 4vw;
    font-size: 3.2vw;
  }
}
.common-btn.h60 {
  height: 60px;
}
@media screen and (max-width: 768px) {
  .common-btn.h60 {
    height: 14.6666666667vw;
  }
}
.common-btn.h70 {
  height: 70px;
}
@media screen and (max-width: 768px) {
  .common-btn.h70 {
    height: 14.6666666667vw;
  }
}
.common-btn.h80 {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .common-btn.h80 {
    height: 14.6666666667vw;
  }
}
.common-btn.w200 {
  width: 200px;
}
.common-btn.w300 {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .common-btn.w300 {
    width: 73.3333333333vw;
  }
}
.common-btn.w320 {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .common-btn.w320 {
    width: 54.6666666667vw;
  }
}
.common-btn.w340 {
  width: 340px;
}
@media screen and (max-width: 768px) {
  .common-btn.w340 {
    width: 70.6666666667vw;
  }
}
.common-btn.w400 {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .common-btn.w400 {
    width: 70.6666666667vw;
  }
}
.common-btn.center {
  justify-content: center;
}
.common-btn.round {
  border-radius: 9999px;
}
.common-btn.bg-bk {
  background-color: #231815;
  color: #fff;
}
@media (hover: none) {
  .common-btn.bg-bk.anim:active {
    color: #231815;
    background-color: #fff;
  }
  .common-btn.bg-bk.anim:active .ar::before, .common-btn.bg-bk.anim:active .ar::after {
    filter: brightness(1) invert(1);
  }
}
@media (hover: hover) {
  .common-btn.bg-bk.anim:hover {
    color: #231815;
    background-color: #fff;
  }
  .common-btn.bg-bk.anim:hover .ar::before, .common-btn.bg-bk.anim:hover .ar::after {
    filter: brightness(1) invert(1);
  }
}
.common-btn.bg-bk .ar::before, .common-btn.bg-bk .ar::after {
  background-image: url("../images/common/icn-ar-r.svg");
}
@media (hover: none) {
  .common-btn.back.anim:active {
    background-color: #231815;
    color: #fff;
  }
  .common-btn.back.anim:active .ar::before {
    filter: brightness(0) invert(1);
    transform: translateX(-200%);
  }
  .common-btn.back.anim:active .ar::after {
    filter: brightness(0) invert(1);
    transform: translateX(0);
  }
}
@media (hover: hover) {
  .common-btn.back.anim:hover {
    background-color: #231815;
    color: #fff;
  }
  .common-btn.back.anim:hover .ar::before {
    filter: brightness(0) invert(1);
    transform: translateX(-200%);
  }
  .common-btn.back.anim:hover .ar::after {
    filter: brightness(0) invert(1);
    transform: translateX(0);
  }
}
.common-btn.back .ar {
  right: auto;
  left: 25px;
}
.common-btn.back .ar::before, .common-btn.back .ar::after {
  background-image: url("../images/common/icn-ar-l-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.common-btn.back .ar::after {
  transform: translateX(200%);
}
.common-btn.anim {
  position: relative;
  transition: 0.3s;
}
@media (hover: none) {
  .common-btn.anim:active {
    background-color: #231815;
    color: #fff;
  }
  .common-btn.anim:active .ar::before {
    filter: brightness(0) invert(1);
    transform: translateX(200%);
  }
  .common-btn.anim:active .ar::after {
    filter: brightness(0) invert(1);
    transform: translateX(0);
  }
}
@media (hover: hover) {
  .common-btn.anim:hover {
    background-color: #231815;
    color: #fff;
  }
  .common-btn.anim:hover .ar::before {
    filter: brightness(0) invert(1);
    transform: translateX(200%);
  }
  .common-btn.anim:hover .ar::after {
    filter: brightness(0) invert(1);
    transform: translateX(0);
  }
}
.common-btn .ar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 14px;
  height: 14px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .common-btn .ar {
    right: 5.3333333333vw;
    width: 3.0666666667vw;
    height: 3.0666666667vw;
  }
}
.common-btn .ar::before, .common-btn .ar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/icn-ar-r-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: 0.3s;
}
.common-btn .ar::after {
  transform: translateX(-200%);
}

.common-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  padding-top: 80px;
  background-color: #fff;
}
@media screen and (max-width: 1250px) {
  .common-btns {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .common-btns {
    flex-direction: column;
    gap: 4vw 0;
    padding-top: 16vw;
  }
}
.common-btns a {
  width: 340px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .common-btns a {
    width: 68vw;
    height: 16vw;
    font-size: 3.4666666667vw;
  }
}

.square-black-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 80px;
  padding: 0 50px 0 20px;
  font-weight: 500;
  font-size: 16px;
  background-color: #231815;
  color: #fff;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (hover: none) {
  .square-black-btn:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  .square-black-btn:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1100px) {
  .square-black-btn {
    padding-left: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .square-black-btn {
    height: 14.6666666667vw;
    padding: 0 9.3333333333vw 0 4vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
.square-black-btn.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 14px;
  height: 14px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .square-black-btn.arrow::before {
    right: 4vw;
    width: 2.2666666667vw;
    height: 2.2666666667vw;
  }
}
.square-black-btn.outlink {
  margin-top: 5px;
}
.square-black-btn.outlink::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 18px;
  height: 18px;
  background-image: url("../images/common/icn-outlink.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .square-black-btn.outlink::before {
    right: 4vw;
    width: 2.2666666667vw;
    height: 2.2666666667vw;
  }
}

.common-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .common-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .common-inner {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.vt {
  writing-mode: vertical-rl;
}

.common-cloud.type01 img {
  width: 260px;
}
.common-cloud.type02 img {
  width: 220px;
}

.common-text {
  line-height: 1.88;
  font-weight: 500;
}

.common-category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  background-color: #ebe4ee;
  color: #74539a;
  font-weight: 500;
  border-radius: 9999px;
}

.common-date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

.common-pin {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.common-pin::before {
  flex-shrink: 0;
  content: "";
  background-image: url("../images/common/icn-pin.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.common-yen {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.common-yen::before {
  flex-shrink: 0;
  content: "";
  background-image: url("../images/common/icn-yen.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.common-howto-enjoy {
  position: relative;
}
.common-howto-enjoy .inner {
  padding-bottom: 100px;
  background-color: #ea9b66;
  border-radius: 0 0 100px 100px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .inner {
    padding-bottom: 7.4074074074vw;
    border-radius: 0 0 7.4074074074vw 7.4074074074vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .inner {
    padding-bottom: 18.6666666667vw;
    border-radius: 0 0 13.3333333333vw 13.3333333333vw;
  }
}
.common-howto-enjoy .common-inner {
  position: relative;
  z-index: 4;
  max-width: 1400px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-inner {
    max-width: 103.7037037037vw;
    padding-top: 6.6666666667vw;
  }
}
.common-howto-enjoy::before {
  content: "";
  position: absolute;
  top: -143px;
  left: 0;
  width: 100%;
  height: 144px;
  background-image: url("../images/common/sec02-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy::before {
    top: -10.5925925926vw;
    height: 10.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy::before {
    top: -9.2vw;
    height: 9.3333333333vw;
  }
}
.common-howto-enjoy .common-section-title {
  color: #fff !important;
  background-image: url("../images/common/mark-nami.svg");
  transform: translateY(-80px);
}
.common-howto-enjoy .common-section-title a {
  color: #fff !important;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-section-title {
    padding-top: 4.8148148148vw;
    transform: translateY(-5.9259259259vw);
    background-size: 6.8888888889vw 3.4074074074vw;
  }
  .common-howto-enjoy .common-section-title .sub {
    font-size: 1.9259259259vw;
  }
  .common-howto-enjoy .common-section-title .main {
    margin-top: 0.7407407407vw;
    font-size: 3.8518518519vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .common-section-title {
    transform: translateY(0);
  }
}
.common-howto-enjoy .list {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.86666%;
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
  margin-top: -30px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list {
    max-width: 88.1481481481vw;
    margin-top: -2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list {
    flex-wrap: wrap;
    gap: 0 3%;
    margin-top: 9.3333333333vw;
  }
}
.common-howto-enjoy .list .item {
  position: relative;
  width: 23.6%;
  height: 100%;
  aspect-ratio: 563/751;
  perspective: 1000px;
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item {
    width: 48.5%;
    aspect-ratio: 325/428;
  }
}
.common-howto-enjoy .list .item:nth-of-type(1) {
  transform: rotate(-10deg) translateX(-20px);
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item:nth-of-type(1) {
    transform: rotate(-10deg) translateX(-1.4814814815vw);
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item:nth-of-type(1) {
    transform: rotate(-5deg) translateX(-1.3333333333vw);
  }
}
.common-howto-enjoy .list .item:nth-of-type(1) .item-back::before {
  background-image: url("../images/common/karuta01.png");
}
.common-howto-enjoy .list .item:nth-of-type(2) {
  margin-top: 75px;
  transform: rotate(5deg);
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item:nth-of-type(2) {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item:nth-of-type(2) {
    margin-top: 9.3333333333vw;
    transform: rotate(3deg) translateX(1.3333333333vw);
  }
}
.common-howto-enjoy .list .item:nth-of-type(2) .item-back::before {
  background-image: url("../images/common/karuta02.png");
}
.common-howto-enjoy .list .item:nth-of-type(3) {
  transform: rotate(-3deg);
}
.common-howto-enjoy .list .item:nth-of-type(3) .item-back::before {
  background-image: url("../images/common/karuta03.png");
}
.common-howto-enjoy .list .item:nth-of-type(4) {
  margin-top: 70px;
  transform: rotate(2deg) translateX(20px);
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item:nth-of-type(4) {
    margin-top: 5.1851851852vw;
    transform: rotate(2deg) translateX(0.1486988848vw);
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item:nth-of-type(4) {
    margin-top: 9.3333333333vw;
    transform: rotate(2deg) translateX(1.3333333333vw);
  }
}
.common-howto-enjoy .list .item:nth-of-type(4) .item-back::before {
  background-image: url("../images/common/karuta04.png");
}
.common-howto-enjoy .list .item .kanji {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .kanji {
    top: 1.4814814815vw;
    right: 1.4814814815vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .kanji {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.common-howto-enjoy .list .item .kanji::before {
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background-color: #231815;
  font-family: "Kaisei Opti", serif;
  font-weight: normal;
  font-size: 34px;
  color: #f2f2eb;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .kanji::before {
    width: 4.4444444444vw;
    height: 4.4444444444vw;
    font-size: 2.5185185185vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .kanji::before {
    width: 8vw;
    height: 8vw;
    font-size: 4.5333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .common-howto-enjoy .list .item:hover .item-inner {
    transform: rotateY(180deg);
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item.active .item-inner {
    transform: rotateY(180deg);
  }
}
.common-howto-enjoy .list .item:focus-within .item-inner {
  transform: rotateY(180deg);
}
.common-howto-enjoy .list .item .item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.common-howto-enjoy .list .item .item-face {
  position: absolute;
  inset: 0;
  font-weight: 700;
  backface-visibility: hidden;
  border-radius: 12px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .item-face {
    border-radius: 0.8888888889vw;
  }
}
.common-howto-enjoy .list .item .item-face.item-back {
  transform: rotateY(180deg);
  color: #fff;
}
.common-howto-enjoy .list .item .item-face.item-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  filter: brightness(30%);
}
.common-howto-enjoy .list .item .item-face.item-back p {
  position: relative;
  z-index: 2;
  padding: 100px 35px 0;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .item-face.item-back p {
    font-size: 1.1851851852vw;
    padding: 7.4074074074vw 2.5925925926vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .item-face.item-back p {
    padding: 13.3333333333vw 4.6666666667vw 0;
    font-size: 2.1333333333vw;
  }
}
.common-howto-enjoy .list .item .item-face.item-back .link {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  right: 40px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .item-face.item-back .link {
    bottom: 3.7037037037vw;
    right: 2.962962963vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .item-face.item-back .link {
    bottom: 6.6666666667vw;
    right: 5.3333333333vw;
  }
}
.common-howto-enjoy .list .item .item-face.item-back .link a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 12px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .item-face.item-back .link a {
    gap: 0 0.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .item-face.item-back .link a {
    gap: 0 1.6vw;
  }
}
.common-howto-enjoy .list .item .item-face.item-back .link a span {
  color: #fff;
  font-size: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .item-face.item-back .link a span {
    font-size: 1.037037037vw;
    padding-bottom: 0.3703703704vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .item-face.item-back .link a span {
    font-size: 1.8666666667vw;
    padding-bottom: 1.3333333333vw;
  }
}
.common-howto-enjoy .list .item .item-face.item-back .link a::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .list .item .item-face.item-back .link a::after {
    width: 0.8888888889vw;
    height: 0.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .list .item .item-face.item-back .link a::after {
    width: 1.6vw;
    height: 1.6vw;
  }
}
.common-howto-enjoy .howto-img01 {
  position: absolute;
  top: -160px;
  left: 80px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .howto-img01 {
    top: -11.8518518519vw;
    left: 5.9259259259vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .howto-img01 {
    top: -13.3333333333vw;
    left: 2.6666666667vw;
  }
}
.common-howto-enjoy .howto-img01 img {
  width: 368px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .howto-img01 img {
    width: 27.2592592593vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .howto-img01 img {
    width: 37.3333333333vw;
  }
}
.common-howto-enjoy .howto-fubuki01 {
  position: absolute;
  top: 470px;
  left: 25px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .howto-fubuki01 {
    top: 34.8148148148vw;
    left: 1.8518518519vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .howto-fubuki01 {
    top: -3.3333333333vw;
    left: 0;
  }
}
.common-howto-enjoy .howto-fubuki01 img {
  width: 267px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .howto-fubuki01 img {
    width: 19.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .howto-fubuki01 img {
    width: 100%;
  }
}
.common-howto-enjoy .howto-fubuki02 {
  position: absolute;
  z-index: 2;
  top: -40px;
  right: 15px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .howto-fubuki02 {
    top: -2.962962963vw;
    right: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .howto-fubuki02 {
    right: auto;
    top: auto;
    bottom: 10.6666666667vw;
    left: 0.6666666667vw;
  }
}
.common-howto-enjoy .howto-fubuki02 img {
  width: 267px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .howto-fubuki02 img {
    width: 19.7777777778vw;
  }
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .howto-fubuki02 img {
    width: 36vw;
  }
}
.common-howto-enjoy .common-cloud {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .common-howto-enjoy .common-cloud {
    display: none;
  }
}
.common-howto-enjoy .common-cloud.howto-cloud01 {
  top: 80px;
  left: -60px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-cloud.howto-cloud01 {
    top: 5.9259259259vw;
    left: -4.4444444444vw;
  }
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-cloud img {
    width: 16.2962962963vw;
  }
}
.common-howto-enjoy .common-cloud.howto-cloud02 {
  top: -10px;
  right: -150px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-cloud.howto-cloud02 {
    top: -0.7407407407vw;
    right: -11.1111111111vw;
  }
}
.common-howto-enjoy .common-cloud.howto-cloud02 img {
  width: 300px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-cloud.howto-cloud02 img {
    width: 22.2222222222vw;
  }
}
.common-howto-enjoy .common-cloud.howto-cloud03 {
  top: 540px;
  right: 40px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-cloud.howto-cloud03 {
    top: 40vw;
    right: 2.962962963vw;
  }
}
.common-howto-enjoy .common-cloud.howto-cloud03 img {
  width: 168px;
}
@media screen and (max-width: 1350px) {
  .common-howto-enjoy .common-cloud.howto-cloud03 img {
    width: 12.4444444444vw;
  }
}

.common-news-list .news-item a {
  display: block;
  padding: 30px 0 40px;
  transition: opacity 0.3s;
}
@media (hover: none) {
  .common-news-list .news-item a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  .common-news-list .news-item a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .common-news-list .news-item a {
    padding: 6.6666666667vw 0;
  }
}
.common-news-list .news-item a .news-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
}
.common-news-list .news-item a .news-meta .date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .common-news-list .news-item a .news-meta .date {
    font-size: 2.9333333333vw;
  }
}
.common-news-list .news-item a .news-meta .category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 120px;
  height: 30px;
  padding: 0 10px;
  border-radius: 9999px;
  background-color: #efe8f2;
  font-size: 13px;
  font-weight: 500;
  color: #673b93;
}
@media screen and (max-width: 768px) {
  .common-news-list .news-item a .news-meta .category {
    min-width: 21.3333333333vw;
    height: 5.3333333333vw;
    padding: 0 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
.common-news-list .news-item a .title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  .common-news-list .news-item a .title {
    margin-top: 4vw;
    font-size: 3.4666666667vw;
  }
}

.common-faq-list .faq-item .question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  padding: 25px 0;
}
@media screen and (min-width: 769px) {
  .common-faq-list .faq-item .question:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .common-faq-list .faq-item .question {
    gap: 0 3.7333333333vw;
    padding: 6.6666666667vw 0;
  }
}
.common-faq-list .faq-item .question::before {
  content: "Q";
  font-family: "Figtree", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #673b93;
}
@media screen and (max-width: 768px) {
  .common-faq-list .faq-item .question::before {
    font-size: 5.0666666667vw;
  }
}
.common-faq-list .faq-item .question .text {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .common-faq-list .faq-item .question .text {
    font-size: 3.7333333333vw;
  }
}
.common-faq-list .faq-item .answer {
  display: none;
  padding-left: 50px;
  padding-right: 65px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common-faq-list .faq-item .answer {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 6.6666666667vw;
  }
}
.common-faq-list .faq-item .answer .text {
  padding: 30px;
  background-color: #efe8f2;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .common-faq-list .faq-item .answer .text {
    padding: 6.6666666667vw;
    border-radius: 0.6666666667vw;
  }
}
.common-faq-list .faq-item .answer .text p {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .common-faq-list .faq-item .answer .text p {
    font-size: 3.2vw;
  }
}

.common-tag-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .common-tag-list {
    gap: 0 1.3333333333vw;
  }
}
.common-tag-list .tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #231815;
  border-radius: 9999px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .common-tag-list .tag-item {
    height: 8vw;
    padding: 0 5.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
.common-tag-list .tag-item.free {
  padding: 0 20px 0 45px;
  color: #fff;
  border: none;
  background-image: url("../images/common/icn-free.svg");
  background-repeat: no-repeat;
  background-position: 13px center;
  background-size: 23px 23px;
  background-color: #f47270;
}
@media screen and (max-width: 768px) {
  .common-tag-list .tag-item.free {
    padding: 1.3333333333vw 4vw 1.3333333333vw 9.3333333333vw;
    background-position: 2.6666666667vw center;
    background-size: 4.6666666667vw 4.6666666667vw;
  }
}

.common-share-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  .common-share-list {
    gap: 0 3.3333333333vw;
    margin-top: 13.3333333333vw;
  }
}
.common-share-list::before {
  content: "SHARE";
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .common-share-list::before {
    font-size: 2.6666666667vw;
    margin-right: 0.6666666667vw;
  }
}
.common-share-list a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  .common-share-list a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  .common-share-list a:hover {
    opacity: 0.5;
  }
}
.common-share-list a img {
  width: 45px;
}
@media screen and (max-width: 768px) {
  .common-share-list a img {
    width: 6.6666666667vw;
  }
}

.common-side-menu {
  position: sticky;
  top: 80px;
  flex-shrink: 0;
  width: 260px;
  padding: 40px 40px 15px;
  border: 2px solid #231815;
  background-color: #fff;
  border-radius: 20px;
}
.common-side-menu::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 30px;
  width: 39px;
  height: 2px;
  background-image: url("../images/common/common-frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.common-side-menu .side-title {
  font-family: "Kaisei Opti", serif;
  font-size: 22px;
  font-weight: bold;
}
.common-side-menu ul {
  margin-top: 15px;
}
.common-side-menu ul li:not(:last-child) {
  background-image: radial-gradient(#231815 30%, transparent 30%);
  background-size: 6px 4px;
  /*imageで指定した割合が100%の時の値*/
  background-position: bottom;
  background-repeat: repeat-x;
}
.common-side-menu ul li.active {
  position: relative;
  pointer-events: none;
}
.common-side-menu ul li.active::before {
  content: "";
  left: -18px;
  width: 9px;
  height: 9px;
  border-radius: 9999px;
  background-color: #673b93;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.common-side-menu ul li.active a {
  color: #673b93;
}
.common-side-menu ul li a {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .common-side-menu ul li a {
    transition: color 0.3s;
  }
  .common-side-menu ul li a:hover {
    color: #673b93;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    gap: 0 4vw;
    margin-top: 10.6666666667vw;
  }
}
.wp-pagenavi a,
.wp-pagenavi .current {
  padding: 5px;
  font-size: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi .current {
    padding: 1.3333333333vw;
    font-size: 4vw;
  }
}
.wp-pagenavi a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  .wp-pagenavi a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  .wp-pagenavi a:hover {
    opacity: 0.5;
  }
}
.wp-pagenavi .current {
  border-bottom-color: #231815;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #231815;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
.wp-pagenavi .previouspostslink {
  margin-right: 25px;
  background-image: url("../images/common/icn-ar-l.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .previouspostslink {
    margin-right: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .previouspostslink {
    background-size: 3.0666666667vw 2.9333333333vw;
  }
}
.wp-pagenavi .nextpostslink {
  margin-left: 25px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .nextpostslink {
    margin-left: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .wp-pagenavi .nextpostslink {
    background-size: 3.0666666667vw 2.9333333333vw;
  }
}

.side-menu {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 170px;
  height: 50px;
  padding: 0 30px;
  border-radius: 20px;
  font-size: 16px;
  margin-left: auto;
  border: 2px solid #231815;
  font-family: "Kaisei Opti", serif;
  color: #fff;
  background-image: url("../images/common/icn-tri-b.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 8px 7px;
  background-color: #673b93;
}
@media screen and (max-width: 768px) {
  .side-menu {
    width: 44vw;
    height: 14vw;
    padding: 0 8vw 0 5.3333333333vw;
    border-radius: 2.6666666667vw;
    font-size: 4vw;
    border-width: 0.2666666667vw;
    background-position: calc(100% - 5.3333333333vw);
    background-size: 2.1333333333vw 1.8666666667vw;
  }
}
.side-menu option {
  background-color: #fff;
  color: #231815;
}

.slider {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.7857142857vw;
  overflow: hidden;
  background-color: #483064;
}
@media screen and (max-width: 768px) {
  .slider {
    gap: 0 2.6666666667vw;
  }
}
.slider .slider-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.7857142857vw;
  animation: marquee 60s linear infinite;
  animation-direction: normal;
}
@media screen and (max-width: 768px) {
  .slider .slider-wrap {
    gap: 0 3.3333333333vw;
  }
}
.slider .slider-wrap .slider-item {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 0.7142857143vw;
  height: 4.2857142857vw;
  padding: 0 1.4285714286vw;
  border-radius: 9999px;
  background-color: #f4efe1;
}
@media screen and (max-width: 768px) {
  .slider .slider-wrap .slider-item {
    gap: 0 2.6666666667vw;
    padding: 0 4vw;
    height: 10vw;
  }
}
.slider .slider-wrap .slider-item .icn img {
  width: 2.2857142857vw;
}
@media screen and (max-width: 768px) {
  .slider .slider-wrap .slider-item .icn img {
    width: 5.3333333333vw;
  }
}
.slider .slider-wrap .slider-item .text {
  color: #483064;
  font-size: 1.4285714286vw;
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .slider .slider-wrap .slider-item .text {
    font-size: 3.2vw;
  }
}

.common-mv {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .common-mv {
    padding-top: 22.6666666667vw;
  }
}
.common-mv .common-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .common-mv .common-inner {
    display: block;
  }
}
.common-mv .common-page-title {
  position: relative;
  z-index: 2;
}
.common-mv .common-page-title .main {
  padding-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .common-page-title .main {
    padding-left: 3.2258064516vw;
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .common-page-title .main {
    padding-left: 2vw;
    font-size: 8vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .common-page-title {
    padding-bottom: 1.6129032258vw;
  }
  .common-mv .common-page-title .sub {
    margin-top: 2.0161290323vw;
  }
  .common-mv .common-page-title .sub span {
    min-height: 5.2419354839vw;
    font-size: 2.0967741935vw;
  }
  .common-mv .common-page-title .sub::after {
    bottom: -1.6129032258vw;
    right: -1.6129032258vw;
    min-height: 5.2419354839vw;
  }
}
.common-mv .box01 {
  max-width: 510px;
  width: 100%;
  padding-top: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box01 {
    max-width: 41.1290322581vw;
    padding-top: 2.4193548387vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box01 {
    padding-top: 0;
  }
}
.common-mv .box01 p {
  margin-top: 70px;
  padding-left: 50px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box01 p {
    margin-top: 5.6451612903vw;
    padding-left: 4.0322580645vw;
    font-size: 1.4516129032vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box01 p {
    margin-top: 69.3333333333vw;
    padding-left: 0;
  }
}
.common-mv .box02 {
  position: relative;
  z-index: 1;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .common-mv .box02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.common-mv .box02 .text-box {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 4px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box02 .text-box {
    gap: 0 0.3225806452vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box02 .text-box {
    position: absolute;
    top: 0;
    right: 5.3333333333vw;
  }
}
.common-mv .box02 .text-box .text {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 90px;
  padding: 35px 0 20px;
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #79a987;
  font-family: "Kaisei Opti", serif;
  animation-delay: 1s;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box02 .text-box .text {
    width: 7.2580645161vw;
    padding: 2.8225806452vw 0 1.6129032258vw;
    font-size: 3.5483870968vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box02 .text-box .text {
    width: 14.6666666667vw;
    padding: 2.6666666667vw 0;
    font-size: 6.9333333333vw;
  }
}
.common-mv .box02 .text-box .text.text01 {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box02 .text-box .text.text01 {
    border-radius: 0 1.6129032258vw 1.6129032258vw 0;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box02 .text-box .text.text01 {
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
  }
}
.common-mv .box02 .text-box .text.text02 {
  order: -1;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box02 .text-box .text.text02 {
    border-radius: 1.6129032258vw 0 0 1.6129032258vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box02 .text-box .text.text02 {
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
  }
}
.common-mv .box02 .img {
  position: absolute;
  top: -45px;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box02 .img {
    top: -3.6290322581vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box02 .img {
    top: 30.6666666667vw;
    left: 0;
  }
}
.common-mv .box02 .img img {
  width: 530px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv .box02 .img img {
    width: 42.7419354839vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv .box02 .img img {
    width: 56vw;
  }
}
.common-mv figure {
  position: absolute;
}
.common-mv figure.fubuki01 {
  top: 0px;
  left: -90px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.fubuki01 {
    left: -7.2580645161vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv figure.fubuki01 {
    top: 36vw;
    left: 1.3333333333vw;
  }
}
.common-mv figure.fubuki01 img {
  width: 93px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.fubuki01 img {
    width: 7.5vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv figure.fubuki01 img {
    width: 95.3333333333vw;
  }
}
.common-mv figure.fubuki02 {
  top: 170px;
  left: 385px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.fubuki02 {
    top: 13.7096774194vw;
    left: 31.0483870968vw;
  }
}
.common-mv figure.fubuki02 img {
  width: 93px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.fubuki02 img {
    width: 7.5vw;
  }
}
.common-mv figure.fubuki03 {
  top: -90px;
  left: 570px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.fubuki03 {
    top: -7.2580645161vw;
    left: 45.9677419355vw;
  }
}
.common-mv figure.fubuki03 img {
  width: 178px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.fubuki03 img {
    width: 14.3548387097vw;
  }
}
.common-mv figure.cloud01 {
  top: 370px;
  right: -120px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.cloud01 {
    top: 29.8387096774vw;
    right: -9.6774193548vw;
  }
  .common-mv figure.cloud01 img {
    width: 17.7419354839vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv figure.cloud01 {
    display: none;
  }
}
.common-mv figure.img01 {
  top: 215px;
  right: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.img01 {
    top: 17.3387096774vw;
    right: 1.6129032258vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv figure.img01 {
    top: 73.3333333333vw;
    right: 5.3333333333vw;
  }
}
.common-mv figure.img01 img {
  width: 180px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  .common-mv figure.img01 img {
    width: 14.5161290323vw;
  }
}
@media screen and (max-width: 768px) {
  .common-mv figure.img01 img {
    width: 24vw;
  }
}

.common-dot-list li {
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .common-dot-list li {
    padding-left: 4.6666666667vw;
    font-size: 3.2vw;
  }
}
.common-dot-list li:not(:nth-of-type(1)) {
  margin-top: 10px;
}
.common-dot-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #74539a;
}
@media screen and (max-width: 768px) {
  .common-dot-list li::before {
    top: 1.0666666667vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}

.common-switch {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 9999px;
  border: 1px solid #231815;
}
@media screen and (max-width: 768px) {
  .common-switch {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.common-switch.active {
  background-color: #000;
}
.common-switch.active::before {
  background-color: #fff;
}
.common-switch.active::after {
  background-color: #fff;
  transform: rotate(90deg);
}
.common-switch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  margin: -1px 0 0 -8px;
  background-color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .common-switch::before {
    width: 2.5333333333vw;
    height: 0.2666666667vw;
    margin: -0.1333333333vw 0 0 -1.2vw;
  }
}
.common-switch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 17px;
  margin: -8px 0 0 -1px;
  background-color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .common-switch::after {
    width: 0.2666666667vw;
    height: 2.5333333333vw;
    margin: -1.2vw 0 0 -0.1333333333vw;
  }
}

@keyframes clipUp {
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}
@keyframes clipDown {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0% 0);
  }
}
.vanimate {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}
.vanimate.aos-animate {
  animation: clipDown 900ms cubic-bezier(1, 0.3, 0.05, 1) forwards;
}

#contents.home .loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
}
#contents.home .loading .loading-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
}
#contents.home .loading .loading-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#contents.home .loading figure {
  position: absolute;
  will-change: transform, opacity;
}
#contents.home .loading figure.loading-cloud01 {
  z-index: 10;
  top: 0;
  right: 0;
  width: 67.8571428571vw;
}
#contents.home .loading figure.loading-cloud02 {
  z-index: 5;
  top: 0;
  left: 2.5vw;
  width: 60.7142857143vw;
}
#contents.home .loading figure.loading-cloud03 {
  z-index: 10;
  bottom: 0;
  right: 0;
  width: 95.7142857143vw;
}
#contents.home .loading figure.loading-cloud04 {
  z-index: 5;
  bottom: 19.2857142857vw;
  left: 0;
  width: 73.1428571429vw;
}
#contents.home .loading figure.loading-tyouchin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}

/*--------------------------
HOME
----------------------------*/
#contents.home .c-mv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv {
    background-image: url("../images/common/mv-bg-sp.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
#contents.home .c-mv .mv {
  position: relative;
  min-height: 53.2142857143vw;
  padding-top: 12.8571428571vw;
  background-image: url("../images/common/mv-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv {
    position: static;
    min-height: initial;
    padding-top: 22.6666666667vw;
    background-image: none;
  }
}
@media screen and (min-width: 769px) {
  #contents.home .c-mv .mv .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 4.2857142857vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .logo {
    text-align: center;
  }
}
#contents.home .c-mv .mv .logo img {
  width: 41.7857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .logo img {
    width: 78vw;
  }
}
#contents.home .c-mv .mv .img {
  position: relative;
  z-index: 2;
}
#contents.home .c-mv .mv .kanban {
  position: absolute;
  z-index: 4;
  top: 20vw;
  left: 28.5714285714vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .kanban {
    top: 49.3333333333vw;
    left: 15.3333333333vw;
  }
}
#contents.home .c-mv .mv .kanban img {
  width: 45.2857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .kanban img {
    width: 80vw;
  }
}
#contents.home .c-mv .mv .fuji {
  position: absolute;
  bottom: 0;
  right: 1.4285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .fuji {
    bottom: 20vw;
  }
}
#contents.home .c-mv .mv .fuji img {
  width: 43.5vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .fuji img {
    width: 100%;
  }
}
#contents.home .c-mv .mv .wave01 {
  position: absolute;
  bottom: -0.7142857143vw;
  left: 0;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .wave01 {
    bottom: 18.6666666667vw;
  }
}
#contents.home .c-mv .mv .wave01 img {
  width: 25.4285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .wave01 img {
    width: 48.4vw;
  }
}
#contents.home .c-mv .mv .wave02 {
  position: absolute;
  bottom: -0.7142857143vw;
  right: 0;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .wave02 {
    bottom: 18.6666666667vw;
  }
}
#contents.home .c-mv .mv .wave02 img {
  width: 32.8571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .mv .wave02 img {
    width: 33.4666666667vw;
  }
}
#contents.home .c-mv .sound-information {
  position: absolute;
  top: 7.1428571429vw;
  right: 2.3571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .sound-information {
    display: none;
  }
}
#contents.home .c-mv .sound-information .headline {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1vw;
  font-weight: bold;
}
#contents.home .c-mv .sound-information .text01 {
  margin-top: 0.7142857143vw;
  font-size: 1vw;
  line-height: 1.5;
}
#contents.home .c-mv .sound-information .text02 {
  margin-top: 0.3571428571vw;
  font-size: 0.8571428571vw;
}
#contents.home .c-mv .person figure {
  position: absolute;
  z-index: 2;
  will-change: opacity;
  opacity: 0;
}
#contents.home .c-mv .person .person01 {
  top: 27.1428571429vw;
  left: 30.3571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person01 {
    top: 61.3333333333vw;
    left: 18.6666666667vw;
  }
}
#contents.home .c-mv .person .person01 img {
  width: 13.2142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person01 img {
    width: 24vw;
  }
}
#contents.home .c-mv .person .person02 {
  top: 40vw;
  left: 51.4285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person02 {
    top: 84.2666666667vw;
    left: 56.6666666667vw;
  }
}
#contents.home .c-mv .person .person02 img {
  width: 12.4285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person02 img {
    width: 22.6666666667vw;
  }
}
#contents.home .c-mv .person .person03 {
  top: 27.1428571429vw;
  left: 51.4285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person03 {
    top: 62.6666666667vw;
    left: 56vw;
  }
}
#contents.home .c-mv .person .person03 img {
  width: 20.8571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person03 img {
    width: 36vw;
  }
}
#contents.home .c-mv .person .person04 {
  top: 36.4285714286vw;
  left: 33.5714285714vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person04 {
    top: 77.3333333333vw;
    left: 22.6666666667vw;
  }
}
#contents.home .c-mv .person .person04 img {
  width: 7.3571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person04 img {
    width: 13.3333333333vw;
  }
}
#contents.home .c-mv .person .person05 {
  top: 12.8571428571vw;
  left: 59.2857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person05 {
    top: 36vw;
    left: 69.3333333333vw;
  }
}
#contents.home .c-mv .person .person05 img {
  width: 9.2857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person05 img {
    width: 16.6666666667vw;
  }
}
#contents.home .c-mv .person .person06 {
  top: 22.1428571429vw;
  left: 43.5714285714vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person06 {
    top: 52.6666666667vw;
    left: 41.3333333333vw;
  }
}
#contents.home .c-mv .person .person06 img {
  width: 11.2857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .person .person06 img {
    width: 20.6666666667vw;
  }
}
#contents.home .c-mv .contents {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  bottom: 9.2857142857vw;
  max-width: 95.7142857143vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  padding-left: 5.7142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents {
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    transform: initial;
    margin-top: -86.6666666667vw;
    display: block;
    max-width: 100%;
    height: 100%;
    padding: 0 4vw;
  }
}
#contents.home .c-mv .contents .left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 4px;
  margin-bottom: 10vw;
}
@media screen and (max-width: 1000px) {
  #contents.home .c-mv .contents .left {
    margin-bottom: 7.1428571429vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .left {
    margin-bottom: 0;
  }
}
#contents.home .c-mv .contents .left .text {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 4.7857142857vw;
  padding: 1.4285714286vw;
  font-size: 2.1428571429vw;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #74539a;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .left .text {
    width: 8.8vw;
    padding: 2.6666666667vw 0;
    font-size: 4vw;
  }
}
#contents.home .c-mv .contents .left .text.text01 {
  border-radius: 1.4285714286vw 0 0 1.4285714286vw;
}
#contents.home .c-mv .contents .left .text.text01.no-ja .ruby::before {
  content: none;
}
#contents.home .c-mv .contents .left .text.text01 .ruby {
  position: relative;
}
#contents.home .c-mv .contents .left .text.text01 .ruby::before {
  content: attr(data-text);
  position: absolute;
  top: 0.5714285714vw;
  right: -0.7857142857vw;
  font-size: 0.8571428571vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .left .text.text01 .ruby::before {
    top: 1.0666666667vw;
    right: -1.6vw;
    font-size: 1.8666666667vw;
  }
}
#contents.home .c-mv .contents .left .text.text02 {
  border-radius: 0 1.4285714286vw 1.4285714286vw 0;
}
#contents.home .c-mv .contents .right {
  width: 17.1428571429vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 2.6666666667vw;
    width: 100%;
    margin-top: 4vw;
  }
}
#contents.home .c-mv .contents .right .event-box {
  position: relative;
  padding: 1.4285714286vw;
  border: 0.1428571429vw solid #231815;
  border-radius: 0.7142857143vw;
  background-color: #fff;
}
#contents.home .c-mv .contents .right .event-box.hide {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box {
    width: 34.6666666667vw;
    padding: 2.6666666667vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.home .c-mv .contents .right .event-box .close {
  position: absolute;
  top: -1.0714285714vw;
  right: -1.4285714286vw;
  width: 2.8571428571vw;
  height: 2.1428571429vw;
  border-radius: 9999px;
  border: 1px solid #231815;
  background-image: url("../images/common/icn-cross.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1vw 1vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  #contents.home .c-mv .contents .right .event-box .close:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 769px) {
  #contents.home .c-mv .contents .right .event-box .close {
    transition: 0.3s;
  }
  #contents.home .c-mv .contents .right .event-box .close:hover {
    background-color: #231815;
    background-image: url("../images/common/icn-cross-white.svg");
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .close {
    top: -4.6666666667vw;
    right: -2.6666666667vw;
    width: 9.3333333333vw;
    height: 6.6666666667vw;
    background-size: 3.0666666667vw 3.0666666667vw;
  }
}
#contents.home .c-mv .contents .right .event-box a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.home .c-mv .contents .right .event-box a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.home .c-mv .contents .right .event-box a:hover {
    opacity: 0.5;
  }
}
#contents.home .c-mv .contents .right .event-box .thumbnail {
  overflow: hidden;
  border-radius: 0 1.0714285714vw 0 1.0714285714vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .thumbnail {
    border-radius: 0 2.6666666667vw 0 2.6666666667vw;
  }
}
#contents.home .c-mv .contents .right .event-box .post-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 0.7142857143vw;
  margin-top: 1.4285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .post-meta {
    margin-top: 2.6666666667vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.3333333333vw 0;
  }
}
#contents.home .c-mv .contents .right .event-box .post-meta .common-category {
  height: 1.7857142857vw;
  padding: 0 0.7142857143vw;
  font-size: 0.7142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .post-meta .common-category {
    order: -1;
    height: 4vw;
    padding: 0 2.4vw;
    font-size: 2.4vw;
  }
}
#contents.home .c-mv .contents .right .event-box .post-meta .common-date {
  font-size: 0.9285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .post-meta .common-date {
    font-size: 2.6666666667vw;
  }
}
#contents.home .c-mv .contents .right .event-box .title {
  margin-top: 0.7142857143vw;
  font-size: 1.1428571429vw;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .title {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
#contents.home .c-mv .contents .right .event-box .feature {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 1.4285714286vw 1.7857142857vw;
  margin-top: 1.0714285714vw;
  font-size: 0.7857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .feature {
    margin-top: 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
#contents.home .c-mv .contents .right .event-box .feature .common-pin {
  gap: 0 0.3571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .feature .common-pin {
    gap: 0 1.3333333333vw;
  }
}
#contents.home .c-mv .contents .right .event-box .feature .common-pin::before {
  width: 0.7857142857vw;
  height: 0.9285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .feature .common-pin::before {
    width: 2.6666666667vw;
    height: 3.2vw;
  }
}
#contents.home .c-mv .contents .right .event-box .feature .common-yen {
  gap: 0 0.3571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .feature .common-yen {
    gap: 0 1.3333333333vw;
  }
}
#contents.home .c-mv .contents .right .event-box .feature .common-yen::before {
  width: 0.9285714286vw;
  height: 0.8571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .event-box .feature .common-yen::before {
    width: 3.2vw;
    height: 2.9333333333vw;
  }
}
#contents.home .c-mv .contents .right .link {
  margin-top: 1.4285714286vw;
  border: 0.1428571429vw solid #231815;
  border-radius: 0.7142857143vw;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .link {
    width: 54.6666666667vw;
    margin-top: 0;
  }
}
#contents.home .c-mv .contents .right .link ul {
  padding: 0 0.5vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .link ul {
    padding: 1.3333333333vw 4.6666666667vw;
  }
}
#contents.home .c-mv .contents .right .link ul li {
  position: relative;
}
#contents.home .c-mv .contents .right .link ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.0714285714vw 0.9285714286vw;
  font-size: 1vw;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .link ul li a {
    padding: 4vw 0;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  #contents.home .c-mv .contents .right .link ul li a .text {
    transition: opacity 0.3s;
  }
  #contents.home .c-mv .contents .right .link ul li a:hover .text {
    opacity: 0.5;
  }
  #contents.home .c-mv .contents .right .link ul li a:hover .ar::before {
    transform: translateX(300%);
  }
  #contents.home .c-mv .contents .right .link ul li a:hover .ar::after {
    transform: translateX(0);
  }
}
#contents.home .c-mv .contents .right .link ul li a .ar {
  position: relative;
  flex-shrink: 0;
  width: 2.2857142857vw;
  height: 1.5714285714vw;
  border-radius: 9999px;
  background-color: #231815;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .link ul li a .ar {
    width: 7.4666666667vw;
    height: 5.0666666667vw;
  }
}
#contents.home .c-mv .contents .right .link ul li a .ar::before, #contents.home .c-mv .contents .right .link ul li a .ar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.3571428571vw;
  margin-left: -0.2857142857vw;
  width: 0.5714285714vw;
  height: 0.6428571429vw;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (min-width: 769px) {
  #contents.home .c-mv .contents .right .link ul li a .ar::before, #contents.home .c-mv .contents .right .link ul li a .ar::after {
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .link ul li a .ar::before, #contents.home .c-mv .contents .right .link ul li a .ar::after {
    width: 1.7333333333vw;
    height: 1.7333333333vw;
    margin-top: -0.9333333333vw;
    margin-left: -0.9333333333vw;
  }
}
#contents.home .c-mv .contents .right .link ul li a .ar::after {
  transform: translateX(-300%);
}
#contents.home .c-mv .contents .right .link ul li:nth-of-type(1) {
  background-image: radial-gradient(#231815 30%, transparent 30%);
  background-size: 0.5vw 0.2142857143vw;
  /*imageで指定した割合が100%の時の値*/
  background-position: bottom;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .contents .right .link ul li:nth-of-type(1) {
    background-image: radial-gradient(#231815 30%, transparent 30%);
    background-size: 6px 3px;
    /*imageで指定した割合が100%の時の値*/
    background-position: bottom;
    background-repeat: repeat-x;
  }
}
#contents.home .c-mv .fubuki.fubuki-prep figure {
  transform: translateY(-150vh) !important;
}
#contents.home .c-mv .fubuki figure {
  position: absolute;
  pointer-events: none;
}
#contents.home .c-mv .fubuki figure.ft01.f01-1 {
  top: 19.2857142857vw;
  right: 7.1428571429vw;
}
#contents.home .c-mv .fubuki figure.ft01.f01-2 {
  top: 21.7857142857vw;
  left: 17.8571428571vw;
}
#contents.home .c-mv .fubuki figure.ft01.f01-3 {
  top: 6.0714285714vw;
  left: 23.9285714286vw;
}
#contents.home .c-mv .fubuki figure.ft01 img {
  width: 0.9285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .fubuki figure.ft01 img {
    width: 1.7333333333vw;
  }
}
#contents.home .c-mv .fubuki figure.ft02.f02-1 {
  top: 17.5vw;
  right: 13.5714285714vw;
}
#contents.home .c-mv .fubuki figure.ft02.f02-2 {
  top: 7.6428571429vw;
  right: 25.7142857143vw;
}
#contents.home .c-mv .fubuki figure.ft02.f02-3 {
  top: 7.7857142857vw;
  left: 22.8571428571vw;
}
#contents.home .c-mv .fubuki figure.ft02.f02-4 {
  top: 20vw;
  left: 12.5vw;
}
#contents.home .c-mv .fubuki figure.ft02.f02-5 {
  top: 10vw;
  left: 0.3571428571vw;
}
#contents.home .c-mv .fubuki figure.ft02 img {
  width: 1vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .fubuki figure.ft02 img {
    width: 1.8666666667vw;
  }
}
#contents.home .c-mv .fubuki figure.ft03.f03-1 {
  top: 9.2857142857vw;
  right: 5vw;
}
#contents.home .c-mv .fubuki figure.ft03.f03-2 {
  top: 15.7142857143vw;
  left: 6.4285714286vw;
}
#contents.home .c-mv .fubuki figure.ft03 img {
  width: 0.7142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .fubuki figure.ft03 img {
    width: 1.3333333333vw;
  }
}
#contents.home .c-mv .fubuki figure.ft04.f04-1 {
  top: 6.4285714286vw;
  right: 7.1428571429vw;
}
#contents.home .c-mv .fubuki figure.ft04.f04-2 {
  top: 3.5714285714vw;
  left: 22.8571428571vw;
}
#contents.home .c-mv .fubuki figure.ft04.f04-3 {
  top: 12.8571428571vw;
  left: 5.7142857143vw;
}
#contents.home .c-mv .fubuki figure.ft04 img {
  width: 1.2142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .fubuki figure.ft04 img {
    width: 2.2666666667vw;
  }
}
#contents.home .c-mv .fubuki figure.ft05.f05-1 {
  top: 9.2857142857vw;
  right: 6.4285714286vw;
}
#contents.home .c-mv .fubuki figure.ft05.f05-2 {
  top: 15.7142857143vw;
  left: 6.4285714286vw;
}
#contents.home .c-mv .fubuki figure.ft05 img {
  width: 1vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .fubuki figure.ft05 img {
    width: 1.8666666667vw;
  }
}
#contents.home .c-mv .fubuki figure.ft06.f06-1 {
  top: 6.4285714286vw;
  right: 24.2857142857vw;
}
#contents.home .c-mv .fubuki figure.ft06.f06-2 {
  top: 9.0714285714vw;
  left: 1.4285714286vw;
}
#contents.home .c-mv .fubuki figure.ft06 img {
  width: 0.9285714286vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .fubuki figure.ft06 img {
    width: 1.7333333333vw;
  }
}
#contents.home .c-mv .slider {
  position: relative;
  z-index: 2;
  height: 7.1428571429vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-mv .slider {
    height: 20vw;
    margin-top: 6.6666666667vw;
  }
}
#contents.home .c-box01 {
  position: relative;
}
#contents.home .c-box01 .common-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  max-width: 1080px;
  margin-top: 80px;
  padding-bottom: 650px;
  padding-left: 40px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner {
    margin-top: 8.8888888889vw;
    padding-bottom: 72.2222222222vw;
    padding-left: 4.4444444444vw;
    padding-right: 4.4444444444vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner {
    display: block;
    margin-top: 13.3333333333vw;
    padding-bottom: 176vw;
  }
}
#contents.home .c-box01 .common-inner .col.left .headline {
  font-size: 44px;
  line-height: 1.5em;
}
#contents.home .c-box01 .common-inner .col.left .headline.aos-animate span {
  display: block;
  animation: clipUp 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
#contents.home .c-box01 .common-inner .col.left .headline.aos-animate span:nth-of-type(2) {
  animation-delay: 0.2s;
}
#contents.home .c-box01 .common-inner .col.left .headline.aos-animate span:nth-of-type(3) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 1050px) {
  #contents.home .c-box01 .common-inner .col.left .headline {
    font-size: 38px;
  }
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner .col.left .headline {
    font-size: 3.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner .col.left .headline {
    font-size: 6.6666666667vw;
  }
}
#contents.home .c-box01 .common-inner .col.left .headline span {
  display: inline-block;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transform: translateY(8px);
  will-change: clip-path, transform, opacity;
}
#contents.home .c-box01 .common-inner .col.right {
  padding-top: 90px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner .col.right {
    padding-top: 10vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner .col.right {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 1050px) {
  #contents.home .c-box01 .common-inner .col.right p {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner .col.right p {
    font-size: 1.5555555556vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner .col.right p {
    font-size: 3.4666666667vw;
  }
}
#contents.home .c-box01 .common-inner .col.right p + p {
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner .col.right p + p {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner .col.right p + p {
    margin-top: 8vw;
  }
}
#contents.home .c-box01 .common-inner .col.right .btn {
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner .col.right .btn {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner .col.right .btn {
    margin-top: 10.6666666667vw;
  }
  #contents.home .c-box01 .common-inner .col.right .btn a {
    margin: 0 auto;
  }
}
#contents.home .c-box01 .common-inner figure {
  position: absolute;
}
#contents.home .c-box01 .common-inner figure.img01 {
  bottom: 610px;
  left: 20px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.img01 {
    bottom: 67.7777777778vw;
    left: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.img01 {
    bottom: 126.6666666667vw;
    left: auto;
    right: 10.6666666667vw;
  }
}
#contents.home .c-box01 .common-inner figure.img01 img {
  width: 380px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.img01 img {
    width: 42.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.img01 img {
    width: 50.6666666667vw;
  }
}
#contents.home .c-box01 .common-inner figure.img02 {
  z-index: 2;
  bottom: 340px;
  left: 440px;
}
@media screen and (max-width: 950px) {
  #contents.home .c-box01 .common-inner figure.img02 {
    left: 390px;
  }
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.img02 {
    bottom: 37.7777777778vw;
    left: 43.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.img02 {
    bottom: 92vw;
    left: 5.3333333333vw;
  }
}
#contents.home .c-box01 .common-inner figure.img02 img {
  width: 300px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.img02 img {
    width: 33.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.img02 img {
    width: 39.3333333333vw;
  }
}
#contents.home .c-box01 .common-inner figure.img03 {
  bottom: 230px;
  right: -280px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.img03 {
    bottom: 25.5555555556vw;
    right: -31.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.img03 {
    bottom: 60vw;
    right: 0;
  }
}
#contents.home .c-box01 .common-inner figure.img03 img {
  width: 442px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.img03 img {
    width: 49.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.img03 img {
    width: 50vw;
  }
}
#contents.home .c-box01 .common-inner figure.cloud01 {
  bottom: 750px;
  left: -260px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.cloud01 {
    bottom: 83.3333333333vw;
    left: vW(-260, 900);
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.cloud01 {
    bottom: 138.6666666667vw;
    left: -6.6666666667vw;
  }
}
#contents.home .c-box01 .common-inner figure.cloud01 img {
  width: 260px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.cloud01 img {
    width: 28.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.cloud01 img {
    width: auto;
    height: 14.2666666667vw;
  }
}
#contents.home .c-box01 .common-inner figure.cloud02 {
  top: 0;
  right: -210px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.cloud02 {
    right: -23.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.cloud02 {
    top: 61.3333333333vw;
    right: -17.3333333333vw;
  }
}
#contents.home .c-box01 .common-inner figure.cloud02 img {
  width: 219px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.cloud02 img {
    width: 24.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.cloud02 img {
    width: auto;
    height: 13.3333333333vw;
  }
}
#contents.home .c-box01 .common-inner figure.fubuki01 {
  bottom: 580px;
  left: -110px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.fubuki01 {
    bottom: 64.4444444444vw;
    left: -12.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.fubuki01 {
    bottom: 122.6666666667vw;
    left: 6vw;
  }
}
#contents.home .c-box01 .common-inner figure.fubuki01 img {
  width: 152px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.fubuki01 img {
    width: 16.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.fubuki01 img {
    width: 20.2666666667vw;
  }
}
#contents.home .c-box01 .common-inner figure.fubuki02 {
  bottom: 580px;
  left: 510px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.fubuki02 {
    bottom: 64.4444444444vw;
    left: 56.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.fubuki02 {
    bottom: 116vw;
    left: 66.6666666667vw;
  }
}
#contents.home .c-box01 .common-inner figure.fubuki02 img {
  width: 110px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.fubuki02 img {
    width: 12.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.fubuki02 img {
    width: 14.6666666667vw;
    transform: rotate(-15deg);
  }
}
#contents.home .c-box01 .common-inner figure.fubuki03 {
  top: 165px;
  right: -100px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.fubuki03 {
    top: 18.3333333333vw;
    right: -11.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.fubuki03 {
    top: auto;
    bottom: 166.6666666667vw;
    right: 5.3333333333vw;
  }
}
#contents.home .c-box01 .common-inner figure.fubuki03 img {
  width: 74px;
}
@media screen and (max-width: 900px) {
  #contents.home .c-box01 .common-inner figure.fubuki03 img {
    width: 8.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .common-inner figure.fubuki03 img {
    width: 19.3333333333vw;
  }
}
#contents.home .c-box01 .img04 {
  position: absolute;
  bottom: -100px;
  left: -50px;
}
@media screen and (max-width: 1200px) {
  #contents.home .c-box01 .img04 {
    bottom: -8.3333333333vw;
    left: -4.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .img04 {
    bottom: -8vw;
    left: 0;
  }
}
#contents.home .c-box01 .img04 img {
  width: 786px;
}
@media screen and (max-width: 1200px) {
  #contents.home .c-box01 .img04 img {
    width: 65.5vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box01 .img04 img {
    width: 100%;
  }
}
#contents.home .c-box03 {
  margin-top: -100px;
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: #f9f3df;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 {
    margin-top: -13.3333333333vw;
    padding-top: 33.3333333333vw;
    padding-bottom: 20vw;
  }
}
#contents.home .c-box03 .list-wrap {
  margin-top: 80px;
  padding-bottom: 35px;
}
#contents.home .c-box03 .list-wrap .drag-scroll {
  cursor: grab;
}
#contents.home .c-box03 .list-wrap .drag-scroll--active {
  cursor: grabbing;
  user-select: none;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap {
    margin-top: 6.6666666667vw;
    padding-bottom: 9.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .scroll-hint-icon-wrap {
  z-index: 10;
}
#contents.home .c-box03 .list-wrap .scroll-hint-icon-wrap .scroll-hint-text {
  white-space: nowrap;
}
#contents.home .c-box03 .list-wrap .scroll-hint-shadow-wrap::after {
  content: none;
}
#contents.home .c-box03 .list-wrap .simplebar-track.simplebar-horizontal {
  width: 530px;
  height: 10px;
  left: 50%;
  margin-left: -265px;
  border-radius: 9999px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .simplebar-track.simplebar-horizontal {
    width: 70.6666666667vw;
    height: 1.3333333333vw;
    margin-left: -35.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0;
  height: 100%;
  border-radius: 9999px;
  background-color: #79a987;
}
#contents.home .c-box03 .list-wrap .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  content: none;
}
#contents.home .c-box03 .list-wrap .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  padding-left: 100px;
}
#contents.home .c-box03 .list-wrap .list::after {
  content: "e";
  flex-shrink: 0;
  width: 100px;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list::after {
    width: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list {
    gap: 0 4vw;
    padding: 0 5.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item {
  position: relative;
  flex-shrink: 0;
  width: 500px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item {
    width: 62.6666666667vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -20px;
  width: calc(100% + 20px);
  height: 1px;
  background-color: #231815;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item::before {
    top: 14.6666666667vw;
    left: 0;
    width: 100%;
  }
}
#contents.home .c-box03 .list-wrap .list .item .date {
  position: relative;
}
#contents.home .c-box03 .list-wrap .list .item .date::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: #79a987;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .date::before {
    top: 13.6vw;
    left: 5.3333333333vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .date::after {
  content: "";
  position: absolute;
  top: 65px;
  left: 20px;
  width: 2px;
  height: 60px;
  background-image: radial-gradient(#79a987 30%, transparent 30%);
  background-size: 3px 5px;
  background-position: top;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .date::after {
    top: 14vw;
    left: 6vw;
    height: 8vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .date .year {
  font-family: "Kaisei Opti", serif;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .date .year {
    font-size: 2.9333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .date .month {
  margin-top: 10px;
  font-family: "Kaisei Opti", serif;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .date .month {
    margin-top: 2.6666666667vw;
    font-size: 5.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content {
  position: relative;
  z-index: 2;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 65px;
  padding: 30px 40px;
  background-color: #eee5c8;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content {
    margin-top: 10vw;
    padding: 4vw;
    border-radius: 2.6666666667vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .simplebar-track.simplebar-vertical {
  width: 10px;
  height: 90%;
  top: 5%;
  right: 20px;
  border-radius: 9999px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .simplebar-track.simplebar-vertical {
    width: 0.6666666667vw;
    right: 1.8666666667vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  top: 0;
  height: 100%;
  border-radius: 9999px;
  background-color: #79a987;
}
#contents.home .c-box03 .list-wrap .list .item .item-content .simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
  content: none;
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item + .program-item {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item + .program-item {
    margin-top: 5.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  width: 400px;
  padding: 10px;
  border-radius: 10px;
  background-color: #79a987;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item a {
    flex-direction: column;
    width: 100%;
    gap: 4vw 0;
    padding: 2.6666666667vw 2.6666666667vw 4vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item a::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 22px;
  border-radius: 9999px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 7px 7px;
  background-color: #97b69d;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item a::before {
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 12vw;
    height: 8vw;
    background-size: 2.8vw 2.6666666667vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail {
  flex-shrink: 0;
  width: 120px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail {
    position: relative;
    background-color: transparent;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail::before {
    content: "";
    display: block;
    padding-top: 74.9056603774%;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail img,
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 2.6666666667vw;
    border-radius: 0;
    width: 100%;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail img {
    width: 20vw;
    border-radius: 1.0666666667vw;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail .program-date {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 1.3333333333vw 0;
    color: #fff;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail .program-date .start {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    display: -webkit-flex;
    flex-wrap: nowrap;
    font-family: "Kaisei Opti", serif;
    font-size: 5.8666666667vw;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail .program-date .start .youbi {
    font-size: 3.4666666667vw;
  }
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .thumbnail .program-date .end {
    font-size: 3.2vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content {
  padding-top: 5px;
  padding-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content {
    padding-top: 0;
    padding-bottom: 0.6666666667vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-date {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-date .day {
  font-family: "Kaisei Opti", serif;
  font-size: 28px;
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-date .youbi {
  font-size: 14px;
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-date .end {
  font-family: "Kaisei Opti", serif;
  font-size: 18px;
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-title {
    margin-top: 0;
    font-size: 3.7333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 8px;
  padding-right: 40px;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3333333333vw 0;
    margin-top: 2.6666666667vw;
    padding-right: 12vw;
    font-size: 2.6666666667vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-pin {
  gap: 0 5px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-pin {
    gap: 0 1.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-pin::before {
  width: 10px;
  height: 13px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-pin::before {
    width: 2.6666666667vw;
    height: 3.2vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-yen {
  gap: 0 5px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-yen {
    gap: 0 1.3333333333vw;
  }
}
#contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-yen::before {
  width: 13px;
  height: 11px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  #contents.home .c-box03 .list-wrap .list .item .item-content .program-item .program-content .program-feature .common-yen::before {
    width: 3.2vw;
    height: 2.9333333333vw;
  }
}
#contents.home .c-box04 {
  padding-bottom: 170px;
  background-color: #f9f3df;
}
#contents.home .c-box04 .list {
  margin-top: 5vw;
}
#contents.home .c-box04 .list .column-slider {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.7857142857vw;
  padding: 0.7142857143vw 0;
  overflow: hidden;
}
#contents.home .c-box04 .list .column-slider.right-left .column-slider-wrap {
  animation: marquee 40s linear infinite;
  animation-direction: normal;
}
#contents.home .c-box04 .list .column-slider.left-right {
  margin-top: 1.4285714286vw;
}
#contents.home .c-box04 .list .column-slider.left-right .column-slider-wrap {
  animation: marquee_reverse 40s linear infinite;
  animation-direction: normal;
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.7857142857vw;
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item {
  position: relative;
  width: 18.8571428571vw;
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item:nth-of-type(4n + 1) {
  transform: rotate(3deg);
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item:nth-of-type(4n + 2) {
  transform: rotate(-3deg);
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item:nth-of-type(4) {
  transform: rotate(2deg);
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a {
  display: block;
  width: 100%;
  padding: 0.7142857143vw;
  background-color: #fff;
  border-radius: 0.7142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a {
    padding: 1.3333333333vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .column-category {
  position: absolute;
  top: 1.4285714286vw;
  right: 1.4285714286vw;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 4.2857142857vw;
  height: 4.2857142857vw;
  border-radius: 9999px;
  background-color: #231815;
  color: #fff;
  font-family: "Kaisei Opti", serif;
  font-size: 2.5vw;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .column-category {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 9.0666666667vw;
    height: 9.0666666667vw;
    font-size: 4.8vw;
  }
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .thumbnail {
  border-radius: 0.7142857143vw;
  overflow: hidden;
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .thumbnail img {
  border-radius: 0.7142857143vw;
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .post-meta {
  position: absolute;
  bottom: 0.7142857143vw;
  left: 0.7142857143vw;
  width: calc(100% - 1.4285714286vw);
  padding: 3.5714285714vw 1.4285714286vw 2.1428571429vw;
  color: #fff;
  overflow: hidden;
  border-radius: 0.7142857143vw;
  background-image: url("../images/column/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .post-meta {
    bottom: 1.3333333333vw;
    left: 1.3333333333vw;
    width: calc(100% - 2.6666666667vw);
    padding: 4vw 3.3333333333vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .post-meta .post-date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8571428571vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .post-meta .post-date {
    font-size: 2.4vw;
  }
}
#contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .post-meta .post-title {
  margin-top: 0.3571428571vw;
  font-size: 1.2857142857vw;
  font-family: "Kaisei Opti", serif;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 .list .column-slider .column-slider-wrap .column-slider-item a .post-meta .post-title {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}
#contents.home .c-box04 p {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 p {
    margin-top: 8vw;
  }
}
#contents.home .c-box04 .btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box04 .btn {
    margin-top: 80px;
  }
}
#contents.home .c-box04 .btn a {
  margin: 0 auto;
}
#contents.home .c-box05 {
  margin-top: -100px;
  padding: 120px 0 75px;
  background-color: #a18db7;
  border-radius: 100px;
}
@media screen and (max-width: 1240px) {
  #contents.home .c-box05 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 {
    margin-top: -13.3333333333vw;
    padding: 20vw 0;
    border-radius: 13.3333333333vw;
  }
}
#contents.home .c-box05 .common-inner {
  max-width: 1200px;
}
#contents.home .c-box05 .list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 950px) {
  #contents.home .c-box05 .list {
    display: block;
  }
}
#contents.home .c-box05 .list .box {
  width: 47.5%;
  padding: 60px 40px 30px;
  border-radius: 20px;
  background-color: #fff;
}
#contents.home .c-box05 .list .box.full {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #contents.home .c-box05 .list .box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 950px) {
  #contents.home .c-box05 .list .box {
    width: 100%;
  }
  #contents.home .c-box05 .list .box.faq {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 .list .box {
    width: 100%;
    padding: 8vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
  #contents.home .c-box05 .list .box.faq {
    margin-top: 8vw;
  }
}
#contents.home .c-box05 .list .box-title {
  padding-top: 50px;
  font-family: "Kaisei Opti", serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  background-image: url("../images/common/mark-nami-brown.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 73px 35px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 .list .box-title {
    padding-top: 9.7333333333vw;
    font-size: 5.3333333333vw;
    background-size: 13.3333333333vw 6.6666666667vw;
  }
}
#contents.home .c-box05 .list .common-news-list {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 .list .common-news-list {
    margin-top: 3.3333333333vw;
  }
}
#contents.home .c-box05 .list .common-news-list .news-item {
  border-bottom: 1px solid #cad5e1;
}
#contents.home .c-box05 .list .common-faq-list .faq-item {
  border-bottom: 1px solid #cad5e1;
}
#contents.home .c-box05 .list .btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 .list .btn {
    margin-top: 8vw;
  }
}
#contents.home .c-box05 .list .btn a {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 .list .btn a {
    width: 40vw;
    height: 12vw;
  }
  #contents.home .c-box05 .list .btn a::before {
    right: 4vw;
  }
}
#contents.home .c-box05 .btn02 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #contents.home .c-box05 .btn02 {
    margin-top: 10.6666666667vw;
  }
}
#contents.home .c-box05 .btn02 a {
  margin: 0 auto;
}

/*--------------------------
SUB
----------------------------*/
body:has(#contents.sub) #globalHeader .logo img {
  width: 200px;
}
body:has(#contents.sub) #globalHeader .nav {
  background-color: #f8f3e1;
}

#contents.sub {
  background-image: url("../images/common/sub-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  background-color: #faf3e1;
}

#contents.common-sub .c-mv .common-inner {
  position: relative;
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv .common-inner {
    padding-top: 25.3333333333vw;
  }
}
#contents.common-sub .c-mv .common-page-title {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
#contents.common-sub .c-mv .common-page-title .main {
  text-align: center;
}
#contents.common-sub .c-mv .common-page-title .sub {
  margin-left: auto;
  margin-right: auto;
}
#contents.common-sub .c-mv .common-page-title .sub span {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv .common-page-title .sub span {
    padding-left: 6.6666666667vw !important;
    padding-right: 6.6666666667vw !important;
  }
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv .common-page-title .main {
    font-size: 9.3333333333vw;
  }
  #contents.common-sub .c-mv .common-page-title .sub {
    margin-left: auto;
    margin-right: auto;
  }
}
#contents.common-sub .c-mv p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 840px) {
  #contents.common-sub .c-mv p {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv p {
    margin-top: 5.3333333333vw;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
}
#contents.common-sub .c-mv figure {
  position: absolute;
}
#contents.common-sub .c-mv figure.fubuki01 {
  top: 100px;
  left: -40px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.fubuki01 {
    top: 13.3333333333vw;
    left: 8vw;
  }
}
#contents.common-sub .c-mv figure.fubuki01 img {
  width: 224px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.fubuki01 img {
    width: 86.6666666667vw;
  }
}
#contents.common-sub .c-mv figure.fubuki02 {
  top: 40px;
  right: 15px;
}
#contents.common-sub .c-mv figure.fubuki02 img {
  width: 316px;
}
#contents.common-sub .c-mv figure.img01 {
  top: 350px;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  #contents.common-sub .c-mv figure.img01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.img01 {
    top: 27.6vw;
    left: 5.3333333333vw;
  }
}
#contents.common-sub .c-mv figure.img01 img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.img01 img {
    width: 20.5333333333vw;
  }
}
#contents.common-sub .c-mv figure.img02 {
  top: 140px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.img02 {
    top: 15.3333333333vw;
    right: 9.3333333333vw;
  }
}
#contents.common-sub .c-mv figure.img02 img {
  width: 220px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.img02 img {
    width: 20.5333333333vw;
  }
}
#contents.common-sub .c-mv figure.cloud01 {
  top: 210px;
  left: -160px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  #contents.common-sub .c-mv figure.cloud01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.cloud01 {
    top: 20vw;
    left: -10.6666666667vw;
  }
}
#contents.common-sub .c-mv figure.cloud01 img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.cloud01 img {
    width: auto;
    height: 12vw;
  }
}
#contents.common-sub .c-mv figure.cloud02 {
  top: 325px;
  right: -300px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  #contents.common-sub .c-mv figure.cloud02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.cloud02 {
    top: 36vw;
    right: -13.3333333333vw;
  }
}
#contents.common-sub .c-mv figure.cloud02 img {
  width: 400px;
}
@media screen and (max-width: 768px) {
  #contents.common-sub .c-mv figure.cloud02 img {
    width: auto;
    height: 14.4vw;
  }
}

#contents.page-template .c-mv .inner .post-title {
  margin-top: 0 !important;
}
#contents.page-template .c-box01 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #contents.page-template .c-box01 {
    margin-top: 13.3333333333vw;
  }
}

.column2 {
  margin-top: 80px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .column2 {
    margin-top: 10.6666666667vw;
    padding-bottom: 8vw;
  }
}
.column2 .common-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 80px;
}
@media screen and (max-width: 1200px) {
  .column2 .common-inner {
    gap: 0 40px;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu:not(.fixed) {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .column2 .common-inner .common-side-menu.fixed ul {
    display: block !important;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed {
    position: fixed;
    z-index: 10;
    top: auto;
    bottom: 0;
    right: 0;
    width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    border-radius: 20px 0 0 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed {
    width: 40vw;
    border-radius: 2.6666666667vw 0 0 0;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed.active .side-title .switch::after {
    transform: rotate(90deg);
  }
  .column2 .common-inner .common-side-menu.fixed.active ul {
    height: auto;
  }
  .column2 .common-inner .common-side-menu.fixed .side-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    padding: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed .side-title {
    padding: 4vw;
    font-size: 4vw;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed .side-title .switch {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background-color: #673b93;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed .side-title .switch {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed .side-title .switch::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background-color: #fff;
    transition: 0.3s;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed .side-title .switch::before {
    width: 2.5333333333vw;
    height: 0.2666666667vw;
    margin: -0.1333333333vw 0 0 -1.2vw;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed .side-title .switch::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 15px;
    margin: -7px 0 0 -1px;
    background-color: #fff;
    transition: 0.3s;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed .side-title .switch::after {
    width: 0.2666666667vw;
    height: 2.5333333333vw;
    margin: -1.2vw 0 0 -0.1333333333vw;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed ul {
    display: none;
    margin-top: 0;
    padding: 0 40px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed ul {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed ul {
    padding: 0 8vw;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .common-side-menu.fixed ul li.active::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
  .column2 .common-inner .common-side-menu.fixed ul li a {
    padding: 20px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .column2 .common-inner .common-side-menu.fixed ul li a {
    padding: 4vw 0;
    font-size: 3.2vw;
  }
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) {
  margin-top: 20px;
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label {
  padding-left: 40px !important;
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-left: 55px;
  box-sizing: border-box;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .column2 .common-inner .common-side-menu .check-list:not(.check-list02) label {
    height: 6.6666666667vw;
    padding-left: 9.3333333333vw;
  }
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  top: 0;
  border: 2px solid #231815;
  border-radius: 6px;
  z-index: 3;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .column2 .common-inner .common-side-menu .check-list:not(.check-list02) label:before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  display: block;
  width: 8px;
  height: 14px;
  border-right: 2px solid #231815;
  border-bottom: 2px solid #231815;
  transform: rotate(45deg);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .column2 .common-inner .common-side-menu .check-list:not(.check-list02) label:after {
    top: 1.0666666667vw;
    left: 2.4vw;
    width: 1.8666666667vw;
    height: 3.3333333333vw;
  }
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: 3px;
  left: -42px;
  width: 22px;
  height: 22px;
  display: block;
  margin: 0;
  box-shadow: 44px 0px #fff;
}
@media screen and (max-width: 768px) {
  .column2 .common-inner .common-side-menu .check-list:not(.check-list02) label input[type=checkbox] {
    top: 1.2vw;
    left: -9.0666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    box-shadow: 10.1333333333vw 0px #fff;
  }
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label input[type=checkbox]:checked {
  box-shadow: none;
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}
.column2 .common-inner .common-side-menu .check-list:not(.check-list02) label:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .column2 .common-inner select.side-menu {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner select.side-menu {
    display: block;
  }
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner {
    flex-direction: column;
  }
}
.column2 .common-inner .main-contents {
  flex-grow: 1;
}
@media screen and (max-width: 1000px) {
  .column2 .common-inner .main-contents {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .column2 .common-inner .main-contents {
    margin-top: 8vw;
  }
}
.column2 .common-inner .main-contents .editor-styles-wrapper > *:nth-of-type(1) {
  margin-top: 0;
}

/*--------------------------
ABOUT
----------------------------*/
#contents.about {
  position: relative;
  background-color: #fff;
}
#contents.about .img01 {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
#contents.about .img01 img {
  width: 865px;
}
@media screen and (max-width: 1320px) {
  #contents.about .img01 img {
    width: 65.5303030303vw;
  }
}
#contents.about .img02 {
  position: absolute;
  z-index: 3;
  top: 370px;
  right: 0;
}
@media screen and (max-width: 1320px) {
  #contents.about .img02 {
    top: 28.0303030303vw;
  }
}
#contents.about .img02 img {
  width: 234px;
}
@media screen and (max-width: 1320px) {
  #contents.about .img02 img {
    width: 17.7272727273vw;
  }
}
#contents.about .cloud01 {
  position: absolute;
  top: 50px;
  right: 848px;
}
@media screen and (max-width: 1320px) {
  #contents.about .cloud01 {
    top: 3.7878787879vw;
    right: 64.2424242424vw;
  }
}
#contents.about .cloud01 img {
  width: 150px;
}
@media screen and (max-width: 1320px) {
  #contents.about .cloud01 img {
    width: 11.3636363636vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #contents.about .cloud01 {
    top: 26.6666666667vw;
    right: 2.6666666667vw;
  }
  #contents.about .cloud01 img {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .cloud02 {
    position: absolute;
    z-index: 3;
    top: 72vw;
    right: -13.3333333333vw;
  }
  #contents.about .cloud02 img {
    height: 13.3333333333vw;
  }
  #contents.about .cloud03 {
    position: absolute;
    top: 153.3333333333vw;
    left: -8vw;
  }
  #contents.about .cloud03 img {
    width: auto;
    height: 14.2666666667vw;
  }
  #contents.about .cloud04 {
    position: absolute;
    top: 202.6666666667vw;
    right: -13.3333333333vw;
  }
  #contents.about .cloud04 img {
    height: 13.3333333333vw;
  }
}
#contents.about .c-mv {
  padding-top: 150px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv {
    padding-top: 26.6666666667vw;
  }
}
#contents.about .c-mv .common-inner {
  position: relative;
}
@media screen and (max-width: 1240px) {
  #contents.about .c-mv .common-inner {
    padding-left: 20px;
  }
}
#contents.about .c-mv .common-page-title {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  #contents.about .c-mv .common-page-title {
    margin-bottom: 1.5151515152vw;
  }
}
#contents.about .c-mv .common-page-title .main {
  padding-left: 35px;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  #contents.about .c-mv .common-page-title .main {
    padding-left: 2.6515151515vw;
    font-size: 4.696969697vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .common-page-title .main {
    padding-left: 4vw;
    font-size: 11.4666666667vw;
  }
}
#contents.about .c-mv .common-page-title .sub {
  width: 400px;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  #contents.about .c-mv .common-page-title .sub {
    width: 30.303030303vw;
    margin-top: 1.8939393939vw;
  }
  #contents.about .c-mv .common-page-title .sub span {
    height: 4.9242424242vw;
    font-size: 1.9696969697vw;
  }
  #contents.about .c-mv .common-page-title .sub::after {
    bottom: -1.5151515152vw;
    right: -1.5151515152vw;
    height: 4.9242424242vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .common-page-title .sub {
    width: 66.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .img-box {
    position: relative;
    margin-top: 6.6666666667vw;
  }
  #contents.about .c-mv .img-box .img01 {
    position: relative;
    z-index: 2;
  }
  #contents.about .c-mv .img-box .img01 img {
    width: 100%;
  }
  #contents.about .c-mv .img-box .img02 {
    z-index: 3;
    right: -13.3333333333vw;
    top: 44.9333333333vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #contents.about .c-mv .img-box .img02 {
    right: -5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .img-box .img02 img {
    width: auto;
    height: 32vw;
  }
}
#contents.about .c-mv .box01 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 100px;
  margin-top: 100px;
  padding-left: 65px;
}
@media screen and (min-width: 768px) and (max-width: 1050px) {
  #contents.about .c-mv .box01 {
    gap: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 {
    flex-direction: column;
    align-items: center;
    gap: 4.6666666667vw 0;
    margin-top: 5.3333333333vw;
    padding-left: 0;
  }
}
#contents.about .c-mv .box01 .col.left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 6px;
}
#contents.about .c-mv .box01 .col.left .text {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 90px;
  padding: 25px 0;
  font-size: 44px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #79a987;
  font-family: "Kaisei Opti", serif;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 .col.left .text {
    width: 14.6666666667vw;
    padding: 6.6666666667vw 0 4vw;
    font-size: 7.4666666667vw;
  }
}
#contents.about .c-mv .box01 .col.left .text.text01 {
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 .col.left .text.text01 {
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
  }
}
#contents.about .c-mv .box01 .col.left .text.text02 {
  order: -1;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 .col.left .text.text02 {
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
  }
}
#contents.about .c-mv .box01 .col.right {
  padding-top: 135px;
}
@media screen and (max-width: 1320px) {
  #contents.about .c-mv .box01 .col.right {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 .col.right {
    padding-top: 0;
  }
}
@media screen and (max-width: 1320px) {
  #contents.about .c-mv .box01 .col.right p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  #contents.about .c-mv .box01 .col.right p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 .col.right p {
    font-size: 3.7333333333vw;
  }
}
#contents.about .c-mv .box01 .col.right p + p {
  margin-top: 50px;
}
@media screen and (max-width: 1320px) {
  #contents.about .c-mv .box01 .col.right p + p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box01 .col.right p + p {
    margin-top: 6.6666666667vw;
  }
}
#contents.about .c-mv .box02 {
  position: relative;
  z-index: 2;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 {
    margin-top: 4vw;
  }
}
#contents.about .c-mv .box02 .list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list {
    position: relative;
    display: block;
    width: calc(100% + 8vw);
    height: 81.3333333333vw;
    margin-left: -2.6666666667vw;
  }
}
#contents.about .c-mv .box02 .list .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 320px;
  height: 265px;
  padding-top: 90px;
  background-image: url("../images/about/mv-frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1100px) {
  #contents.about .c-mv .box02 .list .item {
    width: 29.0909090909vw;
    height: 24.0909090909vw;
    padding-top: 8.1818181818vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list .item {
    position: absolute;
    width: 53.3333333333vw;
    height: 44vw;
    padding-top: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list .item:nth-of-type(1) {
    top: 0;
    left: 0;
  }
}
#contents.about .c-mv .box02 .list .item:nth-of-type(2) {
  margin-top: 85px;
}
@media screen and (max-width: 1100px) {
  #contents.about .c-mv .box02 .list .item:nth-of-type(2) {
    margin-top: 7.7272727273vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list .item:nth-of-type(2) {
    top: 0;
    right: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list .item:nth-of-type(3) {
    bottom: 0;
    left: 50%;
    margin-left: -26.6666666667vw;
  }
}
#contents.about .c-mv .box02 .list .item .item-title {
  font-size: 32px;
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  #contents.about .c-mv .box02 .list .item .item-title {
    font-size: 2.9090909091vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list .item .item-title {
    font-size: 5.6vw;
  }
}
#contents.about .c-mv .box02 .list .item p {
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  #contents.about .c-mv .box02 .list .item p {
    margin-top: 0.9090909091vw;
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv .box02 .list .item p {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.3;
  }
}
#contents.about .c-mv figure {
  position: absolute;
  z-index: 1;
}
#contents.about .c-mv figure.fubuki01 {
  top: 528px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv figure.fubuki01 {
    top: 90.6666666667vw;
    left: 5.3333333333vw;
  }
}
#contents.about .c-mv figure.fubuki01 img {
  width: 152px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv figure.fubuki01 img {
    width: 20.2666666667vw;
  }
}
#contents.about .c-mv figure.fubuki02 {
  top: 746px;
  right: -40px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv figure.fubuki02 {
    top: 73.3333333333vw;
    right: 1.3333333333vw;
  }
}
#contents.about .c-mv figure.fubuki02 img {
  width: 312px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-mv figure.fubuki02 img {
    width: 18.6666666667vw;
  }
}
#contents.about .c-mv figure.cloud02 {
  top: 950px;
  left: -140px;
}
#contents.about .c-mv figure.cloud03 {
  top: 575px;
  right: -90px;
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  #contents.about .c-mv figure.cloud03 {
    display: none;
  }
}
#contents.about .c-box01 {
  position: relative;
  z-index: 2;
  margin-top: -110px;
}
@media screen and (max-width: 1100px) {
  #contents.about .c-box01 {
    margin-top: -10vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 {
    margin-top: 13.3333333333vw;
  }
}
#contents.about .c-box01 .box {
  position: relative;
  padding: 5.7142857143vw 0;
  background-image: url("../images/about/sec01-bg01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #c9754c;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box {
    padding: 16vw 0 24vw;
  }
}
#contents.about .c-box01 .box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82vw;
  height: 14.2857142857vw;
  background-image: url("../images/about/sec01-bg02.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box::before {
    width: 100%;
    height: 27.6vw;
    background-image: urL("../images/about/sec01-bg02-sp.png");
  }
}
#contents.about .c-box01 .box .img03 {
  position: absolute;
  top: 3.5714285714vw;
  left: 0;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .img03 {
    top: 3.3333333333vw;
    left: 2.6666666667vw;
  }
}
#contents.about .c-box01 .box .img03 img {
  width: 21.7857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .img03 img {
    width: 18vw;
  }
}
#contents.about .c-box01 .box .img04 {
  position: absolute;
  top: 3.5714285714vw;
  right: 7.1428571429vw;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .img04 {
    top: 6.6666666667vw;
    right: 4vw;
  }
}
#contents.about .c-box01 .box .img04 img {
  width: 17.8571428571vw;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .img04 img {
    width: 20.2666666667vw;
  }
}
#contents.about .c-box01 .box .cloud {
  position: absolute;
  top: 97.3333333333vw;
  left: 0;
}
#contents.about .c-box01 .box .cloud img {
  width: 99.6vw;
}
#contents.about .c-box01 .box .headline {
  position: relative;
  z-index: 2;
  max-width: 50.7142857143vw;
  width: 100%;
  margin: 0 auto;
  font-family: "Kaisei Opti", serif;
  font-size: 2.2857142857vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .headline {
    max-width: initial;
    font-size: 5.6vw;
  }
}
#contents.about .c-box01 .box .inner-box {
  position: relative;
  z-index: 2;
  width: 62.8571428571vw;
  margin: 2.1428571429vw auto 1.4285714286vw;
  padding: 1.7857142857vw 0 2.1428571429vw;
  border-radius: 2.1428571429vw;
  background-color: #bb653b;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .inner-box {
    width: calc(100% - 10.6666666667vw);
    margin: 10.6666666667vw auto 5.3333333333vw;
    padding: 5.3333333333vw 4vw;
    border-radius: 4vw;
  }
}
#contents.about .c-box01 .box .inner-box .box-headline {
  font-family: "Kaisei Opti", serif;
  font-size: 1.5714285714vw;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .inner-box .box-headline {
    font-size: 4.2666666667vw;
  }
}
#contents.about .c-box01 .box .inner-box .list {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 1.4285714286vw;
  margin-top: 1.7857142857vw;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .inner-box .list {
    flex-wrap: wrap;
    gap: 2.6666666667vw;
    margin-top: 5.3333333333vw;
  }
}
#contents.about .c-box01 .box .inner-box .list a {
  min-width: 17.1428571429vw;
  width: fit-content;
  min-height: 3.9285714286vw;
  padding: 15px 20px;
  font-size: 1vw;
  transition: color 0.3s, background 0.3s;
}
@media (hover: none) {
  #contents.about .c-box01 .box .inner-box .list a:active {
    color: #fff;
    background-color: #231815;
  }
}
@media (hover: hover) {
  #contents.about .c-box01 .box .inner-box .list a:hover {
    color: #fff;
    background-color: #231815;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .inner-box .list a {
    width: 39.3333333333vw;
    min-height: 12vw;
    padding: 2vw 2.6666666667vw;
    font-size: 3.2vw;
    line-height: 1.17;
    text-align: center;
  }
}
#contents.about .c-box01 .box .inner-box .list a::before {
  right: 1.4285714286vw;
  width: 0.7857142857vw;
  height: 0.7142857143vw;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .inner-box .list a::before {
    right: 2.6666666667vw;
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}
#contents.about .c-box01 .box .btn01 a {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .btn01 a {
    font-size: 3.4666666667vw;
  }
}
#contents.about .c-box01 .box .btn01 a::before {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box01 .box .btn01 a::before {
    width: 2.5333333333vw;
    height: 2.5333333333vw;
  }
}
#contents.about .c-box02 {
  padding: 80px 0 250px;
  background-color: #f9f3df;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 {
    padding: 17.3333333333vw 0 26.6666666667vw;
  }
}
#contents.about .c-box02 .common-inner {
  position: relative;
  max-width: 1000px;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .common-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#contents.about .c-box02 .common-inner .common-cloud {
  position: absolute;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .common-inner .common-cloud {
    display: none;
  }
}
#contents.about .c-box02 .common-inner .common-cloud.cloud04 {
  top: 475px;
  left: -200px;
}
#contents.about .c-box02 .common-inner .common-cloud.cloud05 {
  top: 100px;
  right: -280px;
}
#contents.about .c-box02 .common-inner .common-cloud.cloud06 {
  top: 800px;
  right: -280px;
}
#contents.about .c-box02 .common-inner .common-cloud.cloud07 {
  top: 950px;
  right: -70px;
}
#contents.about .c-box02 .common-inner .common-cloud.cloud07 img {
  width: 145px;
}
#contents.about .c-box02 .list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list {
    margin-top: 13.3333333333vw;
  }
}
#contents.about .c-box02 .list .item {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 80px 80px;
  border-radius: 10px;
  background-color: #eee5c8;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .list .item {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item {
    padding: 13.3333333333vw 8vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.about .c-box02 .list .item .item-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 85px;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .list .item .item-head {
    gap: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item .item-head {
    display: block;
  }
}
#contents.about .c-box02 .list .item .item-head .year {
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 70px;
  color: #a58244;
  font-weight: 500;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .list .item .item-head .year {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item .item-head .year {
    font-size: 10.6666666667vw;
  }
}
#contents.about .c-box02 .list .item .item-head .title {
  font-family: "Kaisei Opti", serif;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .list .item .item-head .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item .item-head .title {
    margin-top: 4vw;
    font-size: 5.6vw;
  }
}
#contents.about .c-box02 .list .item .item-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 70px;
  margin-top: 60px;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .list .item .item-content {
    gap: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item .item-content {
    flex-direction: column;
    gap: 9.3333333333vw 0;
    margin-top: 9.3333333333vw;
  }
}
#contents.about .c-box02 .list .item .item-content .thumbnail {
  flex-shrink: 0;
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1040px) {
  #contents.about .c-box02 .list .item .item-content .thumbnail {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item .item-content .thumbnail {
    width: 100%;
    border-radius: 2.6666666667vw;
  }
}
#contents.about .c-box02 .list .item .item-content .thumbnail img {
  width: 100%;
}
#contents.about .c-box02 .list .item .item-content .content p + p {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.about .c-box02 .list .item .item-content .content p + p {
    margin-top: 6.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
#contents.about .c-box03 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 240px;
  background-image: url("../images/about/sec03-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#contents.about .c-box03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 165px;
  background-image: url("../images/about/sec03-bg02.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
}
#contents.about .c-box03 .common-inner {
  position: relative;
  z-index: 2;
}

.modal {
  position: fixed;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.5s, visibility 0.5s;
}
.modal.active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal .modal-box {
    width: calc(100% - 10.6666666667vw);
    max-height: calc(100% - 10.6666666667vw);
  }
}
.modal .modal-box .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 40px;
  border-radius: 9999px;
  background-image: url("../images/common/icn-cross-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
  background-color: #231815;
}
@media screen and (min-width: 769px) {
  .modal .modal-box .close:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .modal .modal-box .close {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 12vw;
    height: 9.3333333333vw;
    background-size: 3.4666666667vw 3.4666666667vw;
  }
}
.modal .modal-box .modal-content {
  max-height: 80vh;
  height: 100%;
  overflow: auto;
  border-radius: 10px;
}
.modal .modal-box .modal-content.type01 {
  padding: 110px 80px 100px;
  background-image: url("../images/about/modal-bg01.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-content.type01 {
    padding: 16vw 5.3333333333vw;
  }
}
.modal .modal-box .modal-content.type02 {
  background-image: url("../images/about/modal-bg02.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: #fcfcfc;
}
.modal .modal-box .modal-content .modal-title {
  padding: 15px 0 15px 20px;
  font-family: "Kaisei Opti", serif;
  font-size: 32px;
  font-weight: bold;
  border-left: 4px solid #231815;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-content .modal-title {
    padding: 2.6666666667vw 0 2.6666666667vw 2.6666666667vw;
    font-size: 5.6vw;
    border-left-width: 0.8vw;
  }
}
.modal .modal-box .modal-content .content-title {
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-content .content-title {
    padding-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.modal .modal-box .modal-content .media-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.modal .modal-box .modal-content .media-box .thumbnail {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-content .media-box .thumbnail {
    border-radius: 0;
    overflow: visible;
  }
  .modal .modal-box .modal-content .media-box .thumbnail img {
    border-radius: 2.6666666667vw;
  }
}
.modal .modal-box .modal-content .media-box .content p {
  margin-top: 40px;
  line-height: 2.13;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-content .media-box .content p {
    margin-top: 9.3333333333vw;
    line-height: 1.85;
    font-size: 3.7333333333vw;
  }
}
.modal .modal-box .modal-item {
  display: none;
}
.modal .modal-box .modal-item.active {
  display: block;
}
.modal .modal-box .modal-item.type01 .media-box {
  gap: 0 60px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-item.type01 .media-box {
    flex-direction: column;
    gap: 9.3333333333vw 0;
    margin-top: 9.3333333333vw;
  }
}
.modal .modal-box .modal-item.type01 .media-box .thumbnail {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-item.type01 .media-box .thumbnail {
    width: 100%;
    text-align: center;
  }
}
.modal .modal-box .modal-item.type01 .media-box .thumbnail img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-item.type01 .media-box .thumbnail img {
    width: 44vw;
  }
}
.modal .modal-box .modal-item.type01 .media-box .content {
  flex-grow: 1;
  max-width: 100%;
}
.modal .modal-box .modal-item.type01 .media-box .content .indent {
  display: inline-block;
  text-indent: 1em;
}
.modal .modal-box .modal-item.type01 .media-box .content .name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-item.type01 .media-box .content .name {
    gap: 0 2.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
.modal .modal-box .modal-item.type01 .media-box .content .name .text {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-item.type01 .media-box .content .name .text {
    font-size: 3.2vw;
  }
}
.modal .modal-box .modal-item.type01 .media-box .content .name .img img {
  width: 137px;
}
@media screen and (max-width: 768px) {
  .modal .modal-box .modal-item.type01 .media-box .content .name .img img {
    width: 25.3333333333vw;
  }
}

/*--------------------------
PROGRAM
----------------------------*/
#contents.program-single .c-mv {
  padding-top: 190px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv {
    padding-top: 29.3333333333vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
#contents.program-single .c-mv .common-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 70px;
  padding-bottom: 80px;
  border-bottom: 1px solid #231815;
}
@media screen and (max-width: 1000px) {
  #contents.program-single .c-mv .common-inner {
    gap: 0 40px;
  }
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .common-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 6.6666666667vw;
  }
}
#contents.program-single .c-mv .common-inner figure {
  position: absolute;
}
#contents.program-single .c-mv .common-inner figure.fubuki01 {
  top: -100px;
  left: -64px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner figure.fubuki01 {
    top: -16vw;
    left: -5.3333333333vw;
  }
}
#contents.program-single .c-mv .common-inner figure.fubuki01 img {
  width: 112px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner figure.fubuki01 img {
    width: 99.8666666667vw;
  }
}
#contents.program-single .c-mv .common-inner figure.fubuki02 {
  top: -170px;
  right: 30px;
}
#contents.program-single .c-mv .common-inner figure.fubuki02 img {
  width: 224px;
}
#contents.program-single .c-mv .common-inner figure.cloud01 {
  top: -65px;
  right: 200px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner figure.cloud01 {
    top: -17.3333333333vw;
    right: 26.6666666667vw;
  }
}
#contents.program-single .c-mv .common-inner figure.cloud01 img {
  width: 160px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner figure.cloud01 img {
    width: 15.0666666667vw;
  }
}
#contents.program-single .c-mv .common-inner figure.cloud02 {
  top: 145px;
  right: -300px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  #contents.program-single .c-mv .common-inner figure.cloud02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner figure.cloud02 {
    top: -10.6666666667vw;
    right: -16vw;
  }
}
#contents.program-single .c-mv .common-inner figure.cloud02 img {
  width: 400px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .common-inner figure.cloud02 img {
    width: auto;
    height: 8.6666666667vw;
  }
}
#contents.program-single .c-mv .box01 {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .box01 {
    width: 100%;
  }
}
#contents.program-single .c-mv .box01 .common-page-title {
  padding-bottom: 0;
}
#contents.program-single .c-mv .box01 .common-page-title .main {
  padding-bottom: 30px;
  font-size: 52px;
  line-height: 1.5;
  font-family: "Kaisei Opti", serif;
  white-space: normal;
}
@media screen and (max-width: 1000px) {
  #contents.program-single .c-mv .box01 .common-page-title .main {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box01 .common-page-title .main {
    padding-bottom: 8.6666666667vw;
    font-size: 7.4666666667vw;
  }
}
#contents.program-single .c-mv .box01 p {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box01 p {
    margin-top: 6.6666666667vw;
  }
}
#contents.program-single .c-mv .box02 {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 280px;
  padding: 40px 30px;
  background-color: #ebe4ee;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .box02 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 {
    width: 100%;
    margin-top: 6.6666666667vw;
    padding: 2.6666666667vw 0;
    border-radius: 10px;
  }
}
#contents.program-single .c-mv .box02::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 123px;
  height: 60px;
  background: url("../images/common/mark-nami-usuperple.svg") no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02::before {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    width: 12.2666666667vw;
    height: 5.8666666667vw;
  }
}
#contents.program-single .c-mv .box02 .date {
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .box02 .date {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-right: 1px solid #ccc6cf;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .date {
    gap: 0 2vw;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
#contents.program-single .c-mv .box02 .year {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .year {
    font-size: 4vw;
  }
}
#contents.program-single .c-mv .box02 .date-inner {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 8px;
  margin-top: 5px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc6cf;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .box02 .date-inner {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .date-inner {
    gap: 0 2vw;
    padding-bottom: 0;
    border-bottom: none;
  }
}
#contents.program-single .c-mv .box02 .date-inner .day {
  font-size: 58px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .date-inner .day {
    font-size: 8.8vw;
  }
}
#contents.program-single .c-mv .box02 .date-inner .youbi {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .date-inner .youbi {
    font-size: 3.7333333333vw;
  }
}
#contents.program-single .c-mv .box02 .feature {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .box02 .feature {
    padding: 0 20px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .feature {
    padding: 1.3333333333vw 2.6666666667vw 1.3333333333vw 2.6666666667vw;
  }
}
#contents.program-single .c-mv .box02 .common-pin,
#contents.program-single .c-mv .box02 .common-yen {
  gap: 0 12px;
  padding-top: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .common-pin,
  #contents.program-single .c-mv .box02 .common-yen {
    gap: 0 1.0666666667vw;
    padding-top: 0;
  }
}
#contents.program-single .c-mv .box02 span {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 span {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 900px) {
  #contents.program-single .c-mv .box02 .common-pin {
    padding-top: 0;
  }
}
#contents.program-single .c-mv .box02 .common-pin::before {
  width: 20px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .common-pin::before {
    width: 2.8vw;
    height: 3.4666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .common-yen {
    margin-top: 2vw;
  }
}
#contents.program-single .c-mv .box02 .common-yen::before {
  width: 24px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-mv .box02 .common-yen::before {
    width: 3.2vw;
    height: 2.9333333333vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box {
    gap: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box {
    flex-direction: column;
    gap: 10.6666666667vw 0;
    margin-bottom: 16vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box .thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 340px;
}
@media screen and (max-width: 1240px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .thumbnail {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .thumbnail {
    width: 59.3333333333vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .thumbnail:hover::before {
    opacity: 0.5;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box .thumbnail::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-image: url("../images/common/icn-pdf.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .thumbnail::before {
    bottom: 1.7333333333vw;
    right: 1.7333333333vw;
    width: 12vw;
    height: 12vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box .content p + p {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .content p + p {
    margin-top: 6.6666666667vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box .content .btn {
  margin-top: 65px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .content .btn {
    margin-top: 8vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box .content .btn a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 300px;
  height: 60px;
  margin-left: auto;
  padding: 0 50px 0 25px;
  font-weight: 500;
  font-size: 16px;
  background-color: #231815;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .content .btn a {
    width: 54.6666666667vw;
    height: 12vw;
    margin: 0 auto;
    padding: 0 8vw 0 5.3333333333vw;
    font-size: 3.2vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .first-box .content .btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 14px;
  height: 14px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .first-box .content .btn a::before {
    right: 4vw;
    width: 2.2666666667vw;
    height: 2.2666666667vw;
  }
}
#contents.program-single .c-box01 .common-inner .main-contents .outline-box iframe {
  max-width: 100%;
  width: 100%;
}
#contents.program-single .c-box01 .common-inner .main-contents .contact-box {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .common-inner .main-contents .contact-box {
    padding: 0 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
#contents.program-single .c-box01 .btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.program-single .c-box01 .btn {
    margin-top: 8vw;
  }
}
#contents.program-single .c-box01 .btn a {
  margin: 0 auto;
}

#contents.program-archive .c-mv .common-page-title .sub {
  width: 250px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-mv .common-page-title .sub {
    width: 33.3333333333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) and (min-width: 768px) and (max-width: 1240px) {
  #contents.program-archive .c-mv .common-page-title .sub {
    width: 20.1612903226vw;
  }
}
#contents.program-archive .c-box01 {
  margin-top: 80px;
  padding-bottom: 300px;
}
@media screen and (max-width: 1240p) {
  #contents.program-archive .c-box01 {
    margin-top: 6.4516129032vw;
  }
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 {
    margin-top: 6.6666666667vw;
    padding-bottom: 29.3333333333vw;
  }
}
#contents.program-archive .c-box01 .program-information a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 20px;
  border: 2px solid #231815;
  background-color: #fff;
  border-radius: 20px;
}
@media (hover: none) {
  #contents.program-archive .c-box01 .program-information a:active .col.middle .col-title {
    color: #673b93;
  }
}
@media (hover: hover) {
  #contents.program-archive .c-box01 .program-information a:hover .col.middle .col-title {
    color: #673b93;
  }
}
@media screen and (max-width: 1240px) {
  #contents.program-archive .c-box01 .program-information a {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information a {
    flex-wrap: wrap;
    gap: 2.6666666667vw 0;
    padding: 4vw 4vw 3.3333333333vw;
  }
}
#contents.program-archive .c-box01 .program-information a::before, #contents.program-archive .c-box01 .program-information a::after {
  content: "";
  position: absolute;
  width: 39px;
  height: 2px;
  background-image: url("../images/common/common-frame.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
#contents.program-archive .c-box01 .program-information a::before {
  top: -2px;
  left: 60px;
}
#contents.program-archive .c-box01 .program-information a::after {
  bottom: -2px;
  right: 60px;
}
#contents.program-archive .c-box01 .program-information .col.left {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 200px;
  border-right: 1px solid #231815;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left {
    width: 24vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .year {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .year {
    gap: 0 0.6666666667vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .year .value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .year .value {
    font-size: 4vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .year .unit {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .year .unit {
    font-size: 2.9333333333vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin-top: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .date {
    gap: 0 1.3333333333vw;
    margin-top: 3.3333333333vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .date .month {
  position: relative;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .date .month {
    font-size: 3.7333333333vw;
    white-space: nowrap;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .date .month::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 2px;
  height: 40px;
  background-color: #231815;
  transform: rotate(30deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .date .month::before {
    right: -1.3333333333vw;
    height: 6.6666666667vw;
    transform: rotate(30deg);
  }
}
#contents.program-archive .c-box01 .program-information .col.left .date .date-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 8px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .date .date-inner {
    align-items: flex-end;
    gap: 0 1.2vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .date .day {
  font-size: 64px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .date .day {
    margin-top: 1.3333333333vw;
    font-size: 7.2vw;
    white-space: nowrap;
  }
}
#contents.program-archive .c-box01 .program-information .col.left .date .youbi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  font-size: 14px;
  color: #fff;
  background-color: #319a50;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.left .date .youbi {
    width: 7.2vw;
    height: 7.2vw;
    font-size: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.middle {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 0 30px;
  line-height: 1.3;
}
@media screen and (max-width: 1240px) {
  #contents.program-archive .c-box01 .program-information .col.middle {
    flex-grow: initial;
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.middle {
    width: calc(100% - 24vw);
    padding: 0 4vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.middle .col-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 210px;
  height: 40px;
  margin: 0 auto;
  border-radius: 9999px;
  background-color: #673b93;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.middle .col-headline {
    width: 32vw;
    height: 6.6666666667vw;
    font-size: 3.2vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.middle .col-title {
  margin-top: 30px;
  font-size: 32px;
  font-weight: bold;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.middle .col-title {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.right {
  position: relative;
  flex-shrink: 0;
  width: 210px;
  padding: 10px;
  background-color: #ebe4ee;
  border-radius: 10px;
}
@media screen and (max-width: 1240px) {
  #contents.program-archive .c-box01 .program-information .col.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.right {
    border-radius: 1.3333333333vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.right::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 67px;
  height: 33px;
  background: url("../images/common/mark-nami-usuperple.svg") no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 1240px) {
  #contents.program-archive .c-box01 .program-information .col.right::before {
    top: 25px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.right::before {
    top: 1.6vw;
    right: 1.6vw;
    width: 16.2666666667vw;
    height: 7.8666666667vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.right .common-pin,
#contents.program-archive .c-box01 .program-information .col.right .common-yen {
  position: relative;
  z-index: 2;
  gap: 0 10px;
  padding: 18px 10px;
}
@media screen and (max-width: 1240px) {
  #contents.program-archive .c-box01 .program-information .col.right .common-pin,
  #contents.program-archive .c-box01 .program-information .col.right .common-yen {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.right .common-pin,
  #contents.program-archive .c-box01 .program-information .col.right .common-yen {
    gap: 0 1.3333333333vw;
    padding: 1.3333333333vw 4vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.right .common-pin span,
#contents.program-archive .c-box01 .program-information .col.right .common-yen span {
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  #contents.program-archive .c-box01 .program-information .col.right .common-pin {
    background-image: radial-gradient(#231815 30%, transparent 30%);
    background-size: 6px 4px;
    /*imageで指定した割合が100%の時の値*/
    background-position: bottom;
    background-repeat: repeat-x;
  }
}
@media screen and (max-width: 1240px) {
  #contents.program-archive .c-box01 .program-information .col.right .common-pin {
    background-image: radial-gradient(#231815 30%, transparent 30%);
    background-size: 6px 8px;
    background-position: right;
    background-repeat: repeat-y;
  }
}
#contents.program-archive .c-box01 .program-information .col.right .common-pin::before {
  width: 18px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.right .common-pin::before {
    width: 3.2vw;
    height: 3.8666666667vw;
  }
}
#contents.program-archive .c-box01 .program-information .col.right .common-yen::before {
  width: 21px;
  height: 19px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .program-information .col.right .common-yen::before {
    width: 3.6vw;
    height: 3.2vw;
  }
}
#contents.program-archive .c-box01 .box01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .box01 {
    flex-direction: column;
    margin-top: 10.6666666667vw;
  }
  #contents.program-archive .c-box01 .box01 .btn01 {
    order: -1;
  }
}
#contents.program-archive .c-box01 .box01 .sw-title {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .box01 .sw-title {
    margin-top: 10.6666666667vw;
  }
}
#contents.program-archive .c-box01 .box01 .btn01 a {
  margin-left: auto;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.program-archive .c-box01 .box01 .btn01 a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.program-archive .c-box01 .box01 .btn01 a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .box01 .btn01 a {
    height: 12vw;
  }
  #contents.program-archive .c-box01 .box01 .btn01 a::before {
    right: 4vw;
  }
}
#contents.program-archive .c-box01 .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 60px 5%;
  margin-top: 50px;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list {
    gap: 50px 2%;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list {
    gap: 8vw 0;
    margin-top: 6vw;
  }
}
#contents.program-archive .c-box01 .list .item {
  position: relative;
  width: 47.5%;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item {
    width: 100%;
    padding: 4vw;
    border-radius: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item.free .thumbnail::after {
  content: "無料";
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 110px;
  height: 60px;
  padding-left: 50px;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  background-image: url("../images/common/icn-free.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 27px 27px;
  background-color: #f47270;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item.free .thumbnail::after {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    width: 16.6666666667vw;
    height: 9.3333333333vw;
    padding-left: 8vw;
    border-radius: 1.3333333333vw;
    font-size: 3.4666666667vw;
    background-position: 2vw center;
    background-size: 4.6666666667vw 4.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .until {
  position: absolute;
  z-index: 2;
  top: -10px;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 100px;
  height: 100px;
  color: #fff;
  border-radius: 9999px;
  background-color: #231815;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .until {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .until {
    top: -2.6666666667vw;
    left: -2.6666666667vw;
    width: 16vw;
    height: 16vw;
  }
}
#contents.program-archive .c-box01 .list .item .until .text {
  font-size: 18px;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .until .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .until .text {
    font-size: 2.9333333333vw;
  }
}
#contents.program-archive .c-box01 .list .item .until .day {
  display: flex;
  justify-content: center;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  font-weight: bold;
  white-space: nowrap;
}
#contents.program-archive .c-box01 .list .item .until .day .value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 46px;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .until .day .value {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .until .day .value {
    font-size: 7.2vw;
  }
}
#contents.program-archive .c-box01 .list .item .until .day .unit {
  font-size: 26px;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .until .day .unit {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .until .day .unit {
    font-size: 4.2666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .thumbnail {
  position: relative;
  position: relative;
  background-color: transparent;
}
#contents.program-archive .c-box01 .list .item .thumbnail::before {
  content: "";
  display: block;
  padding-top: 74.9056603774%;
}
#contents.program-archive .c-box01 .list .item .thumbnail img,
#contents.program-archive .c-box01 .list .item .thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  #contents.program-archive .c-box01 .list .item .thumbnail {
    pointer-events: none;
  }
}
#contents.program-archive .c-box01 .list .item .thumbnail img {
  border-radius: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .thumbnail img {
    border-radius: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .thumbnail .common-tag-list {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .thumbnail .common-tag-list {
    bottom: 2.6666666667vw;
    left: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content {
    gap: 0 3.3333333333vw;
    margin-top: 4vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left {
  position: relative;
  flex-shrink: 0;
  width: 150px;
  padding: 15px;
  background-color: #ebe4ee;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left {
    width: 24.6666666667vw;
    padding: 4vw 2.6666666667vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 67px;
  height: 33px;
  background: url("../images/common/mark-nami-usuperple.svg") no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left::before {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    width: 10.2666666667vw;
    height: 4.9333333333vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .year {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
#contents.program-archive .c-box01 .list .item .content .col.left .date {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .date {
    display: block;
    margin-top: 2vw;
    margin-bottom: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .date .day {
  font-size: 34px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .date .day {
    font-size: 7.2vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .date .youbi {
  font-size: 13px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .date .youbi {
    margin-top: 1.0666666667vw;
    font-size: 3.2vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .end {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: right;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .end {
    font-size: 2.9333333333vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .common-pin {
  gap: 0 7px;
  margin-top: 17px;
  padding-top: 20px;
  border-top: 1px solid #ccc6cf;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .common-pin {
    gap: 0 1.0666666667vw;
    margin-top: 2.2666666667vw;
    padding-top: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .common-pin::before {
  width: 19px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .common-pin::before {
    width: 2.8vw;
    height: 3.4666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.left .common-pin span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.left .common-pin span {
    font-size: 2.9333333333vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.right .item-title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .content .col.right .item-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.right .item-title {
    font-size: 4.2666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.right .style {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 9px;
  margin-top: 15px;
  font-size: 12px;
  color: #aaafbc;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.right .style {
    gap: 0 1.0666666667vw;
    margin-top: 2.6666666667vw;
    font-size: 2.6666666667vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.right .style::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #aaafbc;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.right .style::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}
#contents.program-archive .c-box01 .list .item .content .col.right p {
  margin-top: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .content .col.right p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .content .col.right p {
    margin-top: 3.3333333333vw;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 3.2vw;
  }
}
#contents.program-archive .c-box01 .list .item .btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .btns {
    gap: 0 2.6666666667vw;
    margin-top: 4vw;
  }
}
#contents.program-archive .c-box01 .list .item .btns .btn.ticket {
  width: 56.6%;
}
#contents.program-archive .c-box01 .list .item .btns .btn.detail {
  width: 41.5%;
}
#contents.program-archive .c-box01 .list .item .btns a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 80px;
  padding: 0 50px 0 30px;
  font-weight: 500;
  font-size: 16px;
  background-color: #231815;
  color: #fff;
  line-height: 1.3;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.program-archive .c-box01 .list .item .btns a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.program-archive .c-box01 .list .item .btns a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1100px) {
  #contents.program-archive .c-box01 .list .item .btns a {
    padding-left: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .btns a {
    height: 14.6666666667vw;
    padding: 0 9.3333333333vw 0 4vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}
#contents.program-archive .c-box01 .list .item .btns a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 14px;
  height: 14px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.program-archive .c-box01 .list .item .btns a::before {
    right: 4vw;
    width: 2.2666666667vw;
    height: 2.2666666667vw;
  }
}
#contents.program-archive .common-howto-enjoy {
  background-color: #fff;
}

/*--------------------------
NEWS
----------------------------*/
#contents.news-single .c-mv {
  padding-top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #contents.news-single .c-mv .cloud01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .cloud01 {
    top: 13.3333333333vw !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #contents.news-single .c-mv .cloud02 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .cloud02 {
    top: 21.3333333333vw !important;
  }
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .img01 {
    top: 58.6666666667vw !important;
    left: -4vw !important;
  }
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .img02 {
    right: 22vw !important;
  }
}
#contents.news-single .c-mv .inner {
  position: relative;
  z-index: 2;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
}
#contents.news-single .c-mv .inner .post-meta {
  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.news-single .c-mv .inner .post-meta {
    gap: 0 2.6666666667vw;
  }
}
#contents.news-single .c-mv .inner .post-meta .date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .inner .post-meta .date {
    font-size: 3.2vw;
  }
}
#contents.news-single .c-mv .inner .post-meta .category {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 150px;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  color: #673b93;
  border-radius: 9999px;
  background-color: #efe8f2;
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .inner .post-meta .category {
    min-width: 26.6666666667vw;
    height: 6.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
#contents.news-single .c-mv .inner .post-title {
  margin-top: 70px;
  font-family: "Kaisei Opti", serif;
  font-size: 42px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .inner .post-title {
    margin-top: 4.6666666667vw;
    font-size: 5.6vw;
  }
}
#contents.news-single .c-mv .inner p {
  max-width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.news-single .c-mv .inner p {
    margin-top: 9.3333333333vw;
  }
}
#contents.news-single .c-box01 {
  padding-bottom: 120px;
}
#contents.news-single .c-box01 .common-inner {
  max-width: 970px;
}
#contents.news-single .c-box01 .btn {
  margin-top: 60px;
}
#contents.news-single .c-box01 .btn a {
  margin: 0 auto;
}

#contents.news-archive .c-box01 {
  position: relative;
  z-index: 2;
}
#contents.news-archive .c-box01 .common-inner .main-contents .common-news-list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
#contents.news-archive .c-box01 .common-inner .main-contents .common-news-list .news-item a {
  padding: 30px 40px 35px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.news-archive .c-box01 .common-inner .main-contents .common-news-list .news-item a {
    padding: 5.3333333333vw;
  }
}

/*--------------------------
CONTACT
----------------------------*/
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-mv .common-page-title,
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-mv .common-text {
  display: none;
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 {
  margin-top: 0;
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box {
  padding: 0;
  background-color: transparent;
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box .inner {
  padding: 30px 0 0 0;
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box .title {
  position: relative;
  z-index: 2;
  font-size: 48px;
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box .title {
    font-size: 6.9333333333vw;
  }
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box p {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box p {
    margin-top: 9.3333333333vw;
  }
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box .btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box .btn {
    margin-top: 9.3333333333vw;
  }
}
body:has(.snow-monkey-form[data-screen=complete]) #contents .c-box01 .form-box .btn a {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #contents.contact .c-mv .common-page-title .sub {
    width: 33.3333333333vw;
  }
}
#contents.contact .c-mv p a {
  padding-bottom: 3px;
  border-bottom: 1px solid #231815;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.contact .c-mv p a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.contact .c-mv p a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  #contents.contact .c-mv p a {
    padding-bottom: 0.4vw;
  }
}
#contents.contact .c-box01 {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 {
    margin-top: 8vw;
    padding-bottom: 16vw;
  }
}
#contents.contact .c-box01 .form-box {
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 1040px) {
  #contents.contact .c-box01 .form-box {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box {
    padding: 9.3333333333vw 6.6666666667vw 10.6666666667vw;
  }
}
#contents.contact .c-box01 .form-box .inner {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .inner {
    padding: 0;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item {
    display: block;
    margin-bottom: 6.6666666667vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-item__col--label {
  padding-top: 0;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 15px 50px;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control {
    gap: 3.3333333333vw 0;
  }
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label {
    width: 100%;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label:nth-of-type(2) {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label:nth-of-type(2) {
    width: 100%;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label {
  cursor: pointer;
  position: relative;
  min-height: 30px;
  overflow: hidden;
  padding-left: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label {
    min-height: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label:before {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid #d5d6da;
  background-color: #fff;
  border-radius: 30px;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label:before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    border-radius: 9999px;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #f47270;
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label:after {
    top: 1.0666666667vw;
    left: 0.9333333333vw;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 4px;
  z-index: 2;
  width: 24px;
  height: 24px;
  left: -20px;
  margin: 0px;
  box-shadow: 24px -1px #fff;
  border-radius: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label input[type=radio] {
    top: 1.0666666667vw;
    left: -2.9333333333vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    box-shadow: 3.7333333333vw -0.1333333333vw #fff;
    border-radius: 9999px;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label input[type=radio]:checked {
  box-shadow: none;
  z-index: 5;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label .smf-radio-button-control__label {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.type .smf-radio-buttons-control__control .smf-label label .smf-radio-button-control__label {
    font-size: 3.2vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check {
    margin-top: 6.6666666667vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-item__col--label {
  display: none;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label {
    font-size: 2.9333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-left: 55px;
  box-sizing: border-box;
  height: 32px;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label {
    height: 6.6666666667vw;
    padding-left: 9.3333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  top: 0;
  border: 2px solid #231815;
  border-radius: 6px;
  z-index: 3;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label:before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  display: block;
  width: 8px;
  height: 14px;
  border-right: 2px solid #231815;
  border-bottom: 2px solid #231815;
  transform: rotate(45deg);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label:after {
    top: 1.0666666667vw;
    left: 2.4vw;
    width: 1.8666666667vw;
    height: 3.3333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: 3px;
  left: -42px;
  width: 22px;
  height: 22px;
  display: block;
  margin: 0;
  box-shadow: 44px 0px #fff;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label input[type=checkbox] {
    top: 1.2vw;
    left: -9.0666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    box-shadow: 10.1333333333vw 0px #fff;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label input[type=checkbox]:checked {
  box-shadow: none;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label label input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label a {
  padding-bottom: 3px;
  border-bottom: 1px solid #231815;
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-label a:hover {
    opacity: 0.5;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.check .smf-error-messages {
  text-align: center;
}
#contents.contact .c-box01 .form-box .smf-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 .c-box01 .form-box .smf-form .smf-item.must .smf-item__label {
    gap: 0 2.6666666667vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item.must .smf-item__label::after {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 41px;
  height: 27px;
  border-radius: 9999px;
  background-color: #f47270;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item.must .smf-item__label::after {
    width: 10.6666666667vw;
    height: 5.3333333333vw;
    font-size: 2.9333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--label {
  flex-shrink: 0;
  width: 260px;
  padding-top: 25px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--label {
    width: 100%;
    padding-top: 0;
    font-size: 3.7333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls {
    margin-top: 3.0666666667vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text],
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email],
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel],
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select,
#contents.contact .c-box01 .form-box .smf-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: 70px;
  padding: 20px;
  border: 2px solid #d5d6da;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 500;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text]:placeholder-shown,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email]:placeholder-shown,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel]:placeholder-shown,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select:placeholder-shown,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea:placeholder-shown {
  color: #b3b3b3;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text]::-webkit-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email]::-webkit-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel]::-webkit-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select::-webkit-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea::-webkit-input-placeholder {
  color: #b3b3b3;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text]:-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email]:-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel]:-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select:-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea:-moz-placeholder {
  color: #b3b3b3;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text]::-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email]::-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel]::-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select::-moz-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea::-moz-placeholder {
  color: #b3b3b3;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text]:-ms-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email]:-ms-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel]:-ms-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select:-ms-input-placeholder,
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea:-ms-input-placeholder {
  color: #b3b3b3;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=text],
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=email],
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls input[type=tel],
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select,
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea {
    height: 13.3333333333vw;
    padding: 4vw;
    font-size: 3.2vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea {
  height: 160px;
  resize: none;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls textarea {
    height: 36vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select {
  max-width: 353px;
  padding-right: 70px;
  background-image: url("../images/common/icn-select.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-form .smf-item__col--controls select {
    max-width: 100%;
    padding-right: 9.3333333333vw;
  }
}
#contents.contact .c-box01 .form-box .smf-form .smf-item .smf-error-messages {
  margin-top: 10px;
  font-weight: bold;
  color: red;
}
#contents.contact .c-box01 .form-box .smf-form .smf-item .custom-error-message {
  display: none;
}
#contents.contact .c-box01 .form-box .smf-action {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-action {
    margin-top: 6.6666666667vw;
  }
}
#contents.contact .c-box01 .form-box .smf-action button {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 400px;
  height: 80px;
  background-color: #231815;
  color: #fff;
  font-size: 16px;
  border-radius: 9999px;
}
@media screen and (min-width: 769px) {
  #contents.contact .c-box01 .form-box .smf-action button:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-action button {
    width: 70.6666666667vw;
    height: 14.6666666667vw;
    font-size: 3.2vw;
  }
}
#contents.contact .c-box01 .form-box .smf-action button::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 14px;
  height: 14px;
  background-image: url("../images/common/icn-ar-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.contact .c-box01 .form-box .smf-action button::before {
    right: 5.3333333333vw;
    width: 3.0666666667vw;
    height: 3.0666666667vw;
  }
}

/*--------------------------
FAQ
----------------------------*/
#contents.faq .c-box01 .common-lb-title:not(:nth-of-type(1)) {
  margin-top: 70px;
}
#contents.faq .c-box01 .common-faq-list {
  margin-top: 40px;
}
#contents.faq .c-box01 .common-faq-list .faq-item {
  background-color: #fff;
  border-radius: 10px;
}
#contents.faq .c-box01 .common-faq-list .faq-item:not(:nth-of-type(1)) {
  margin-top: 15px;
}
#contents.faq .c-box01 .common-faq-list .faq-item .question,
#contents.faq .c-box01 .common-faq-list .faq-item .answer {
  padding-left: 30px;
  padding-right: 30px;
}

/*--------------------------
SUPPORT
----------------------------*/
#contents.support .c-mv .support-information {
  margin-top: 40px;
  padding: 30px 30px 15px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.support .c-mv .support-information {
    margin-top: 10.6666666667vw;
    padding: 5.3333333333vw;
  }
}
#contents.support .c-mv .support-information .support-headline {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents.support .c-mv .support-information .support-headline {
    font-size: 4.2666666667vw;
  }
}
#contents.support .c-mv .support-information .box {
  width: fit-content;
  margin: 20px auto 0;
}
#contents.support .c-mv .support-information .box .list {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-mv .support-information .box .list {
    gap: 0 1.7333333333vw;
  }
}
#contents.support .c-mv .support-information .box .list img {
  width: 100px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-mv .support-information .box .list img {
    width: 18.1333333333vw;
  }
}
#contents.support .c-mv .support-information .box p {
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-mv .support-information .box p {
    margin-top: 2.6666666667vw;
    font-size: 2.9333333333vw;
  }
}
#contents.support .c-box01 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .side-menu {
    background-color: #fff;
    color: #231815;
    background-image: url("../images/common/icn-tri-b-bk.svg");
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .main-contents {
    margin-top: 13.3333333333vw;
  }
}
#contents.support .c-box01 h2:not(:nth-of-type(1)) {
  margin-top: 80px;
}
#contents.support .c-box01 .support-list {
  margin-top: 30px;
}
#contents.support .c-box01 .support-list .item {
  padding: 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item {
    padding: 8vw 5.3333333333vw;
  }
}
#contents.support .c-box01 .support-list .item:not(:nth-of-type(1)) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item:not(:nth-of-type(1)) {
    margin-top: 5.3333333333vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
  margin-top: 30px;
}
@media screen and (max-width: 1100px) {
  #contents.support .c-box01 .support-list .item .item-content {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content {
    margin-top: 6.6666666667vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left {
    width: 100%;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 220px;
  padding: 20px 20px 30px;
  background-color: #ebe4ee;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 {
    display: block;
    width: 24.6666666667vw;
    margin-top: 0;
    padding: 4vw 2.6666666667vw;
    border-radius: 10px;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 95px;
  height: 47px;
  background: url("../images/common/mark-nami-usuperple.svg") no-repeat center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01::before {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    width: 10.2666666667vw;
    height: 4.9333333333vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date {
    display: block;
    padding: 0;
    border-right: none;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .year {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .year {
    font-size: 3.2vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date-inner {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 8px;
  margin-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc6cf;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date-inner {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date-inner .day {
  font-size: 41px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date-inner .day {
    font-size: 7.2vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date-inner .youbi {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .date-inner .youbi {
    font-size: 3.2vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .feature {
  position: relative;
  z-index: 2;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .feature {
    border-top: 1px solid #ccc6cf;
    padding: 2.6666666667vw 0 0 0;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-pin,
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-yen {
  gap: 0 12px;
  padding-top: 15px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-pin,
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-yen {
    gap: 0 1.0666666667vw;
    padding-top: 0;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 span {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 span {
    font-size: 2.8vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-pin::before {
  width: 16px;
  height: 19px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-pin::before {
    width: 2.8vw;
    height: 3.4666666667vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-yen {
    margin-top: 2vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-yen::before {
  width: 19px;
  height: 17px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .box01 .common-yen::before {
    width: 3.2vw;
    height: 2.9333333333vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.left .common-dot-list {
    margin-top: 10px;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.right {
  flex-shrink: 0;
  width: 220px;
}
@media screen and (max-width: 1100px) {
  #contents.support .c-box01 .support-list .item .item-content .col.right {
    margin-top: 50px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.right {
    margin-top: 8vw;
    width: 100%;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.right .support {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 2.26%;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.right .support {
    gap: 1.3333333333vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.right .support img {
  width: 23.3%;
  max-width: 52px;
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.right .support img {
    width: 12vw;
  }
}
#contents.support .c-box01 .support-list .item .item-content .col.right .btn {
  margin-top: 20px;
}
@media screen and (max-width: 1100px) {
  #contents.support .c-box01 .support-list .item .item-content .col.right .btn a {
    justify-content: center;
    max-width: 320px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #contents.support .c-box01 .support-list .item .item-content .col.right .btn {
    margin-top: 5.3333333333vw;
  }
  #contents.support .c-box01 .support-list .item .item-content .col.right .btn a {
    justify-content: center;
    padding: 0;
  }
}

/*--------------------------
PROJECT
----------------------------*/
#contents.project .c-mv .common-page-title .sub {
  width: 460px;
}
@media screen and (min-width: 768px) and (max-width: 1240px) {
  #contents.project .c-mv .common-page-title .sub {
    width: 37.0967741935vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.project .c-mv .common-page-title .sub {
    width: 56vw;
    margin-left: -2.6666666667vw;
  }
}
#contents.project .c-mv .common-page-title .sub span {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents.project .c-mv .common-page-title .sub span {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #contents.project .c-mv .box02 .img {
    top: 40vw;
  }
}
#contents.project .c-box01 h2:not(:nth-of-type(1)) {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 h2:not(:nth-of-type(1)) {
    margin-top: 5.3333333333vw;
  }
}
#contents.project .c-box01 .project-list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list {
    margin-top: 0;
  }
}
#contents.project .c-box01 .project-list .item:not(:nth-of-type(1)) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item:not(:nth-of-type(1)) {
    margin-top: 0;
    border-top: 1px dotted #231815;
  }
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item {
    padding: 10.6666666667vw 0;
  }
}
#contents.project .c-box01 .project-list .item .item-head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 7%;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head {
    flex-wrap: wrap;
    gap: 8vw 0;
  }
}
#contents.project .c-box01 .project-list .item .item-head > .col.left {
  flex-shrink: 0;
  position: relative;
  background-color: transparent;
  width: 48.8%;
  border-radius: 10px;
  overflow: hidden;
}
#contents.project .c-box01 .project-list .item .item-head > .col.left::before {
  content: "";
  display: block;
  padding-top: 75%;
}
#contents.project .c-box01 .project-list .item .item-head > .col.left img,
#contents.project .c-box01 .project-list .item .item-head > .col.left iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head > .col.left {
    width: 100%;
  }
}
#contents.project .c-box01 .project-list .item .item-head > .col.right {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head > .col.right {
    order: -1;
    width: 100%;
  }
}
#contents.project .c-box01 .project-list .item .item-head .item-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  font-family: "Kaisei Opti", serif;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head .item-title {
    font-size: 5.6vw;
  }
}
#contents.project .c-box01 .project-list .item .item-head .item-kana {
  margin-top: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head .item-kana {
    margin-top: 2.6666666667vw;
    font-size: 3.2vw;
  }
}
#contents.project .c-box01 .project-list .item .item-head .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head .sns {
    gap: 0 3.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}
#contents.project .c-box01 .project-list .item .item-head .sns a {
  transition: opacity 0.3s;
}
@media (hover: none) {
  #contents.project .c-box01 .project-list .item .item-head .sns a:active {
    opacity: 0.5;
  }
}
@media (hover: hover) {
  #contents.project .c-box01 .project-list .item .item-head .sns a:hover {
    opacity: 0.5;
  }
}
#contents.project .c-box01 .project-list .item .item-head .sns img {
  width: 34px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head .sns img {
    width: 6vw;
  }
}
#contents.project .c-box01 .project-list .item .item-head .btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head .btn {
    margin-top: 8vw;
  }
}
#contents.project .c-box01 .project-list .item .item-head .btn a {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-head .btn a {
    max-width: 100%;
  }
}
#contents.project .c-box01 .project-list .item .item-description {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-description {
    margin-top: 6.6666666667vw;
  }
}
#contents.project .c-box01 .project-list .item .item-history {
  margin-top: 50px;
  padding: 40px 50px 50px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-history {
    margin-top: 8vw;
    padding: 6.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
#contents.project .c-box01 .project-list .item .item-history .common-dot-list {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-history .common-dot-list {
    margin-top: 5.3333333333vw;
  }
}
#contents.project .c-box01 .project-list .item .item-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
  margin-top: 40px;
  padding: 30px 25px;
  border: 2px solid #231815;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-contact {
    flex-direction: column;
    gap: 6.6666666667vw 0;
    margin-top: 6.6666666667vw;
    padding: 8vw 4vw;
  }
}
#contents.project .c-box01 .project-list .item .item-contact .col {
  width: calc(50% - 15px);
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-contact .col {
    width: 100%;
  }
}
#contents.project .c-box01 .project-list .item .item-contact .col .contact-headline {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-contact .col .contact-headline {
    font-size: 4vw;
  }
}
#contents.project .c-box01 .project-list .item .item-contact .col p {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #contents.project .c-box01 .project-list .item .item-contact .col p {
    margin-top: 4vw;
  }
}

/*--------------------------
COLUMN
----------------------------*/
#contents.column-single .c-mv .common-inner {
  padding-top: 190px;
}
#contents.column-single .c-mv .common-inner .category-badge {
  position: absolute;
  top: -56px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 104px;
  height: 104px;
  border-radius: 9999px;
  background-image: url("../images/column/category-badge.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  font-size: 54px;
  font-family: "Kaisei Opti", serif;
  color: #fff;
}
#contents.column-single .c-mv .inner .post-title {
  margin-top: 40px;
}
#contents.column-single .c-box01 .about-column-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 85px;
  padding: 20px;
  background-color: #eee5c8;
}
#contents.column-single .c-box01 .about-column-box .content {
  flex-grow: 1;
  padding: 20px;
}
#contents.column-single .c-box01 .about-column-box .content .content-headline {
  padding: 6px 0 6px 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  border-left: 4px solid #673b93;
}
#contents.column-single .c-box01 .about-column-box .content .box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 40px;
}
#contents.column-single .c-box01 .about-column-box .content .box .col {
  padding-right: 40px;
}
#contents.column-single .c-box01 .about-column-box .content .box .col.left {
  border-right: 1px dashed #847a59;
}
#contents.column-single .c-box01 .about-column-box .content .box .col.right {
  padding-left: 20px;
}
#contents.column-single .c-box01 .about-column-box .content .box .col .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents.column-single .c-box01 .about-column-box .content .box .col .item:not(:nth-of-type(1)) {
  margin-top: 20px;
}
#contents.column-single .c-box01 .about-column-box .content .box .col .item .item-headline {
  flex-shrink: 0;
  width: 80px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: bold;
}
#contents.column-single .c-box01 .about-column-box .content .box .col .item ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contents.column-single .c-box01 .about-column-box .content .box .col .item ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 150px;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
}
#contents.column-single .c-box01 .about-column-box .thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 165px;
  padding: 7px;
  border-radius: 10px;
  background-color: #fff;
}
#contents.column-single .c-box01 .about-column-box .thumbnail .category {
  position: absolute;
  top: 17px;
  right: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 37px;
  height: 37px;
  border-radius: 9999px;
  background-color: #231815;
  color: #fff;
  font-family: "Kaisei Opti", serif;
  font-size: 22px;
}
#contents.column-single .c-box01 .about-column-box .thumbnail img {
  border-radius: 10px;
}

#contents.column-archive .c-mv .common-page-title .sub {
  width: 260px;
}
#contents.column-archive .c-mv .common-page-title .sub span {
  text-align: left;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-mv .common-page-title .sub {
    width: 38.6666666667vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1240px) and (min-width: 768px) and (max-width: 1240px) {
  #contents.column-archive .c-mv .common-page-title .sub {
    width: 20.9677419355vw;
  }
}
#contents.column-archive .c-mv .box02 .text03 {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 40px;
  padding: 20px 0;
  margin-left: 10px;
  border-radius: 9999px;
  background-color: #231815;
  color: #fff;
  font-size: 23px;
  font-family: "Kaisei Opti", serif;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-mv .box02 .text03 {
    width: 6.6666666667vw;
    padding: 4vw 0;
    margin-left: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
#contents.column-archive .c-box01 {
  margin-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 {
    margin-top: 9.3333333333vw;
    padding-bottom: 16vw;
  }
}
#contents.column-archive .c-box01 .category-list {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .category-list {
    gap: 2.6666666667vw 2.29%;
  }
}
#contents.column-archive .c-box01 .category-list .item {
  position: relative;
  width: 110px;
  height: 120px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .category-list .item {
    width: 23.28%;
    height: 20.6666666667vw;
  }
}
@media (hover: none) {
  #contents.column-archive .c-box01 .category-list .item:active::before {
    transform: translateY(5px);
  }
  #contents.column-archive .c-box01 .category-list .item:active img {
    transform: scale(1.05);
  }
}
@media (hover: hover) {
  #contents.column-archive .c-box01 .category-list .item:hover::before {
    transform: translateY(5px);
  }
  #contents.column-archive .c-box01 .category-list .item:hover img {
    transform: scale(1.05);
  }
}
#contents.column-archive .c-box01 .category-list .item::before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: -14px;
  width: 40px;
  height: 30px;
  background-image: url("../images/column/icn-arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .category-list .item::before {
    bottom: 2vw;
    width: 6vw;
    height: 3.7333333333vw;
    margin-left: -2.9333333333vw;
  }
}
#contents.column-archive .c-box01 .category-list a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
  background-color: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .category-list a {
    padding: 0.6666666667vw;
    border-radius: 0.8vw;
  }
}
#contents.column-archive .c-box01 .category-list a .column-category {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  background-color: #231815;
  color: #fff;
  font-family: "Kaisei Opti", serif;
  font-size: 29px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .category-list a .column-category {
    top: 1.6vw;
    left: auto;
    right: 1.6vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    font-size: 4.4vw;
  }
}
#contents.column-archive .c-box01 .category-list a .img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
#contents.column-archive .c-box01 .category-list a .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}
#contents.column-archive .c-box01 .search-box {
  margin-top: 50px;
  padding: 40px;
  background-color: #fff;
  border: 4px solid #d2c9aa;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box {
    margin-top: 9.3333333333vw;
    padding: 8vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
    border-width: 0.5333333333vw;
  }
}
#contents.column-archive .c-box01 .search-box .search-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (min-width: 769px) {
  #contents.column-archive .c-box01 .search-box .search-headline:hover {
    cursor: pointer;
  }
}
#contents.column-archive .c-box01 .search-box .search-headline span {
  font-size: 28px;
  font-family: "Kaisei Opti", serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .search-headline span {
    font-size: 5.0666666667vw;
  }
}
#contents.column-archive .c-box01 .search-box .search-list {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .search-list {
    margin-top: 4vw;
  }
}
#contents.column-archive .c-box01 .search-box .search-list .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .search-list .item {
    padding: 4vw 0;
  }
  #contents.column-archive .c-box01 .search-box .search-list .item:last-child {
    border-bottom: 1px solid #d2c9aa;
  }
}
#contents.column-archive .c-box01 .search-box .search-list .item:not(:nth-of-type(1)) {
  border-top: 1px solid #d2c9aa;
}
#contents.column-archive .c-box01 .search-box .search-list .item .item-headline {
  flex-shrink: 0;
  width: 110px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .search-list .item .item-headline {
    width: 15.3333333333vw;
    font-size: 3.2vw;
  }
}
#contents.column-archive .c-box01 .search-box .search-list .item .item-content {
  flex-grow: 1;
}
#contents.column-archive .c-box01 .search-box .search-list .item .item-content ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .search-list .item .item-content ul {
    gap: vw;
  }
}
#contents.column-archive .c-box01 .search-box .search-list .item .item-content ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 30px;
  padding: 0 25px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: #673b93;
  background-color: #efe8f2;
}
@media screen and (min-width: 769px) {
  #contents.column-archive .c-box01 .search-box .search-list .item .item-content ul li:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .search-list .item .item-content ul li {
    height: 6.6666666667vw;
    padding: 0 4vw;
    font-size: 2.9333333333vw;
  }
}
#contents.column-archive .c-box01 .search-box .search-list .item .item-content ul li.active {
  background-color: #673b93;
  color: #fff;
}
#contents.column-archive .c-box01 .search-box .btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .btns {
    margin-top: 5.3333333333vw;
    gap: 0 2vw;
  }
}
#contents.column-archive .c-box01 .search-box .btns button,
#contents.column-archive .c-box01 .search-box .btns a {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 13px;
  width: 200px;
  height: 50px;
  border-radius: 9999px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #contents.column-archive .c-box01 .search-box .btns button:hover,
  #contents.column-archive .c-box01 .search-box .btns a:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .btns button,
  #contents.column-archive .c-box01 .search-box .btns a {
    width: 38vw;
    height: 12vw;
    font-size: 3.2vw;
  }
}
#contents.column-archive .c-box01 .search-box .btns button.clear,
#contents.column-archive .c-box01 .search-box .btns a.clear {
  background-color: #9d9d9d;
}
#contents.column-archive .c-box01 .search-box .btns button.clear::before,
#contents.column-archive .c-box01 .search-box .btns a.clear::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../images/common/icn-cross-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .btns button.clear::before,
  #contents.column-archive .c-box01 .search-box .btns a.clear::before {
    width: 2.5333333333vw;
    height: 2.5333333333vw;
  }
}
#contents.column-archive .c-box01 .search-box .btns button.submit,
#contents.column-archive .c-box01 .search-box .btns a.submit {
  background-color: #231815;
}
#contents.column-archive .c-box01 .search-box .btns button.submit::before,
#contents.column-archive .c-box01 .search-box .btns a.submit::before {
  content: "";
  width: 21px;
  height: 21px;
  background-image: url("../images/common/icn-search.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .search-box .btns button.submit::before,
  #contents.column-archive .c-box01 .search-box .btns a.submit::before {
    width: 3.8666666667vw;
    height: 4.6666666667vw;
  }
}
#contents.column-archive .c-box01 .column-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 40px 1.8666%;
  margin-top: 60px;
}
@media screen and (max-width: 1100px) {
  #contents.column-archive .c-box01 .column-list {
    gap: 20px 2%;
  }
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list {
    gap: 4vw 3.4%;
    margin-top: 9.3333333333vw;
  }
}
#contents.column-archive .c-box01 .column-list .item {
  position: relative;
  width: 23.6%;
}
@media screen and (max-width: 1100px) {
  #contents.column-archive .c-box01 .column-list .item {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list .item {
    width: 48.3%;
  }
}
#contents.column-archive .c-box01 .column-list .item a {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list .item a {
    padding: 1.3333333333vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.column-archive .c-box01 .column-list .item a .column-category {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background-color: #231815;
  color: #fff;
  font-family: "Kaisei Opti", serif;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list .item a .column-category {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 9.0666666667vw;
    height: 9.0666666667vw;
    font-size: 4.8vw;
  }
}
#contents.column-archive .c-box01 .column-list .item a .thumbnail {
  border-radius: 10px;
  overflow: hidden;
}
#contents.column-archive .c-box01 .column-list .item a .thumbnail img {
  border-radius: 10px;
}
#contents.column-archive .c-box01 .column-list .item a .post-meta {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: calc(100% - 20px);
  padding: 50px 20px 30px;
  color: #fff;
  overflow: hidden;
  border-radius: 10px;
  background-image: url("../images/column/bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list .item a .post-meta {
    bottom: 1.3333333333vw;
    left: 1.3333333333vw;
    width: calc(100% - 2.6666666667vw);
    padding: 4vw 3.3333333333vw;
    border-radius: 1.3333333333vw;
  }
}
#contents.column-archive .c-box01 .column-list .item a .post-meta .post-date {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list .item a .post-meta .post-date {
    font-size: 2.4vw;
  }
}
#contents.column-archive .c-box01 .column-list .item a .post-meta .post-title {
  margin-top: 5px;
  font-size: 18px;
  font-family: "Kaisei Opti", serif;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  #contents.column-archive .c-box01 .column-list .item a .post-meta .post-title {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}

/*--------------------------
INFORMATION
----------------------------*/
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .side-menu {
    width: 400px;
    margin: 0 auto;
    background-image: url("../images/common/icn-tri-b-bk.svg");
    background-color: #fff;
    color: #231815;
  }
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .side-menu {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  #contents.information .c-box01 .check-list02 {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .check-list02 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
    width: 400px;
    margin: 20px auto 0;
    padding: 0;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #contents.information .c-box01 .check-list02 {
    width: 100%;
    margin: 6.6666666667vw auto 0;
    padding: 0 5.3333333333vw;
  }
}
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .check-list02 label {
    width: 50%;
  }
  #contents.information .c-box01 .check-list02 label {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    padding-left: 55px;
    box-sizing: border-box;
    height: 32px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #contents.information .c-box01 .check-list02 label {
    height: 6.6666666667vw;
    padding-left: 9.3333333333vw;
  }
}
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .check-list02 label:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0px;
    top: 0;
    border: 2px solid #231815;
    border-radius: 6px;
    z-index: 3;
    box-sizing: border-box;
    background-color: #fff;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #contents.information .c-box01 .check-list02 label:before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .check-list02 label:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 10px;
    display: block;
    width: 8px;
    height: 14px;
    border-right: 2px solid #231815;
    border-bottom: 2px solid #231815;
    transform: rotate(45deg);
    z-index: 3;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #contents.information .c-box01 .check-list02 label:after {
    top: 1.0666666667vw;
    left: 2.4vw;
    width: 1.8666666667vw;
    height: 3.3333333333vw;
  }
}
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .check-list02 label input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 4;
    top: 3px;
    left: -42px;
    width: 22px;
    height: 22px;
    display: block;
    margin: 0;
    box-shadow: 44px 0px #fff;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #contents.information .c-box01 .check-list02 label input[type=checkbox] {
    top: 1.2vw;
    left: -9.0666666667vw;
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    box-shadow: 10.1333333333vw 0px #fff;
  }
}
@media screen and (max-width: 1000px) {
  #contents.information .c-box01 .check-list02 label input[type=checkbox]:checked {
    box-shadow: none;
  }
  #contents.information .c-box01 .check-list02 label input[type=checkbox]:checked:focus {
    box-shadow: 40px 0px #fff;
    opacity: 0.1;
  }
}
#contents.information .c-box01 .information-list-wrap:not(:nth-of-type(1)) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list-wrap:not(:nth-of-type(1)) {
    margin-top: 8vw;
  }
}
#contents.information .c-box01 .information-list .item {
  padding: 50px 0 40px;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item {
    padding: 8vw 0;
  }
}
#contents.information .c-box01 .information-list .item:not(:last-child) {
  background-image: radial-gradient(#231815 30%, transparent 30%);
  background-size: 6px 4px;
  /*imageで指定した割合が100%の時の値*/
  background-position: bottom;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item:not(:last-child) {
    background-image: radial-gradient(#231815 30%, transparent 30%);
    background-size: 6px 3px;
    /*imageで指定した割合が100%の時の値*/
    background-position: bottom;
    background-repeat: repeat-x;
  }
}
#contents.information .c-box01 .information-list .item[data-free=free] .item-title::before {
  content: "無料";
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 90px;
  height: 70px;
  padding-left: 50px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background-image: url("../images/common/icn-free.svg");
  background-repeat: no-repeat;
  background-position: 15px center;
  background-size: 23px 23px;
  background-color: #f47270;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item[data-free=free] .item-title::before {
    top: 1.3333333333vw;
    right: 1.3333333333vw;
    width: 15.7333333333vw;
    height: 14.6666666667vw;
    padding-left: 8vw;
    border-radius: 1.3333333333vw;
    font-size: 2.9333333333vw;
    background-position: 2vw center;
    background-size: 4.6666666667vw 4.6666666667vw;
  }
}
#contents.information .c-box01 .information-list .item .item-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-title {
    font-size: 4.2666666667vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 2.4%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content {
    flex-direction: column;
    gap: 8vw 0;
    margin-top: 6vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .col.left {
  width: 67.4%;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .col.left {
    width: 100%;
  }
}
#contents.information .c-box01 .information-list .item .item-content .col.right {
  width: 30.2%;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .col.right {
    width: 100%;
  }
  #contents.information .c-box01 .information-list .item .item-content .col.right .btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
  #contents.information .c-box01 .information-list .item .item-content .col.right .btns a {
    width: 42.6666666667vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .outline-box {
  border: 1px solid #d5d6da;
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item:not(:nth-of-type(1)) {
  border-top: 1px solid #d5d6da;
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-title {
  flex-shrink: 0;
  width: 180px;
  padding: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  background-color: #ebe4ee;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-title {
    width: 24vw;
    padding: 5.3333333333vw 2.6666666667vw;
    font-size: 3.2vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content {
  flex-grow: 1;
  font-size: 16px;
  padding: 30px 20px;
  background-color: #fff;
  line-height: 1.5;
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content {
    padding: 5.3333333333vw 2.6666666667vw;
    font-size: 3.2vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content .googlemap {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content .googlemap {
    margin-top: 4.6666666667vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content .googlemap a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 115px;
  height: 35px;
  border: 1px solid #231815;
  border-radius: 9999px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .outline-box .outline-item .outline-content .googlemap a {
    width: 23.3333333333vw;
    height: 8vw;
    font-size: 2.9333333333vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .contact {
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .contact {
    margin-top: 5.3333333333vw;
  }
}
#contents.information .c-box01 .information-list .item .item-content .contact .contact-content span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #contents.information .c-box01 .information-list .item .item-content .contact .contact-content span {
    font-size: 3.2vw;
  }
}

.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;
  margin-top: 0;
  margin-bottom: 0;
}

body.post-php .editor-styles-wrapper {
  background-color: #faf3e1;
}

.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-top: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table {
  width: 100% !important;
  border-left: 1px #231815 solid !important;
  border-top: 1px #231815 solid !important;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th,
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  padding: 15px 12px !important;
  border-right: 1px #231815 solid !important;
  border-bottom: 1px #231815 solid !important;
  line-height: 1.5;
}
.editor-styles-wrapper .wp-block-flexible-table-block-table table th {
  color: #fff !important;
  background: #673b93 !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 .wp-block-image img {
  border-radius: 10px;
}
.editor-styles-wrapper .wp-block-image figcaption {
  margin: 10px 0 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #676767;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-image figcaption {
    margin-top: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.editor-styles-wrapper h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 10px 0 10px 25px;
  font-family: "Kaisei Opti", serif;
  font-size: 32px;
  line-height: 1.3;
  border-left: 4px solid #673b93;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h2 {
    margin-top: 10.6666666667vw;
    margin-bottom: 5.3333333333vw;
    padding: 1.3333333333vw 0 1.3333333333vw 4.6666666667vw;
    font-size: 5.0666666667vw;
    line-height: 1.6;
    border-left-width: 0.8vw;
  }
}
.editor-styles-wrapper h3 {
  margin-top: 35px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 22px;
  color: #673b93;
  line-height: 1.8;
  border-bottom: 1px solid #673b93;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h3 {
    margin-top: 8vw;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.editor-styles-wrapper p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper p {
    font-size: 3.4666666667vw;
  }
}
.editor-styles-wrapper p + p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper p + p {
    margin-top: 5.3333333333vw;
  }
}
.editor-styles-wrapper a {
  text-decoration: underline;
}
.editor-styles-wrapper blockquote {
  margin-top: 45px;
  margin-bottom: 60px;
  padding: 50px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper blockquote {
    margin-top: 8vw;
    margin-bottom: 8vw;
    padding: 8vw 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.editor-styles-wrapper blockquote *:first-child {
  margin-top: 0 !important;
}
.editor-styles-wrapper strong {
  font-weight: bold;
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations),
.editor-styles-wrapper ol {
  margin-top: 50px;
  list-style: none;
  padding: 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations),
  .editor-styles-wrapper ol {
    margin-top: 6.6666666667vw;
  }
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li,
.editor-styles-wrapper ol li {
  position: relative;
  line-height: 1.5;
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li:not(:nth-of-type(1)),
.editor-styles-wrapper ol li:not(:nth-of-type(1)) {
  margin-top: 20px;
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li {
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li {
    padding-left: 4.6666666667vw;
  }
}
.editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #74539a;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul:not(.block-editor-block-variation-picker__variations) li::before {
    top: 2vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}
.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: 4.6666666667vw;
  }
}
.editor-styles-wrapper ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(item) ". ";
}
.editor-styles-wrapper .is-style-round-btn {
  margin-top: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-round-btn {
    margin-top: 10.6666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.editor-styles-wrapper .is-style-round-btn.has-text-align-right {
  text-align: left;
}
.editor-styles-wrapper .is-style-round-btn.has-text-align-right a {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-round-btn.has-text-align-right a {
    margin-left: auto;
    margin-right: auto;
  }
}
.editor-styles-wrapper .is-style-round-btn.has-text-align-center {
  text-align: left;
}
.editor-styles-wrapper .is-style-round-btn.has-text-align-center a {
  margin-left: auto;
  margin-right: auto;
}
.editor-styles-wrapper .is-style-round-btn a {
  position: relative;
  min-width: 260px;
  max-width: 100%;
  width: fit-content;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 55px;
  border: 1px solid #231815;
  border-radius: 9999px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  color: #231815;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-round-btn a {
    min-width: 68vw;
    height: 16vw;
    margin-left: auto;
    margin-right: auto;
    padding-right: 9.3333333333vw;
    font-size: 3.4666666667vw;
  }
}
.editor-styles-wrapper .is-style-round-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 10px;
  height: 10px;
  background-image: url("../images/common/icn-ar-r-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-round-btn a::before {
    right: 5.3333333333vw;
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }
}
.editor-styles-wrapper .outline-box {
  margin-top: 40px;
  margin-bottom: 50px;
  border: 1px solid #d5d6da;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .outline-box {
    margin-top: 8vw;
    margin-bottom: 4vw;
  }
}
.editor-styles-wrapper .outline-box .outline-item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
.editor-styles-wrapper .outline-box .outline-item:not(:nth-of-type(1)) {
  border-top: 1px solid #d5d6da;
}
.editor-styles-wrapper .outline-box .outline-item .item-title {
  flex-shrink: 0;
  width: 180px;
  padding: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  background-color: #ebe4ee;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .outline-box .outline-item .item-title {
    width: 22.6666666667vw;
    padding: 5.3333333333vw 4vw;
    font-size: 3.2vw;
  }
}
.editor-styles-wrapper .outline-box .outline-item .item-content {
  flex-grow: 1;
  font-size: 16px;
  padding: 30px 40px;
  background-color: #fff;
}
.editor-styles-wrapper .outline-box .outline-item .item-content > *:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .outline-box .outline-item .item-content {
    padding: 5.3333333333vw 4.6666666667vw;
    font-size: 3.2vw;
  }
}
.editor-styles-wrapper .outline-box .outline-item .item-content iframe {
  width: 100%;
  height: 200px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .outline-box .outline-item .item-content iframe {
    height: 37.3333333333vw;
    margin-top: 4vw;
  }
}
.editor-styles-wrapper .contact-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box {
    flex-direction: column;
    gap: 8vw 0;
    padding: 0 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.editor-styles-wrapper .contact-box .col.left {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.left {
    width: 100%;
  }
}
.editor-styles-wrapper .contact-box .col.left .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.left .logo {
    width: 60vw;
    height: 21.3333333333vw;
    margin: 0 auto;
    border-radius: 1.3333333333vw;
  }
}
.editor-styles-wrapper .contact-box .col.left .logo img {
  max-width: 80%;
  max-height: 80%;
}
.editor-styles-wrapper .contact-box .col.right {
  flex-grow: 1;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right {
    width: 100%;
    margin-top: 0;
  }
}
.editor-styles-wrapper .contact-box .col.right .group-name {
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .group-name {
    font-size: 4.5333333333vw;
    text-align: center;
  }
}
.editor-styles-wrapper .contact-box .col.right .kana {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .kana {
    margin-top: 2.6666666667vw;
    font-size: 2.9333333333vw;
    text-align: center;
  }
}
.editor-styles-wrapper .contact-box .col.right .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .sns {
    justify-content: center;
    gap: 0 6vw;
    margin-top: 6.6666666667vw;
  }
}
.editor-styles-wrapper .contact-box .col.right .sns a img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .sns a img {
    width: 8vw;
  }
}
.editor-styles-wrapper .contact-box .col.right .contact-information {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 60px;
  margin-top: 40px;
  padding: 30px;
  border: 2px solid #231815;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .contact-information {
    flex-direction: column;
    gap: 5.3333333333vw 0;
    margin-top: 8vw;
    padding: 5.3333333333vw;
  }
}
.editor-styles-wrapper .contact-box .col.right .contact-information .information-headline {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .contact-information .information-headline {
    font-size: 4vw;
  }
}
.editor-styles-wrapper .contact-box .col.right .contact-information .information-content {
  flex-grow: 1;
}
.editor-styles-wrapper .contact-box .col.right .contact-information .information-content .tel,
.editor-styles-wrapper .contact-box .col.right .contact-information .information-content .email {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .contact-information .information-content .tel,
  .editor-styles-wrapper .contact-box .col.right .contact-information .information-content .email {
    font-size: 3.2vw;
  }
}
.editor-styles-wrapper .contact-box .col.right .contact-information .information-content .tel {
  margin-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .contact-information .information-content .tel {
    margin-bottom: 2vw;
  }
}
.editor-styles-wrapper .contact-box .col.right .contact-information .information-content .name {
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .contact-box .col.right .contact-information .information-content .name {
    margin-top: 4vw;
    font-size: 3.7333333333vw;
  }
}
