@charset "UTF-8";
@keyframes link_hover {
  0% {
    transform-origin: right bottom;
    scale: 1 1;
  }
  49% {
    transform-origin: right bottom;
    scale: 0 1;
  }
  50% {
    transform-origin: left bottom;
    scale: 0 1;
  }
  51% {
    transform-origin: left bottom;
    scale: 0 1;
  }
  100% {
    transform-origin: left bottom;
    scale: 1 1;
  }
}
@media (min-width: 769px) {
  html {
    font-size: min(0.667vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: min(1.334vw, 10px);
  }
}

body, h1, h2, h3, h4, h5, h6, p, figure, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img, svg {
  width: 100%;
  max-height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s linear;
}

sup {
  line-height: 1;
  font-size: 0.65em;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-weight: 500;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
}
body.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@keyframes link_hover {
  0% {
    right: 0;
    left: auto;
    width: 100%;
  }
  49% {
    right: 0;
    left: auto;
    width: 0;
  }
  50% {
    right: auto;
    left: 0;
    width: 0;
  }
  51% {
    right: auto;
    left: 0;
    width: 0;
  }
  100% {
    right: auto;
    left: 0;
    width: 100%;
  }
}
.gsap-marker-end, .gsap-marker-start, .gsap-marker-scroller-end, .gsap-marker-scroller-start {
  display: none !important;
}

#Wrapper {
  display: block;
  width: 100%;
}
@media (min-width: 769px) {
  #Wrapper {
    padding-top: 9.8rem;
  }
}
@media screen and (max-width: 768px) {
  #Wrapper {
    padding-top: 12rem;
  }
}

