@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  all: revert;
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem, 0.4163265306rem + 1.0204081633vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
  color: #0F0F0F;
  background: #000;
  -webkit-font-smoothing: antialiased;
  /* Macのフォントスムージングを有効化 */
  -moz-osx-font-smoothing: grayscale;
  /* Macのフォントスムージングを有効化 */
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

.en {
  font-family: Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
}

a {
  transition: all 0.3s cubic-bezier(0.16, 0.5, 0.43, 1);
}

a img {
  transition: all 0.3s cubic-bezier(0.16, 0.5, 0.43, 1);
}

a:hover img {
  opacity: 0.8;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInScale 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.active.right {
  animation: fadeInRight 1s ease-out;
  animation-fill-mode: forwards;
}


.inview.clip {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.4s ease-in;
  transition: clip-path 0.4s ease-in;
  transition: clip-path 0.4s ease-in, -webkit-clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.6s;
}

.inview.clip.delay02 {
  transition-delay: 0.9s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

._spShowImportant {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .inviewwrap {
    position: static;
  }

  ._pcShowImportant {
    display: none !important;
  }

  ._spShowImportant {
    display: block !important;
  }
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #BFBFBF;
}

.slick-dots li.slick-active button:before {
  background-color: #133BA3;
}

.inner {}

a.zoom {
  display: block;
  position: relative;
  overflow: hidden;
}

a.zoom .image {
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
}

a.zoom img {
  transform-origin: center;
}

a.zoom:hover img {
  transform: scale(1.05);
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .zu_scroll {
    overflow-x: scroll;
    width: 100%;
  }
}

ruby rt {
  font-size: 50%;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {}

main #breadcrumb {
  padding-top: 1rem;
  position: relative;
  z-index: 100;
}

main #breadcrumb ul {
  display: flex;
}

main #breadcrumb ul li {
  position: relative;
  color: #fff;
  font-size: clamp(1rem, 0.2163265306rem + 1.0204081633vw, 1.4rem);
}

@media screen and (max-width: 767px) {
  main #breadcrumb ul li {
    font-size: 1.4rem;
  }
}

main #breadcrumb ul li a::after {
  content: ">";
  margin: 0 1ex;
}

/* Header
==================== */
#header {
  position: fixed;
  width: 100%;
  z-index: 101;
}

#header #header-bar {
  background-color: #ffffff;
}

#header #header-logo {
  max-width: 200px;
  width: 35%;
  position: relative;
  left: 3%;
}

#header #header-logo img {
  vertical-align: bottom;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #header #header-logo {
    max-width: 110px;
    left: calc(50% - 55px)
  }
}

#header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

#header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;

}

@media screen and (max-width: 767px) {
  #header nav {
    height: 55px;
  }

  #header nav ul {
    /* height: 70px; */
    margin-left: 0;
    margin-right: 0;
  }
}

#header nav ul li a {
  position: relative;
  color: #000;
  font-size: clamp(1.1rem, 0.3163265306rem + 1.0204081633vw, 1.5rem);
  white-space: nowrap;
  border-left: 2px solid #D9D9D9;
  display: block;
  height: 100px;
  line-height: 100px;
  height: 100px;
  padding: 0 31px;
  text-align: center;
}

#header nav ul li a.lang {
  border-left: none;
  padding: 0;
  min-width: 100px;
  color: #ffffff;
  font-weight: bold;
}

#header nav ul li a.lang-tw {
  background: #0099BD;
}

#header nav ul li a.lang-ko {
  background: #F08200
}

@media screen and (max-width: 767px) {
  #header nav ul li a {
    font-size: 1.5rem;
  }
}

#header nav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

#header nav ul li a:hover:after {
  transform: scaleX(1);
}

#header nav ul li.logo {
  width: 123px;
}

@media screen and (max-width: 767px) {
  #header nav ul li:not(.logo) {
    display: none;
  }

  #header nav ul li.logo {
    width: 92px;
  }
}

