@charset "UTF-8";
/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
* {
  box-sizing: border-box;
}

:root {
  --bg-yellow: #A89952;
  --bg-dark_yellow: #93753f;
  --bg-dark_red: #280305;
  --bg-green: #06C755;
  --bg-dark_green: #04b139;
  --bg-purple: #ad629d;
  --bg-gray: #5E5E5E;
  --color-yellow: #A89952;
  --color-dark_red: #280305;
  --color-gray: #5E5E5E;
  --font-Cor_Gar: "Cormorant Garamond", serif;
}

.txt-eng {
  font-family: "Cormorant Garamond", serif;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.01rem;
  color: #280305;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body #cm-header {
    width: 120rem;
  }
  body #wrapper {
    max-width: 120rem;
  }
}
.w-brall {
  word-break: break-all;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #280305;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #280305;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

pre, code, kbd, samp, var, .font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: var(--font-yu-gothic);
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 120rem;
    padding: 0 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 2vw;
  }
}

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

#cm-header {
  position: fixed;
  width: 100%;
  padding: 1vw;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 999;
}
#cm-header a {
  text-decoration: none !important;
}
#cm-header .header-inner {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 1.5rem;
}
#cm-header .header-inner__logo {
  position: relative;
  width: 50%;
  z-index: 99;
}
#cm-header .header-inner__logo img {
  width: auto;
  height: auto;
}
#cm-header .header-inner__right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  #cm-header {
    padding: 2vw;
  }
  #cm-header .header-inner__right .list-lang a {
    padding: 0 0.6rem;
  }
}
@media only screen and (min-width: 768px) {
  #cm-header .header-inner {
    padding: 1rem 1rem 1rem 3rem;
  }
  #cm-header .header-inner__logo {
    width: 35rem;
  }
  #cm-header .header-inner__logo img {
    width: auto;
    height: 4.8rem;
  }
  #cm-header .header-inner__right {
    width: calc(100% - 35rem);
  }
}

/*---------- START list-lang ----------*/
.list-lang {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 999;
}
.list-lang a {
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: var(--font-Cor_Gar);
  color: #280305;
  padding: 0 1.5rem;
  border-right: 1px solid #D0D0D0;
  opacity: 0.5;
}
.list-lang a.active {
  opacity: 1;
}
.list-lang li:last-child a {
  border: none;
}
@media only screen and (min-width: 768px) {
  .list-lang a:hover {
    opacity: 1;
  }
}

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 6rem;
  height: 6rem;
  padding: 0.5rem 0 0 0;
  gap: 0.5rem;
  border: none;
  z-index: 9999;
}
.trigger-menu .icon, .trigger-menu .txt {
  position: relative;
  display: block;
}
.trigger-menu .icon {
  width: 3.2rem;
  height: 2rem;
}
.trigger-menu .icon span {
  display: block;
  position: absolute;
  width: 3.2rem;
  height: 0.2rem;
  background: var(--bg-dark_red);
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.trigger-menu .icon span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.trigger-menu .icon span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}
.trigger-menu .icon span:nth-child(3) {
  bottom: 0;
  transform-origin: left center;
}
.trigger-menu .txt {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--font-Cor_Gar);
  color: var(--color-dark_red);
}
.trigger-menu.active .icon span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 0.6rem;
  top: -0.2rem;
}
.trigger-menu.active .icon span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active .icon span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 0.6rem;
  bottom: -0.2rem;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    align-items: flex-end;
    align-content: end;
    padding: 0;
  }
}