.header_outer {
  position: fixed;
  background: #fff;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
}
@media (min-width: 769px) {
  .header_outer {
    height: 9.8rem;
  }
}
@media screen and (max-width: 768px) {
  .header_outer {
    height: 12rem;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .header_inner {
    justify-content: space-between;
    gap: 4rem;
    padding: 0.5rem 3.5rem 0 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    justify-content: center;
  }
}

.header_logo {
  flex-shrink: 0;
  display: block;
  position: relative;
}
@media (min-width: 769px) {
  .header_logo {
    width: 14rem;
    height: 3.3rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 21.8rem;
    height: 4.6rem;
  }
}
.header_logo span {
  display: block;
  position: absolute;
  width: 100%;
  transition: 0.2s linear;
}
@media screen and (max-width: 768px) {
  .header_logo.is-fixed {
    width: 43.4rem;
    translate: 0 10.6rem;
  }
}
@media (min-width: 769px) {
  .header_logo.is-fixed span {
    width: 309.286%;
    translate: 6.467% 22.223%;
  }
}
.header_logo:hover {
  opacity: 0.7;
}

@media (min-width: 769px) {
  .nav_outer {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .nav_outer {
    position: fixed;
    background: #fff;
    width: 58rem;
    left: 0;
    top: 0;
    bottom: 0;
    translate: -50% 0;
    opacity: 0;
    transition: translate 0.2s ease-in 0s, opacity 0.3s linear 0s;
  }
  .nav_outer.is-opened {
    translate: 0 0;
    opacity: 1;
    transition: translate 0.3s ease-out 0s, opacity 0.3s linear 0s;
  }
  .nav_outer:not(.is-opened) {
    pointer-events: none;
  }
}

.nav_inner {
  display: flex;
}
@media (min-width: 769px) {
  .nav_inner {
    align-items: center;
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 7.6rem;
    padding: 20rem 0 8rem 9rem;
  }
}

.nav_list {
  display: flex;
}
@media (min-width: 769px) {
  .nav_list {
    align-items: center;
    gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 7.6rem;
  }
}
.nav_list > li {
  display: flex;
  position: relative;
}
@media (min-width: 769px) {
  .nav_list > li {
    align-items: center;
    gap: 0.2rem;
    height: 9.3rem;
  }
  .nav_list > li:has(.nav_child)::after {
    content: "";
    position: relative;
    background-image: url(../img/common/arrow_up_k.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.1rem;
    height: 0.7rem;
    translate: 0 -5%;
    scale: 1 -1;
  }
  .nav_list > li:hover::after {
    scale: 1 1;
  }
  .nav_list > li:hover .nav_child {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .nav_list > li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
}

.nav_index {
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .nav_index {
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .nav_index {
    height: 2.9rem;
  }
}
.nav_index:hover {
  opacity: 0.7;
}

@media (min-width: 769px) {
  .nav_child {
    position: absolute;
    gap: 1.7rem;
    background: #fff;
    width: 17.2rem;
    height: 0;
    left: 50%;
    top: 1.3rem;
    translate: -50% 0;
    overflow: hidden;
  }
}

.nav_child_list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .nav_child_list {
    align-items: center;
    gap: 1.7rem;
    padding: 7.5rem 0 3.3rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_child_list {
    align-items: flex-start;
    gap: 4.5rem;
    padding: 0 0 0.4rem;
  }
}

.nav_link {
  display: block;
}
@media (min-width: 769px) {
  .nav_link {
    height: 11px;
  }
}
@media screen and (max-width: 768px) {
  .nav_link {
    height: 2.1rem;
  }
}
.nav_link:hover {
  opacity: 0.7;
}

.nav_buttons {
  display: flex;
}

.nav_button {
  position: relative;
  fill: #231815;
  color: #231815;
}
@media (min-width: 769px) {
  .nav_button {
    width: 155px;
    height: 42px;
  }
}
@media screen and (max-width: 768px) {
  .nav_button {
    width: 33.8rem;
    height: 9.2rem;
  }
}
.nav_button::after {
  content: "";
  position: absolute;
  border: 1px solid #91908f;
  inset: 0;
}
.nav_button:hover {
  background: #231815;
  fill: #fff;
}
.nav_button:hover::after {
  border-color: #231815;
}

.nav_switch {
  position: absolute;
  width: 6rem;
  height: 6rem;
  left: 5rem;
  top: 3rem;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav_switch {
    display: none;
  }
}
.nav_switch::before, .nav_switch::after {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 5%;
  left: 0;
  right: 0;
}
.nav_switch::before {
  top: 11.667%;
}
.nav_switch::after {
  bottom: 11.667%;
}
.nav_switch > span {
  position: absolute;
  background: #000;
  width: 100%;
  height: 5%;
  inset: 0;
  margin: auto;
}
.nav_switch.is-opened::before, .nav_switch.is-opened::after {
  inset: 0;
  margin: auto;
}
.nav_switch.is-opened::before {
  rotate: 45deg;
}
.nav_switch.is-opened::after {
  rotate: -45deg;
}
.nav_switch.is-opened > span {
  display: none;
}

.main_outer {
  display: block;
  background: #fff;
  width: 100%;
  contain: paint;
}

.breadcrumb_list {
  display: flex;
  align-items: flex-start;
  padding: 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb_list {
    display: none;
  }
}
.breadcrumb_list > li + li {
  margin-left: 0.5rem;
}
.breadcrumb_list > li + li::before {
  content: "＞";
  display: inline-block;
  line-height: 1.667;
  font-size: 1.2rem;
}

.breadcrumb_link {
  line-height: 1.667;
  font-size: 1.2rem;
}
.breadcrumb_link:hover {
  opacity: 0.7;
}

.pagetop_anchor {
  display: block;
  position: fixed;
  line-height: 0;
  transition: opacity 0.15s cubic-bezier(0.25, 0.25, 0.75, 0.75) 0s;
  z-index: 900;
}
@media (min-width: 769px) {
  .pagetop_anchor {
    width: 4rem;
    height: 4rem;
    right: 2rem;
    bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .pagetop_anchor {
    width: 8rem;
    height: 8rem;
    right: 3rem;
    bottom: 4.8rem;
  }
}
.pagetop_anchor::before {
  content: "";
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  inset: 0;
  transition: 0.2s linear;
}
.pagetop_anchor img {
  position: relative;
  transition: 0.2s linear;
}
.pagetop_anchor:hover::before, .pagetop_anchor:hover img {
  opacity: 0.7;
}
.pagetop_anchor:not(.is-show) {
  opacity: 0;
  pointer-events: none;
}

.footer_outer {
  position: relative;
  background: #e6e5e3;
}

.footer_inner {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .footer_inner {
    display: grid;
    justify-content: space-between;
    align-items: flex-start;
    grid-template-columns: 22.3rem 1fr;
    gap: 7.5rem 9rem;
    max-width: 150rem;
    padding: 8.3rem 10rem 9rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6rem;
    padding: 5.5rem 5rem;
  }
}

.footer_logo_a {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer_logo_a {
    width: 25.1rem;
  }
}
.footer_logo_a:hover {
  opacity: 0.7;
}

.footer_nav {
  display: flex;
  position: relative;
}
@media (min-width: 769px) {
  .footer_nav {
    justify-content: space-between;
    gap: 9rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_nav {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .footer_list {
    display: flex;
    gap: 7rem;
    padding-top: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_list {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 47.693% 52%;
    grid-template-rows: auto auto;
    gap: 4.8rem 0;
    width: 100%;
  }
}
.footer_list > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .footer_list > li {
    gap: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_list > li {
    gap: 4rem;
  }
}

.footer_index {
  display: block;
}
@media (min-width: 769px) {
  .footer_index {
    height: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_index {
    height: 2.7rem;
  }
}
.footer_index:hover {
  opacity: 0.7;
}

.footer_child {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .footer_child {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_child {
    gap: 4rem;
  }
}

.footer_link {
  display: block;
}
@media (min-width: 769px) {
  .footer_link {
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_link {
    height: 1.9rem;
  }
}
.footer_link:hover {
  opacity: 0.7;
}

@media (min-width: 769px) {
  .footer_shop {
    position: relative;
    width: 22.6rem;
    height: 6.1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_shop {
    position: absolute;
    width: 34rem;
    height: 9.4rem;
    right: 0;
    top: 14.8rem;
  }
}
.footer_shop::after {
  content: "";
  position: absolute;
  border: 1px solid #91908f;
  inset: 0;
}
.footer_shop svg {
  position: relative;
}
.footer_shop:hover {
  background: #231815;
  fill: #fff;
}
.footer_shop:hover::after {
  border-color: #231815;
}

.footer_sns_list {
  display: flex;
  justify-content: flex-end;
  position: absolute;
}
@media (min-width: 769px) {
  .footer_sns_list {
    gap: 2rem;
    right: 2.5rem;
    top: 9.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns_list {
    gap: 4rem;
    right: 0;
    top: -11.4rem;
  }
}

.footer_sns {
  display: block;
}
@media (min-width: 769px) {
  .footer_sns {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_sns {
    width: 5.2rem;
    height: 5.2rem;
  }
}
.footer_sns:hover {
  opacity: 0.7;
}

.footer_caption {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .footer_caption {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_caption {
    gap: 1.8rem;
    padding-top: 0.5rem;
  }
}

.footer_logo_m {
  display: block;
}
@media (min-width: 769px) {
  .footer_logo_m {
    width: 8.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_logo_m {
    width: 13.8rem;
  }
}
.footer_logo_m:hover {
  opacity: 0.7;
}

.footer_copyright {
  line-height: 1;
}
@media (min-width: 769px) {
  .footer_copyright {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    font-size: 1.8rem;
  }
}

.js-parallax {
  position: relative;
  overflow: visible;
}

.js-parallax_set {
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: visible !important;
}

.js-parallax_box {
  position: relative;
  height: 100%;
  contain: paint;
  transition: 0s;
}

.js-parallax_img {
  position: relative;
  height: 200%;
  transition: 0s;
}
.js-parallax_img img {
  transform: translateY(-25%);
}
.js-parallax_img video {
  width: 100%;
  min-height: 100%;
  transform: translateY(-25%);
}

.js-accSwitch {
  cursor: pointer;
}

.js-accElement {
  height: 0;
  overflow: hidden;
  transition: height 0.4s linear 0s;
}

.js-animation.fadeIn {
  opacity: 0;
  transition: opacity 0.7s linear 0s;
}
.js-animation.fadeIn.is-animated {
  opacity: 1;
}
.js-animation.blurIn {
  opacity: 0;
  filter: blur(5px);
  will-change: filter;
  transition: opacity 0.7s linear 0s, filter 0.7s ease 0s;
}
.js-animation.blurIn.is-animated {
  opacity: 1;
  filter: blur(0);
}

.lnk01 {
  position: relative;
  padding-bottom: 0.667em;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media (min-width: 769px) {
  .lnk01 {
    padding-right: 2.834em;
  }
}
@media screen and (max-width: 768px) {
  .lnk01 {
    padding-right: 1.35em;
  }
}
.lnk01::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  scale: 1 1;
}
@media (min-width: 769px) {
  .lnk01::before {
    border-bottom: 0.05rem solid;
  }
}
@media screen and (max-width: 768px) {
  .lnk01::before {
    border-bottom: 0.08rem solid;
  }
}
.lnk01 span {
  position: relative;
}
.lnk01:hover::before, a:hover .lnk01::before {
  animation: link_hover 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.lnk02 {
  position: relative;
  padding-bottom: 0.667em;
  letter-spacing: 0.2em;
  line-height: 1;
}
.lnk02::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: right bottom;
  scale: 1 1;
}
.lnk02 span {
  position: relative;
}
.lnk02:hover::before, a:hover .lnk02::before {
  animation: link_hover 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.lnk02.col1::before {
  color: #999;
}

.btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid;
}
@media (min-width: 769px) {
  .btn01 {
    gap: 0.8rem;
    border-radius: 0.3rem;
    width: 22rem;
    height: 5rem;
    line-height: 1.667;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .btn01 {
    gap: 3.5rem;
    border-radius: 1rem;
    width: 63rem;
    height: 12.6rem;
    line-height: 0.715;
    font-size: 2.8rem;
  }
}
.btn01 svg.cart {
  width: 1.5em;
  height: 1.5em;
}
.btn01.col1 {
  background: #000;
  border-color: #000;
  fill: none;
  stroke: #fff;
  color: #fff;
}
.btn01.col1:hover {
  background: #fff;
  stroke: #000;
  color: #000;
}

.btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .btn02 {
    gap: 1rem;
    border: 0.05rem solid;
    border-radius: 0.3rem;
    width: 35rem;
    height: 9rem;
    line-height: 1.667;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .btn02 {
    gap: 1.5rem;
    border: 1px solid;
    border-radius: 1rem;
    width: 63rem;
    height: 18rem;
    line-height: 1.429;
    font-size: 2.8rem;
  }
}
.btn02 svg.window {
  width: 1.334em;
  height: 1.084em;
}
.btn02 svg.cart {
  width: 1.667em;
  height: 1.667em;
}
.btn02.col1 {
  background: #fff;
  border-color: #000;
  fill: #000;
  stroke: #000;
  color: #000;
}
.btn02.col1:hover {
  background: #000;
  stroke: #fff;
  color: #fff;
}
.btn02.col2 {
  background: #000;
  border-color: #000;
  stroke: #fff;
  color: #fff;
}
.btn02.col2:hover {
  background: #fff;
  stroke: #000;
  color: #000;
}

.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .btn03 {
    gap: 1rem;
    border: 0.05rem solid;
    border-radius: 0.3rem;
    width: 35rem;
    height: 6rem;
    line-height: 1.667;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .btn03 {
    gap: 1.5rem;
    border: 1px solid;
    border-radius: 1rem;
    width: 63rem;
    height: 12rem;
    line-height: 1.667;
    font-size: 2.4rem;
  }
}
.btn03 i.faq {
  width: 2.417em;
  height: 2.167em;
}
.btn03 svg.back {
  position: absolute;
  width: 0.667em;
  height: 1.084em;
  left: 1.917em;
  scale: -1 1;
}
.btn03:hover {
  opacity: 0.7;
}
.btn03.col1 {
  background: #fff;
  border-color: #000;
  fill: #000;
  stroke: #000;
  color: #000;
}
.btn03.col2 {
  background: #000;
  border-color: #000;
  stroke: #fff;
  color: #fff;
}

.ttl01 {
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media (min-width: 769px) {
  .ttl01 {
    line-height: 1.75;
    font-size: 3.2rem;
  }
  .ttl01 > h2 {
    font: inherit;
  }
  .ttl01 > h2:first-of-type {
    margin-top: -0.375em;
  }
  .ttl01 > h2:last-of-type {
    margin-bottom: -0.375em;
  }
}
@media screen and (max-width: 768px) {
  .ttl01 {
    line-height: 1.75;
    font-size: 5.2rem;
  }
  .ttl01 > h2 {
    font: inherit;
  }
  .ttl01 > h2:first-of-type {
    margin-top: -0.375em;
  }
  .ttl01 > h2:last-of-type {
    margin-bottom: -0.375em;
  }
}

.ttl02 {
  font-weight: 700;
}
@media (min-width: 769px) {
  .ttl02 {
    line-height: 1.667;
    font-size: 2.4rem;
  }
  .ttl02 > h3 {
    font: inherit;
  }
  .ttl02 > h3:first-of-type {
    margin-top: -0.333em;
  }
  .ttl02 > h3:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .ttl02 {
    line-height: 1.75;
    font-size: 4rem;
  }
  .ttl02 > h3 {
    font: inherit;
  }
  .ttl02 > h3:first-of-type {
    margin-top: -0.375em;
  }
  .ttl02 > h3:last-of-type {
    margin-bottom: -0.375em;
  }
}

.ttl03 {
  font-weight: 700;
}
@media (min-width: 769px) {
  .ttl03 {
    line-height: 1.889;
    font-size: 1.8rem;
  }
  .ttl03 > h4 {
    font: inherit;
  }
  .ttl03 > h4:first-of-type {
    margin-top: -0.444em;
  }
  .ttl03 > h4:last-of-type {
    margin-bottom: -0.444em;
  }
}
@media screen and (max-width: 768px) {
  .ttl03 {
    line-height: 1.5;
    font-size: 3.2rem;
  }
  .ttl03 > h4 {
    font: inherit;
  }
  .ttl03 > h4:first-of-type {
    margin-top: -0.25em;
  }
  .ttl03 > h4:last-of-type {
    margin-bottom: -0.25em;
  }
}

.ttl04 {
  font-weight: 700;
}
@media (min-width: 769px) {
  .ttl04 {
    line-height: 2.429;
    font-size: 1.4rem;
  }
  .ttl04 > h5 {
    font: inherit;
  }
  .ttl04 > h5:first-of-type {
    margin-top: -0.714em;
  }
  .ttl04 > h5:last-of-type {
    margin-bottom: -0.714em;
  }
}
@media screen and (max-width: 768px) {
  .ttl04 {
    line-height: 1.5;
    font-size: 3.2rem;
  }
  .ttl04 > h5 {
    font: inherit;
  }
  .ttl04 > h5:first-of-type {
    margin-top: -0.25em;
  }
  .ttl04 > h5:last-of-type {
    margin-bottom: -0.25em;
  }
}

.ttl05 {
  font-weight: 700;
}
@media (min-width: 769px) {
  .ttl05 {
    line-height: 1.667;
    font-size: 2.4rem;
  }
  .ttl05 > h3 {
    font: inherit;
  }
  .ttl05 > h3:first-of-type {
    margin-top: -0.333em;
  }
  .ttl05 > h3:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .ttl05 {
    line-height: 1.667;
    font-size: 4.8rem;
  }
  .ttl05 > h3 {
    font: inherit;
  }
  .ttl05 > h3:first-of-type {
    margin-top: -0.333em;
  }
  .ttl05 > h3:last-of-type {
    margin-bottom: -0.333em;
  }
}

.ttl06 {
  font-weight: 700;
}
@media (min-width: 769px) {
  .ttl06 {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .ttl06 > h4 {
    font: inherit;
  }
  .ttl06 > h4:first-of-type {
    margin-top: -0.25em;
  }
  .ttl06 > h4:last-of-type {
    margin-bottom: -0.25em;
  }
}
@media screen and (max-width: 768px) {
  .ttl06 {
    line-height: 1.5;
    font-size: 3.2rem;
  }
  .ttl06 > h4 {
    font: inherit;
  }
  .ttl06 > h4:first-of-type {
    margin-top: -0.25em;
  }
  .ttl06 > h4:last-of-type {
    margin-bottom: -0.25em;
  }
}

.txt01 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt01 {
    line-height: 2.429;
    font-size: 1.4rem;
  }
  .txt01 > p {
    font: inherit;
  }
  .txt01 > p:first-of-type {
    margin-top: -0.714em;
  }
  .txt01 > p:last-of-type {
    margin-bottom: -0.714em;
  }
}
@media screen and (max-width: 768px) {
  .txt01 {
    line-height: 2;
    font-size: 2.8rem;
  }
  .txt01 > p {
    font: inherit;
  }
  .txt01 > p:first-of-type {
    margin-top: -0.5em;
  }
  .txt01 > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
.txt01.left {
  text-align: left;
}
.txt01.right {
  text-align: right;
}
.txt01.center {
  text-align: center;
}

.txt02 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt02 {
    line-height: 2.429;
    font-size: 1.4rem;
  }
  .txt02 > p {
    font: inherit;
  }
  .txt02 > p:first-of-type {
    margin-top: -0.714em;
  }
  .txt02 > p:last-of-type {
    margin-bottom: -0.714em;
  }
}
@media screen and (max-width: 768px) {
  .txt02 {
    line-height: 1.5;
    font-size: 2.8rem;
  }
  .txt02 > p {
    font: inherit;
  }
  .txt02 > p:first-of-type {
    margin-top: -0.25em;
  }
  .txt02 > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
.txt02.left {
  text-align: left;
}
.txt02.right {
  text-align: right;
}
.txt02.center {
  text-align: center;
}

.txt03 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt03 {
    line-height: 1.858;
    font-size: 1.4rem;
  }
  .txt03 > p {
    font: inherit;
  }
  .txt03 > p:first-of-type {
    margin-top: -0.428em;
  }
  .txt03 > p:last-of-type {
    margin-bottom: -0.428em;
  }
}
@media screen and (max-width: 768px) {
  .txt03 {
    line-height: 1.5;
    font-size: 2.8rem;
  }
  .txt03 > p {
    font: inherit;
  }
  .txt03 > p:first-of-type {
    margin-top: -0.25em;
  }
  .txt03 > p:last-of-type {
    margin-bottom: -0.25em;
  }
}
.txt03.left {
  text-align: left;
}
.txt03.right {
  text-align: right;
}
.txt03.center {
  text-align: center;
}

.txt04 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt04 {
    line-height: 1.643;
    font-size: 1.4rem;
  }
  .txt04 > p {
    font: inherit;
  }
  .txt04 > p:first-of-type {
    margin-top: -0.321em;
  }
  .txt04 > p:last-of-type {
    margin-bottom: -0.321em;
  }
}
@media screen and (max-width: 768px) {
  .txt04 {
    line-height: 1.643;
    font-size: 2.8rem;
  }
  .txt04 > p {
    font: inherit;
  }
  .txt04 > p:first-of-type {
    margin-top: -0.321em;
  }
  .txt04 > p:last-of-type {
    margin-bottom: -0.321em;
  }
}
.txt04.left {
  text-align: left;
}
.txt04.right {
  text-align: right;
}
.txt04.center {
  text-align: center;
}

.txt05 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt05 {
    line-height: 2;
    font-size: 1.4rem;
  }
  .txt05 > p {
    font: inherit;
  }
  .txt05 > p:first-of-type {
    margin-top: -0.5em;
  }
  .txt05 > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media screen and (max-width: 768px) {
  .txt05 {
    line-height: 2;
    font-size: 2.8rem;
  }
  .txt05 > p {
    font: inherit;
  }
  .txt05 > p:first-of-type {
    margin-top: -0.5em;
  }
  .txt05 > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
.txt05.left {
  text-align: left;
}
.txt05.right {
  text-align: right;
}
.txt05.center {
  text-align: center;
}

.txt06 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt06 {
    line-height: 2.834;
    font-size: 1.2rem;
  }
  .txt06 > p {
    font: inherit;
  }
  .txt06 > p:first-of-type {
    margin-top: -0.916em;
  }
  .txt06 > p:last-of-type {
    margin-bottom: -0.916em;
  }
}
@media screen and (max-width: 768px) {
  .txt06 {
    line-height: 2.154;
    font-size: 2.6rem;
  }
  .txt06 > p {
    font: inherit;
  }
  .txt06 > p:first-of-type {
    margin-top: -0.576em;
  }
  .txt06 > p:last-of-type {
    margin-bottom: -0.576em;
  }
}
.txt06.left {
  text-align: left;
}
.txt06.right {
  text-align: right;
}
.txt06.center {
  text-align: center;
}

.txt07 {
  letter-spacing: 0.02em;
  text-align: justify;
}
@media (min-width: 769px) {
  .txt07 {
    line-height: 1.667;
    font-size: 1.2rem;
  }
  .txt07 > p {
    font: inherit;
  }
  .txt07 > p:first-of-type {
    margin-top: -0.333em;
  }
  .txt07 > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .txt07 {
    line-height: 1.286;
    font-size: 2.8rem;
  }
  .txt07 > p {
    font: inherit;
  }
  .txt07 > p:first-of-type {
    margin-top: -0.142em;
  }
  .txt07 > p:last-of-type {
    margin-bottom: -0.142em;
  }
}
.txt07.left {
  text-align: left;
}
.txt07.right {
  text-align: right;
}
.txt07.center {
  text-align: center;
}

.att01 {
  letter-spacing: 0.01em;
  text-align: justify;
}
@media (min-width: 769px) {
  .att01 {
    line-height: 2;
    font-size: 1.2rem;
  }
  .att01 > p {
    font: inherit;
  }
  .att01 > p:first-of-type {
    margin-top: -0.5em;
  }
  .att01 > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
@media screen and (max-width: 768px) {
  .att01 {
    line-height: 2;
    font-size: 2.4rem;
  }
  .att01 > p {
    font: inherit;
  }
  .att01 > p:first-of-type {
    margin-top: -0.5em;
  }
  .att01 > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
.att01.left {
  text-align: left;
}
.att01.right {
  text-align: right;
}
.att01.center {
  text-align: center;
}

.att02 {
  letter-spacing: 0.01em;
  text-align: justify;
}
@media (min-width: 769px) {
  .att02 {
    line-height: 1.667;
    font-size: 1.2rem;
  }
  .att02 > p {
    font: inherit;
  }
  .att02 > p:first-of-type {
    margin-top: -0.333em;
  }
  .att02 > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
@media screen and (max-width: 768px) {
  .att02 {
    line-height: 1.667;
    font-size: 2.4rem;
  }
  .att02 > p {
    font: inherit;
  }
  .att02 > p:first-of-type {
    margin-top: -0.333em;
  }
  .att02 > p:last-of-type {
    margin-bottom: -0.333em;
  }
}
.att02.left {
  text-align: left;
}
.att02.right {
  text-align: right;
}
.att02.center {
  text-align: center;
}

.att03 {
  letter-spacing: 0.01em;
  text-align: justify;
}
@media (min-width: 769px) {
  .att03 {
    line-height: 2.2;
    font-size: 1rem;
  }
  .att03 > p {
    font: inherit;
  }
  .att03 > p:first-of-type {
    margin-top: -0.6em;
  }
  .att03 > p:last-of-type {
    margin-bottom: -0.6em;
  }
}
@media screen and (max-width: 768px) {
  .att03 {
    line-height: 2.182;
    font-size: 2.2rem;
  }
  .att03 > p {
    font: inherit;
  }
  .att03 > p:first-of-type {
    margin-top: -0.59em;
  }
  .att03 > p:last-of-type {
    margin-bottom: -0.59em;
  }
}
.att03.left {
  text-align: left;
}
.att03.right {
  text-align: right;
}
.att03.center {
  text-align: center;
}

.att04 {
  letter-spacing: 0.01em;
  text-align: justify;
}
@media (min-width: 769px) {
  .att04 {
    line-height: 1.7;
    font-size: 1rem;
  }
  .att04 > p {
    font: inherit;
  }
  .att04 > p:first-of-type {
    margin-top: -0.35em;
  }
  .att04 > p:last-of-type {
    margin-bottom: -0.35em;
  }
}
@media screen and (max-width: 768px) {
  .att04 {
    line-height: 2;
    font-size: 2.4rem;
  }
  .att04 > p {
    font: inherit;
  }
  .att04 > p:first-of-type {
    margin-top: -0.5em;
  }
  .att04 > p:last-of-type {
    margin-bottom: -0.5em;
  }
}
.att04.left {
  text-align: left;
}
.att04.right {
  text-align: right;
}
.att04.center {
  text-align: center;
}