#header #sp-mm {
  display: none;
  width: 30px;
  position: absolute;
  right: 3%;
  top: 50%;
  margin-top: -7px;
}

@media screen and (max-width: 767px) {
  #header #sp-mm {
    width: 30px;
    display: block;
    margin-top: -14px;
  }
}

#header #sp-mm .sp-mm-btn {
  width: 30px;
  height: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #header #sp-mm .sp-mm-btn {
    width: 30px;
    height: 14px;
  }
}

#header #sp-mm .sp-mm-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #0950A3;
  position: relative;
  top: 0px;
}

#header #sp-mm .sp-mm-btn span:before, #header #sp-mm .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease;
}

/* #header #sp-mm .sp-mm-btn span:before {
  background-color: #000;
  top: -6px;
} */

#header #sp-mm .sp-mm-btn span:after {
  background-color: #0950A3;
  bottom: -10px;
}

#header #sp-mm .sp-mm-text {
  color: #0950A3;
  font-weight: 900;
  font-size: 0.9rem;
  padding-top: 0px;
}

@media screen and (max-width: 767px) {
  #header #sp-mm .sp-mm-text {
    padding-top: 0;
    text-align: center;
    letter-spacing: 1px;
  }
}

#header #slide-menu {
  display: none;
  background-color: #0950A3;
  position: fixed;
  top: 104px;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#header #sp-mm-close {
  display:none;
}

@media screen and (max-width: 767px) {
  #header #sp-mm-close {
    display: none;
    position: absolute;
    right: 3%;
    top: 50%;
    width: 30px;
    margin-top: -14px;

  }
}

#header #sp-mm-close .sp-mm-btn {
  width: 30px;
  height: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  #header #sp-mm-close .sp-mm-btn {
    width: 30px;
    height: 14px;
  }
}

#header #sp-mm-close .sp-mm-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: transparent;
  position: relative;
  top: 0;
}

#header #sp-mm-close .sp-mm-btn span:before,
#header #sp-mm-close .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease;
}

#header #sp-mm-close .sp-mm-btn span:before {
  background-color: #0950A3;
  top: 8px;
  transform: rotate(30deg);
}

#header #sp-mm-close .sp-mm-btn span:after {
  background-color: #0950A3;
  bottom: -8px;
  transform: rotate(-30deg);
}

#header #sp-mm-close .sp-mm-text {
  color: #0950A3;
  font-weight: 900;
  font-size: 0.9rem;
  padding-top: 0;
}


#header #slide-menu ul {
  max-width: 335px;
  width: 90%;
  margin: 100px auto 0;
}

#header #slide-menu ul li {
  margin-bottom: 20px;
}

#header #slide-menu ul li a {
  display: block;
  border-bottom: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-size: clamp(1.6rem, 0.8163265306rem + 1.0204081633vw, 2rem);
  padding: 15px 40px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  #header #slide-menu ul li a {
    font-size: 2rem;
  }
}

#header #slide-menu ul li a:hover {
  /* background-color: #fff; */
  opacity: 0.7;
}

/* Footer
==================== */
#footer {
  text-align: center;
  color: #fff;
  padding: 30px 0;
  max-width: 1500px;
  margin: 0 auto;
}

#footer .footer-bnr{
  width:90%;
  max-width:444px;
  margin:110px auto 75px;
}
@media screen and (max-width: 767px) {
  #footer .footer-bnr{
    margin:60px auto;
  }
}
#footer #copyright {
  font-size: clamp(1.2rem, 0.4163265306rem + 1.0204081633vw, 1.6rem);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #footer #copyright {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  #footer #copyright {
    font-size: 1.4rem;
  }
}

#footer #syusai {
  font-size: clamp(1rem, 0.6081632653rem + 0.5102040816vw, 1.2rem);
}

@media screen and (max-width: 767px) {
  #footer #syusai {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  #footer #syusai {
    font-size: 1rem;
  }
}