/*---------- START GNAV ----------*/
.l-menu_contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #F6F6F6;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  border: none;
  padding: 10rem 1.5rem 10rem;
  overflow: auto;
}
.l-menu_contents__main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.l-menu_contents.is-visible {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
.l-menu_contents .access-link img {
  width: 25px;
}
@media only screen and (max-width: 767px) {
  .l-menu_contents .infor-contact {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-menu_contents {
    padding-top: 20rem;
  }
  .l-menu_contents__main .gnav {
    width: 65%;
  }
  .l-menu_contents__main .infor-contact {
    width: 35%;
  }
}

.gnav {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.gnav__col {
  width: auto;
}
.gnav__col:first-child {
  width: 100%;
}
.gnav__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gnav__item {
  margin-bottom: 1.5rem;
}
.gnav__item .sub-menu__list {
  padding-left: 1rem;
}
.gnav__item .sub-menu__link {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.4rem;
  padding-left: 2rem;
  margin-top: 0.7rem;
}
.gnav__item .sub-menu__link:before {
  position: absolute;
  content: "";
  background: var(--bg-dark_red);
  width: 6px;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.gnav__link {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 1rem;
}
.gnav__link:before {
  position: absolute;
  content: "";
  background: var(--bg-yellow);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .gnav__col {
    width: 50%;
  }
  .gnav__item {
    margin-bottom: 3rem;
  }
  .gnav__item .sub-menu__link {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .gnav__link {
    font-size: 1.6rem;
  }
}

/*---------- START infor-contact ----------*/
.infor-contact {
  width: 100%;
  font-weight: 500;
}
.infor-contact__tel {
  background: url("../common_img/icon-phone.webp") no-repeat center left;
  background-size: 2.5rem !important;
  padding-left: 3rem;
  font-size: 2.6rem;
}
.infor-contact__time {
  font-size: 1.4rem;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .infor-contact__tel {
    background-size: 3.2rem !important;
    padding-left: 4.5rem;
    font-size: 3.2rem;
  }
}

/*---------- START infor-contact ----------*/
.btn-infor a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 1rem;
  border-radius: 2px;
}
.btn-infor a span {
  background-size: 2.4rem !important;
  padding-left: 3.5rem;
}
.btn-infor .btn-contact {
  background: var(--bg-yellow);
}
.btn-infor .btn-contact span {
  background: url("../images/mail.webp") no-repeat center left;
}
.btn-infor .btn-line {
  background: var(--bg-green);
}
.btn-infor .btn-line span {
  background: url("../images/line.webp") no-repeat center left;
}
.btn-infor .btn-line span strong {
  font-family: var(--font-Cor_Gar);
  font-size: 1.6rem;
  padding-right: 0.5rem;
  line-height: 1;
}
.btn-infor .btn-reserve {
  background: var(--bg-purple);
}
.btn-infor .btn-reserve span {
  background: url("../common_img/") no-repeat center left;
}
@media only screen and (max-width: 767px) {
  .btn-infor a span {
    background-size: 1.8rem !important;
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .btn-infor .btn-contact:hover {
    background: var(--bg-dark_yellow);
  }
  .btn-infor .btn-line span strong {
    font-size: 1.9rem;
  }
  .btn-infor .btn-line:hover {
    background: var(--bg-dark_green);
  }
}

.nav-link {
  position: relative;
  text-decoration: none !important;
  z-index: 3;
}
.nav-link:after {
  position: absolute;
  content: "";
  background: var(--bg-yellow);
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: var(--color-yellow) !important;
  }
  .nav-link:hover:after {
    width: 100%;
  }
}

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
#cm-footer {
  background: #F0EDEB;
  padding: 4rem 0;
}
#cm-footer .f_logo {
  text-decoration: none;
}
#cm-footer .f_logo span {
  display: block;
  text-align: center;
  font-weight: 500;
}
#cm-footer .list-lang {
  justify-content: center;
  margin-top: 2rem;
  z-index: 2;
}
#cm-footer .list-lang a {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #cm-footer .gnav {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  #cm-footer {
    padding: 8rem 0;
  }
  #cm-footer .list-lang {
    margin-top: 3rem;
  }
}

