@charset "UTF-8";
* {
  box-sizing: border-box;
  word-break: break-word;
}

img {
  max-width: 100%;
}

a.link-tel {
  text-decoration: underline;
}
@media (min-width: 769px) {
  a.link-tel {
    text-decoration: none;
    pointer-events: none;
  }
}

a.disable {
  pointer-events: none;
}

.txt-underline {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none; /* リンクを無効化 */
    cursor: default; /* カーソルを通常に */
  }
}
.font-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

@-webkit-keyframes arrowSlider {
  100% {
    transform: translateX(150%);
  }
}
@-moz-keyframes arrowSlider {
  100% {
    transform: translateX(150%);
  }
}
@keyframes arrowSlider {
  100% {
    transform: translateX(150%);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-moz-keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes bgSliderL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  40% {
    opacity: 0;
  }
  51% {
    opacity: 0.3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-moz-keyframes bgSliderL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  40% {
    opacity: 0;
  }
  51% {
    opacity: 0.3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes bgSliderL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  40% {
    opacity: 0;
  }
  51% {
    opacity: 0.3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes bgMenuSliderL {
  0% {
    opacity: 1;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-moz-keyframes bgMenuSliderL {
  0% {
    opacity: 1;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes bgMenuSliderL {
  0% {
    opacity: 1;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes bgSliderR {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@-moz-keyframes bgSliderR {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes bgSliderR {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
/* ボタン用のゆらぎアニメーション */
@keyframes css-wobble {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  100% {
    transform: scale(1.05) rotate(5deg);
  }
}
/* メインビジュアル用の大きなゆらぎアニメーション */
@keyframes css-wobble-large {
  0% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1.05) rotate(3deg);
  }
}
@keyframes scrollDonwIcon {
  0% {
    transform: translate3d(0, -3.125rem, 0) scale(0.5);
    opacity: 0;
  }
  40% {
    transform: translate3d(0, 0.1875rem, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0.1875rem, 0) scale(0.5);
    opacity: 0;
  }
}
@keyframes scrollDonwIconSP {
  0% {
    transform: translate3d(0, -1.5625rem, 0) scale(0.5);
    opacity: 0;
  }
  40% {
    transform: translate3d(0, 0.09375rem, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0.09375rem, 0) scale(0.5);
    opacity: 0;
  }
}
@keyframes scrollDonwLine {
  0% {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translate3d(0, 150%, 0);
    opacity: 0;
  }
}
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes slidein {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
/* 横スクロール（無限ループ）（PC用） */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* 横スクロール （無限ループ）（SP用） */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes telop-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.policy-content {
  position: relative;
  letter-spacing: 0.08em;
}
.policy-content .policy-content__inner {
  padding: 60px 0 60px 0;
  position: relative;
  margin: 0 auto;
  width: calc(100% - 120px);
}
.policy-content .policy-content__inner .policy-content__policy-txt {
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  color: #fff;
}
.policy-content .policy-content__inner .policy-row .policy-row__item {
  margin-top: 50px;
  color: #fff;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .ttl {
  font-weight: 600;
  font-size: 26px;
  line-height: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8ceb9;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content {
  margin-top: 20px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt {
  margin-top: 10px;
  font-size: 16px;
  line-height: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt a {
  text-decoration: underline;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__ttl1 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  margin-top: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item {
  margin-top: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item.type1 {
  margin-top: 20px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl {
  display: flex;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl .ttl-number {
  width: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl .ttl-text {
  width: calc(100% - 30px);
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl.type1 .ttl-text {
  font-weight: 500;
  font-size: 16px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-text.type1 {
  padding-left: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list {
  margin-top: 30px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list .contact-list__item {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list .contact-list__item .contact-list__item__ttl {
  width: 88px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #deb523;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #362f28;
}
.policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list .contact-list__item .contact-list__item__text {
  width: calc(100% - 88px - 10px);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 768px) {
  .policy-content .policy-content__inner {
    padding: 30px 0 0 0;
    width: calc(100% - 46px);
    display: block;
  }
  .policy-content .policy-content__inner .policy-content__policy-txt {
    font-size: 15px;
    line-height: 24px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item {
    margin-top: 45px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .ttl {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 10px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content {
    margin-top: 15px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__ttl1 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item {
    margin-top: 25px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item.type1 {
    margin-top: 20px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl {
    display: flex;
    font-size: 16px;
    line-height: 24px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl .ttl-number {
    width: 22px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl .ttl-text {
    width: calc(100% - 22px);
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-ttl.type1 .ttl-text {
    font-size: 14px;
    line-height: 24px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .policy-row__item__content__txt-indent .policy-row__item__content__txt-indent__item .policy-row__item__content__txt-indent__item-text.type1 {
    padding-left: 22px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list {
    margin-top: 30px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list .contact-list__item {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list .contact-list__item .contact-list__item__ttl {
    width: 72px;
    height: 27px;
    font-size: 13px;
  }
  .policy-content .policy-content__inner .policy-row .policy-row__item .policy-row__item__content .contact-list .contact-list__item .contact-list__item__text {
    width: calc(100% - 72px - 10px);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
  }
}
/*# sourceMappingURL=map/policy.css.map */