#after {
  background-color: #223562;
  text-align: center;
  color: #fff;
  padding: 42px 0;
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

#after p {
  font-size: clamp(2.4rem, 1.6163265306rem + 1.0204081633vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  #after p {
    font-size: 2.8rem;
  }
}

#after p b {
  color: #ffed34;
}

@media screen and (max-width: 767px) {
  #after p {
    font-size: 2.2rem;
  }
}

#after .note {
  font-size: clamp(1rem, 0.2163265306rem + 1.0204081633vw, 1.4rem);
  font-weight: bold;
  line-height: 1.5;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  #after .note {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  #after .note {
    font-size: 1.4rem;
  }
}

#banners {
  background: #150A28;
  text-align: center;
  color: #fff;
  padding: 50px 0;
  max-width: 1500px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #banners {
    padding: 20px 5%;
  }
}

#banners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #banners ul {
    width: auto;
  }
}

#banners ul li {
  width: 30%;
  padding: 1%;
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #banners ul li {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Toppage
==================== */
#toppage {
  padding-top: 99px;
}

#sp-lang-nav {
  display: none;
}

@media screen and (max-width: 767px) {
  #sp-lang-nav {
    width:100%;
    position:fixed;
    top:55px;
    left:0;
    z-index: 5;;
    display: flex;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
  }

  #sp-lang-nav li {
    width: 50%;
    text-align: center;
    background: #F08200;
  }

  #sp-lang-nav li:first-child {
    background: #0099BD;
  }
}

@media screen and (max-width: 767px) {
  #toppage {
    padding-top: 104px;
  }

  #toppage::after {
    content: none;
  }
}

#toppage .btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 257px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.75);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}

#toppage .btn span {
  position: relative;
  z-index: 1;
}

#toppage .btn.btn-blue {
  background-color: #99a9ff;
}

#toppage .btn.btn-blue::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3a5aff;
  -webkit-clip-path: polygon(30% 0%, 120% 0, 70% 100%, -20% 100%);
  clip-path: polygon(30% 0%, 120% 0, 70% 100%, -20% 100%);
}

#toppage .btn.btn-blue::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../image/btn-mark.svg) center center no-repeat;
  width: 24px;
  height: 24px;
  right: 15px;
  top: 50%;
  transform: translateY(-40%);
}

#toppage .btn.btn-red {
  background-color: #b8383c;
}

#toppage a.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.75);
}

#toppage #visual {
  position: relative;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;

}

#toppage #visual img {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  #toppage #visual {
    height: auto;
    aspect-ratio: auto;
  }
}

#toppage #visual .visual-inner {
  position: relative;
  margin: auto;
}

@media screen and (max-width: 767px) {
  #toppage #visual .visual-inner {
    width: auto;
  }
}



#toppage #visual .visual-info {
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 5;
  width: 30%;
  max-width: 450px;
  opacity: 0;
}

#info {
  width: 100%;
  max-width: 1500px;
  padding: 80px 3%;
  background-color: #FFF9E7;
  margin: 0 auto;
  position: relative;
}

.info-ttl {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  top: -22px;
}

#info p {
  background-color: #D96742;
  border-radius: 20px;
  max-width: 930px;
  font-size: 3.8rem;
  line-height: 1.6;
  font-weight: bold;
  padding: 50px 20px 40px;
  margin: -75px auto 0;
  text-align: center;
  color: #FFE884;
}

#info p strong {
  font-size: 5.8rem;
}

#info p span {
  display: block;
  color: #fff;
  font-size: 2.4rem;
}

#info .info-note {
  max-width: 600px;
  margin: 30px auto 40px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: left;
}

#info .info-nav ul {
  max-width: 930px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#info .info-nav ul li {
  width: 48%;
}