.side-btn {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 10;
  width: 100%;
  transition: opacity 0.4s ease;
}
.side-btn.is-shown {
  opacity: 1;
  visibility: visible;
}
.side-btn .btn-infor a span {
  background: none;
  padding-left: 0;
}
.side-btn .btn-infor a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}
.side-btn .btn-infor a .icon img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .side-btn .btn-infor {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 2.5px;
  }
  .side-btn .btn-infor li {
    width: calc((100% - 2.5px) / 2);
  }
  .side-btn .btn-infor li a {
    width: 100%;
    display: inline-block;
    border-radius: 5px 5px 0 0;
    text-align: center;
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .side-btn .btn-infor li a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.8rem;
  }
  .side-btn .btn-infor li a .icon img {
    width: auto;
    transition: none;
  }
  .side-btn .btn-infor li a.btn-contact .icon img {
    height: 1.3rem;
  }
  .side-btn .btn-infor li a.btn-line span strong {
    font-size: 1.4rem;
  }
  .side-btn .btn-infor li a.btn-line .icon img {
    height: 1.8rem;
  }
  .side-btn .btn-infor li a.btn-reserve .icon img {
    height: 1.8rem;
  }
  .side-btn .btn-infor li a.btn-reserve .text {
    display: grid;
    place-content: center;
    height: 2.8em;
  }
}
@media only screen and (min-width: 768px) {
  .side-btn {
    left: auto;
    right: -140px;
    bottom: 60px;
    margin: 0 0 0 auto;
    max-width: 22rem;
    transition: all 0.4s ease;
  }
  .side-btn:hover {
    right: 0;
  }
  .side-btn .btn-infor a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 22rem;
    height: 80px;
    padding: 1rem 0;
    border-radius: 5px 0 0 5px;
    transition: all 0.4s ease;
  }
  .side-btn .btn-infor a .icon {
    width: 8rem;
    margin-bottom: 0;
  }
  .side-btn .btn-infor li + li {
    width: auto !important;
    margin: 0;
    margin-top: 5px;
  }
}

.copyright {
  font-size: 1rem;
  color: var(--color-gray);
  text-align: center;
  text-transform: uppercase;
  margin-top: 4rem;
}
@media only screen and (min-width: 768px) {
  .copyright {
    margin-top: 8rem;
  }
}

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.inner-txt p + p {
  margin-top: 2rem;
}
.inner-txt p + p--s {
  margin-top: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .inner-txt p + p {
    margin-top: 4rem;
  }
  .inner-txt p + p--s {
    margin-top: 1.5rem;
  }
}

/*---------- START ICON ZOOM  ----------*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.6rem 1.6rem;
  background-color: var(--bg-yellow);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}

/*---------- START PADDING SECTION ----------*/
.sec-cont {
  padding: 3.5rem 0;
}
.sec-cont--lg {
  padding: 4.5rem 0;
}
@media only screen and (min-width: 768px) {
  .sec-cont {
    padding: 7rem 0;
  }
  .sec-cont--lg {
    padding: 9rem 0;
  }
}

/*---------- START BACKGROUND ----------*/
.bg-gray_img {
  background: url("../images/bg-gray.webp") repeat top center, #f3efee;
  background-size: 100%;
}

.bg-gray_light_img {
  background: url("../images/about-bg.webp") repeat top center, #F0EDEB;
  background-size: 100%;
}

.bg-gray_dark_img {
  background: url("../images/bg-gray.webp") repeat top center, #E6E6E6;
  background-size: 100%;
}

.bg-yellow_img {
  background: url("../images/bg-yellow.webp") repeat top center, #8A7A40;
  background-size: 100%;
}

/*---------- START sec-information  ----------*/
.sec-information {
  padding: 5rem 0;
	background-size: cover;
}
.sec-information .list-infor {
  width: 100%;
  margin-top: 2rem;
}
.sec-information .list-infor__dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
}
.sec-information .list-infor__dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 11rem;
  color: var(--color-yellow);
  font-weight: 500;
}
.sec-information .list-infor__dd {
  width: calc(100% - 11rem);
  font-weight: normal;
  text-align: left;
  color: var(--color-gray);
}
.sec-information .list-infor__icon {
  width: 3.5rem;
}
.sec-information .list-infor__icon img {
  width: 2.5rem;
}
.sec-information .list-infor .list-decimal li {
  list-style-type: none;
  margin-left: 0;
}
.sec-information .infor-contact__tel {
  background: url("../images/icon-phone.webp") no-repeat center left;
}
.sec-information .btn-infor {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}
.sec-information__map {
  width: 100%;
}
.sec-information__map iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .sec-information .btn-infor {
    justify-content: space-between;
    gap: 1rem 0.5rem;
  }
  .sec-information__map {
    margin-top: 2rem;
    height: 30rem;
  }
}
@media only screen and (min-width: 768px) {
  .sec-information {
    padding: 12rem 0;
  }
  .sec-information__main {
    display: flex;
    justify-content: space-between;
  }
  .sec-information .list-infor {
    margin-top: 4rem;
  }
  .sec-information .list-infor__dt {
    width: 13rem;
  }
  .sec-information .list-infor dd {
    width: calc(100% - 13rem);
  }
  .sec-information .btn-infor {
    margin-top: 3rem;
  }
  .sec-information__map {
    width: 50%;
    height: 59rem;
  }
}