#info .info-nav ul li a {
  display: block;
  border: 4px solid #0950A3;
  border-radius: 7px;
  background: #fff;
  height: 130px;
  line-height: 120px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #0950A3;
  text-align: left;
  padding-left: 50px;
  position: relative;
}

#info .info-nav ul li:last-child a {
  background: #0950A3;
  color: #fff;
}

#info .info-nav ul li a:after {
  content: "";
  width: 44px;
  height: 44px;
  background: url("/ko/assets/image/arrow01.png")no-repeat;
  background-size: contain;
  top: calc(50% - 22px);
  right: 30px;
  position: absolute;
}

#info .info-nav ul li:last-child a:after {
  background-image: url("/ko/assets/image/arrow02.png");
}

@media screen and (max-width: 767px) {
  #info {
    padding: 60px 5% 30px;
  }

  #info .info-inner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 90%;
  }

  #info .frame {
    padding: 10px 0 30px;
  }

  .info-ttl {
    width: 95%;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    top: -34px;
  }

  #info p {
    font-size: 2.6rem;
    line-height: 1.2;
    padding: 50px 20px 30px;
    text-align: center;
  }

  #info p strong {
    font-size: 4rem;
  }

  #info p span {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }

  #info .info-note {
    width:90%;
    margin: 10px auto 20px;
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
  }

  #info .info-nav ul {
    display: block;
  }

  #info .info-nav ul li {
    width: 100%;
    margin: 0 0 30px;
  }

  #info .info-nav ul li a {
    height: 90px;
    line-height: 90px;
    font-size: 2rem;
    padding-left: 35px;
    position: relative;
  }

  #info .info-nav ul li a:after {
    content: "";
    width: 31px;
    height: 31px;
    background: url("/ko/assets/image/arrow01.png")no-repeat;
    background-size: contain;
    top: calc(50% - 13px);
    right: 15px;
    position: absolute;
  }
}




#toppage #content {
  background: url(/ko/assets/image/about-bg.png) repeat-y center top;
  background-size: contain;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 1px;
}

#about {}

#about .inner {
  padding: 65px 0;
}

#about .about-logo {
  width: 70%;
  margin: 0 auto 35px;
  max-width: 325px;
}

#about h2 {
  width: 80%;
  max-width: 450px;
  margin: 0 auto 35px;
}

#about .about-lead-container {
  width: 94%;
  display: flex;
  max-width: 1000px;
  margin: -50px auto 0;
  position: relative;
  align-items: flex-end
}

#about .about-lead-container img {
  vertical-align: bottom;
}

#about .about-conan {
  width: 45%;
}

#about .lead01 {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto 35px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
}

@media screen and (max-width: 1050px) {

  #about .lead01 {
    padding-right: 30%;
  }

}

@media screen and (max-width: 767px) {
  #about .inner {
    padding: 45px 0 25px;
  }

  #about .about-logo {
    width: 70%;
    margin: 0 auto 15px;
    max-width: 250px;
  }

  #about h2 {
    width: 90%;
    max-width: 305px;
    margin: 0 auto 0;
  }

  #about .lead01 {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 35px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffffff;
    padding-right: 0;
  }
}

#about .about-inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto 90px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 100px;
  border-radius: 40px;
  position: relative;
}

#about .about-step {
  margin-bottom: 90px;
}

#about .about-step:last-child {
  margin-bottom: 0;
}

#about .about-inner:before {
  content: "";
  position: absolute;
  top: -345px;
  right: 5%;
  width: 340px;
  background: url(/ko/assets/image/about-conan.png) no-repeat left bottom;
  background-size: 100%;
  aspect-ratio: 347/353;
}

@media screen and (max-width: 1050px) {
  #about .about-inner:before {
    content: "";
    position: absolute;
    top: -255px;
    right: 5%;
    width: 250px;
    background: url(/ko/assets/image/about-conan.png) no-repeat left bottom;
    background-size: 100%;
    aspect-ratio: 347/353;
  }

}