/*---------- START BUTTON ----------*/
.cm-btn {
  display: flex;
}
.cm-btn__link {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.6;
  box-sizing: border-box;
  z-index: 3;
  margin-top: 3rem;
  gap: 2rem;
}
.cm-btn__link .cm-arr {
  width: 4rem;
  height: 4rem;
}
.cm-btn__link .cm-arr:before {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--color-yellow);
  transition: transform 0.3s ease-in-out;
}
.cm-btn__link .cm-arr:after {
  color: var(--color-yellow);
  transition: transform 0.3s ease-in-out;
}
.cm-btn--back .cm-btn__link {
  flex-direction: row-reverse;
}
.cm-btn--back .cm-btn__link .cm-arr {
  transform: scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  .cm-btn.btn-center_sp {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .cm-btn__link {
    margin-top: 6rem;
    gap: 4rem;
  }
  .cm-btn__link:hover {
    color: var(--color-yellow);
  }
  .cm-btn__link:hover .cm-arr:before {
    transform: rotate(45deg);
  }
  .cm-btn__link:hover .cm-arr:after {
    animation: moveRight 0.6s ease-in-out;
  }
  .cm-btn__link:not(:hover) .cm-arr:after {
    animation: moveLeft 0.3s ease-in-out;
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(1.5rem);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveLeft {
  0% {
    transform: translateX(1.5rem);
  }
  100% {
    transform: translateX(0);
  }
}
.txt-link {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .txt-link {
    margin-top: 1.5rem;
  }
  .txt-link:hover {
    color: var(--color-yellow);
  }
  .txt-link:hover .cm-arr:after {
    color: var(--color-yellow);
  }
}

/*---------- START acc-list ----------*/
.acc-list__head {
  cursor: pointer;
}
.acc-list__body {
  display: none;
}
.acc-list__body .list-decimal2 li {
  text-indent: -1.3rem;
  padding-left: 1.3rem;
}
.acc-list__body .list-decimal2 li span {
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .acc-list__body .list-decimal2 li {
    text-indent: -1.5rem;
    padding-left: 1.5rem;
  }
  .acc-list__body .list-decimal2 li span {
    font-size: 1.8rem;
  }
}

/*---------- START ARROW ----------*/
.cm-arr {
  position: relative;
  width: 2rem;
  height: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.cm-arr:after {
  position: absolute;
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.28rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.cm-arr--yellow:after {
  color: var(--color-yellow);
}
.cm-arr--back {
  transform: scale(-1, 1);
}

/*---------- START TITLE  ----------*/
.cm-title_icon-left {
  background: url("../images/mark.webp") no-repeat top 1rem left;
  background-size: 1.8rem;
  font-size: 2.4rem;
  font-weight: normal;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}
.cm-title_icon-left.txt-eng {
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .cm-title_icon-left {
    background-size: 3rem;
    font-size: 3.2rem;
    padding-left: 4rem;
    margin-bottom: 2rem;
  }
}

.cm-title01 {
  margin-bottom: 1.5rem;
}
.cm-title01 span {
  display: block;
  font-weight: 500;
}
.cm-title01 .txt-eng {
  font-size: 1.2rem;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
}
.cm-title01 .txt-jp {
  font-size: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .cm-title01 {
    margin-bottom: 3rem;
  }
  .cm-title01 .txt-eng {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .cm-title01 .txt-jp {
    font-size: 3.2rem;
  }
}

.cm-title02 {
  position: relative;
  background: url("../images/mark.webp") no-repeat bottom center;
  background-size: 1.5rem;
  text-align: center;
  padding-bottom: 0.5em;
  margin-bottom: 2.5rem;
}
.cm-title02 .txt-eng {
  font-size: 3.6rem;
  font-weight: normal;
}
.cm-title02 .txt-jp {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cm-title02 .txt-jp small {
  display: block;
  font-size: 1.4rem;
  color: var(--color-yellow);
}
@media only screen and (max-width: 767px) {
  .cm-title02--center_sp {
    text-align: center;
    background-position: bottom center;
  }
}
@media only screen and (min-width: 768px) {
  .cm-title02 {
    margin-bottom: 5rem;
  }
  .cm-title02 .txt-eng {
    font-size: 5.6rem;
  }
  .cm-title02 .txt-jp {
    font-size: 3.2rem;
  }
  .cm-title02 .txt-jp small {
    font-size: 1.6rem;
  }
  .cm-title02--left {
    text-align: left;
    background-position: bottom left;
  }
  .cm-title02--left .txt-jp {
    margin-bottom: 0;
  }
}

.cm-title03 {
  position: relative;
  font-weight: normal;
  padding-bottom: 0.7rem;
  margin-bottom: 1.5rem;
}
.cm-title03:after {
  position: absolute;
  content: "";
  background: var(--bg-dark_red);
  width: 3.2rem;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cm-title03--left:after {
  left: 0;
  right: auto;
}
@media only screen and (max-width: 767px) {
  .cm-title03--sp-center {
    text-align: center;
  }
  .cm-title03--sp-center:after {
    right: 0;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  .cm-title03 {
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
  }
}

.cm-sub01 {
  position: relative;
  margin-bottom: 1rem;
  z-index: 2;
}
.cm-sub01:after {
  position: absolute;
  content: "";
  background: #D0D0D0;
  width: 100%;
  height: 1px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.cm-sub01 span {
  position: relative;
  background: #fff;
  padding-right: 2rem;
}

.cm-sub02 {
  border-bottom: 1px solid var(--color-dark_red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .cm-sub02 {
    margin-bottom: 2rem;
  }
}

.cm-sub03 {
  position: relative;
  font-weight: 500;
  padding-left: 2rem;
}
.cm-sub03:after {
  position: absolute;
  content: "";
  background: var(--bg-dark_yellow);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  top: 0.7rem;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .cm-sub03:after {
    top: 1rem;
  }
}

/*---------- START TEXT  ----------*/
.c-txt--s {
  font-size: 1.2rem;
}
.c-txt--m {
  font-size: 1.6rem;
}
.c-txt--l {
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .c-txt--s {
    font-size: 1.4rem;
  }
  .c-txt--m {
    font-size: 2rem;
  }
  .c-txt--l {
    font-size: 2.4rem;
  }
}