@media screen and (max-width: 767px) {
  #about .about-step {
    margin-bottom: 45px;
  }

  #about .about-inner {
    width: 90%;
    max-width: 1200px;
    margin: 140px auto 0px;
    background: rgba(255, 255, 255, 0.9);
    padding: 45px 0 5px;
    border-radius: 40px;
    position: relative;
  }

  #about .about-inner:before {
    content: "";
    position: absolute;
    top: -173px;
    right: 15%;
    width: 170px;
    background: url(/ko/assets/image/about-conan.png) no-repeat left bottom;
    background-size: 100%;
    aspect-ratio: 347/353;
  }
}

#about .about-step h3 {
  display: flex;
  margin-bottom: 50px;
  align-items: stretch;
  width: 100%;
  min-height: 130px;
}

#about .about-step h3 .no {
  background-color: #034495;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
}

#about .about-step h3 .no span {
  font-size: 3.7rem;
  position: relative;
  top: -3px;
}

#about .about-step h3 .step-text {
  background-color: #505557;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 10px 30px;
  border-radius: 0 5px 5px 0;
  width: calc(100% - 150px);
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #about .about-step h3 {
    display: block;
    margin-bottom: 40px;
    width: 100%;
    min-height: auto;
    line-height: 1.5;
  }

  #about .about-step h3 .no {
    font-size: 2.0rem;
    border-radius: 0;
  }

  #about .about-step h3 .no span {
    font-size: 3.7rem;
    position: relative;
    top: -3px;
  }

  #about .about-step h3 .step-text {
    font-size: 2rem;
    line-height: 1.5;
    padding: 15px;
    border-radius: 0;
    width: 100%;
  }
}

.area-list ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 53px;
  padding: 0;
  position: relative;
}

.area-list ul li {
  width: 30%;

}

.area-list ul:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 32.5%;
  width: 45px;
  height: 27px;
  background: url(/ko/assets/image/or-icon.png) no-repeat left bottom;
  background-size: contain;
  transform: translateX(-50%);

}

.area-list ul:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 67.5%;
  width: 45px;
  height: 27px;
  background: url(/ko/assets/image/or-icon.png) no-repeat left bottom;
  background-size: contain;
  transform: translateX(-50%);
}

.area-list ul li:last-child:after {
  display: none;
}

.area-list ul li .area-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #006934;
  padding: 8px 0;
  line-height: 1;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 25px;
}

.area-list ul li .area-text {
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .area-list ul {
    display: block;
    margin: 0 auto 53px;
    padding: 0;
    position: relative;
  }

  .area-list ul li {
    width: 85%;
    max-width: 430px;
    margin: 0 auto 60px;
    position: relative;
  }

  .area-list ul li:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 45px;
    height: 27px;
    background: url(/ko/assets/image/or-icon.png) no-repeat left bottom;
    background-size: contain;
    transform: translateX(-50%);
  }

  .area-list ul li .area-name {
    margin-bottom: 15px;
  }

  .area-list ul:after {
    display: none;
  }

  .area-list ul:before {
    display: none;
  }
}

#about .about-step.about-step02 h3 {
  margin-bottom: 20px;
}

#about .about-step .attention {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 30px;
}

.about-note {
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: bold;
  background: #EFDCB9;
  border: 2px dashed #A48364;
  padding: 35px 45px 35px 120px;
  border-radius: 6px;
  margin: 0 0 40px;
  position: relative;
}

.about-note:before {
  content: "";
  position: absolute;
  top: -0px;
  left: -85px;
  width: 187px;
  height: 187px;
  background: url(/ko/assets/image/note-img01.png) no-repeat center center;
  background-size: contain;
  transform: translateY(-30%);
}

.about-note.about-note.note-02:before {
  background: url(/ko/assets/image/note-img02.png) no-repeat center center;
  background-size: contain;
}

.about-note.note-03 {
  padding-left: 250px;
}

.about-note.note-03 p {
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: normal;
  margin-top: 20px;
}

.about-note.about-note.note-03:before {
  width: 290px;
  height: 200px;
  top: 30px;
  background: url(/ko/assets/image/note-img03.png) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .about-note {
    width: 90%;
    margin: 0 auto 35px;
    line-height: 1.5;
    font-size: 2rem;
    padding: 20px;
    border-radius: 6px;
    position: static;
  }

  .about-note.about-note.note-01:before,
  .about-note.about-note.note-02:before,
  .about-note.about-note.note-03:before {
    display: none;
  }

  .about-note .note-img {
    width: 70%;
    max-width: 200px;
    margin: 0 auto 10px;
    position: relative;
    left: -8%;
  }

  .about-note .note-img img {
    width: 100%;
  }

  #about .about-step .attention {
    text-align: left;
    font-size: 1.4rem;
    width: 90%;
    margin: 0 auto 20px;
    line-height: 1.7;
  }

  .about-note.note-03 {
    padding: 20px;
  }

  .about-note.note-03 p {
    line-height: 1.5;
    font-size: 1.4rem;
    font-weight: normal;
    margin-top: 20px;
  }
}

.spot-list ul {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 53px;
  padding: 0;
}

.spot-list ul li {
  width: 23%;
}

.spot-list ul li:last-child {
  width: 49%;
}

.spot-list ul li:last-child .area-img {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.spot-list ul li:last-child .area-img:after {
  content: "";
  position: absolute;
  top: calc(35% - 10px);
  left: 50%;
  width: 54px;
  max-width: 54px;
  width: 45px;
  height: 27px;
  background: url(/ko/assets/image/or-icon.png) no-repeat left bottom;
  background-size: contain;
  transform: translateX(-50%);
}

.spot-list ul li:last-child .area-img div {
  width: 47%;
}

.spot-list ul li .area-name {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #006934;
  padding: 8px 0;
  line-height: 1;
  border-radius: 5px 5px 0 0;
  text-align: center;
}

.spot-list ul li .area-img {
  text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 767px) {


  .spot-list ul {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 10px;
    padding: 0;
  }

  .spot-list ul li {
    width: 48%;
    margin-bottom: 15px;
  }

  .spot-list ul li:last-child {
    width: 100%;
  }

  .spot-list ul li:last-child .area-img {
    display: flex;
    justify-content: space-between;
    position: relative;
    font-size: 10px;
  }

  .spot-list ul li .area-img p {
    font-size: 10px;
  }

  .spot-list ul li .area-img img {
    width: 100%;
  }

  .spot-list ul li:last-child .area-img:after {
    top: calc(40% - 10px);
    left: 50%;
    width: 54px;
    max-width: 54px;
    width: 35px;
    height: 21px;

    transform: translateX(-50%);
  }

  .spot-list ul li:last-child .area-img div {
    width: 48%;
  }

  .spot-list ul li .area-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background-color: #006934;
    padding: 8px 0;
    line-height: 1;
    border-radius: 5px 5px 0 0;
    text-align: center;
  }

  .spot-list ul li .area-img {
    text-align: center;
    font-weight: bold;
  }
}

#about .about-step.about-step03 h3 {
  margin-bottom: 20px;
}

#method {
  padding-top: 90px;
}

#method .inner {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto 90px;
  background: rgba(255, 255, 255, 0.9);
  padding: 90px 100px;
  border-radius: 40px;
  position: relative;
}

#method .inner h2 {
  width: 80%;
  max-width: 450px;
  margin: 0 auto 35px;
  position: relative;
  margin-top: -156px;
}



#method .inner .products {
  background: #fff;
  margin: 0 0 50px;
}

#method .inner .products dt {
  background: url(/ko/assets/image/method-title-bg.png);
  background-size: contain;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  border-radius: 15px 15px 0 0;
}

@media screen and (max-width: 767px) {

  #method {
    padding-top: 40px;
  }

  #method .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 90px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 0;
    border-radius: 40px;
    position: relative;
  }

  #method .inner h2 {
    width: 88%;
    max-width: 300px;
    margin: 0 auto 15px;
    position: relative;
    margin-top: 0;
  }

  #method .inner .products {
    background: #fff;
    margin: 0 auto 40px;
    width: 90%;
  }

  #method .inner .products dt {
    background: url(/ko/assets/image/method-title-bg.png);
    background-size: contain;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    border-radius: 15px 15px 0 0;
  }
}

#method .inner .products dd {
  border-left: 2px solid #0099BD;
  border-right: 2px solid #0099BD;
  border-bottom: 2px solid #0099BD;
  padding: 30px 30px;
}

#method .inner .products dd ul li {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 10px 0;
}

#method .inner .products dd ul li h5 {
  background: #000;
  font-weight: bold;
  color: #fff;
  width: 156px;
  padding: 3px 8px 3px 30px;
  border-radius: 7px;
  border: 1px solid #E20004;
  margin-right: 10px;
}

#method .inner .products dd ul li p {
  width: calc(100% - 156px);
}

@media screen and (max-width: 767px) {

  #method .inner .products dd {
    padding: 15px 20px 5px;
  }

  #method .inner .products dd ul li {
    display: block;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px 0 20px;
  }

  #method .inner .products dd ul li h5 {
    background: #000;
    font-weight: bold;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 5px;
    line-height: 1.2;
    border-radius: 7px;
    border: 1px solid #E20004;
    margin: 0 auto 5px;
  }

  #method .inner .products dd ul li p {
    font-size: 1.4rem;
    line-height: 1.5;
    width: 100%;
  }
}

#method .inner .tour-title {
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  color: #0950A3;
  line-height: 1.5;
  margin: 0 0 25px;
}

#method .inner .tour-title span {
  display: block;
  font-size: 2.4rem;
  color: #000;
  text-align: center;
}

#method .inner .attention {
  display: block;
  text-align: center;
  color: #ffffff;
  margin: 0 0 20px;
}

#method .inner .attention span {
  background: #E20004;
  border-radius: 7px;
  padding: 5px 30px;
}

@media screen and (max-width: 767px) {

  #method .inner .tour-title {
    font-size: 2.4rem;
    line-height: 1.5;
    margin: 0 auto 15px;
    width: 88%;
  }

  #method .inner .tour-title span {
    font-size: 1.4rem;
  }

  #method .inner .attention {
    display: block;
    text-align: center;
    color: #ffffff;
    margin: 0 0 20px;
  }

  #method .inner .attention span {
    background: #E20004;
    border-radius: 7px;
    padding: 5px 30px;
  }

}

.rosen-container {
  border: 3px solid #0099BD;
  border-radius: 20px;
  margin: 0 0 20px;
  background: #fff;
  position: relative;
}

.rosen-01:after,
.rosen-02:after {

  content: "";
  position: absolute;
  top: 5%;
  left: 9%;
  width: 8%;
  aspect-ratio: 1/2;
  max-width: 90px;
  max-height: 90px;
  min-width: 53px;
  min-height: 90px;
  background: url(/ko/assets/image/rosen-conan.png) no-repeat center center;
  background-size: contain;
  transform: translateX(-50%);

}

.rosen-container .rosen-heading {
  color: #0099BD;
  font-size: clamp(1.3rem, 0.6632653061rem + 1.6581632653vw, 2.6rem);
  font-weight: bold;
  line-height: 1;
  padding: 30px 0 13px 15%;
}

.rosen-container .rosen-name {
  color: #fff;
  background: #000;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(1.6rem, 0.8163265306rem + 2.0408163266vw, 3.2rem);

  padding: 10px 15% 15px 15%;
}

.rosen-container .rosen-name span {
  font-size: clamp(1.3rem, 0.6632653061rem + 1.6581632653vw, 2.6rem);
}

.rosen-container .rosen-price {
  position: absolute;
  right: 3%;
  top: 57px;
  width: 29%;
  width: 270px;
}

.rosen-container .rosen-description {
  text-align: center;
  font-size: clamp(1.3rem, 0.6632653061rem + 0.8290816327vw, 2.0rem);
  margin: 5px auto 20px;
  width: 90%;
  line-height: 1.5;
}

.rosen-container .rosen-img {
  padding: 0 10% 40px;
}

@media screen and (max-width: 1000px) {
  .rosen-container .rosen-price {
    position: static;
    margin: 20px auto 0;
    width: 29%;
    width: 230px;
  }
}

@media screen and (max-width: 767px) {

  .rosen-01:after,
  .rosen-02:after {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 48px;
    aspect-ratio: 1/2;
    max-width: 90px;
    max-height: 90px;
    min-width: 45px;
    min-height: 90px;
    background: url(/ko/assets/image/rosen-conan.png) no-repeat center center;
    background-size: contain;
    transform: translateX(-50%);

  }

  .rosen-container .rosen-heading {
    color: #0099BD;
    font-weight: bold;
    line-height: 1;
    padding: 20px 0 10px 20%;
  }

  .rosen-container .rosen-name {
    color: #fff;
    background: #000;
    font-weight: bold;
    line-height: 1;
    padding: 10px 20% 15px 20%;
  }

  .rosen-container .rosen-price {
    margin: 15px auto 0;
    width: 90%;
  }
}

.rosen-container img {
  vertical-align: bottom;
}

.rosen-note {
  width: 90%;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .rosen-container {
    width: 90%;
    border-radius: 6px;
    margin: 0 auto 20px;
    background: #fff;
  }

  .rosen-container img {
    vertical-align: bottom;
  }

  .rosen-note {
    width: 90%;
    margin: 0 auto 35px;
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .rosen-container .rosen-description {
    text-align: left;
  }

  .rosen-container .rosen-img {
    padding: 0 5% 20px;
  }
}

.ticket-container {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 70px;

}

.ticket-container .ticket-img {
  width: 344px;
}

.ticket-container h5 {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 0 15px;
}

@media screen and (max-width: 767px) {
  .ticket-container {
    display: block;
    width: 90%;
    margin: 0 auto 40px;

  }

  .ticket-container .ticket-img {
    width: 100%;
    margin-top: 10px;
  }

  .ticket-container h5 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 15px;
  }
}

.access-container {
  margin: 0 0 35px;
}

.banner-container h5,
.access-container h5 {
  display: inline-block;
  background: url(/ko/assets/image/method-title-bg.png);
  background-size: cover;
  background-position: center center;
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 15px 15px 0 0;
  min-width: 260px;
  text-align: center;
}

.access-img {
  background: #fff;
  border: 3px solid #0099BD;
  border-radius: 0 20px 20px 20px;
  padding: 50px 30px;
}

.banner-list {
  background: #fff;
  border: 3px solid #0099BD;
  border-radius: 0 20px 20px 20px;
  padding: 50px 30px 30px;
}

.banner-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.banner-list ul li {
  width: 31.5%;
  margin-bottom: 2.5%
}

.banner-list ul li img {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {

  .access-container {
    margin: 0 0 35px;
  }

  .banner-container h5,
  .access-container h5 {
    display: block;
    background: url(/ko/assets/image/method-title-bg.png);
    background-size: cover;
    background-position: center center;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
    padding: 5px 0;
    border-radius: 15px 15px 0 0;
    min-width: 240px;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }

  .banner-container h5 {
    width: 50%;
  }

  .access-img {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 20px 10px;
  }

  .banner-list {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 20px 20px;
  }

  .banner-list ul {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 430px;
  }

  .banner-list ul li {
    width: 100%;
    margin-bottom: 4.5%
  }

  .banner-list ul li img {
    vertical-align: bottom;
  }

}