﻿/* --------------- variables --------------------- */
/* Break Point */
/* Font */
/* noto sans sc Font */
@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansSC-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/NotoSansSC-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansSC-Bold.woff2") format("woff2");
}
/* color */
/* contents-wide */
/* google font cdn */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.wysiwyg {
  background-color: #fff;
}
.wysiwyg .btnWrap {
  text-align: center;
}
.wysiwyg .ltr {
  direction: ltr;
}
.wysiwyg h2,
.wysiwyg .h2 {
  position: relative;
  font-weight: 700;
}
.wysiwyg h2::after,
.wysiwyg .h2::after {
  content: "";
  display: block;
  background: url(../image/h2_lower.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.wysiwyg h2.simple,
.wysiwyg .h2.simple {
  padding: 0;
}
.wysiwyg h2.simple::after,
.wysiwyg .h2.simple::after {
  content: none;
}
.wysiwyg h2:has(a) a,
.wysiwyg .h2:has(a) a {
  color: #000;
}
.wysiwyg h2.center {
  max-width: inherit;
  text-align: center;
}
.wysiwyg h2.center::after {
  left: 50%;
  transform: translateX(-50%);
}
.wysiwyg h3,
.wysiwyg .h3 {
  position: relative;
  font-weight: 500;
  word-break: break-all;
}
.wysiwyg h3::after,
.wysiwyg .h3::after {
  content: "";
  display: block;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  left: 0;
}
.wysiwyg a > h3,
.wysiwyg a > .h3 {
  color: #000;
  text-decoration: underline;
}
.wysiwyg h4,
.wysiwyg .h4 {
  background-color: #E8E4D5;
  font-weight: 500;
}
.wysiwyg .partsTitle {
  font-family: "Noto Serif JP", serif;
  color: #005B9C;
  font-weight: 700;
}
.wysiwyg :is(h1, h2, h3, h4) + .ancChild {
  margin-top: 0;
}
.wysiwyg p {
  max-width: 718px;
}
.wysiwyg p.u_font_bold {
  font-weight: 700;
}
.wysiwyg .caption {
  display: block;
}
.wysiwyg .underline {
  text-decoration: underline;
}
.wysiwyg .usual_link {
  position: relative;
  color: #000;
  font-weight: 400;
  background-color: transparent;
}
.wysiwyg .usual_link::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
}
.wysiwyg .usual_link.u_font_red {
  color: #B50025;
}
.wysiwyg .usual_link.u_font_red::after {
  background: url(../image/arrow_red.svg) no-repeat center/100%;
}
.wysiwyg p:not([class]):has(a:not([class])) a {
  display: inline;
  color: #005B9C;
  text-decoration: underline;
}
.wysiwyg strong {
  font-weight: 700;
}
.wysiwyg .red {
  color: #B50025;
  font-weight: 700;
}
.wysiwyg .strike {
  text-decoration: line-through;
}
.wysiwyg .z-index10 {
  position: relative;
  z-index: 10;
}
.wysiwyg ul:not([class]) li {
  position: relative;
  line-height: 1.72;
}
.wysiwyg ul:not([class]) li::before {
  content: "";
  display: block;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  left: 0;
}
.wysiwyg ul:not([class]) li:has(a) a {
  color: #000;
  text-decoration: underline;
}
.wysiwyg ul:not([class]) li:has(a) a:hover, .wysiwyg ul:not([class]) li:has(a) a:focus {
  color: #694A26;
}
.wysiwyg ol:not([class]) {
  list-style: auto;
  padding-left: 1em;
}
.wysiwyg ol:not([class]) li {
  position: relative;
  line-height: 1.72;
  text-indent: 0;
  padding-left: 1em;
}
.wysiwyg ol:not([class]) li::before {
  display: none;
}
.wysiwyg ol:not([class]) .alphabet_list li::before,
.wysiwyg ol:not([class]) .roma_list li::before {
  display: inline-block;
}
.wysiwyg ol:not([class]) li:has(a) > a {
  color: #000;
  display: inline;
}
.wysiwyg ol:not([class]) li:has(a) > a:hover, .wysiwyg ol:not([class]) li:has(a) > a:focus {
  color: #694A26;
  text-decoration: underline;
}
.wysiwyg ol:not([class]) .m_list.m_list_link.txt_link li {
  text-indent: 0;
  padding-left: 0;
}
.wysiwyg ol:not([class]) .m_list.m_list_link.txt_link li::before {
  content: none;
}
.wysiwyg .alphabet_list {
  counter-reset: listnum !important;
}
.wysiwyg .alphabet_list li {
  position: relative;
  line-height: 1.72;
  text-indent: -2em;
  padding-left: 2em;
}
.wysiwyg .alphabet_list li::before {
  counter-increment: listnum !important;
  content: counter(listnum, lower-latin) "." !important;
}
.wysiwyg .roma_list {
  counter-reset: listnum !important;
}
.wysiwyg .roma_list li {
  position: relative;
  line-height: 1.72;
  text-indent: -2em;
  padding-left: 2em;
}
.wysiwyg .roma_list li::before {
  counter-increment: listnum !important;
  content: counter(listnum, lower-roman) "." !important;
}
.wysiwyg .m_list.m_list_link li a {
  display: block;
  position: relative;
  font-weight: 500;
  color: #000;
  background-color: #F5F4F2;
}
.wysiwyg .m_list.m_list_link li a::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
}
.wysiwyg .m_list.m_list_link.box_link li a::after {
  left: inherit;
}
.wysiwyg .m_list.m_list_link.txt_link li a {
  font-weight: 400;
  background-color: transparent;
}
.wysiwyg .m_list.m_list_link.txt_link li a::after {
  left: 0;
}
.wysiwyg .rounded_color_box {
  background-color: #F5F4F2;
}
.wysiwyg .rounded_color_box p {
  max-width: 100%;
}
.wysiwyg .square_color_box {
  background-color: #EBE9E1;
}
.wysiwyg .square_color_box p {
  max-width: 100%;
}
.wysiwyg .unique_box,
.wysiwyg .m_box {
  background-color: #F5F4F2;
}
.wysiwyg .unique_box.col2 .box_inner .m_list.m_list_link.txt_link li a,
.wysiwyg .m_box.col2 .box_inner .m_list.m_list_link.txt_link li a {
  display: inline-block;
}
.wysiwyg .unique_box_container {
  display: flex;
  gap: 20px;
}
.wysiwyg .unique_box_container .unique_title {
  font-weight: 700;
  text-align: center;
}
.wysiwyg .unique_box_container .unique_box {
  margin-top: 0;
}
.wysiwyg table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #000;
}
.wysiwyg table th {
  text-align: center;
  background-color: #333;
  border-right: 1px solid #fff;
  color: #fff;
  font-weight: 500;
}
.wysiwyg table th:last-child {
  border-right: 1px solid #000;
}
.wysiwyg table th.borderR {
  border-right: solid 1px #fff !important;
}
.wysiwyg table th.borderB {
  border-bottom: solid 1px #fff !important;
}
.wysiwyg table td {
  text-align: center;
  border: 1px solid #000;
}
.wysiwyg table a {
  display: inline;
}
.wysiwyg table ul li,
.wysiwyg table ol li {
  text-align: left;
}
.wysiwyg table.table_type2 tr > th {
  border-right: 1px solid #000;
  border-bottom: 1px solid #fff;
}
.wysiwyg table.table_type2 tr:last-of-type > th {
  border-bottom: 1px solid #000;
}
.wysiwyg table.small_table th {
  background-color: #E8E4D5;
  color: #000;
  border-right: 1px solid #000;
}
.wysiwyg table.small_table th,
.wysiwyg table.small_table td {
  word-break: break-all;
  font-size: 12px;
  padding: 8px;
  border-bottom: solid 1px #000;
}
.wysiwyg table.small_table p,
.wysiwyg table.small_table a {
  font-size: 12px;
}
.wysiwyg table.small_table * + p {
  margin-top: 18px;
}
.wysiwyg table.small_table ul li {
  font-size: 12px;
  padding-left: 16px;
}
.wysiwyg table.small_table ul li::before {
  top: 8px;
}
.wysiwyg table.small_table ul li:not(:last-child) {
  margin-bottom: 8px;
}
.wysiwyg table.small_table ol {
  padding-left: 6px;
}
.wysiwyg table.small_table ol li {
  font-size: 12px;
  padding-left: 16px;
}
.wysiwyg table.small_table ol li::before {
  padding-right: 6px;
}
.wysiwyg table.small_table ol li:not(:last-child) {
  margin-bottom: 8px;
}
.wysiwyg table.small_table * + ul,
.wysiwyg table.small_table * + ol {
  margin-top: 10px !important;
}
.wysiwyg table.scroll_wide_all {
  width: 1200px;
}
.wysiwyg .table_type3 {
  width: 100%;
  margin-bottom: 40px;
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
}
.wysiwyg .table_type3 th,
.wysiwyg .table_type3 td {
  padding: 15px 20px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  text-align: center;
  vertical-align: middle;
  line-height: 1.6666666667;
}
.wysiwyg .table_type3 th.transparent,
.wysiwyg .table_type3 td.transparent {
  background-color: transparent;
}
.wysiwyg .table_type3 th {
  color: #000;
  background-color: #F5F4F2;
  font-weight: 500;
}
.wysiwyg .table_type3 th.white {
  background-color: #fff;
}
.wysiwyg .table_type3 th.other-color {
  background-color: #EBE9E1;
}
.wysiwyg .table_type3 td {
  color: #694A26;
  padding: 15px;
  background-color: #fff;
}
.wysiwyg .table_type3.tbl-left th,
.wysiwyg .table_type3.tbl-left td {
  text-align: left;
}
.wysiwyg .mainMenuBtn a {
  font-weight: 500;
  color: #333;
  background-color: #EBE9E1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wysiwyg .mainMenuBtn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .mainMenuBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  transform: translateY(-50%);
  flex: none;
}
.wysiwyg .mainMenuBtn.icon span.info::before {
  content: "";
  display: block;
  background: url(../image/icon_info.svg) no-repeat center/100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wysiwyg .mainMenuBtn.icon span.publication::before {
  content: "";
  display: block;
  background: url(../image/icon_publication.svg) no-repeat center/100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wysiwyg .mainMenuBtn.icon span.event::before {
  content: "";
  display: block;
  background: url(../image/icon_event.svg) no-repeat center/100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wysiwyg .mainMenuBtn.icon span.investigation::before {
  content: "";
  display: block;
  background: url(../image/icon_investigation.svg) no-repeat center/100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wysiwyg .mainMenuBtn.icon span.video::before {
  content: "";
  display: block;
  background: url(../image/icon_video.svg) no-repeat center/100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wysiwyg .mainMenuBtn.icon span.monitor::before {
  content: "";
  display: block;
  background: url(../image/icon_monitor.svg) no-repeat center/100%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s;
}
.wysiwyg .mainMenuBtn.no_arrow span::after {
  content: none;
}
.wysiwyg .mainMenuTitle {
  font-weight: 500;
  color: #333;
  background-color: #EBE9E1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wysiwyg .index_detail_2col {
  display: flex;
  position: relative;
}
.wysiwyg .index_detail_2col.sakura .m_list.m_list_link.box_link {
  position: relative;
  z-index: 2;
}
.wysiwyg .index_detail_2col.sakura::after {
  content: "";
  display: block;
  background: url(../image/index_sakura.webp) no-repeat center/100%;
  position: absolute;
  z-index: 1;
}
.wysiwyg .index_detail_2col.sakura_small .m_list.m_list_link.box_link {
  position: relative;
  z-index: 2;
}
.wysiwyg .index_detail_2col.sakura_small::after {
  content: "";
  display: block;
  background: url(../image/index_sakura.webp) no-repeat center/100%;
  position: absolute;
  z-index: 1;
}
.wysiwyg .detail_img {
  position: relative;
  z-index: 2;
}
.wysiwyg .index_list_3col {
  position: relative;
  z-index: 2;
}
.wysiwyg .p_top_banner {
  position: relative;
  background-color: #EBE9E1;
}
.wysiwyg .p_top_banner::before {
  content: "";
  display: block;
  background-color: #EBE9E1;
  position: absolute;
  top: 0;
  height: 100%;
}
.wysiwyg .p_top_banner .p_top_banner_slider {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.wysiwyg .news_tab_box,
.wysiwyg .faq_tab_box {
  background-color: #EBE9E1;
}
.wysiwyg .news_tab_box + .boxCol2,
.wysiwyg .faq_tab_box + .boxCol2 {
  margin-top: 0;
}
.wysiwyg .spOutlineTitle + .boxCol2 {
  margin-top: 0 !important;
}
.wysiwyg .news_tab_title {
  letter-spacing: 0.01em;
}
.wysiwyg .news_tab_list,
.wysiwyg .faq_tab_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.wysiwyg .news_tab_list li a,
.wysiwyg .faq_tab_list li a {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #694A26;
  background-color: #F5F4F2;
  border-radius: 50px;
  border: 1.5px solid #F5F4F2;
}
.wysiwyg .news_tab_list li.current a,
.wysiwyg .faq_tab_list li.current a {
  pointer-events: none;
  color: #000;
  background-color: #D3B270;
  border: 1.5px solid #D3B270;
}
.wysiwyg .m_newslist time.m_newslist_item_date {
  display: block;
  font-weight: 500;
  line-height: 1.72;
}
.wysiwyg .m_newslist span.m_newslist_item_headline {
  line-height: 1.72;
}
.wysiwyg .m_newslist span.m_newslist_item_headline a {
  display: block;
  position: relative;
  color: #000;
}
.wysiwyg .m_newslist span.m_newslist_item_headline a::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  right: 0;
}
.wysiwyg .m_pager ul.m_pager_nav {
  display: flex;
  justify-content: center;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item {
  font-weight: 500;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item a {
  color: #949497;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item span {
  color: #fff;
  background-color: #B50025;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: 0.3s;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_first a {
  position: relative;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_first a::before {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: scale(-1, 1) translateY(-50%);
  right: 0;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_last a {
  position: relative;
}
.wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_last a::before {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .outline {
  z-index: 3;
}
.wysiwyg .outline:has(.shareBtns) {
  background-color: #fff;
}
.wysiwyg .outlineList > li > a {
  display: block;
  position: relative;
}
.wysiwyg .outlineList > li > a::before {
  content: "";
  display: block;
  position: absolute;
}
.wysiwyg .outlineList .left-nav-item.-active > a {
  color: #694A26;
  font-weight: bold;
}
.wysiwyg .outlineList .left-nav-item.-active > a::before {
  background-image: url(../image/arrow_brown.svg);
}
.wysiwyg .outlineList .left-nav-item-child.-active > a {
  color: #694A26;
  font-weight: bold;
}
.wysiwyg .outlineSubMenu li > a {
  display: block;
  position: relative;
  color: #000;
}
.wysiwyg .outlineSubMenu li > a::before {
  content: "";
  display: block;
  position: absolute;
}
.wysiwyg .accordion_title {
  position: relative;
  background-color: #EBE9E1;
  text-align: left;
}
.wysiwyg .accordion_title > button {
  display: flex;
  background: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  border: none;
  font-weight: 500;
  color: #000;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.wysiwyg .accordion_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: block;
  border-radius: 50px;
  background-color: #B50025;
  transition: transform 0.3s;
}
.wysiwyg .accordion_icon::before {
  position: absolute;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50px;
  background-color: #B50025;
  transition: transform 0.3s;
}
.wysiwyg [aria-expanded=true] > .accordion_icon::before {
  transform: translateY(-50%) rotate(90deg);
}
.wysiwyg .accordion_content {
  overflow: hidden;
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: padding 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
}
.wysiwyg .accordion_content[aria-hidden=true] {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.wysiwyg .boxRight p {
  margin-top: 0;
}
.wysiwyg .box_flex_01 {
  display: flex;
  justify-content: left;
  gap: 40px;
}
.wysiwyg .box_flex_02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 40px;
}
.wysiwyg .colorBox {
  background-color: #F5F4F2;
}
.wysiwyg .colorBox .date {
  line-height: inherit;
  position: relative;
}
.wysiwyg .colorBox .date::before {
  content: "";
  display: block;
  background: url(../image/icon_calendar.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 16px;
  height: 15px;
}
.wysiwyg .colorBox .time {
  line-height: inherit;
  position: relative;
}
.wysiwyg .colorBox .time::before {
  content: "";
  display: block;
  background: url(../image/icon_time.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 15px;
  height: 16px;
}
.wysiwyg .colorBox .map {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  color: #000;
}
.wysiwyg .colorBox .map::before {
  content: "";
  display: block;
  background: url(../image/icon_map.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
}
.wysiwyg .colorBox .map::after {
  content: "";
  display: block;
  background: url(../image/icon_blank1.svg) no-repeat center/100%;
  position: absolute;
  right: -29px;
  width: 16px;
  height: 16px;
}
.wysiwyg #eventTabControl {
  display: flex;
  justify-content: space-between;
}
.wysiwyg #eventTabControl a {
  color: #000;
  font-weight: 500;
  text-align: center;
  border: 1px solid #949497;
  border-bottom: none;
  transition: 0.3s;
}
.wysiwyg #eventTabControl a.is-active {
  color: #fff;
  background-color: #B50025;
  border: 1px solid #B50025;
  pointer-events: none;
}
.wysiwyg #eventTabControl a.is-active::after {
  background-color: #B50025;
}
.wysiwyg #eventTabBody div {
  position: relative;
  z-index: 0;
}
.wysiwyg .eventList {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .eventList li {
  background-color: #F5F4F2;
}
.wysiwyg .eventList li a {
  color: #000;
  text-decoration: none;
}
.wysiwyg .eventList li h3 {
  text-decoration: none;
}
.wysiwyg .eventList .img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg .eventList .eventDate {
  position: relative;
  line-height: inherit;
}
.wysiwyg .eventList .eventDate::before {
  content: "";
  display: block;
  background: url(../image/icon_calendar_mini.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 14px;
  height: 12px;
}
.wysiwyg .eventList .eventPlace {
  position: relative;
}
.wysiwyg .eventList .eventPlace::before {
  content: "";
  display: block;
  background: url(../image/icon_map.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 14px;
  height: 16px;
}
.wysiwyg .eventList .eventTxt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.wysiwyg .eventList .eventLink {
  display: block;
  color: #B50025;
  text-align: center;
}
.wysiwyg .eventList .eventLink span {
  position: relative;
}
.wysiwyg .eventList .eventLink span::before {
  content: "";
  display: block;
  background: url(../image/arrow_red.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .planList li a {
  display: block;
  position: relative;
}
.wysiwyg .planList li .planNumber {
  display: inline-block;
  color: #fff;
  background-color: #B50025;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.wysiwyg .planList li .planNumber.blue {
  background-color: #424F8A;
}
.wysiwyg .planList li .planNumber.beige {
  color: #000;
  background-color: #D3B270;
}
.wysiwyg .planList li .planTxt {
  color: #000;
  margin-top: 0;
}
.wysiwyg #planTabControl {
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}
.wysiwyg #planTabControl a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B50025;
  letter-spacing: 0.01em;
  font-weight: 700;
  border: 1px solid #707070;
  border-bottom: none;
  transition: 0.3s;
}
.wysiwyg #planTabControl a.is-active {
  color: #fff;
  background-color: #B50025;
  border: 1px solid #B50025;
  pointer-events: none;
}
.wysiwyg #planTabControl a.blue {
  color: #424F8A;
}
.wysiwyg #planTabControl a.blue.is-active {
  color: #fff;
  background-color: #424F8A;
  border: 1px solid #424F8A;
}
.wysiwyg #planTabControl a.beige {
  color: #694A26;
}
.wysiwyg #planTabControl a.beige.is-active {
  color: #000;
  background-color: #D3B270;
  border: 1px solid #D3B270;
}
.wysiwyg .flowChart li {
  display: flex;
}
.wysiwyg .flowChart li:first-child .planMethod {
  padding-top: 0;
}
.wysiwyg .flowChart .planOrder {
  position: relative;
}
.wysiwyg .flowChart .planOrder::before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  height: 100%;
  z-index: 1;
  background-color: #B50025;
}
.wysiwyg .flowChart .planOrder.blue::before {
  background-color: #424F8A;
}
.wysiwyg .flowChart .planOrder.beige::before {
  background-color: #D3B270;
}
.wysiwyg .flowChart .planOrder.overlayBlueBottom::after {
  content: "";
  display: block;
  background-color: #424F8A;
  position: absolute;
  top: inherit;
  bottom: 0;
  z-index: 2;
}
.wysiwyg .flowChart .planOrder.overlayBlueTop::after {
  content: "";
  display: block;
  background-color: #424F8A;
  position: absolute;
  top: 0;
  z-index: 2;
}
.wysiwyg .flowChart .planOrder.overlayBeigeBottom::after {
  content: "";
  display: block;
  background-color: #D3B270;
  position: absolute;
  top: inherit;
  bottom: 0;
  z-index: 2;
}
.wysiwyg .flowChart .orderNumber {
  position: absolute;
  font-weight: 700;
  border-radius: 50px;
  background-color: #B50025;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.wysiwyg .flowChart .orderNumber.wht {
  background-color: #fff;
  color: #B50025;
}
.wysiwyg .flowChart .orderNumber.whtBlue {
  background-color: #fff;
  color: #424F8A;
}
.wysiwyg .flowChart .orderNumber.whtBeige {
  background-color: #fff;
  color: #694A26;
  text-align: center;
}
.wysiwyg .flowChart .orderNumber.large {
  border-radius: 100px;
  line-height: 1.28;
}
.wysiwyg .flowChart .orderNumber.center {
  transform: translateY(-50%) !important;
}
.wysiwyg .flowChart .orderNumber.last {
  top: inherit !important;
  bottom: 0;
}
.wysiwyg .flowChart .orderNumber.blue {
  background-color: #424F8A;
}
.wysiwyg .flowChart .orderNumber.beige {
  background-color: #D3B270;
  color: #000;
}
.wysiwyg .flowChart .planMethod {
  display: flex;
}
.wysiwyg .flowChart .planMethod.separator {
  color: #B50025;
  font-weight: 700;
  align-items: center;
}
.wysiwyg .flowChart .planMethod.last {
  justify-content: center;
}
.wysiwyg .flowChart .planMethod.last .methodTxt {
  font-weight: 500;
}
.wysiwyg .flowChart .planMethod dl {
  width: 100%;
}
.wysiwyg .flowChart .planMethod .season {
  letter-spacing: normal;
}
.wysiwyg .flowChart .planMethod dd {
  position: relative;
}
.wysiwyg .flowChart .planMethod .methodTitle {
  font-weight: 500;
  letter-spacing: 0.01em;
}
.wysiwyg .flowChart .planMethod .methodTxt {
  margin: 0;
}
.wysiwyg .flowChart .iconTxt p {
  margin-top: 0;
}
.wysiwyg .flowChart .graduation p {
  text-align: center;
}
.wysiwyg .flowChart .graduation span {
  display: block;
}
.wysiwyg .flowIntro {
  background-color: #EBE9E1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wysiwyg .flowStart {
  text-align: center;
  color: #B50025;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.wysiwyg .flowStart span {
  position: relative;
}
.wysiwyg .flowStart span::before {
  content: "";
  display: block;
  background: url(../image/icon_school_search1.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 0;
}
.wysiwyg .flowTitle {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #E8E4D5;
}
.wysiwyg .flowTitle::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.wysiwyg .flowTitle div {
  display: flex;
}
.wysiwyg .flowTitle span {
  display: block;
  font-weight: 500;
}
.wysiwyg .flowTitle span.step {
  position: relative;
  text-align: left;
}
.wysiwyg .flowTitle span.step::before {
  content: "";
  display: block;
  background-color: #B50025;
  position: absolute;
  left: 0;
  border-radius: 50px;
}
.wysiwyg .flowTitle span.item {
  text-align: center;
}
.wysiwyg .flowTitle.open::after {
  transform: translateY(-50%) rotate(-90deg);
}
.wysiwyg .flowContents {
  display: none;
}
.wysiwyg .flowBlock li {
  display: flex;
  align-items: center;
}
.wysiwyg .flowBlock li.reverse {
  flex-direction: row-reverse;
  justify-content: end;
}
.wysiwyg .flowBlock li.reverse .flowImg {
  margin-right: 0;
}
.wysiwyg .flowBlock li.reverse .bubble {
  background-color: #F1C272;
}
.wysiwyg .flowBlock li.reverse .bubble::before {
  content: none;
}
.wysiwyg .flowBlock li.reverse .bubble::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-right: 0;
}
.wysiwyg .flowBlock .flowImg {
  display: flex;
}
.wysiwyg .flowBlock .bubble {
  position: relative;
  background-color: #EBE9E1;
  margin-top: 0;
}
.wysiwyg .flowBlock .bubble::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0;
  border-style: solid;
}
.wysiwyg .flowGoal {
  text-align: center;
  color: #B50025;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.wysiwyg .world_map {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
}
.wysiwyg .world_select_btn {
  font-weight: 500;
  line-height: 1.45;
  color: #694A26;
  background-color: #F5F4F2;
  border: 1.5px solid #694A26;
  border-radius: 50px;
}
.wysiwyg .world_select_btn.current {
  pointer-events: none;
  color: #000;
  background-color: #D3B270;
  border: 1px solid #D3B270;
}
.wysiwyg .country_list {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .country_list li a {
  display: block;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
  color: #694A26;
  background-color: #F5F4F2;
  border: 1.5px solid #F5F4F2;
  border-radius: 50px;
  transition: 0.3s;
}
.wysiwyg .country_contents {
  overflow: hidden;
}
.wysiwyg .country_contents .country_name {
  background-color: #E8E4D5;
  font-weight: 700;
  text-align: center;
  max-width: 100%;
  line-height: 1.1;
}
.wysiwyg .country_contents .country_inner {
  background-color: #F5F4F2;
}
.wysiwyg .country_contents .country_pdf_link {
  color: #000;
  font-weight: 500;
}
.wysiwyg .country_contents .country_details div {
  display: flex;
  line-height: 1.72;
  letter-spacing: 0.024em;
}
.wysiwyg .country_contents .country_details dd a {
  position: relative;
  color: #000;
}
.wysiwyg .country_contents .country_details dd a span {
  position: relative;
}
.wysiwyg .country_contents .country_details dd a span::after {
  content: "";
  display: block;
  background: url(../image/icon_blank1.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .country_contents .country_sns {
  background-color: #fff;
  display: flex;
  align-items: center;
}
.wysiwyg .country_contents .country_sns p {
  font-weight: 500;
}
.wysiwyg .country_contents table a {
  word-break: break-all;
}
.wysiwyg #japanMap {
  aspect-ratio: 7815/6456;
}
.wysiwyg a .st0 {
  transition: all 0.3s linear;
}
.wysiwyg a:hover .st0,
.wysiwyg a:focus .st0 {
  fill: #D3B270;
}
.wysiwyg .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #EBE9E1;
}
.wysiwyg .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: none;
  stroke: #000000;
  stroke-miterlimit: 10;
}
.wysiwyg .map_connect.current > .st0 {
  fill: #D3B270;
}
.wysiwyg .japan_slider {
  display: none;
}
.wysiwyg .japan_slider .prev {
  border: none;
  position: relative;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  z-index: 3;
}
.wysiwyg .japan_slider .prev::after {
  content: "";
  display: block;
  background: url(../image/arrow_wht.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
}
.wysiwyg .japan_slider .next {
  border: none;
  position: relative;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
  z-index: 3;
}
.wysiwyg .japan_slider .next::after {
  content: "";
  display: block;
  background: url(../image/arrow_wht.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wysiwyg .japan_slider .slick-slide:not(.slick-current) {
  transition: opacity 0.3s;
  opacity: 0.5;
}
.wysiwyg .japan_slider .prev.slick-arrow.slick-disabled,
.wysiwyg .japan_slider .next.slick-arrow.slick-disabled {
  background-color: #D0D0D0;
  pointer-events: none;
}
.wysiwyg .japan_slider .prev.slick-arrow.slick-disabled:focus,
.wysiwyg .japan_slider .next.slick-arrow.slick-disabled:focus {
  background-color: #D0D0D0;
}
.wysiwyg .japan_slider.slick-initialized {
  display: block;
}
.wysiwyg .japan_slider_item {
  overflow: hidden;
}
.wysiwyg .japan_slider_item .txt {
  text-align: center;
  background-color: #fff;
}
.wysiwyg .japan_slider_item .area {
  position: relative;
  font-weight: 700;
}
.wysiwyg .japan_slider_item .area::after {
  content: "";
  display: block;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.wysiwyg .japan_slider_item .area_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wysiwyg .japan_slider_item .area_link li {
  position: relative;
}
.wysiwyg .japan_slider_item .area_link li::after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .japan_slider_item .area_link li:last-child::after {
  content: none;
}
.wysiwyg .japan_slider_item .area_link li a {
  color: #000;
}
.wysiwyg .japan_slider_item .area_link li:first-child > a {
  padding: 0 12px 0 0;
}
.wysiwyg .japan_slider_item .area_link li:last-child > a {
  padding: 0 0 0 12px;
}
.wysiwyg .japan_slider_item .area_link li:only-child > a {
  padding: 0 !important;
}
.wysiwyg .prefecture_list {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .prefecture_list li a {
  display: block;
  border: 1.5px solid #333;
  border-radius: 50px;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.wysiwyg .summary {
  display: flex;
}
.wysiwyg .summaryImgList {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .summaryImgList li img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg .featuresSlider .slick-slide:not(.slick-current) {
  opacity: 0.5;
}
.wysiwyg .featuresSlider .featuresImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wysiwyg .featuresSlider .prev.slick-arrow.slick-disabled,
.wysiwyg .featuresSlider .next.slick-arrow.slick-disabled {
  background-color: #D0D0D0;
  pointer-events: none;
}
.wysiwyg .featuresSlider .prev.slick-arrow.slick-disabled:focus,
.wysiwyg .featuresSlider .next.slick-arrow.slick-disabled:focus {
  background-color: #D0D0D0;
}
.wysiwyg .foodsList.new li {
  width: 100%;
}
.wysiwyg .foodsList.new .foodsImg img {
  border-radius: 8px;
}
.wysiwyg .graf p {
  text-align: right;
}
.wysiwyg .climate {
  display: flex;
}
.wysiwyg .climate .climateTxt {
  margin-top: 0;
}
.wysiwyg .costList {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .costList li {
  background-color: #F5F4F2;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.wysiwyg .costList .costType {
  position: relative;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
  width: 100%;
}
.wysiwyg .costList .costType::after {
  content: "";
  display: block;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.wysiwyg .costList .costImg {
  width: 100%;
}
.wysiwyg .costList .price {
  color: #000;
  font-weight: 700;
  width: 100%;
  margin-top: 0 !important;
}
.wysiwyg .innerBeige {
  background-color: #EBE9E1;
}
.wysiwyg .rootMap dt {
  position: relative;
  font-weight: 500;
}
.wysiwyg .rootMap dt::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wysiwyg .rootMap dt.plane::before {
  background: url(../image/icon_root_plane.svg) no-repeat center/100%;
}
.wysiwyg .rootMap dt.train::before {
  background: url(../image/icon_root_train.svg) no-repeat center/100%;
}
.wysiwyg .rootMap .wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wysiwyg .rootMap .place {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  text-align: center;
  width: 100%;
  border-radius: 100svh;
  line-height: 1.5;
}
.wysiwyg .rootMap .place::before {
  content: "";
  display: block;
  background: url(../image/double_circle_red.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wysiwyg .rootMap .place:last-of-type::after {
  content: "";
  display: block;
  background-color: #B50025;
  position: absolute;
  width: 1px;
  z-index: 10;
}
.wysiwyg .rootMap .place:not(:last-of-type)::after {
  content: "";
  display: block;
  background-color: #B50025;
  position: absolute;
  width: 1px;
  z-index: 10;
}
.wysiwyg .rootMap .timeTag {
  position: relative;
  line-height: 1;
  background-color: #B50025;
  color: #fff;
}
.wysiwyg .rootMap .timeTag::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #B50025;
}
.wysiwyg .countryRanking {
  display: flex;
  margin-inline: auto;
}
.wysiwyg .countryRanking li {
  position: relative;
  background-color: #fff;
  border-radius: 100svh;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .countryRanking li img {
  display: block;
  position: absolute;
}
.wysiwyg .countryRanking + .taC {
  max-width: inherit;
}
.wysiwyg .schoolList {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .schoolList li a {
  background-color: #EDEDED;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
}
.wysiwyg .schoolList .thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg .schoolList .nameBox {
  position: relative;
}
.wysiwyg .schoolList .nameBox span {
  display: block;
}
.wysiwyg .schoolList .nameBox span.kana {
  letter-spacing: 0.1em;
}
.wysiwyg .schoolList .nameBox span.name {
  font-weight: 700;
}
.wysiwyg .schoolList .nameBox::before {
  content: "";
  display: block;
  background-color: #B50025;
  position: absolute;
  top: 0;
  left: 0;
}
.wysiwyg .schoolList .info {
  display: flex;
}
.wysiwyg .schoolList .info p {
  position: relative;
  margin-top: 0;
}
.wysiwyg .schoolList .info p:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wysiwyg .schoolList .info p.program:before {
  background: url(../image/icon_blk_program.svg) no-repeat center/100%;
}
.wysiwyg .schoolList .info p.type:before {
  background: url(../image/icon_blk_type.svg) no-repeat center/100%;
}
.wysiwyg .schoolList > *:nth-child(n+10) {
  display: none !important;
}
.wysiwyg .m_list.m_list_ranking li {
  display: flex;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number {
  position: relative;
  color: #B50025;
  font-weight: 500;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number::before {
  content: "";
  display: block;
  background: url(../image/ranking_emb.svg) no-repeat center/100%;
  position: absolute;
  top: 0;
  left: 0;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number::after {
  content: "";
  display: block;
  background: url(../image/ranking_emb.svg) no-repeat center/100%;
  transform: scale(-1, 1);
  position: absolute;
  top: 0;
  right: 0;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .m_list_ranking_segment {
  font-weight: 500;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .m_list_ranking_data svg {
  width: 100%;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(3) {
  border-bottom: 1px solid #707070;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .ranking_number {
  color: #fff;
  background-color: #B50025;
  font-weight: 500;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .m_list_ranking_data svg {
  width: 100%;
}
.wysiwyg .pie_graph {
  overflow: hidden;
}
.wysiwyg .graph_source {
  text-align: center;
}
.wysiwyg .bubble_box p {
  position: relative;
  background-color: #EBE9E1;
}
.wysiwyg .bubble_box p::before {
  content: "";
  display: block;
  position: absolute;
}
.wysiwyg .contactArea {
  background-color: #EBE9E1;
}
.wysiwyg .contactArea .contactTitle {
  position: relative;
  font-weight: 500;
  line-height: 1.45;
}
.wysiwyg .contactArea .contactTitle::before {
  content: "";
  display: block;
  background: url(../image/icon_mail_large.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .contactArea .organization {
  position: relative;
}
.wysiwyg .contactArea .organization span {
  display: block;
}
.wysiwyg .contactArea .organization span.official {
  font-weight: 500;
}
.wysiwyg .inquiryArea {
  background-color: #EBE9E1;
}
.wysiwyg .inquiryArea p {
  text-align: center;
}
.wysiwyg .inquiryArea .contactLinkBtn {
  margin-inline: auto;
}
.wysiwyg .ascojaLinkArea {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .ascojaLinkArea .ascojaLinkBtn {
  color: #333;
  font-weight: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .ascojaLinkArea .ascojaLinkBtn span {
  position: relative;
}
.wysiwyg .ascojaLinkArea .ascojaLinkBtn span::before {
  content: "";
  display: block;
  background: url(../image/icon_ascoja.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .ascojaLinkArea .ascojaLinkBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .searchLinkArea {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .searchLinkArea .searchLinkBtn {
  color: #333;
  font-weight: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .searchLinkArea .searchLinkBtn span {
  position: relative;
}
.wysiwyg .searchLinkArea .searchLinkBtn span::before {
  content: "";
  display: block;
  background: url(../image/icon_school_search1.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .searchLinkArea .searchLinkBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .scholarshipLinkArea {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .scholarshipLinkArea .scholarshipLinkBtn {
  color: #333;
  font-weight: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span {
  position: relative;
}
.wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span::before {
  content: "";
  display: block;
  background: url(../image/icon_scholarship.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .linkArea {
  background-color: #EBE9E1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .linkArea .wrap {
  display: flex;
  justify-content: center;
}
.wysiwyg .faqLinkBtn {
  color: #333;
  font-weight: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .faqLinkBtn span {
  position: relative;
}
.wysiwyg .faqLinkBtn span::before {
  content: "";
  display: block;
  background: url(../image/icon_faq.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .faqLinkBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .contactLinkBtn {
  color: #333;
  font-weight: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .contactLinkBtn span {
  position: relative;
}
.wysiwyg .contactLinkBtn span::before {
  content: "";
  display: block;
  background: url(../image/icon_mail_large.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .contactLinkBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .supportLinkBtn {
  color: #333;
  font-weight: 500;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .supportLinkBtn span {
  position: relative;
}
.wysiwyg .supportLinkBtn span::before {
  content: "";
  display: block;
  background: url(../image/icon_supportlink.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .supportLinkBtn span::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.wysiwyg .p_plan_list_define dt {
  font-weight: 700;
  border-bottom: 1px dotted #333;
}
.wysiwyg .img_txt_col2 {
  display: flex;
}
.wysiwyg .img_txt_col2 .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg .img_caption .w718 {
  text-align: center;
  margin-inline: auto;
}
.wysiwyg .img_col3_list {
  display: flex;
}
.wysiwyg .img_col3_list li {
  text-align: center;
}
.wysiwyg .img_col3_list li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg .lang_link {
  text-align: right;
  margin-left: auto;
}
.wysiwyg .lang_link a {
  position: relative;
  display: inline-block;
  font-weight: 400;
  color: #000;
}
.wysiwyg .lang_link a::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
}
.wysiwyg .lang_link + * {
  margin-top: 0;
}
.wysiwyg .u_icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.wysiwyg .u_icon img {
  width: 16px;
  height: 16px;
}
.wysiwyg #filterButtons {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg #filterButtons .filterTitle {
  font-weight: 500;
}
.wysiwyg #filterButtons button {
  color: #694A26;
  background-color: #F5F4F2;
  font-weight: 500;
  border-radius: 100svh;
  border: none;
  transition: 0.3s;
}
.wysiwyg #filterButtons button.active {
  position: relative;
  color: #000;
  background-color: #D3B270;
}
.wysiwyg #filterButtons button.active::before {
  content: "";
  display: block;
  background-color: #000;
  top: 52%;
  transform: rotate(-45deg);
  border-radius: 100svh;
  position: absolute;
}
.wysiwyg #filterButtons button.active::after {
  content: "";
  display: block;
  background-color: #000;
  top: 52%;
  transform: rotate(45deg);
  border-radius: 100svh;
  position: absolute;
}
.wysiwyg #categoryList {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg #categoryList li {
  background-color: #F5F4F2;
}
.wysiwyg #categoryList li a {
  color: #000;
  text-decoration: none;
}
.wysiwyg #categoryList li h3 {
  text-decoration: none;
}
.wysiwyg #categoryList .thumbnail {
  position: relative;
}
.wysiwyg #categoryList .thumbnail::after {
  content: "";
  display: block;
  background: url(../image/icon_note_red.svg) no-repeat center/100%;
  position: absolute;
}
.wysiwyg #categoryList img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.wysiwyg #categoryList .wrap {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg #categoryList .person {
  color: #694A26;
  font-weight: 500;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.wysiwyg #categoryList .person::before {
  content: "";
  display: block;
  background: url(../image/icon_person_brown.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
}
.wysiwyg #categoryList .place {
  color: #694A26;
  font-weight: 500;
  display: inline-block;
  position: relative;
  line-height: 1.2;
  margin-top: 0;
}
.wysiwyg #categoryList .place::before {
  content: "";
  display: block;
  background: url(../image/icon_map_brown.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
}
.wysiwyg #categoryList .school {
  color: #694A26;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.wysiwyg #categoryList .school::before {
  content: "";
  display: block;
  background: url(../image/icon_school_brown.svg) no-repeat center/100%;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.wysiwyg #categoryList .student {
  color: #694A26;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.wysiwyg #categoryList .student::before {
  content: "";
  display: block;
  background: url(../image/icon_student_brown.svg) no-repeat center/100%;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.wysiwyg #categoryList .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.wysiwyg #categoryList .detailLink {
  display: block;
  color: #B50025;
}
.wysiwyg #categoryList .detailLink span {
  position: relative;
}
.wysiwyg #categoryList .detailLink span::before {
  content: "";
  display: block;
  background: url(../image/arrow_red.svg) no-repeat center/100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .btnAdd {
  position: relative;
  color: #fff;
  background: #B50025;
  font-weight: 500;
  border-radius: 100svh;
  text-align: center;
  border: none;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
}
.wysiwyg .btnAdd span {
  display: inline-block;
  background: url(../image/arrow_wht.svg) no-repeat center/100%;
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
  top: 50%;
}
.wysiwyg .shareBtns {
  display: flex;
  flex-wrap: wrap;
}
.wysiwyg .shareBtns > a {
  display: block;
  background-color: #F5F4F2;
  color: #694A26;
  font-weight: 500;
  border-radius: 100svh;
  text-decoration: none;
  border: 1px solid transparent;
}
.wysiwyg .shareBtns > a span {
  position: relative;
  display: block;
}
.wysiwyg .shareBtns > a span.fb::before {
  background: url(../image/icon_share_facebook.svg) no-repeat center/100%;
}
.wysiwyg .shareBtns > a span.ig::before {
  background: url(../image/icon_share_instagram.svg) no-repeat center/100%;
}
.wysiwyg .shareBtns > a span.wc::before {
  background: url(../image/icon_share_wechat.svg) no-repeat center/100%;
}
.wysiwyg .shareBtns > a span.wb::before {
  background: url(../image/icon_share_weibo.svg) no-repeat center/100%;
}
.wysiwyg .shareBtns > a span.ml::before {
  background: url(../image/icon_share_mail.svg) no-repeat center/100%;
}
.wysiwyg .shareBtns > a span.x::before {
  background: url(../image/icon_share_x.svg) no-repeat center/100%;
}
.wysiwyg .shareBtns > a span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.wysiwyg .shareBtns > a .u_icon {
  display: none !important;
}

.pageTitleBox {
  position: relative;
  background-color: #EBE9E1;
}
.pageTitleBox::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.pageTitleBox.ttl_image_none::before {
  content: none;
}
.pageTitleBox.ttl_planning::before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.pageTitleBox .inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.pageTitleBox .pageTitleBase {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 50%, rgba(255, 255, 255, 0.6) 100%);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.pageTitleBox .pageTitle {
  position: relative;
  display: flex;
  align-items: center;
}
.pageTitleBox .pageTitle:after {
  content: "";
  display: block;
  background-color: #B50025;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.pageTitleBox .mainTitle {
  font-weight: 500;
  color: #333;
}
.pageTitleBox .subTitle {
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}

.postTitleBox {
  background-color: #EBE9E1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.postTitleBox.voice .layout {
  display: flex;
}
.postTitleBox.voice .layout .thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.postTitleBox.voice .layout .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.postTitleBox.voice .layout .tag > li {
  background-color: #D3B270;
  font-size: 14px;
}
.postTitleBox.voice .layout .wrap {
  display: flex;
  flex-wrap: wrap;
}
.postTitleBox.voice .layout .person {
  color: #694A26;
  font-weight: 500;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.postTitleBox.voice .layout .person::before {
  content: "";
  display: block;
  background: url(../image/icon_person_brown.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
}
.postTitleBox.voice .layout .place {
  color: #694A26;
  font-weight: 500;
  display: inline-block;
  position: relative;
  line-height: 1.2;
  margin-top: 0;
}
.postTitleBox.voice .layout .place::before {
  content: "";
  display: block;
  background: url(../image/icon_map_brown.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
}
.postTitleBox.voice .layout .school {
  color: #694A26;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.postTitleBox.voice .layout .school::before {
  content: "";
  display: block;
  background: url(../image/icon_school_brown.svg) no-repeat center/100%;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.postTitleBox.voice .layout .student {
  color: #694A26;
  font-weight: 500;
  position: relative;
  line-height: 1.2;
  margin-top: 0;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.postTitleBox.voice .layout .student::before {
  content: "";
  display: block;
  background: url(../image/icon_student_brown.svg) no-repeat center/100%;
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0;
}
.postTitle {
  color: #000;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.postTitle.center {
  text-align: center;
}
.postDate {
  color: #000;
  line-height: 1.75;
}

.postTitleBox.event .postInner {
  display: flex;
}
.breadCrumb .breadCrumbList li {
  display: inline;
  position: relative;
}
.breadCrumb .breadCrumbList li:not(:last-child)::after {
  content: "";
  display: inline-block;
  background: url(../image/arrow.svg) no-repeat center/100%;
}
.breadCrumb .breadCrumbList a {
  display: inline;
  color: #694A26;
}
.breadCrumb .breadCrumbList a span {
  display: inline;
}

#contents .inner {
  max-width: inherit;
  width: 100%;
}
#contents .inner > *:first-child {
  margin-top: 0;
}
#contents .inner:has(.innerBeige) {
  padding-top: 0;
}
#contents .beigeBg {
  background-color: #EBE9E1;
}
#contents .greyBg {
  background-color: #F0F0F0;
}
.link-list p a {
  position: relative;
  font-weight: 400;
  color: #000;
}
.link-list p a::after {
  content: "";
  display: block;
  background: url(../image/arrow.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
}
.link-list p a img.u_icon {
  display: inline-block;
}

.svg_container svg {
  width: 100%;
  height: 100%;
  transform-box: fill-box;
}

pre {
  background-color: #eee;
  white-space: pre-wrap;
}
pre code {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  word-wrap: break-word;
}

/* common class */
.imgC {
  margin: 0 auto;
}

.imgL {
  margin-right: auto;
}

.imgR {
  margin-left: auto;
}

.taL {
  text-align: left !important;
}

.taC {
  text-align: center !important;
}

.taR {
  text-align: right !important;
}

.mB0 {
  margin-bottom: 0 !important;
}

.mB5 {
  margin-bottom: 5px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mB60 {
  margin-bottom: 60px !important;
}

.mT0 {
  margin-top: 0 !important;
}

.mT5 {
  margin-top: 5px !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mT60 {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .m_section > .partsTitle,
  .m_section > pre {
    padding: 10px 24px;
  }
  .wysiwyg h2,
  .wysiwyg .h2 {
    font-size: 24px;
    line-height: 1.58;
    padding-bottom: 27px;
    margin-bottom: 45px;
  }
  .wysiwyg h2::after,
  .wysiwyg .h2::after {
    width: 120px;
    height: 10px;
  }
  .wysiwyg h2:has(a) a,
  .wysiwyg .h2:has(a) a {
    -webkit-text-decoration: underline 1px;
            text-decoration: underline 1px;
    text-underline-offset: 6px;
  }
  .wysiwyg * + h2,
  .wysiwyg * + .h2 {
    margin-top: 70px;
  }
  .wysiwyg h3,
  .wysiwyg .h3 {
    font-size: 20px;
    letter-spacing: 0.005em;
    line-height: 1.65;
    padding-left: 18px;
    margin-bottom: 30px;
  }
  .wysiwyg h3::after,
  .wysiwyg .h3::after {
    top: 3px;
    width: 3px;
    height: 29px;
  }
  .wysiwyg * + h3,
  .wysiwyg * + .h3 {
    margin-top: 45px;
  }
  .wysiwyg * + a > h3,
  .wysiwyg * + a > .h3 {
    margin-top: 45px;
  }
  .wysiwyg h4,
  .wysiwyg .h4 {
    font-size: 17px;
    padding: 8px 12px;
    margin-bottom: 15px;
  }
  .wysiwyg * + h4,
  .wysiwyg * + .h4 {
    margin-top: 25px;
  }
  .wysiwyg .partsTitle {
    font-size: 22px;
  }
  .wysiwyg .partsTitle + * {
    margin-top: 10px;
  }
  .wysiwyg * + p {
    margin-top: 18px;
  }
  .wysiwyg .caption {
    font-size: 13px;
    margin-top: 15px;
  }
  .wysiwyg .small_txt {
    font-size: 12px;
  }
  .wysiwyg .usual_link {
    font-size: 14px;
    line-height: 1.64;
    padding: 0 0 0 16.5px;
  }
  .wysiwyg .usual_link::after {
    width: 8.5px;
    height: 11px;
    top: 6px;
  }
  .wysiwyg p:not([class]):has(.usual_link) + p:not([class]),
  .wysiwyg p + p:has(.usual_link) {
    margin-top: 6px;
  }
  .wysiwyg p:not([class]):has(.usual_link) + p:has(strong) {
    margin-top: 18px !important;
  }
  .wysiwyg .link-list + p {
    margin-top: 38px;
  }
  .wysiwyg ul:not([class]) li {
    font-size: 14px;
    padding-left: 13px;
  }
  .wysiwyg ul:not([class]) li:not(:last-child) {
    margin-bottom: 18px;
  }
  .wysiwyg ul:not([class]) li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }
  .wysiwyg ol:not([class]) li {
    font-size: 14px;
  }
  .wysiwyg ol:not([class]) li:not(:last-child) {
    margin-bottom: 18px;
  }
  .wysiwyg ol:not([class]) li::marker {
    padding-right: 15px;
  }
  .wysiwyg ol:not([class]) .m_list.m_list_link.txt_link {
    margin-top: 15px;
  }
  .wysiwyg * + ul:not([class]),
  .wysiwyg * + ol:not([class]),
  .wysiwyg * + .alphabet_list,
  .wysiwyg * + .roma_list {
    margin-top: 25px !important;
  }
  .wysiwyg .alphabet_list {
    margin-top: 15px;
  }
  .wysiwyg .alphabet_list li {
    font-size: 14px;
  }
  .wysiwyg .alphabet_list li:not(:last-child) {
    margin-bottom: 18px;
  }
  .wysiwyg .alphabet_list li::before {
    padding-right: 15px;
  }
  .wysiwyg .roma_list {
    margin-top: 15px;
  }
  .wysiwyg .roma_list li {
    font-size: 14px;
  }
  .wysiwyg .roma_list li:not(:last-child) {
    margin-bottom: 18px;
  }
  .wysiwyg .roma_list li::before {
    padding-right: 15px;
  }
  .wysiwyg .m_list.m_list_link li:not(:last-child) {
    margin-bottom: 15px;
  }
  .wysiwyg .m_list.m_list_link li a {
    font-size: 14px;
    line-height: 1.64;
    letter-spacing: 0.01em;
    border-radius: 4px;
    padding: 13px 13px 13px 28px;
  }
  .wysiwyg .m_list.m_list_link li a::after {
    width: 8.5px;
    height: 11px;
    top: 17.5px;
    left: 12px;
  }
  .wysiwyg .m_list.m_list_link.box_link li a {
    padding: 15px 30px 15px 15px;
  }
  .wysiwyg .m_list.m_list_link.box_link li a::after {
    top: 20.5px;
    right: 15px;
  }
  .wysiwyg .m_list.m_list_link.txt_link li a {
    font-size: 14px;
    line-height: 1.64;
    padding: 0 0 0 16.5px;
  }
  .wysiwyg .m_list.m_list_link.txt_link li a::after {
    top: 6px;
  }
  .wysiwyg * + .m_list.m_list_link {
    margin-top: 20px;
  }
  .wysiwyg .rounded_color_box {
    border-radius: 4px;
  }
  .wysiwyg .unique_box,
  .wysiwyg .m_box {
    border-radius: 4px;
    padding: 18px 23px;
  }
  .wysiwyg .unique_box.col2 * + .img,
  .wysiwyg .m_box.col2 * + .img {
    width: 80%;
    margin-top: 20px;
  }
  .wysiwyg .unique_box.col2 .box_inner .img,
  .wysiwyg .m_box.col2 .box_inner .img {
    width: 40%;
    margin: 0 auto 20px;
  }
  .wysiwyg .unique_box.col2 .box_inner h3,
  .wysiwyg .m_box.col2 .box_inner h3 {
    margin: 25px 0 10px;
  }
  .wysiwyg .unique_box ul li:not(:last-child),
  .wysiwyg .m_box ul li:not(:last-child) {
    margin-bottom: 7px;
  }
  .wysiwyg * + .unique_box,
  .wysiwyg * + .m_box {
    margin-top: 22px;
  }
  .wysiwyg .unique_box_container {
    flex-wrap: wrap;
  }
  .wysiwyg .unique_box_container .unique_title {
    font-size: 16px;
  }
  .wysiwyg .unique_box_container .unique_box {
    width: 100%;
  }
  .wysiwyg table th {
    font-size: 14px;
    padding: 6px;
  }
  .wysiwyg table td {
    font-size: 14px;
    padding: 6px;
  }
  .wysiwyg table a {
    font-size: 14px;
  }
  .wysiwyg table.t_w150_sp {
    width: 150%;
  }
  .wysiwyg table.small_table {
    width: 650px;
    overflow: auto;
  }
  .wysiwyg table.small_table.spW100 {
    width: 100%;
  }
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg table:not(.small_table) p {
    font-size: 14px !important;
  }
  .wysiwyg table:not(.small_table) ul li,
  .wysiwyg table:not(.small_table) ol li {
    font-size: 14px !important;
  }
  .wysiwyg table.scroll_wide {
    width: 1200px;
  }
  .wysiwyg .table_type3 th,
  .wysiwyg .table_type3 td {
    padding: 3%;
    font-size: 14px;
  }
  .wysiwyg * + table,
  .wysiwyg * + .table_scroll {
    margin-top: 15px;
  }
  .wysiwyg .table_scroll {
    overflow: auto;
  }
  .wysiwyg .mainMenuBtn a {
    font-size: 16px;
    line-height: 1.45;
    border-radius: 4px;
    min-height: 70px;
    padding: 0 33px 0 13px;
  }
  .wysiwyg .mainMenuBtn span::after {
    width: 8.5px;
    height: 11px;
    top: 50%;
    right: -20px;
    margin-left: 4px;
  }
  .wysiwyg .mainMenuBtn + .m_list.m_list_link.txt_link {
    margin-top: 20px;
  }
  .wysiwyg .mainMenuBtn.icon a {
    min-height: 111px;
  }
  .wysiwyg .mainMenuBtn.icon span {
    margin-top: 45px;
  }
  .wysiwyg .mainMenuBtn.icon span.info::before {
    top: -45px;
    left: calc(50% + 9px);
    width: 35px;
    height: 35px;
  }
  .wysiwyg .mainMenuBtn.icon span.publication::before {
    top: -45px;
    left: calc(50% + 9px);
    width: 29px;
    height: 34px;
  }
  .wysiwyg .mainMenuBtn.icon span.event {
    margin-top: 40px;
  }
  .wysiwyg .mainMenuBtn.icon span.event::before {
    top: -40px;
    left: calc(50% + 9px);
    width: 36px;
    height: 30px;
  }
  .wysiwyg .mainMenuBtn.icon span.investigation {
    margin-top: 40px;
  }
  .wysiwyg .mainMenuBtn.icon span.investigation::before {
    top: -40px;
    left: calc(50% + 9px);
    width: 24px;
    height: 34px;
  }
  .wysiwyg .mainMenuBtn.icon span.video {
    margin-top: 35px;
  }
  .wysiwyg .mainMenuBtn.icon span.video::before {
    top: -35px;
    left: calc(50% + 9px);
    width: 33px;
    height: 27px;
  }
  .wysiwyg .mainMenuBtn.icon span.video::after {
    right: -25px;
  }
  .wysiwyg .mainMenuBtn.icon span.monitor {
    margin-top: 35px;
  }
  .wysiwyg .mainMenuBtn.icon span.monitor::before {
    top: -35px;
    left: calc(50% + 9px);
    width: 31px;
    height: 27px;
  }
  .wysiwyg .mainMenuBtn.no_arrow a {
    padding: 0 23px;
  }
  .wysiwyg .mainMenuTitle {
    font-size: 16px;
    line-height: 1.45;
    border-radius: 4px;
    min-height: 70px;
    padding: 0 23px;
  }
  .wysiwyg .mainMenuTitle + .m_list.m_list_link.txt_link {
    margin-top: 20px;
  }
  .wysiwyg .index_list_cont:not(:last-of-type) {
    margin-bottom: 45px;
  }
  .wysiwyg .index_detail_2col {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .wysiwyg .index_detail_2col + .index_list_3col {
    margin-top: 70px;
  }
  .wysiwyg .index_detail_2col.sakura::after {
    bottom: -90px;
    right: -24px;
    width: 176px;
    height: 243px;
  }
  .wysiwyg .index_detail_2col.sakura_small::after {
    bottom: -90px;
    right: -24px;
    width: 176px;
    height: 243px;
  }
  .wysiwyg .detail_img {
    margin-bottom: 15px;
  }
  .wysiwyg .index_list_3col .index_list_cont:not(:last-of-type) {
    margin-bottom: 45px;
  }
  .wysiwyg * + .index_list_2col,
  .wysiwyg * + .index_list_3col {
    margin-top: 32px;
  }
  .wysiwyg .p_top_banner {
    padding: 36px 5% 30px;
  }
  .wysiwyg .p_top_banner::before {
    left: -24px;
    width: calc(100% + 48px);
  }
  .wysiwyg .p_top_banner .p_top_banner_slider {
    flex-wrap: wrap;
  }
  .wysiwyg .p_top_banner .p_top_banner_slider_item:not(:nth-of-type(3n)) {
    margin-bottom: 15px;
  }
  .wysiwyg * + .p_top_banner {
    margin-top: 70px;
  }
  .wysiwyg .news_tab_box .inner,
  .wysiwyg .faq_tab_box .inner {
    padding: 25px 24px !important;
  }
  .wysiwyg .faq_tab_box {
    margin-bottom: 40px;
  }
  .wysiwyg .news_tab_title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .wysiwyg .news_tab_list,
  .wysiwyg .faq_tab_list {
    gap: 15px;
  }
  .wysiwyg .news_tab_list li,
  .wysiwyg .faq_tab_list li {
    width: 47.5%;
  }
  .wysiwyg .news_tab_list li a,
  .wysiwyg .faq_tab_list li a {
    padding: 8px;
    font-size: 14px;
    line-height: 1.3;
  }
  .wysiwyg .m_newslist_wrap {
    padding: 40px 24px;
  }
  .wysiwyg .m_newslist {
    margin-bottom: 40px;
  }
  .wysiwyg .m_newslist li.m_newslist_item {
    margin-bottom: 20px;
  }
  .wysiwyg .m_newslist li.m_newslist_item:not(:last-child) {
    border-bottom: solid 0.5px #ccc;
    padding: 0 0 15px;
  }
  .wysiwyg .m_newslist time.m_newslist_item_date {
    margin-bottom: 5px;
  }
  .wysiwyg .m_newslist span.m_newslist_item_headline a {
    padding-right: 30px;
  }
  .wysiwyg .m_newslist span.m_newslist_item_headline a::after {
    top: 6px;
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .m_pager ul.m_pager_nav {
    gap: 0 11px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item {
    font-size: 20px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item a {
    width: 35px;
    height: 35px;
    border-radius: 2px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item span {
    width: 35px;
    height: 35px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li:first-child:not(.m_pager_nav_item_first) {
    margin-left: 30px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li:last-child:not(.m_pager_nav_item_last) {
    margin-right: 30px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_first a::before {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_last a::before {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .outline {
    padding: 0 24px;
  }
  .wysiwyg .outlineTitle {
    position: relative;
    background-color: #F5F4F2;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
    color: #694A26;
    font-size: 15px;
    font-weight: 500;
  }
  .wysiwyg .outlineList {
    background-color: #F5F4F2;
    padding: 20px 15px;
    margin-top: 10px;
    border-radius: 4px;
  }
  .wysiwyg .outlineList > li:not(:last-child) {
    margin-bottom: 18px;
  }
  .wysiwyg .outlineList > li:not(:last-child) > a {
    border-bottom: 1px solid #694A26;
    padding-bottom: 18px;
  }
  .wysiwyg .outlineList > li > a {
    color: #694A26;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.53;
    padding-left: 25px;
  }
  .wysiwyg .outlineList > li > a::before {
    background: url(../image/arrow_brown.svg) no-repeat center/100%;
    left: 5px;
    top: 5px;
    width: 8.5px;
    height: 11px;
    transform: rotate(90deg);
  }
  .wysiwyg * + .anc {
    margin-top: 70px;
  }
  .wysiwyg * + .ancChild {
    margin-top: 45px;
  }
  .wysiwyg .outlineSubMenu {
    margin-top: 18px;
  }
  .wysiwyg .outlineSubMenu li {
    padding-left: 25px;
    border-bottom: 1px solid #694A26;
  }
  .wysiwyg .outlineSubMenu li:not(:last-child) {
    margin-bottom: 18px;
  }
  .wysiwyg .outlineSubMenu li > a {
    font-size: 15px;
    line-height: 1.53;
    padding: 0 0 18px 19.5px;
  }
  .wysiwyg .outlineSubMenu li > a::before {
    background: url(../image/arrow_line.svg) no-repeat center/100%;
    width: 8.5px;
    height: 11px;
    transform: rotate(90deg);
    left: 0;
    top: 6px;
  }
  .wysiwyg .anc.secFaq {
    margin-top: 45px;
  }
  .wysiwyg .accordion + .accordion {
    margin-top: 12px;
  }
  .wysiwyg .accordion_title > button {
    font-size: 14px;
    padding: 10px 50px 10px 15px;
  }
  .wysiwyg .accordion_icon {
    width: 13px;
    height: 1.3px;
  }
  .wysiwyg .accordion_icon::before {
    top: 50%;
    left: 6px;
    width: 1.3px;
    height: 13px;
  }
  .wysiwyg .accordion_content {
    padding: 12px 0 18px;
  }
  .wysiwyg .accordion_content * + .m_list.m_list_link.txt_link {
    margin-top: 12px;
  }
  .wysiwyg .boxCol2 .half + .half {
    margin-top: 20px;
  }
  .wysiwyg .boxCol2.snsFixed .outline {
    position: relative;
    margin-top: 45px;
    padding: 45px 0 0 0;
  }
  .wysiwyg .boxCol2.snsFixed .outline::before {
    content: "";
    display: block;
    width: calc(100% + 22px);
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .wysiwyg * + .boxCol2 {
    margin-top: 45px;
  }
  .wysiwyg .details .inner {
    padding: 70px 24px !important;
  }
  .wysiwyg .box_flex_01 {
    display: block;
  }
  .wysiwyg .box_flex_01 div {
    margin-bottom: 20px;
  }
  .wysiwyg .box_flex_01 div img {
    margin: 0 auto;
  }
  .wysiwyg .box_flex_02 {
    gap: 20px;
  }
  .wysiwyg * + .box_flex_01,
  .wysiwyg * + .box_flex_02 {
    margin-top: 20px;
  }
  .wysiwyg .columnImg * + .img {
    margin-top: 20px;
  }
  .wysiwyg * + .columnImg {
    margin-top: 21px;
  }
  .wysiwyg .colorBox {
    padding: 15px 15px 18px;
  }
  .wysiwyg .colorBox .place {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .wysiwyg .colorBox .infoLeft {
    margin-bottom: 15px;
  }
  .wysiwyg .colorBox .date {
    padding-left: 25px;
    margin-bottom: 10px;
  }
  .wysiwyg .colorBox .date::before {
    top: 2px;
  }
  .wysiwyg .colorBox .time {
    padding-left: 25px;
  }
  .wysiwyg .colorBox .time::before {
    top: 2px;
  }
  .wysiwyg .colorBox .map {
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  .wysiwyg .colorBox .map::before {
    top: 2px;
    width: 16px;
    height: 16px;
  }
  .wysiwyg .colorBox .map::after {
    top: 2px;
  }
  .wysiwyg .colorBox .address {
    padding-left: 25px;
  }
  .wysiwyg * + .colorBox {
    margin-top: 15px;
  }
  .wysiwyg #eventTabControl {
    border-bottom: 2px solid #B50025;
  }
  .wysiwyg #eventTabControl a {
    font-size: 14px;
    width: 49%;
    padding: 8px;
    border-radius: 4px 4px 0 0;
  }
  .wysiwyg #eventTabBody {
    padding: 32px 0 0;
  }
  .wysiwyg .eventList {
    gap: 30px 16px;
  }
  .wysiwyg .eventList li {
    border-radius: 4px;
  }
  .wysiwyg .eventList li a {
    padding: 30px 24px;
  }
  .wysiwyg .eventList h3 {
    font-size: 16px;
    margin: 15px 0 18px;
    padding: 0 0 0 20px;
    min-height: 42px;
  }
  .wysiwyg .eventList .eventDate {
    font-size: 14px;
    margin: 0 0 15px 0;
    padding-left: 23px;
  }
  .wysiwyg .eventList .eventDate::before {
    top: 4px;
  }
  .wysiwyg .eventList .eventPlace {
    font-size: 14px;
    margin: 0 0 15px 0;
    padding-left: 23px;
  }
  .wysiwyg .eventList .eventPlace::before {
    top: 4px;
  }
  .wysiwyg .eventList .eventPlace + .eventLink {
    margin-top: 18px;
  }
  .wysiwyg .eventList .eventTxt {
    font-size: 14px;
    margin: 0 0 18px 0;
  }
  .wysiwyg .eventList .eventLink {
    font-size: 16px;
  }
  .wysiwyg .eventList .eventLink span {
    padding: 0 0 0 16px;
  }
  .wysiwyg .eventList .eventLink span::before {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .planIntro {
    letter-spacing: 0.01em;
    margin-bottom: 40px;
  }
  .wysiwyg .planList {
    margin-bottom: 40px;
  }
  .wysiwyg .planList li:not(:last-child) {
    margin-bottom: 30px;
  }
  .wysiwyg .planList li .planNumber {
    border-radius: 4px;
    font-size: 16px;
    min-width: 102px;
    padding: 6px;
    margin-bottom: 15px;
  }
  .wysiwyg .planList li .planTxt {
    letter-spacing: 0.01em;
  }
  .wysiwyg #planTabControl {
    border-bottom: 2px solid #B50025;
  }
  .wysiwyg #planTabControl:has(.blue.is-active) {
    border-bottom: 2px solid #424F8A;
  }
  .wysiwyg #planTabControl:has(.beige.is-active) {
    border-bottom: 2px solid #D3B270;
  }
  .wysiwyg #planTabControl a {
    width: calc(33.3333333333% - 4px);
    border-radius: 4px 4px 0 0;
    min-height: 45px;
    padding: 11px;
  }
  .wysiwyg #planTabBody {
    margin-top: 40px;
  }
  .wysiwyg #planTabBody .planIntro {
    margin-bottom: 43px;
  }
  .wysiwyg .flowChart li.graduationLast {
    height: 149px !important;
  }
  .wysiwyg .flowChart li.graduationLast .planOrder {
    height: 109px !important;
  }
  .wysiwyg .flowChart li:not(:last-child) .planMethod {
    border-bottom: 0.5px solid #333;
  }
  .wysiwyg .flowChart li:first-child .methodTitle {
    margin-top: 0;
  }
  .wysiwyg .flowChart li:last-child {
    height: 100px;
  }
  .wysiwyg .flowChart .planOrder {
    width: 88.28px;
  }
  .wysiwyg .flowChart .planOrder::before {
    width: 1.5px;
    left: 38%;
  }
  .wysiwyg .flowChart .planOrder.overlayBlueBottom::after {
    height: calc(100% - 50px);
    width: 1.5px;
    left: 38%;
  }
  .wysiwyg .flowChart .planOrder.overlayBlueTop::after {
    height: 50px;
    width: 1.5px;
    left: 38%;
  }
  .wysiwyg .flowChart .planOrder.overlayBeigeBottom::after {
    height: calc(100% - 50px);
    width: 1.5px;
    left: 38%;
  }
  .wysiwyg .flowChart .orderNumber {
    font-size: 16px;
    border: 1.5px solid #B50025;
    width: 46.5px;
    height: 46.5px;
    left: 12%;
    top: 40px;
  }
  .wysiwyg .flowChart .orderNumber.whtBlue {
    border: 1.5px solid #424F8A;
  }
  .wysiwyg .flowChart .orderNumber.whtBeige {
    border: 1.5px solid #694A26;
  }
  .wysiwyg .flowChart .orderNumber.large {
    font-size: 14.5px;
    width: 66.5px;
    height: 66.5px;
    top: 0;
    left: 2%;
  }
  .wysiwyg .flowChart .orderNumber.center {
    top: 23% !important;
  }
  .wysiwyg .flowChart .orderNumber.blue {
    border: 1.5px solid #424F8A;
  }
  .wysiwyg .flowChart .orderNumber.beige {
    border: 1.5px solid #D3B270;
  }
  .wysiwyg .flowChart .orderNumber.spCenter {
    top: 50%;
    transform: translateY(-50%);
  }
  .wysiwyg .flowChart .planMethod {
    width: calc(100% - 88.28px);
    padding: 40px 0;
  }
  .wysiwyg .flowChart .planMethod.separator {
    font-size: 18px;
  }
  .wysiwyg .flowChart .planMethod.separator.last {
    padding: 40px 0 0 0;
    justify-content: flex-start;
  }
  .wysiwyg .flowChart .planMethod .season {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .wysiwyg .flowChart .planMethod .season::after {
    content: "";
    display: block;
    background-color: #333;
    height: 0.5px;
    width: 88.4%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .wysiwyg .flowChart .planMethod .methodTitle {
    font-size: 17px;
    line-height: 1.52;
  }
  .wysiwyg .flowChart .planMethod .methodTitle + .commonBtn {
    margin-top: 15px;
  }
  .wysiwyg .flowChart .planMethod .methodTitle + .methodTxt {
    margin-top: 15px;
  }
  .wysiwyg .flowChart .planMethod .methodTxt {
    letter-spacing: 0.01em;
  }
  .wysiwyg .flowChart .planMethod .methodTxt + .commonBtn {
    margin-top: 15px;
  }
  .wysiwyg .flowChart .iconTxt p {
    font-size: 17px;
    line-height: 1.56;
  }
  .wysiwyg .flowChart .arrive {
    width: 61px;
    height: 42px;
    margin-bottom: 15px;
  }
  .wysiwyg .flowChart .study {
    width: 60.5px;
    height: 42px;
    margin-bottom: 15px;
  }
  .wysiwyg .flowChart .enrollment {
    width: 55px;
    height: 36px;
    margin-bottom: 15px;
  }
  .wysiwyg .flowChart .training {
    width: 55px;
    height: 36px;
    margin-bottom: 15px;
  }
  .wysiwyg .flowChart .graduation {
    width: 42.5px;
    height: 38px;
    margin-bottom: 15px;
  }
  .wysiwyg .flowChart .graduation span {
    font-size: 15px;
  }
  .wysiwyg .flowIntro {
    min-height: 300px;
    padding: 2% 24px;
    margin-top: 40px;
  }
  .wysiwyg .flowStart {
    font-size: 24px;
    margin: 32px auto 27px;
  }
  .wysiwyg .flowStart span {
    padding-left: 44px;
  }
  .wysiwyg .flowStart span::before {
    width: 37px;
    height: 35px;
  }
  .wysiwyg .flowTitle {
    border-radius: 4px;
    padding: 10px 12px;
  }
  .wysiwyg .flowTitle::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .flowTitle span {
    font-size: 16px;
  }
  .wysiwyg .flowTitle span.step {
    width: 30%;
    padding-left: 10px;
  }
  .wysiwyg .flowTitle span.step::before {
    width: 2px;
    height: 18px;
    bottom: 2px;
  }
  .wysiwyg .flowTitle span.item {
    width: 39%;
  }
  .wysiwyg .flowContents {
    margin-top: 32px;
  }
  .wysiwyg .flowContents + .flowTitle {
    margin-top: 32px;
  }
  .wysiwyg .flowBlock li:not(:last-child) {
    margin-bottom: 32px;
  }
  .wysiwyg .flowBlock li.reverse .flowImg {
    width: 75px;
    margin-left: 20px;
  }
  .wysiwyg .flowBlock li.reverse .bubble::after {
    border-top: 4.5px solid transparent;
    border-bottom: 4.5px solid transparent;
    border-left: 15px solid #F1C272;
    right: -15px;
  }
  .wysiwyg .flowBlock .flowImg {
    width: 73.5px;
    margin-right: 20px;
  }
  .wysiwyg .flowBlock .bubble {
    border-radius: 4px;
    min-width: 200px;
    width: 71%;
    padding: 10px 11px;
  }
  .wysiwyg .flowBlock .bubble::before {
    border-top: 4.5px solid transparent;
    border-bottom: 4.5px solid transparent;
    border-right: 15px solid #EBE9E1;
    left: -15px;
  }
  .wysiwyg .flowBlock + .btnWrap {
    margin-top: 32px;
  }
  .wysiwyg .flowGoal {
    font-size: 22px;
    margin: 20px auto 0;
  }
  .wysiwyg .map_img {
    display: none;
  }
  .wysiwyg .world_select_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    width: calc(33.3333333333% - 3px);
    padding: 6px 15px;
  }
  .wysiwyg .country_wrap {
    margin-top: 30px;
  }
  .wysiwyg .country_wrap + .spBtnWrap {
    margin-top: 20px;
  }
  .wysiwyg .country_list {
    margin-top: 20px;
    gap: 10px 7.5px;
  }
  .wysiwyg .country_list li {
    width: calc(50% - 4px);
  }
  .wysiwyg .country_list li a {
    font-size: 14px;
    padding: 8px;
  }
  .wysiwyg .country_contents {
    border-radius: 4px;
  }
  .wysiwyg .country_contents .country_name {
    font-size: 22px;
    padding: 13px;
  }
  .wysiwyg .country_contents .country_inner {
    padding: 25px 24px;
  }
  .wysiwyg .country_contents .title_wrap {
    position: relative;
    margin-bottom: 20px;
  }
  .wysiwyg .country_contents h3 {
    font-size: 20px;
    padding: 0 0 0 18px;
    margin-bottom: 10px;
  }
  .wysiwyg .country_contents h3::after {
    height: 24px;
  }
  .wysiwyg .country_contents .country_pdf_link {
    display: inline-block;
    font-size: 18px;
    line-height: 1.2;
  }
  .wysiwyg .country_contents .country_details {
    margin-bottom: 20px;
  }
  .wysiwyg .country_contents .country_details div {
    font-size: 14px;
  }
  .wysiwyg .country_contents .country_details div:not(:last-child) {
    margin-bottom: 6px;
  }
  .wysiwyg .country_contents .country_details dt {
    width: 45px;
  }
  .wysiwyg .country_contents .country_details dd {
    width: calc(100% - 45px);
  }
  .wysiwyg .country_contents .country_details dd a span {
    padding-right: 18px;
  }
  .wysiwyg .country_contents .country_details dd a span::after {
    width: 13px;
    height: 13px;
  }
  .wysiwyg .country_contents .country_sns {
    gap: 20px;
    padding: 12px 24px;
  }
  .wysiwyg .country_contents .country_sns li img {
    width: 30px;
  }
  .wysiwyg .country_contents .country_sns p {
    font-size: 12px;
  }
  .wysiwyg .country_contents .country_sns + .spBtnWrap {
    margin-top: 20px;
  }
  .wysiwyg * + .country_contents {
    margin-top: 30px;
  }
  .wysiwyg #japanMap {
    margin-top: 45px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider_container {
    margin-top: 45px;
  }
  .wysiwyg .japan_slider .prev {
    top: 168px;
    width: 30px;
    height: 30px;
    left: calc(50% - 175px);
  }
  .wysiwyg .japan_slider .prev::after {
    width: 8.5px;
    height: 10.5px;
  }
  .wysiwyg .japan_slider .next {
    top: 168px;
    width: 30px;
    height: 30px;
    right: calc(50% - 175px);
  }
  .wysiwyg .japan_slider .next::after {
    width: 8.5px;
    height: 10.5px;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .japan_slider_item {
    width: 321px;
    border-radius: 4px;
    box-shadow: 0px 1.5px 3px 0px rgba(0, 0, 0, 0.16);
    margin: 0 3px 6px 8px;
  }
  .wysiwyg .japan_slider_item .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    min-height: 168px;
  }
  .wysiwyg .japan_slider_item .area {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .wysiwyg .japan_slider_item .area::after {
    bottom: -9px;
    width: 36px;
    height: 3px;
  }
  .wysiwyg .japan_slider_item .area_link {
    gap: 3px 0;
  }
  .wysiwyg .japan_slider_item .area_link li {
    display: inline-block;
  }
  .wysiwyg .japan_slider_item .area_link li::after {
    width: 1px;
    height: 14px;
  }
  .wysiwyg .japan_slider_item .area_link li a {
    font-size: 16px;
    line-height: 1.66;
    padding: 0 12px;
  }
  .wysiwyg .prefecture_list {
    gap: 8px;
  }
  .wysiwyg .prefecture_list li {
    width: calc(33.3333333333% - 6px);
  }
  .wysiwyg .prefecture_list li a {
    font-size: 14px;
    padding: 8px;
  }
  .wysiwyg .summary {
    flex-direction: column-reverse;
  }
  .wysiwyg .summary .summaryMap {
    width: 80%;
    margin: 0 auto 45px;
  }
  .wysiwyg .summaryImg {
    margin-top: 30px;
  }
  .wysiwyg .summaryImgList li {
    width: 50%;
  }
  .wysiwyg .featuresSlider.pcSlide {
    display: none !important;
  }
  .wysiwyg .featuresSlider .featuresItem + .featuresItem {
    margin-top: 45px;
  }
  .wysiwyg .featuresSlider .featuresTxt h3 {
    margin-top: 45px;
  }
  .wysiwyg .foodsList li:not(:last-child) {
    margin-bottom: 45px;
  }
  .wysiwyg .foodsList.new .wrap {
    margin-top: 45px;
  }
  .wysiwyg .climate {
    flex-direction: column-reverse;
  }
  .wysiwyg .climate .supplement {
    font-size: 12px;
    margin-top: 5px;
  }
  .wysiwyg .climate .supplement + .graph {
    margin-top: 18px;
  }
  .wysiwyg .climate .climateTxt {
    margin-bottom: 45px;
  }
  .wysiwyg .costList {
    margin-top: 45px;
    gap: 7px 8px;
  }
  .wysiwyg .costList li {
    min-height: 220px;
    border-radius: 4px;
    width: calc(50% - 4px);
    padding: 15px;
  }
  .wysiwyg .costList .costType {
    font-size: 16px;
  }
  .wysiwyg .costList .costType::after {
    bottom: -3px;
    width: 15px;
    height: 1.5px;
  }
  .wysiwyg .costList .costImg img {
    width: 50%;
    margin: 0 auto 5px;
  }
  .wysiwyg .costList .price {
    font-size: 14px;
    line-height: 1.44;
  }
  .wysiwyg .costList.new li {
    gap: 10px;
  }
  .wysiwyg .innerBeige {
    padding: 32px 24px;
  }
  .wysiwyg .rootMap > div:not(:first-child) {
    margin-top: 55px;
  }
  .wysiwyg .rootMap dt {
    font-size: 18px;
    padding: 8px 0 8px 40px;
  }
  .wysiwyg .rootMap dt::before {
    width: 30px;
    height: 30px;
  }
  .wysiwyg .rootMap dd {
    margin-top: 20px;
  }
  .wysiwyg .rootMap .details {
    margin-top: 20px;
  }
  .wysiwyg .rootMap .wrap {
    width: 85%;
    gap: 24px;
  }
  .wysiwyg .rootMap .place {
    padding: 12px 45px;
  }
  .wysiwyg .rootMap .place::before {
    left: 12px;
    width: 22px;
    height: 22px;
  }
  .wysiwyg .rootMap .place:last-of-type::after {
    bottom: 50%;
    left: 22px;
    height: calc(100% + 40px);
  }
  .wysiwyg .rootMap .place:not(:last-of-type)::after {
    top: 50%;
    left: 22px;
    height: calc(100% + 75px);
  }
  .wysiwyg .rootMap .timeTag {
    margin-left: 40px;
    font-size: 12px;
    padding: 6px 5px 6px 10px;
  }
  .wysiwyg .rootMap .timeTag::after {
    right: -8px;
    border-width: 12px 0 12px 8px;
  }
  .wysiwyg .countryRanking {
    justify-content: center;
    gap: 4%;
    max-width: 500px;
  }
  .wysiwyg .countryRanking li {
    width: 32.7%;
    aspect-ratio: 100/100;
    font-size: 16px;
  }
  .wysiwyg .countryRanking li img {
    width: 25%;
    aspect-ratio: 25/25;
    left: 0;
    top: 0;
  }
  .wysiwyg * + .schoolList {
    margin-top: 28px;
  }
  .wysiwyg .schoolList {
    gap: 24px;
  }
  .wysiwyg .schoolList li {
    width: 100%;
  }
  .wysiwyg .schoolList li a {
    border-radius: 5px;
    padding: 30px 24px;
  }
  .wysiwyg .schoolList .thumbnail img {
    max-height: 300px;
  }
  .wysiwyg .schoolList .nameBox {
    margin-top: 20px;
    padding-left: 15px;
  }
  .wysiwyg .schoolList .nameBox span {
    line-height: 1.5;
  }
  .wysiwyg .schoolList .nameBox span.kana {
    font-size: 11px;
  }
  .wysiwyg .schoolList .nameBox span.name {
    margin-top: 2px;
    font-size: 20px;
  }
  .wysiwyg .schoolList .nameBox::before {
    border-radius: 2px;
    width: 3px;
    height: 47px;
  }
  .wysiwyg .schoolList .info {
    margin-top: 40px;
    gap: 20px;
  }
  .wysiwyg .schoolList .info p {
    font-size: 14px;
    padding-left: 20px;
  }
  .wysiwyg .schoolList .info p:before {
    width: 14px;
    height: 14px;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) {
    margin-bottom: 15px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .sp_wrap {
    width: calc(100% - 75px);
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number {
    display: inline-block;
    text-align: center;
    font-size: 18px;
    line-height: 1.54;
    padding: 0 17px;
    width: 72px;
    margin-right: 12px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number::before {
    width: 12px;
    height: 27px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number::after {
    width: 12px;
    height: 27px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .m_list_ranking_data {
    display: inline-block;
    margin-top: 12px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(3) {
    padding-bottom: 15px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4):not(:last-child) {
    margin-bottom: 15px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .sp_wrap {
    width: calc(100% - 75px);
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .ranking_number {
    font-size: 20px;
    line-height: 1.55;
    width: 40px;
    height: 40px;
    margin-right: 44px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .m_list_ranking_data {
    display: inline-block;
    margin-top: 12px;
  }
  .wysiwyg .pie_graph svg {
    width: 155%;
    height: 240px;
    margin-left: -22%;
  }
  .wysiwyg .pie_graph img {
    max-width: inherit;
    width: calc(100% + 112px);
    height: 240px;
    margin-left: -24px;
  }
  .wysiwyg .bubble_box p {
    padding: 10px 18px;
    border-radius: 4px;
    margin-left: 24px;
  }
  .wysiwyg .bubble_box p::before {
    top: 30px;
    left: -26px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 26px solid #EBE9E1;
    border-left: 0;
  }
  .wysiwyg .bubble_box p + p {
    margin-top: 12px;
  }
  .wysiwyg * + .bubble_box {
    margin-top: 30px;
  }
  .wysiwyg .contactArea {
    padding: 50px 40px;
    margin: 20px 24px 70px;
  }
  .wysiwyg .contactArea .contactTitle {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 35px;
  }
  .wysiwyg .contactArea .contactTitle::before {
    width: 23px;
    height: 18px;
  }
  .wysiwyg .contactArea .wrap {
    padding-left: 18px;
  }
  .wysiwyg .contactArea .organization span.official {
    position: relative;
    font-size: 16px;
    line-height: 1.62;
    letter-spacing: 0.005em;
    margin-bottom: 6px;
  }
  .wysiwyg .contactArea .organization span.official::before {
    content: "";
    display: block;
    background-color: #B50025;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    border-radius: 50px;
    width: 3px;
    height: 100%;
  }
  .wysiwyg .contactArea .organization span.division {
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  .wysiwyg .contactArea .address {
    pointer-events: none;
    text-decoration-line: none;
    letter-spacing: 0.02em;
    margin-top: 25px;
  }
  .wysiwyg .contactArea .address span {
    display: block;
    font-size: 12px;
    line-height: 1.29;
    margin-top: 10px;
  }
  .wysiwyg .contactArea .address a {
    pointer-events: none;
    text-decoration-line: none;
  }
  .wysiwyg .inquiryArea {
    padding: 50px 20px;
    margin: 20px 24px 70px;
  }
  .wysiwyg .inquiryArea p {
    margin: 0 auto 20px;
  }
  .wysiwyg .inquiryArea .contactLinkBtn {
    width: 100%;
  }
  .wysiwyg .ascojaLinkArea {
    height: 200px;
    background: url(../image/search_area_bg_sp.webp) no-repeat center/cover;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn {
    text-align: center;
    font-size: 15px;
    height: 66px;
    width: calc(100% - 48px);
    padding: 0 39px;
    border-radius: 4px;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn span {
    padding: 0 28.5px 0 41.5px;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn span::before {
    width: 28px;
    height: 28px;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .searchLinkArea {
    height: 200px;
    background: url(../image/search_area_bg_sp.webp) no-repeat center/cover;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn {
    font-size: 15px;
    height: 66px;
    width: calc(100% - 48px);
    padding: 0 10px;
    border-radius: 4px;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn span {
    padding: 0 28.5px 0 41.5px;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn span::before {
    width: 26.5px;
    height: 25px;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .scholarshipLinkArea {
    height: 200px;
    background: url(../image/search_area_bg_sp.webp) no-repeat center/cover;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn {
    font-size: 15px;
    height: 66px;
    width: calc(100% - 48px);
    padding: 0 10px;
    border-radius: 4px;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span {
    padding: 0 20px 0 40px;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span::before {
    width: 28px;
    height: 27px;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .linkArea {
    height: 252px;
  }
  .wysiwyg .linkArea .wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .wysiwyg .faqLinkBtn {
    font-size: 15px;
    height: 66px;
    width: calc(100% - 48px);
    padding: 0 10px;
    border-radius: 4px;
  }
  .wysiwyg .faqLinkBtn span {
    padding: 0 28.5px 0 41.5px;
  }
  .wysiwyg .faqLinkBtn span::before {
    width: 26.5px;
    height: 25px;
  }
  .wysiwyg .faqLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .contactLinkBtn {
    font-size: 15px;
    height: 66px;
    width: calc(100% - 48px);
    padding: 0 10px;
    border-radius: 4px;
  }
  .wysiwyg .contactLinkBtn span {
    padding: 0 28.5px 0 41.5px;
  }
  .wysiwyg .contactLinkBtn span::before {
    width: 26.5px;
    height: 25px;
  }
  .wysiwyg .contactLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .supportLinkBtn {
    font-size: 15px;
    height: 66px;
    width: calc(100% - 48px);
    padding: 0 10px;
    border-radius: 4px;
  }
  .wysiwyg .supportLinkBtn span {
    padding: 0 28.5px 0 41.5px;
  }
  .wysiwyg .supportLinkBtn span::before {
    width: 24px;
    height: 15px;
  }
  .wysiwyg .supportLinkBtn span::after {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .p_plan_list_define dt {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .wysiwyg .p_plan_list_define dd {
    padding-left: 10px;
  }
  .wysiwyg .p_plan_list_define dd + dt {
    margin-top: 18px;
  }
  .wysiwyg .img_txt_col2 {
    flex-wrap: wrap;
  }
  .wysiwyg .img_txt_col2 .img {
    width: 100%;
  }
  .wysiwyg * + .img_txt_col2 {
    margin-top: 30px;
  }
  .wysiwyg .img_caption .w718 {
    margin-top: 10px !important;
  }
  .wysiwyg .img_col3_list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .wysiwyg .img_col3_list li * + p {
    margin-top: 10px !important;
  }
  .wysiwyg * + .img_box,
  .wysiwyg * + .img_col3_list {
    margin-top: 20px;
  }
  .wysiwyg .lang_link a {
    font-size: 14px;
    line-height: 1.64;
    padding-left: 16.5px;
  }
  .wysiwyg .lang_link a::after {
    top: 6px;
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  .wysiwyg #filterButtons {
    gap: 10px 9px;
  }
  .wysiwyg #filterButtons .filterTitle {
    width: 100%;
  }
  .wysiwyg #filterButtons button {
    font-size: 14px;
    padding: 7px 24px;
  }
  .wysiwyg #filterButtons button.active::before {
    width: 14px;
    height: 1px;
    right: 7px;
  }
  .wysiwyg #filterButtons button.active::after {
    width: 14px;
    height: 1px;
    right: 7px;
  }
  .wysiwyg #categoryList {
    margin-top: 30px;
    gap: 30px 16px;
  }
  .wysiwyg #categoryList li {
    border-radius: 4px;
  }
  .wysiwyg #categoryList li a {
    padding: 30px 24px;
  }
  .wysiwyg #categoryList .thumbnail::after {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: -22px;
  }
  .wysiwyg #categoryList .wrap {
    gap: 8px 10px;
    margin-top: 40px;
  }
  .wysiwyg #categoryList .wrap + .wrap {
    margin-top: 10px;
  }
  .wysiwyg #categoryList .person {
    font-size: 14px;
    padding-left: 20px;
  }
  .wysiwyg #categoryList .person::before {
    top: 1px;
  }
  .wysiwyg #categoryList .place {
    font-size: 14px;
    padding-left: 20px;
  }
  .wysiwyg #categoryList .place::before {
    top: 2px;
  }
  .wysiwyg #categoryList .place + .detailLink {
    margin-top: 18px;
  }
  .wysiwyg #categoryList .school {
    font-size: 14px;
  }
  .wysiwyg #categoryList .student {
    font-size: 14px;
  }
  .wysiwyg #categoryList .student + .detailLink {
    margin-top: 18px;
  }
  .wysiwyg #categoryList h3 {
    font-size: 20px;
    margin: 30px 0 20px;
    padding: 0 0 0 20px;
    min-height: 61px;
  }
  .wysiwyg #categoryList .txt {
    font-size: 14px;
    margin: 0 0 18px 0;
  }
  .wysiwyg #categoryList .detailLink {
    font-size: 16px;
    margin-top: 20px;
  }
  .wysiwyg #categoryList .detailLink span {
    padding: 0 0 0 16px;
  }
  .wysiwyg #categoryList .detailLink span::before {
    width: 8.5px;
    height: 11px;
  }
  .wysiwyg .btnAdd {
    font-size: 15px;
    min-width: 311px;
    padding: 13px 20px;
  }
  .wysiwyg .btnAdd span {
    width: 8.5px;
    height: 11px;
    right: 17px;
  }
  .wysiwyg .shareBtns {
    gap: 20px 4px;
  }
  .wysiwyg .shareBtns > a {
    font-size: 14px;
    padding: 10px 20px;
  }
  .wysiwyg .shareBtns > a span {
    padding-left: 23px;
  }
  .wysiwyg .shareBtns > a span::before {
    width: 18px;
    height: 18px;
  }
  .inner {
    padding: 0 32px;
  }
  .pageTitleBox {
    min-height: 220px;
  }
  .pageTitleBox::before {
    width: 76%;
  }
  .pageTitleBox.ttl_nav-applicants-for-study-abroad::before {
    background: url(../image/title_bg_nav_applicants_for_study_abroad_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_planning::before {
    width: 76%;
    background: url(../image/title_bg_planning_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_educational::before {
    background: url(../image/title_bg_educational_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_news::before {
    background: url(../image/title_bg_news_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_event::before {
    background: url(../image/title_bg_event_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_why::before {
    background: url(../image/title_bg_why_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_faq::before {
    background: url(../image/title_bg_faq_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_network::before {
    background: url(../image/title_bg_network_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_links::before {
    background: url(../image/title_bg_links_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_about::before {
    background: url(../image/title_bg_about_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_contact::before {
    background: url(../image/title_bg_contact_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_nav-finished-studying-in-japan::before {
    background: url(../image/title_bg_network_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_nav-studying-in-japan::before {
    background: url(../image/title_bg_nav-studying-in-japan_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_work-in-japan::before {
    background: url(../image/title_bg_job_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_life::before {
    background: url(../image/title_bg_life_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_statistics::before {
    background: url(../image/title_bg_statistics_sp.webp) no-repeat center/cover;
  }
  .pageTitleBox .inner {
    padding: 10% 0 0 0;
    min-height: 220px;
  }
  .pageTitleBox .pageTitleBase {
    padding: 10px 10px 10px 48px;
    min-height: 163px;
    width: 91.5%;
  }
  .pageTitleBox .pageTitle {
    padding-left: 20px;
    min-height: 57px;
  }
  .pageTitleBox .pageTitle:after {
    width: 2.5px;
    height: 100%;
    max-height: 54px;
  }
  .pageTitleBox .mainTitle {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0.0025em;
    margin-bottom: 8px;
  }
  .pageTitleBox .subTitle {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .postTitleBox {
    padding: 40px 24px;
  }
  .postTitleBox.data .postTitle + .postAuthor {
    margin-top: 20px;
  }
  .postTitleBox.data .link-list + p {
    margin-top: 32px;
  }
  .postTitleBox.data p + p {
    margin-top: 18px;
  }
  .postTitleBox.voice .layout {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .postTitleBox.voice .layout .overview {
    width: 100%;
  }
  .postTitleBox.voice .layout .thumbnail {
    width: 100%;
  }
  .postTitleBox.voice .layout .tag {
    margin-top: 15px;
  }
  .postTitleBox.voice .layout .tag > li {
    padding: 5px 9px;
    border-radius: 2px;
  }
  .postTitleBox.voice .layout .wrap {
    gap: 8px 10px;
    margin-top: 15px;
  }
  .postTitleBox.voice .layout .wrap + .wrap {
    margin-top: 10px;
  }
  .postTitleBox.voice .layout .person {
    font-size: 14px;
    padding-left: 20px;
  }
  .postTitleBox.voice .layout .person::before {
    top: 1px;
  }
  .postTitleBox.voice .layout .place {
    font-size: 14px;
    padding-left: 20px;
  }
  .postTitleBox.voice .layout .place::before {
    top: 2px;
  }
  .postTitleBox.voice .layout .place + .detailLink {
    margin-top: 18px;
  }
  .postTitleBox.voice .layout .school {
    font-size: 14px;
  }
  .postTitleBox.voice .layout .student {
    font-size: 14px;
  }
  .postTitleBox.voice .layout .student + .detailLink {
    margin-top: 18px;
  }
  .postTitleBox.voice .postDate + .postTitle {
    margin-top: 15px;
  }
  .postTitleBox.voice .postTitle + .postAuthor {
    margin-top: 20px;
  }
  .postTitleBox.voice .postTitle + .postIntro {
    margin-top: 15px;
  }
  .postTitleBox.voice .link-list + p {
    margin-top: 32px;
  }
  .postTitleBox.voice p + p {
    margin-top: 18px;
  }
  .postTitle {
    font-size: 18px;
  }
  .postTitle + .postDate {
    margin-top: 15px;
  }
  .postDate {
    font-size: 14px;
  }
  .postAuthor {
    font-size: 12px;
  }
  .postTitleBox.event {
    min-height: 270px;
  }
  .postTitleBox.event .postInner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .postTitleBox.event .postInner .postTitle + .postDate {
    margin-top: 5px;
  }
  .postTitleBox.event .postInner .titleBnr {
    margin-bottom: 20px;
  }
  .breadCrumb .breadCrumbList {
    padding: 20px 24px;
  }
  .breadCrumb .breadCrumbList li {
    font-size: 12px;
    line-height: 1.33;
  }
  .breadCrumb .breadCrumbList li:not(:last-child)::after {
    width: 6.5px;
    height: 8.5px;
    margin-right: 10px;
    margin-left: 12px;
  }
  #contents .inner {
    padding: 40px 24px 70px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  #contents .inner.voice {
    padding: 70px 24px 20px 24px;
  }
  #contents .beigeBg {
    padding: 32px 24px;
  }
  #contents .beigeBg.maxSlider > h2 {
    margin-bottom: 45px;
  }
  #contents .greyBg {
    padding: 32px 24px;
  }
  .link-list p:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .link-list p a {
    font-size: 14px;
    line-height: 1.64;
    letter-spacing: 0.01em;
    padding: 0 0 0 16.5px;
  }
  .link-list p a::after {
    width: 8.5px;
    height: 11px;
    top: 17.5px;
    top: 6px;
  }
  .link-list p a img.u_icon {
    margin: 4px 0 0 2px;
  }
  * + .link-list {
    margin-top: 10px;
  }
  * + .svg_container {
    margin-top: 20px;
  }
  pre {
    padding: 5%;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  pre code {
    font-size: 14px;
  }
  /* common class */
  .img_sp {
    margin-inline: auto;
  }
  .mB0_sp {
    margin-bottom: 0 !important;
  }
  .mB5_sp {
    margin-bottom: 5px !important;
  }
  .mB10_sp {
    margin-bottom: 10px !important;
  }
  .mB20_sp {
    margin-bottom: 20px !important;
  }
  .mB30_sp {
    margin-bottom: 30px !important;
  }
  .mB40_sp {
    margin-bottom: 40px !important;
  }
  .mB50_sp {
    margin-bottom: 50px !important;
  }
  .mB60_sp {
    margin-bottom: 60px !important;
  }
  .mT0_sp {
    margin-top: 0 !important;
  }
  .mT5_sp {
    margin-top: 5px !important;
  }
  .mT10_sp {
    margin-top: 10px !important;
  }
  .mT20_sp {
    margin-top: 20px !important;
  }
  .mT30_sp {
    margin-top: 30px !important;
  }
  .mT40_sp {
    margin-top: 40px !important;
  }
  .mT50_sp {
    margin-top: 50px !important;
  }
  .mT60_sp {
    margin-top: 60px !important;
  }
}
@media screen and (min-width: 767px) and (max-width: 768px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .featuresSlider .featuresItem + .featuresItem {
    margin-top: 0 !important;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
@media print, screen and (min-width: 769px) {
  .m_section > .partsTitle,
  .m_section > pre {
    padding: 20px 8.3%;
  }
  .wysiwyg h2,
  .wysiwyg .h2 {
    max-width: 718px;
    font-size: 32px;
    letter-spacing: 0.01em;
    line-height: 1.68;
    padding-bottom: 33px;
    margin-bottom: 64px;
  }
  .wysiwyg h2::after,
  .wysiwyg .h2::after {
    width: 171px;
    height: 15px;
  }
  .wysiwyg h2:has(a) a,
  .wysiwyg .h2:has(a) a {
    -webkit-text-decoration: underline 1.5px;
            text-decoration: underline 1.5px;
    text-underline-offset: 8px;
  }
  .wysiwyg h2:has(a) a:hover, .wysiwyg h2:has(a) a:focus,
  .wysiwyg .h2:has(a) a:hover,
  .wysiwyg .h2:has(a) a:focus {
    color: #694A26;
  }
  .wysiwyg * + h2,
  .wysiwyg * + .h2 {
    margin-top: 120px;
  }
  .wysiwyg h3,
  .wysiwyg .h3 {
    max-width: 718px;
    font-size: 22px;
    letter-spacing: 0.01em;
    line-height: 1.54;
    padding: 0 0 20px 28px;
    margin-bottom: 40px;
  }
  .wysiwyg h3::after,
  .wysiwyg .h3::after {
    top: 6px;
    width: 4px;
    height: 46px;
  }
  .wysiwyg * + h3,
  .wysiwyg * + .h3 {
    margin-top: 64px;
  }
  .wysiwyg a > h3:hover, .wysiwyg a > h3:focus,
  .wysiwyg a > .h3:hover,
  .wysiwyg a > .h3:focus {
    color: #B50025;
  }
  .wysiwyg a:focus h3 {
    color: #B50025;
  }
  .wysiwyg * + a > h3,
  .wysiwyg * + a > .h3 {
    margin-top: 64px;
  }
  .wysiwyg h4,
  .wysiwyg .h4 {
    max-width: 718px;
    font-size: 20px;
    line-height: 1.35;
    padding: 11px 20px;
    margin-bottom: 24px;
  }
  .wysiwyg * + h4,
  .wysiwyg * + .h4 {
    margin-top: 40px;
  }
  .wysiwyg .partsTitle {
    font-size: 26px;
  }
  .wysiwyg .partsTitle + * {
    margin-top: 20px !important;
  }
  .wysiwyg p.full {
    max-width: 100%;
  }
  .wysiwyg * + p {
    margin-top: 36px;
  }
  .wysiwyg .caption {
    font-size: 16px;
    margin-top: 18px;
  }
  .wysiwyg .small_txt {
    font-size: 14px;
  }
  .wysiwyg .usual_link {
    line-height: 1.72;
    padding: 0 0 0 25px;
  }
  .wysiwyg .usual_link:hover, .wysiwyg .usual_link:focus {
    color: #694A26;
  }
  .wysiwyg .usual_link::after {
    width: 11px;
    height: 14px;
    top: 9px;
  }
  .wysiwyg p:not([class]):has(.usual_link) + p:not([class]),
  .wysiwyg p + p:has(.usual_link) {
    margin-top: 12px;
  }
  .wysiwyg p:not([class]):has(.usual_link) + p:has(strong) {
    margin-top: 36px !important;
  }
  .wysiwyg .link-list + p {
    margin-top: 56px;
  }
  .wysiwyg ul:not([class]) {
    max-width: 718px;
  }
  .wysiwyg ul:not([class]) li {
    font-size: 18px;
    padding-left: 22px;
  }
  .wysiwyg ul:not([class]) li:not(:last-child) {
    margin-bottom: 16px;
  }
  .wysiwyg ul:not([class]) li::before {
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .wysiwyg ol:not([class]) {
    max-width: 718px;
  }
  .wysiwyg ol:not([class]) li {
    font-size: 18px;
  }
  .wysiwyg ol:not([class]) li:not(:last-child) {
    margin-bottom: 16px;
  }
  .wysiwyg ol:not([class]) li::marker {
    padding-right: 20px;
  }
  .wysiwyg ol:not([class]) .m_list.m_list_link.txt_link {
    margin-top: 20px;
  }
  .wysiwyg * + ul:not([class]),
  .wysiwyg * + ol:not([class]),
  .wysiwyg * + .alphabet_list,
  .wysiwyg * + .roma_list {
    margin-top: 30px !important;
  }
  .wysiwyg .alphabet_list {
    margin-top: 20px;
  }
  .wysiwyg .alphabet_list li {
    font-size: 18px;
  }
  .wysiwyg .alphabet_list li:not(:last-child) {
    margin-bottom: 16px;
  }
  .wysiwyg .alphabet_list li:not(:last-child) {
    margin-bottom: 16px;
  }
  .wysiwyg .alphabet_list li::before {
    padding-right: 20px;
  }
  .wysiwyg .roma_list {
    margin-top: 20px;
  }
  .wysiwyg .roma_list li {
    font-size: 18px;
  }
  .wysiwyg .roma_list li:not(:last-child) {
    margin-bottom: 16px;
  }
  .wysiwyg .roma_list li::before {
    padding-right: 20px;
  }
  .wysiwyg .m_list.m_list_link {
    max-width: 718px;
  }
  .wysiwyg .m_list.m_list_link li:not(:last-child) {
    margin-bottom: 16px;
  }
  .wysiwyg .m_list.m_list_link li a {
    font-size: 18px;
    line-height: 1.44;
    border-radius: 8px;
    padding: 17px 17px 17px 55px;
  }
  .wysiwyg .m_list.m_list_link li a:hover, .wysiwyg .m_list.m_list_link li a:focus {
    text-decoration: underline;
    color: #694A26;
  }
  .wysiwyg .m_list.m_list_link li a::after {
    width: 11px;
    height: 14px;
    top: 23px;
    left: 24px;
  }
  .wysiwyg .m_list.m_list_link.box_link {
    max-width: 718px;
  }
  .wysiwyg .m_list.m_list_link.box_link li a {
    padding: 21px 60px 21px 24px;
    transition: 0.3s;
  }
  .wysiwyg .m_list.m_list_link.box_link li a:hover, .wysiwyg .m_list.m_list_link.box_link li a:focus {
    color: #fff;
    background-color: #333;
    text-decoration: none;
  }
  .wysiwyg .m_list.m_list_link.box_link li a:hover::after, .wysiwyg .m_list.m_list_link.box_link li a:focus::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .m_list.m_list_link.box_link li a::after {
    top: 27px;
    right: 30px;
    transition: 0.3s;
  }
  .wysiwyg .m_list.m_list_link.txt_link {
    max-width: 718px;
  }
  .wysiwyg .m_list.m_list_link.txt_link li a {
    line-height: 1.72;
    padding: 0 0 0 25px;
  }
  .wysiwyg .m_list.m_list_link.txt_link li a::after {
    top: 9px;
  }
  .wysiwyg * + .m_list.m_list_link {
    margin-top: 40px;
  }
  .wysiwyg .rounded_color_box {
    border-radius: 8px;
    padding: 17px 24px;
    max-width: 718px;
  }
  .wysiwyg .square_color_box {
    padding: 11px 30px;
    max-width: 718px;
  }
  .wysiwyg * + .rounded_color_box,
  .wysiwyg * + .square_color_box {
    margin-top: 24px;
  }
  .wysiwyg .unique_box,
  .wysiwyg .m_box {
    border-radius: 8px;
    padding: 36px 26px;
    max-width: 649px;
    width: 100%;
  }
  .wysiwyg .unique_box.col2,
  .wysiwyg .m_box.col2 {
    padding: 26px;
  }
  .wysiwyg .unique_box.col2 * + .img,
  .wysiwyg .m_box.col2 * + .img {
    margin-top: 18px;
  }
  .wysiwyg .unique_box.col2 .box_inner,
  .wysiwyg .m_box.col2 .box_inner {
    display: flex;
  }
  .wysiwyg .unique_box.col2 .box_inner .img,
  .wysiwyg .m_box.col2 .box_inner .img {
    width: 28.5%;
  }
  .wysiwyg .unique_box.col2 .box_inner .txt,
  .wysiwyg .m_box.col2 .box_inner .txt {
    width: 63%;
    margin-left: 4.7%;
  }
  .wysiwyg .unique_box.col2 .box_inner p,
  .wysiwyg .m_box.col2 .box_inner p {
    font-size: 16px;
    line-height: 1.75;
  }
  .wysiwyg .unique_box.col2 .box_inner * + p,
  .wysiwyg .m_box.col2 .box_inner * + p {
    margin-top: 18px;
  }
  .wysiwyg .unique_box.col2 .box_inner .m_list.m_list_link.txt_link li,
  .wysiwyg .m_box.col2 .box_inner .m_list.m_list_link.txt_link li {
    font-size: 16px;
    line-height: 1.75;
  }
  .wysiwyg .unique_box.col2 .box_inner .m_list.m_list_link.txt_link li a,
  .wysiwyg .m_box.col2 .box_inner .m_list.m_list_link.txt_link li a {
    font-size: 16px;
    line-height: 1.75;
  }
  .wysiwyg .unique_box.col2 .box_inner * + .m_list.m_list_link.txt_link,
  .wysiwyg .m_box.col2 .box_inner * + .m_list.m_list_link.txt_link {
    margin-top: 18px;
  }
  .wysiwyg .unique_box.col2 .box_inner h3,
  .wysiwyg .m_box.col2 .box_inner h3 {
    margin: 18px 0;
  }
  .wysiwyg .unique_box ul li:not(:last-child),
  .wysiwyg .m_box ul li:not(:last-child) {
    margin-bottom: 8px;
  }
  .wysiwyg * + .unique_box,
  .wysiwyg * + .m_box {
    margin-top: 44px;
  }
  .wysiwyg .unique_box_container .unique_title {
    font-size: 20px;
  }
  .wysiwyg .unique_box_container .unique_box {
    width: calc(50% - 10px);
  }
  .wysiwyg table th {
    font-size: 16px;
    padding: 12px;
  }
  .wysiwyg table td {
    font-size: 16px;
    padding: 12px;
  }
  .wysiwyg table a {
    font-size: 16px;
  }
  .wysiwyg table.t_w718 {
    max-width: 718px;
  }
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg table:not(.small_table) p {
    font-size: 16px !important;
  }
  .wysiwyg table:not(.small_table) ul li,
  .wysiwyg table:not(.small_table) ol li {
    font-size: 16px !important;
  }
  .wysiwyg .table_type3 th,
  .wysiwyg .table_type3 td {
    font-size: 18px;
  }
  .wysiwyg * + table,
  .wysiwyg * + .table_scroll {
    margin-top: 20px;
  }
  .wysiwyg .mainMenuBtn a {
    font-size: 20px;
    line-height: 1.45;
    border-radius: 8px;
    padding: 0 35px 0 10px;
    min-height: 81px;
    transition: 0.3s;
  }
  .wysiwyg .mainMenuBtn a:hover, .wysiwyg .mainMenuBtn a:focus {
    background-color: #333;
    color: #fff;
    text-decoration: none;
  }
  .wysiwyg .mainMenuBtn a:hover span::after, .wysiwyg .mainMenuBtn a:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn span::after {
    margin-left: 8px;
    width: 11px;
    height: 14px;
    right: -25px;
    top: calc(50% + 1px);
    transition: background-image 0.3s;
  }
  .wysiwyg .mainMenuBtn + .m_list.m_list_link.txt_link {
    margin-top: 30px;
  }
  .wysiwyg .mainMenuBtn.icon a {
    min-height: 202px;
  }
  .wysiwyg .mainMenuBtn.icon a:hover span.info::before, .wysiwyg .mainMenuBtn.icon a:focus span.info::before {
    background: url(../image/icon_info_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn.icon a:hover span.publication::before, .wysiwyg .mainMenuBtn.icon a:focus span.publication::before {
    background: url(../image/icon_publication_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn.icon a:hover span.event::before, .wysiwyg .mainMenuBtn.icon a:focus span.event::before {
    background: url(../image/icon_event_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn.icon a:hover span.investigation::before, .wysiwyg .mainMenuBtn.icon a:focus span.investigation::before {
    background: url(../image/icon_investigation_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn.icon a:hover span.video::before, .wysiwyg .mainMenuBtn.icon a:focus span.video::before {
    background: url(../image/icon_video_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn.icon a:hover span.monitor::before, .wysiwyg .mainMenuBtn.icon a:focus span.monitor::before {
    background: url(../image/icon_monitor_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .mainMenuBtn.icon span {
    margin-top: 65px;
  }
  .wysiwyg .mainMenuBtn.icon span.info::before {
    top: -65px;
    left: calc(50% + 10px);
    width: 45px;
    height: 45px;
  }
  .wysiwyg .mainMenuBtn.icon span.publication::before {
    top: -65px;
    left: calc(50% + 10px);
    width: 39px;
    height: 44px;
  }
  .wysiwyg .mainMenuBtn.icon span.event::before {
    top: -65px;
    left: calc(50% + 10px);
    width: 46px;
    height: 39px;
  }
  .wysiwyg .mainMenuBtn.icon span.investigation::before {
    top: -65px;
    left: calc(50% + 10px);
    width: 34px;
    height: 44px;
  }
  .wysiwyg .mainMenuBtn.icon span.video {
    margin-top: 55px;
  }
  .wysiwyg .mainMenuBtn.icon span.video::before {
    top: -55px;
    left: calc(50% + 10px);
    width: 43px;
    height: 35px;
  }
  .wysiwyg .mainMenuBtn.icon span.video::after {
    right: -30px;
  }
  .wysiwyg .mainMenuBtn.icon span.monitor {
    margin-top: 55px;
  }
  .wysiwyg .mainMenuBtn.icon span.monitor::before {
    top: -55px;
    left: calc(50% + 10px);
    width: 41px;
    height: 35px;
  }
  .wysiwyg .mainMenuBtn.no_arrow a {
    padding: 0 22.5px;
  }
  .wysiwyg .mainMenuTitle {
    font-size: 20px;
    line-height: 1.45;
    border-radius: 8px;
    padding: 0 22.5px;
    min-height: 81px;
    transition: 0.3s;
  }
  .wysiwyg .mainMenuTitle + .m_list.m_list_link.txt_link {
    margin-top: 30px;
  }
  .wysiwyg .index_list_2col {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 40px;
  }
  .wysiwyg .index_list_2col.icon {
    gap: 80px 40px;
  }
  .wysiwyg .index_list_cont {
    width: calc(50% - 20px);
  }
  .wysiwyg .index_detail_2col {
    justify-content: space-between;
  }
  .wysiwyg .index_detail_2col + .index_list_3col {
    margin-top: 120px;
  }
  .wysiwyg .index_detail_2col.sakura::after {
    bottom: -180px;
    right: -10%;
    width: 352px;
    height: 486px;
  }
  .wysiwyg .index_detail_2col.sakura_small::after {
    bottom: -280px;
    right: -10%;
    width: 322px;
    height: 456px;
  }
  .wysiwyg .detail_cont {
    width: 52.5%;
  }
  .wysiwyg .detail_img {
    width: 39.5%;
  }
  .wysiwyg .index_list_3col {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 14px;
  }
  .wysiwyg .index_list_3col .index_list_cont {
    width: calc(33.3333333333% - 9.4px);
  }
  .wysiwyg * + .index_list_2col,
  .wysiwyg * + .index_list_3col {
    margin-top: 64px;
  }
  .wysiwyg .p_top_banner {
    padding: 72px 2% 59px;
  }
  .wysiwyg .p_top_banner::before {
    left: -10%;
    width: 120%;
  }
  .wysiwyg .p_top_banner .p_top_banner_slider_item {
    width: 31.9%;
  }
  .wysiwyg .p_top_banner .p_top_banner_slider_item:not(:nth-of-type(3n)) {
    margin-right: 2.2%;
  }
  .wysiwyg * + .p_top_banner {
    margin-top: 120px;
  }
  .wysiwyg .news_tab_box .inner,
  .wysiwyg .faq_tab_box .inner {
    padding: 50px 8.5% !important;
  }
  .wysiwyg .news_tab_title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .wysiwyg .news_tab_list,
  .wysiwyg .faq_tab_list {
    gap: 20px;
  }
  .wysiwyg .news_tab_list li a,
  .wysiwyg .faq_tab_list li a {
    min-width: 118px;
    padding: 12px 36px;
    font-size: 16px;
    transition: 0.3s;
  }
  .wysiwyg .news_tab_list li a:hover, .wysiwyg .news_tab_list li a:focus,
  .wysiwyg .faq_tab_list li a:hover,
  .wysiwyg .faq_tab_list li a:focus {
    text-decoration: none;
    border: 1.5px solid #694A26;
  }
  .wysiwyg .m_newslist_wrap {
    padding: 80px 8.3%;
  }
  .wysiwyg .m_newslist {
    margin-bottom: 40px;
  }
  .wysiwyg .m_newslist li.m_newslist_item {
    display: flex;
    flex-wrap: wrap;
  }
  .wysiwyg .m_newslist li.m_newslist_item:hover .m_newslist_item_date, .wysiwyg .m_newslist li.m_newslist_item:focus .m_newslist_item_date {
    color: #694A26;
  }
  .wysiwyg .m_newslist li.m_newslist_item:hover span.m_newslist_item_headline a, .wysiwyg .m_newslist li.m_newslist_item:focus span.m_newslist_item_headline a {
    color: #694A26;
  }
  .wysiwyg .m_newslist li.m_newslist_item:hover span.m_newslist_item_headline a::after, .wysiwyg .m_newslist li.m_newslist_item:focus span.m_newslist_item_headline a::after {
    background-image: url(../image/arrow_brown.svg);
  }
  .wysiwyg .m_newslist li.m_newslist_item:not(:last-child) {
    margin-bottom: 40px;
  }
  .wysiwyg .m_newslist time.m_newslist_item_date {
    font-size: 22px;
    width: 165px;
  }
  .wysiwyg .m_newslist span.m_newslist_item_headline {
    font-size: 22px;
    width: calc(100% - 165px);
  }
  .wysiwyg .m_newslist span.m_newslist_item_headline a {
    padding-right: 60px;
  }
  .wysiwyg .m_newslist span.m_newslist_item_headline a::after {
    top: 13px;
    width: 11px;
    height: 14px;
  }
  .wysiwyg .m_pager ul.m_pager_nav {
    gap: 0 22px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item {
    font-size: 22px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item a {
    width: 43px;
    height: 43px;
    border-radius: 4px;
    transition: 0.3s;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item a:hover, .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item a:focus {
    color: #333;
    text-decoration: none;
    background-color: #EBE9E1;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item span {
    width: 43px;
    height: 43px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li:first-child:not(.m_pager_nav_item_first) {
    margin-left: 38px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li:last-child:not(.m_pager_nav_item_last) {
    margin-right: 38px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_first a:hover, .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_first a:focus {
    background-color: transparent;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_first a::before {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_last a:hover, .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_last a:focus {
    background-color: transparent;
  }
  .wysiwyg .m_pager ul.m_pager_nav li.m_pager_nav_item_last a::before {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .outline {
    background-color: #FFFDF7;
    width: 33.3%;
  }
  .wysiwyg .outlineTitle {
    display: none;
  }
  .wysiwyg .outlineList {
    position: sticky;
    top: 150px;
    left: 0;
    background-color: #FFFDF7;
    padding: 72px 12.5%;
  }
  .wysiwyg .outlineList > li:not(:last-child) {
    margin-bottom: 28px;
  }
  .wysiwyg .outlineList > li > a {
    color: #000;
    font-size: 15px;
    padding-left: 29px;
  }
  .wysiwyg .outlineList > li > a:hover, .wysiwyg .outlineList > li > a:focus {
    color: #694A26;
    font-weight: 700;
  }
  .wysiwyg .outlineList > li > a:hover::before, .wysiwyg .outlineList > li > a:focus::before {
    background-image: url(../image/arrow_brown.svg) no-repeat center/100%;
  }
  .wysiwyg .outlineList > li > a::before {
    background: url(../image/arrow_line.svg) no-repeat center/100%;
    left: 0;
    top: 4px;
    width: 11px;
    height: 14px;
    transition: 0.3s;
  }
  .wysiwyg * + .anc {
    margin-top: 120px;
  }
  .wysiwyg * + .ancChild {
    margin-top: 64px;
  }
  .wysiwyg .outlineSubMenu {
    margin-top: 28px;
    margin-left: 24px;
  }
  .wysiwyg .outlineSubMenu li:not(:last-child) {
    margin-bottom: 22px;
  }
  .wysiwyg .outlineSubMenu li > a {
    font-size: 15px;
    padding-left: 29px;
  }
  .wysiwyg .outlineSubMenu li > a:hover, .wysiwyg .outlineSubMenu li > a:focus {
    color: #694A26;
    font-weight: 700;
  }
  .wysiwyg .outlineSubMenu li > a:hover::before, .wysiwyg .outlineSubMenu li > a:focus::before {
    background-color: #694A26;
  }
  .wysiwyg .outlineSubMenu li > a::before {
    background-color: #000;
    left: 0;
    top: 11px;
    width: 11px;
    height: 1px;
    border-radius: 50px;
  }
  .wysiwyg .anc.secFaq {
    margin-top: 64px;
  }
  .wysiwyg .accordion + .accordion {
    margin-top: 24px;
  }
  .wysiwyg .accordion_title {
    max-width: 718px;
  }
  .wysiwyg .accordion_title > button {
    font-size: 18px;
    padding: 11px 90px 11px 30px;
    cursor: pointer;
  }
  .wysiwyg .accordion_icon {
    width: 16px;
    height: 2px;
  }
  .wysiwyg .accordion_icon::before {
    top: 50%;
    left: 7px;
    width: 2px;
    height: 16px;
  }
  .wysiwyg .accordion_content {
    padding-top: 24px;
  }
  .wysiwyg .accordion_content * + .m_list.m_list_link.txt_link {
    margin-top: 24px;
  }
  .wysiwyg .boxCol2 {
    display: flex;
    justify-content: space-between;
  }
  .wysiwyg .boxCol2 .half {
    width: 49%;
  }
  .wysiwyg .boxCol2.snsFixed .details {
    width: 62.4%;
  }
  .wysiwyg .boxCol2.snsFixed .outline {
    width: 31%;
  }
  .wysiwyg * + .boxCol2 {
    margin-top: 64px;
  }
  .wysiwyg .boxLeft {
    width: 22.2%;
  }
  .wysiwyg .boxLeft h3 {
    margin-bottom: 0;
  }
  .wysiwyg .boxRight {
    width: 71.8%;
  }
  .wysiwyg .details {
    width: 66.7%;
  }
  .wysiwyg .details .inner {
    padding: 72px 12.5% 80px 6.25% !important;
  }
  .wysiwyg * + .box_flex_01,
  .wysiwyg * + .box_flex_02 {
    margin-top: 40px;
  }
  .wysiwyg .columnImg {
    display: flex;
    justify-content: space-between;
  }
  .wysiwyg .columnImg .img {
    width: 48.5%;
  }
  .wysiwyg * + .columnImg {
    margin-top: 42px;
  }
  .wysiwyg .colorBox {
    padding: 31px 2.7% 37px;
  }
  .wysiwyg .colorBox .place {
    font-size: 18px;
    line-height: 1.28;
    margin-bottom: 39px;
  }
  .wysiwyg .colorBox .colorBoxInfo {
    padding-left: 3.7%;
    display: flex;
    justify-content: space-between;
  }
  .wysiwyg .colorBox .infoLeft {
    width: 40%;
  }
  .wysiwyg .colorBox .date {
    padding-left: 30px;
    margin-bottom: 21px;
  }
  .wysiwyg .colorBox .date::before {
    top: 6px;
  }
  .wysiwyg .colorBox .time {
    padding-left: 30px;
  }
  .wysiwyg .colorBox .time::before {
    top: 6px;
  }
  .wysiwyg .colorBox .infoRight {
    width: 54.3%;
  }
  .wysiwyg .colorBox .map {
    padding-left: 30px;
    margin-bottom: 13px;
  }
  .wysiwyg .colorBox .map::before {
    top: 6px;
    width: 16px;
    height: 16px;
  }
  .wysiwyg .colorBox .map::after {
    top: 6px;
  }
  .wysiwyg .colorBox .address {
    font-size: 16px;
    line-height: 1.62;
    padding-left: 30px;
  }
  .wysiwyg * + .colorBox {
    margin-top: 23px;
  }
  .wysiwyg #eventTabControl {
    border-bottom: 3px solid #B50025;
  }
  .wysiwyg #eventTabControl a {
    font-size: 18px;
    width: 49.7%;
    padding: 21px;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
  }
  .wysiwyg #eventTabControl a:hover, .wysiwyg #eventTabControl a:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border: 1px solid #333;
  }
  .wysiwyg #eventTabBody {
    padding: 64px 0 0;
  }
  .wysiwyg .eventList {
    gap: 40px 16px;
  }
  .wysiwyg .eventList li {
    border-radius: 8px;
    width: 50%;
    width: calc(33.3333333333% - 11px);
  }
  .wysiwyg .eventList li a {
    padding: 30px 7.5%;
  }
  .wysiwyg .eventList li a:hover .eventLink, .wysiwyg .eventList li a:focus .eventLink {
    text-decoration: underline !important;
    font-weight: 500;
  }
  .wysiwyg .eventList li h3:hover, .wysiwyg .eventList li h3:focus {
    color: #000;
  }
  .wysiwyg .eventList h3 {
    font-size: 18px;
    margin: 30px 0 36px;
    padding: 0 0 0 30px;
    min-height: 52px;
  }
  .wysiwyg .eventList .eventDate {
    font-size: 16px;
    margin: 0 0 20px 0;
    padding-left: 23px;
  }
  .wysiwyg .eventList .eventDate::before {
    top: 6px;
  }
  .wysiwyg .eventList .eventPlace {
    font-size: 16px;
    margin: 0 0 20px 0;
    padding-left: 23px;
  }
  .wysiwyg .eventList .eventPlace::before {
    top: 6px;
  }
  .wysiwyg .eventList .eventPlace + .eventLink {
    margin-top: 36px;
  }
  .wysiwyg .eventList .eventTxt {
    font-size: 16px;
    margin: 0 0 36px 0;
  }
  .wysiwyg .eventList .eventLink {
    font-size: 18px;
  }
  .wysiwyg .eventList .eventLink span {
    padding: 0 0 0 24px;
  }
  .wysiwyg .eventList .eventLink span::before {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .planIntro {
    margin-bottom: 64px;
    max-width: 718px;
  }
  .wysiwyg .planList {
    margin-bottom: 120px;
  }
  .wysiwyg .planList li:not(:last-child) {
    margin-bottom: 40px;
  }
  .wysiwyg .planList li a {
    border-radius: 8px;
    border: 1px solid #949497;
    padding: 24px 20% 24px 28px;
    transition: 0.3s;
  }
  .wysiwyg .planList li a:hover, .wysiwyg .planList li a:focus {
    text-decoration: none;
  }
  .wysiwyg .planList li a:hover::before, .wysiwyg .planList li a:focus::before {
    opacity: 1;
  }
  .wysiwyg .planList li a::before {
    content: "";
    display: block;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: -1px;
    left: -1px;
    border: 2px solid #B50025;
    border-radius: 8px;
    opacity: 0;
  }
  .wysiwyg .planList li a.blue::before {
    border: 2px solid #424F8A;
  }
  .wysiwyg .planList li a.beige::before {
    border: 2px solid #D3B270;
  }
  .wysiwyg .planList li a::after {
    content: "";
    display: block;
    background: url(../image/arrow.svg) no-repeat center/100%;
    width: 17px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%) rotate(90deg);
  }
  .wysiwyg .planList li .planNumber {
    border-radius: 8px;
    font-size: 22px;
    min-width: 144px;
    padding: 7px;
    margin-bottom: 12px;
  }
  .wysiwyg .planList li .planTxt {
    line-height: 1.88;
  }
  .wysiwyg #planTabControl {
    border-bottom: 3px solid #B50025;
  }
  .wysiwyg #planTabControl:has(.blue.is-active) {
    border-bottom: 3px solid #424F8A;
  }
  .wysiwyg #planTabControl:has(.beige.is-active) {
    border-bottom: 3px solid #D3B270;
  }
  .wysiwyg #planTabControl a {
    width: calc(33.3333333333% - 11.3px);
    border-radius: 8px 8px 0 0;
    min-height: 67px;
    line-height: 1.88;
    padding: 1%;
  }
  .wysiwyg #planTabControl a:hover, .wysiwyg #planTabControl a:focus {
    text-decoration: none;
  }
  .wysiwyg #planTabBody {
    margin-top: 64px;
  }
  .wysiwyg .flowChart li:not(:last-child) .planMethod {
    border-bottom: 1px solid #333;
  }
  .wysiwyg .flowChart li:last-child {
    height: 156px;
  }
  .wysiwyg .flowChart .planOrder {
    width: 145px;
  }
  .wysiwyg .flowChart .planOrder::before {
    width: 3px;
    left: 41.4%;
  }
  .wysiwyg .flowChart .planOrder.overlayBlueBottom::after {
    height: 50%;
    width: 3px;
    left: 41.4%;
  }
  .wysiwyg .flowChart .planOrder.overlayBlueTop::after {
    height: 50%;
    width: 3px;
    left: 41.4%;
  }
  .wysiwyg .flowChart .planOrder.overlayBeigeBottom::after {
    height: 50%;
    width: 3px;
    left: 41.4%;
  }
  .wysiwyg .flowChart .orderNumber {
    font-size: 25px;
    border: 3px solid #B50025;
    width: 80px;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
  }
  .wysiwyg .flowChart .orderNumber.whtBlue {
    border: 3px solid #424F8A;
  }
  .wysiwyg .flowChart .orderNumber.whtBeige {
    border: 3px solid #694A26;
    font-size: 22px !important;
    line-height: 1.27;
    letter-spacing: 0.01em;
  }
  .wysiwyg .flowChart .orderNumber.large {
    font-size: 26px;
    width: 116px;
    height: 116px;
    left: 4%;
    top: 0;
    transform: translateY(0);
  }
  .wysiwyg .flowChart .orderNumber.center {
    top: 50% !important;
  }
  .wysiwyg .flowChart .orderNumber.blue {
    border: 3px solid #424F8A;
  }
  .wysiwyg .flowChart .orderNumber.beige {
    border: 3px solid #D3B270;
  }
  .wysiwyg .flowChart .planMethod {
    width: calc(100% - 145px);
    padding: 30px 0;
  }
  .wysiwyg .flowChart .planMethod.separator {
    height: 122px;
    font-size: 22px;
    justify-content: center;
  }
  .wysiwyg .flowChart .planMethod.separator.last {
    text-align: center;
    height: 100%;
    padding: 68px 0 32px;
  }
  .wysiwyg .flowChart .planMethod.wide {
    height: 199px;
    padding: 68px 0 67px;
  }
  .wysiwyg .flowChart .planMethod .commonBtn {
    margin-top: 24px;
  }
  .wysiwyg .flowChart .planMethod .commonBtn:first-of-type {
    margin-right: 12px;
  }
  .wysiwyg .flowChart .planMethod .commonBtn + .commonBtn {
    margin-left: 0;
  }
  .wysiwyg .flowChart .planMethod dl > div {
    display: flex;
    align-items: center;
  }
  .wysiwyg .flowChart .planMethod dt {
    width: 25%;
    padding-right: 24px;
  }
  .wysiwyg .flowChart .planMethod dd {
    width: 75.5%;
    padding-left: 24px;
    min-height: 62px;
  }
  .wysiwyg .flowChart .planMethod dd::after {
    content: "";
    display: block;
    background-color: #333;
    width: 1px;
    height: 84%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .wysiwyg .flowChart .planMethod .methodTitle {
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 1.59;
  }
  .wysiwyg .flowChart .planMethod .methodTitle + .commonBtn {
    margin-top: 24px;
  }
  .wysiwyg .flowChart .planMethod .methodTitle + .methodTxt {
    margin-top: 24px;
  }
  .wysiwyg .flowChart .iconTxt {
    display: flex;
    align-items: center;
  }
  .wysiwyg .flowChart .iconTxt p {
    line-height: 1.45;
    font-size: 22px;
  }
  .wysiwyg .flowChart .arrive {
    width: 89px;
    height: 62px;
    margin-right: 17px;
  }
  .wysiwyg .flowChart .study {
    width: 92px;
    height: 62px;
    margin-right: 19px;
  }
  .wysiwyg .flowChart .enrollment {
    width: 75px;
    height: 49px;
    margin-right: 23px;
  }
  .wysiwyg .flowChart .training {
    width: 80px;
    height: 56px;
    margin-right: 22px;
  }
  .wysiwyg .flowChart .graduation {
    width: 61px;
    height: 55px;
    margin-right: 22px;
  }
  .wysiwyg .flowChart .graduation span {
    font-size: 16px;
  }
  .wysiwyg .flowIntro {
    min-height: 356px;
    padding: 2% 5%;
  }
  .wysiwyg .flowIntro p {
    max-width: 718px;
  }
  .wysiwyg .flowStart {
    font-size: 32px;
    margin: 64px auto 53px;
  }
  .wysiwyg .flowStart span {
    padding-left: 68px;
  }
  .wysiwyg .flowStart span::before {
    width: 53px;
    height: 50px;
  }
  .wysiwyg .flowTitle {
    border-radius: 8px;
    padding: 18px 25px;
    cursor: pointer;
  }
  .wysiwyg .flowTitle::after {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .flowTitle span {
    font-size: 22px;
  }
  .wysiwyg .flowTitle span.step {
    width: 13.9%;
    padding-left: 20px;
  }
  .wysiwyg .flowTitle span.step::before {
    width: 4px;
    height: 28px;
    bottom: 0;
  }
  .wysiwyg .flowTitle span.item {
    width: 71.3%;
  }
  .wysiwyg .flowContents {
    margin-top: 64px;
  }
  .wysiwyg .flowContents + .flowTitle {
    margin-top: 64px;
  }
  .wysiwyg .flowBlock {
    width: 87.2%;
    margin-inline: auto;
  }
  .wysiwyg .flowBlock li:not(:last-child) {
    margin-bottom: 64px;
  }
  .wysiwyg .flowBlock li.reverse .flowImg {
    width: 150px;
    margin-left: 30px;
  }
  .wysiwyg .flowBlock li.reverse .bubble::after {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 30px solid #F1C272;
    right: -30px;
  }
  .wysiwyg .flowBlock .flowImg {
    width: 147px;
    margin-right: 45px;
  }
  .wysiwyg .flowBlock .bubble {
    border-radius: 8px;
    min-width: 340px;
    max-width: 500px;
    padding: 20px 21px;
  }
  .wysiwyg .flowBlock .bubble::before {
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 30px solid #EBE9E1;
    left: -30px;
  }
  .wysiwyg .flowBlock + .btnWrap {
    margin-top: 64px;
  }
  .wysiwyg .flowGoal {
    font-size: 30px;
    margin: 40px auto 0;
  }
  .wysiwyg .world_map {
    position: relative;
  }
  .wysiwyg .world_select_btn {
    display: inline-block;
    position: absolute;
    padding: 12px 30px;
    transition: 0.3s;
  }
  .wysiwyg .world_select_btn:hover, .wysiwyg .world_select_btn:focus {
    text-decoration: none;
    color: #000;
    background-color: #D3B270;
    border: 1px solid #D3B270;
  }
  .wysiwyg .world_select_btn.europe {
    top: 21.45%;
    left: 12.7%;
  }
  .wysiwyg .world_select_btn.n-america {
    top: 29%;
    right: 15.5%;
  }
  .wysiwyg .world_select_btn.asia {
    top: 31.57%;
    left: 31.9%;
  }
  .wysiwyg .world_select_btn.m-east {
    top: 36.5%;
    left: 19.8%;
  }
  .wysiwyg .world_select_btn.africa {
    bottom: 41.69%;
    left: 6.1%;
  }
  .wysiwyg .world_select_btn.l-america {
    bottom: 29.45%;
    right: 2.7%;
  }
  .wysiwyg .world_select_btn.oceania {
    bottom: 27.19%;
    left: 50%;
    transform: translateX(-50%);
  }
  .wysiwyg .country_wrap {
    margin-top: 60px;
  }
  .wysiwyg .country_wrap + .btnWrap {
    margin-top: 40px;
  }
  .wysiwyg .country_list {
    margin-top: 40px;
    gap: 20px 15px;
  }
  .wysiwyg .country_list li {
    width: calc(20% - 12px);
  }
  .wysiwyg .country_list li a {
    padding: 12px;
  }
  .wysiwyg .country_list li a:hover, .wysiwyg .country_list li a:focus {
    text-decoration: none;
    border: 1.5px solid #694A26;
  }
  .wysiwyg .country_contents {
    border-radius: 8px;
  }
  .wysiwyg .country_contents .country_name {
    font-size: 28px;
    padding: 25px;
  }
  .wysiwyg .country_contents .country_inner {
    padding: 50px 14.1%;
  }
  .wysiwyg .country_contents .title_wrap {
    display: flex;
    justify-content: space-between;
  }
  .wysiwyg .country_contents h3 {
    padding: 10px 0 10px 28px;
  }
  .wysiwyg .country_contents .country_pdf_link {
    min-width: 64px;
    font-size: 22px;
    line-height: 1.4;
    margin-left: 30px;
    padding-top: 10px;
  }
  .wysiwyg .country_contents .country_pdf_link:hover, .wysiwyg .country_contents .country_pdf_link:focus {
    color: #694A26;
    -webkit-text-decoration: underline 1px solid #694A26;
            text-decoration: underline 1px solid #694A26;
  }
  .wysiwyg .country_contents .country_pdf_link:hover::after, .wysiwyg .country_contents .country_pdf_link:focus::after {
    opacity: 0.7;
  }
  .wysiwyg .country_contents .country_details {
    margin-bottom: 40px;
  }
  .wysiwyg .country_contents .country_details div:not(:last-child) {
    margin-bottom: 12px;
  }
  .wysiwyg .country_contents .country_details dt {
    width: 58px;
  }
  .wysiwyg .country_contents .country_details dd {
    width: calc(100% - 58px);
  }
  .wysiwyg .country_contents .country_details dd a:hover, .wysiwyg .country_contents .country_details dd a:focus {
    color: #694A26;
  }
  .wysiwyg .country_contents .country_details dd a:hover span::after, .wysiwyg .country_contents .country_details dd a:focus span::after {
    background: url(../image/icon_blank_brown.svg) no-repeat center/100%;
  }
  .wysiwyg .country_contents .country_details dd a span {
    padding-right: 24px;
  }
  .wysiwyg .country_contents .country_details dd a span::after {
    width: 16px;
    height: 16px;
  }
  .wysiwyg .country_contents .country_sns {
    gap: 40px;
    padding: 18px 5.57%;
  }
  .wysiwyg .country_contents .country_sns li a {
    transition: 0.3s;
  }
  .wysiwyg .country_contents .country_sns li a:hover, .wysiwyg .country_contents .country_sns li a:focus {
    opacity: 0.7;
  }
  .wysiwyg .country_contents .country_sns li img {
    width: 46px;
  }
  .wysiwyg .country_contents .country_sns + .btnWrap {
    margin-top: 40px;
  }
  .wysiwyg * + .country_contents {
    margin-top: 60px;
  }
  .wysiwyg .japan_map_index {
    position: relative;
    display: block;
    padding-top: 23px;
  }
  .wysiwyg #japanMap {
    width: 62.4%;
    margin-left: auto;
    margin-right: 37px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider_container {
    position: absolute;
    top: 40px;
    left: 20px;
  }
  .wysiwyg .japan_slider {
    width: 487px;
    border-radius: 8px;
  }
  .wysiwyg .japan_slider .prev {
    top: 117px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    left: -16px;
  }
  .wysiwyg .japan_slider .prev:hover, .wysiwyg .japan_slider .prev:focus {
    background-color: #333;
  }
  .wysiwyg .japan_slider .prev::after {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .japan_slider .next {
    top: 117px;
    transition: 0.3s;
    cursor: pointer;
    width: 40px;
    height: 40px;
    right: -16px;
  }
  .wysiwyg .japan_slider .next:hover, .wysiwyg .japan_slider .next:focus {
    background-color: #333;
  }
  .wysiwyg .japan_slider .next::after {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .japan_slider_item {
    width: 478px;
    border-radius: 8px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    margin: 0 3px 6px 8px;
  }
  .wysiwyg .japan_slider_item .txt {
    padding: 10px 6% 25px;
    min-height: 146px;
  }
  .wysiwyg .japan_slider_item .area {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 22px;
  }
  .wysiwyg .japan_slider_item .area::after {
    bottom: -11px;
    width: 30px;
    height: 3px;
  }
  .wysiwyg .japan_slider_item .area_link {
    gap: 5px 0;
  }
  .wysiwyg .japan_slider_item .area_link li::after {
    width: 1px;
    height: 14px;
  }
  .wysiwyg .japan_slider_item .area_link li a {
    font-size: 18px;
    line-height: 1.66;
    padding: 0 12px;
    transition: 0.3s;
  }
  .wysiwyg .japan_slider_item .area_link li a:hover, .wysiwyg .japan_slider_item .area_link li a:focus {
    text-decoration: none;
    opacity: 0.5;
  }
  .wysiwyg .prefecture_list {
    gap: 17px;
  }
  .wysiwyg .prefecture_list li {
    width: calc(20% - 13.6px);
  }
  .wysiwyg .prefecture_list li a {
    font-size: 16px;
    padding: 15px;
    transition: 0.3s;
  }
  .wysiwyg .prefecture_list li a:hover, .wysiwyg .prefecture_list li a:focus {
    text-decoration: none;
    color: #000;
    border: 1.5px solid #000;
    background-color: #D3B270;
  }
  .wysiwyg .summary {
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .wysiwyg .summary .summaryTxt {
    width: 52.5%;
  }
  .wysiwyg .summary .summaryMap {
    width: 40%;
    margin-top: -25px;
  }
  .wysiwyg .summaryImg {
    background-color: #F5F4F2;
    padding: 50px 10.7%;
  }
  .wysiwyg .summaryImgList li {
    width: 33.3333333333%;
  }
  .wysiwyg .featuresSlider:not(.pcSlide) {
    display: none !important;
  }
  .wysiwyg .foodsList {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 4.3%;
  }
  .wysiwyg .foodsList li {
    width: calc(50% - 22px);
  }
  .wysiwyg .foodsList .foodsImg {
    border-radius: 8px;
    overflow: hidden;
  }
  .wysiwyg .foodsList .foodsImg + h3 {
    margin-top: 40px;
  }
  .wysiwyg .foodsList.new {
    gap: 30px;
  }
  .wysiwyg .foodsList.new li {
    display: flex;
    justify-content: space-between;
  }
  .wysiwyg .foodsList.new .foodsImg {
    width: 44.7%;
  }
  .wysiwyg .foodsList.new .wrap {
    width: 47.3%;
  }
  .wysiwyg .graf p {
    max-width: inherit;
  }
  .wysiwyg .climate {
    justify-content: space-between;
  }
  .wysiwyg .climate .climateImg {
    width: 37.2%;
  }
  .wysiwyg .climate .supplement {
    font-size: 14px;
    margin-top: 9px;
  }
  .wysiwyg .climate .supplement + .graph {
    margin-top: 36px;
  }
  .wysiwyg .climate .climateTxt {
    width: 52.5%;
  }
  .wysiwyg .costList {
    gap: 12px;
    margin-top: 40px;
  }
  .wysiwyg .costList li {
    min-height: 366px;
    border-radius: 8px;
    width: calc(25% - 9px);
    padding: 20px;
  }
  .wysiwyg .costList .costType {
    font-size: 20px;
  }
  .wysiwyg .costList .costType::after {
    bottom: -6px;
    width: 30px;
    height: 3px;
  }
  .wysiwyg .costList .costImg img {
    margin-inline: auto;
    margin-bottom: 5px;
  }
  .wysiwyg .costList .price {
    font-size: 18px;
    line-height: 1.44;
  }
  .wysiwyg .costList.new li {
    min-height: 300px;
    width: calc(20% - 10px);
  }
  .wysiwyg .innerBeige {
    padding: 60px 13.5%;
  }
  .wysiwyg .rootMap > div:not(:first-child) {
    margin-top: 110px;
  }
  .wysiwyg .rootMap dt {
    font-size: 22px;
    padding: 15px 0 15px 80px;
  }
  .wysiwyg .rootMap dt::before {
    width: 60px;
    height: 60px;
  }
  .wysiwyg .rootMap dd {
    margin-top: 40px;
  }
  .wysiwyg .rootMap .details {
    display: flex;
    justify-content: space-between;
    max-width: 517px;
    margin: 40px auto 0;
  }
  .wysiwyg .rootMap .wrap {
    width: 300px;
    gap: 36px;
  }
  .wysiwyg .rootMap .place {
    padding: 14px 50px;
  }
  .wysiwyg .rootMap .place::before {
    left: 14px;
    width: 26px;
    height: 26px;
  }
  .wysiwyg .rootMap .place:last-of-type::after {
    bottom: 50%;
    left: 26px;
    height: calc(100% + 25px);
  }
  .wysiwyg .rootMap .place:not(:last-of-type)::after {
    top: 50%;
    left: 26px;
    height: calc(100% + 100px);
  }
  .wysiwyg .rootMap .timeTag {
    margin-left: 40px;
    font-size: 14px;
    padding: 8px 10px 8px 20px;
    margin-right: -80px;
  }
  .wysiwyg .rootMap .timeTag::after {
    right: -11px;
    border-width: 15px 0 15px 12px;
  }
  .wysiwyg .countryRanking {
    max-width: 730px;
    gap: 64px;
  }
  .wysiwyg .countryRanking li {
    width: 200px;
    height: 200px;
    font-size: 24px;
  }
  .wysiwyg .countryRanking li img {
    left: 5px;
    top: 6px;
    width: 50px;
    height: 50px;
  }
  .wysiwyg * + .schoolList {
    margin-top: 56px;
  }
  .wysiwyg .schoolList {
    gap: 32px;
  }
  .wysiwyg .schoolList li {
    width: calc(33.3333333333% - 21.5px);
  }
  .wysiwyg .schoolList li a {
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
  }
  .wysiwyg .schoolList li a:hover, .wysiwyg .schoolList li a:focus {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
  }
  .wysiwyg .schoolList .thumbnail {
    aspect-ratio: 252/172;
    height: 172px;
    overflow: hidden;
  }
  .wysiwyg .schoolList .thumbnail img {
    height: 100%;
  }
  .wysiwyg .schoolList .nameBox {
    margin-top: 20px;
    padding-left: 15px;
  }
  .wysiwyg .schoolList .nameBox span {
    line-height: 1.5;
  }
  .wysiwyg .schoolList .nameBox span.kana {
    font-size: 11px;
  }
  .wysiwyg .schoolList .nameBox span.name {
    margin-top: 5px;
    font-size: 22px;
  }
  .wysiwyg .schoolList .nameBox::before {
    border-radius: 4px;
    width: 5px;
    height: 57px;
  }
  .wysiwyg .schoolList .info {
    margin-top: auto;
    padding-top: 50px;
    gap: 30px;
  }
  .wysiwyg .schoolList .info p {
    font-size: 16px;
    padding-left: 23px;
  }
  .wysiwyg .schoolList .info p:before {
    width: 16px;
    height: 16px;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) {
    margin-bottom: 30px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .sp_wrap {
    display: flex;
    width: calc(100% - 114px);
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number {
    font-size: 22px;
    line-height: 1.54;
    padding: 0 28px;
    min-width: 90.55px;
    margin-right: 24px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number::before {
    width: 17px;
    height: 32px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .ranking_number::after {
    width: 17px;
    height: 32px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .m_list_ranking_segment {
    font-size: 20px;
    line-height: 1.55;
    width: 52.93%;
    margin-right: 5.64%;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(-n+3) .m_list_ranking_data {
    width: 41.5%;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(3) {
    padding-bottom: 30px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4):not(:last-child) {
    margin-bottom: 28px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .sp_wrap {
    display: flex;
    width: calc(100% - 70px);
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .ranking_number {
    font-size: 20px;
    line-height: 1.55;
    width: 40px;
    height: 40px;
    margin-right: 30px;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .m_list_ranking_segment {
    font-size: 18px;
    line-height: 1.55;
    width: 57.78%;
    margin-right: 5.64%;
  }
  .wysiwyg .m_list.m_list_ranking li:nth-child(n+4) .m_list_ranking_data {
    width: 41.5%;
  }
  .wysiwyg .graph_source {
    max-width: 730px;
    margin: 24px auto 0;
  }
  .wysiwyg .bubble_box {
    max-width: 730px;
    margin-inline: auto;
  }
  .wysiwyg .bubble_box p {
    padding: 20px 35px;
    border-radius: 8px;
    margin-left: 35px;
  }
  .wysiwyg .bubble_box p::before {
    top: 39px;
    left: -30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 30px solid #EBE9E1;
    border-left: 0;
  }
  .wysiwyg .bubble_box p + p {
    margin-top: 24px;
  }
  .wysiwyg * + .bubble_box {
    margin-top: 60px;
  }
  .wysiwyg .contactArea {
    padding: 41px 2%;
  }
  .wysiwyg .contactArea .contactInner {
    max-width: 832px;
    margin-inline: auto;
  }
  .wysiwyg .contactArea .contactTitle {
    font-size: 24px;
    margin-bottom: 31px;
    padding-left: 48px;
  }
  .wysiwyg .contactArea .contactTitle::before {
    width: 31px;
    height: 24px;
  }
  .wysiwyg .contactArea .wrap {
    display: flex;
    justify-content: space-between;
  }
  .wysiwyg .contactArea .organization {
    height: -moz-fit-content;
    height: fit-content;
    width: 42%;
    padding-left: 28px;
  }
  .wysiwyg .contactArea .organization::before {
    content: "";
    display: block;
    background-color: #B50025;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50px;
    width: 4px;
    height: 89%;
  }
  .wysiwyg .contactArea .organization span.official {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0.01em;
    margin-bottom: 5px;
  }
  .wysiwyg .contactArea .organization span.division {
    font-size: 18px;
    letter-spacing: 0.041em;
  }
  .wysiwyg .contactArea .address {
    letter-spacing: 0.041em;
    margin-top: 0;
    width: 50.7%;
  }
  .wysiwyg .contactArea .address span {
    font-size: 14px;
  }
  .wysiwyg .inquiryArea {
    padding: 64px 4%;
  }
  .wysiwyg .inquiryArea p {
    margin: 0 auto 40px;
  }
  .wysiwyg .ascojaLinkArea {
    height: 298px;
    background: url(../image/search_area_bg.webp) no-repeat center/cover;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn {
    font-size: 24px;
    height: 130px;
    min-width: 553px;
    padding: 0 60px 0 71px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn:hover, .wysiwyg .ascojaLinkArea .ascojaLinkBtn:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn:hover span::before, .wysiwyg .ascojaLinkArea .ascojaLinkBtn:focus span::before {
    background: url(../image/icon_ascoja_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn:hover span::after, .wysiwyg .ascojaLinkArea .ascojaLinkBtn:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn span {
    padding: 0 47px 0 78px;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn span::before {
    width: 46px;
    height: 46px;
  }
  .wysiwyg .ascojaLinkArea .ascojaLinkBtn span::after {
    width: 17px;
    height: 22px;
    transition: 0.3s;
  }
  .wysiwyg .searchLinkArea {
    height: 298px;
    background: url(../image/search_area_bg.webp) no-repeat center/cover;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn {
    font-size: 24px;
    height: 130px;
    min-width: 553px;
    padding: 0 20px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn:hover, .wysiwyg .searchLinkArea .searchLinkBtn:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn:hover span::before, .wysiwyg .searchLinkArea .searchLinkBtn:focus span::before {
    background: url(../image/icon_school_search_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn:hover span::after, .wysiwyg .searchLinkArea .searchLinkBtn:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn span {
    padding: 0 47px 0 80px;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn span::before {
    width: 53px;
    height: 50px;
  }
  .wysiwyg .searchLinkArea .searchLinkBtn span::after {
    width: 17px;
    height: 22px;
    transition: 0.3s;
  }
  .wysiwyg .scholarshipLinkArea {
    height: 298px;
    background: url(../image/search_area_bg.webp) no-repeat center/cover;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn {
    font-size: 24px;
    height: 130px;
    min-width: 640px;
    padding: 0 20px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn:hover, .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn:hover span::before, .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn:focus span::before {
    background: url(../image/icon_scholarship_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn:hover span::after, .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span {
    padding: 0 47px 0 80px;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span::before {
    width: 56px;
    height: 54px;
  }
  .wysiwyg .scholarshipLinkArea .scholarshipLinkBtn span::after {
    width: 17px;
    height: 22px;
    transition: 0.3s;
  }
  .wysiwyg .linkArea {
    height: 298px;
  }
  .wysiwyg .linkArea .wrap {
    width: 95%;
    gap: 0 25px;
  }
  .wysiwyg .faqLinkBtn {
    font-size: 24px;
    height: 130px;
    max-width: 480px;
    width: 100%;
    padding: 0 20px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .wysiwyg .faqLinkBtn:hover, .wysiwyg .faqLinkBtn:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
  .wysiwyg .faqLinkBtn:hover span::before, .wysiwyg .faqLinkBtn:focus span::before {
    background: url(../image/icon_faq_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .faqLinkBtn:hover span::after, .wysiwyg .faqLinkBtn:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .faqLinkBtn span {
    padding: 0 47px 0 80px;
  }
  .wysiwyg .faqLinkBtn span::before {
    width: 51px;
    height: 40px;
  }
  .wysiwyg .faqLinkBtn span::after {
    width: 17px;
    height: 22px;
    transition: 0.3s;
  }
  .wysiwyg .contactLinkBtn {
    font-size: 24px;
    height: 130px;
    max-width: 480px;
    width: 100%;
    padding: 0 20px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .wysiwyg .contactLinkBtn:hover, .wysiwyg .contactLinkBtn:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
  .wysiwyg .contactLinkBtn:hover span::before, .wysiwyg .contactLinkBtn:focus span::before {
    background: url(../image/icon_mail_large_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .contactLinkBtn:hover span::after, .wysiwyg .contactLinkBtn:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .contactLinkBtn span {
    padding: 0 47px 0 75px;
  }
  .wysiwyg .contactLinkBtn span::before {
    width: 40px;
    height: 30px;
  }
  .wysiwyg .contactLinkBtn span::after {
    width: 17px;
    height: 22px;
    transition: 0.3s;
  }
  .wysiwyg .supportLinkBtn {
    font-size: 24px;
    height: 130px;
    max-width: 480px;
    width: 100%;
    padding: 0 20px;
    border-radius: 8px;
    transition: 0.3s;
  }
  .wysiwyg .supportLinkBtn:hover, .wysiwyg .supportLinkBtn:focus {
    text-decoration: none;
    color: #fff;
    background-color: #333;
  }
  .wysiwyg .supportLinkBtn:hover span::before, .wysiwyg .supportLinkBtn:focus span::before {
    background: url(../image/icon_supportlink_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .supportLinkBtn:hover span::after, .wysiwyg .supportLinkBtn:focus span::after {
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
  }
  .wysiwyg .supportLinkBtn span {
    padding: 0 47px 0 80px;
  }
  .wysiwyg .supportLinkBtn span::before {
    width: 47px;
    height: 30px;
  }
  .wysiwyg .supportLinkBtn span::after {
    width: 17px;
    height: 22px;
    transition: 0.3s;
  }
  .wysiwyg .p_plan_list_define dt {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .wysiwyg .p_plan_list_define dd {
    padding-left: 20px;
  }
  .wysiwyg .p_plan_list_define dd + dt {
    margin-top: 22px;
  }
  .wysiwyg .img_txt_col2 {
    justify-content: space-between;
  }
  .wysiwyg .img_txt_col2 .img {
    width: 39.5%;
  }
  .wysiwyg .img_txt_col2 p {
    margin-top: 0 !important;
    width: 52.5%;
    margin-left: 2%;
  }
  .wysiwyg .img_txt_col2.reverse {
    flex-direction: row-reverse;
  }
  .wysiwyg * + .img_txt_col2 {
    margin-top: 60px;
  }
  .wysiwyg .img_caption .w718 {
    margin-top: 20px !important;
  }
  .wysiwyg .img_col3_list {
    gap: 30px;
  }
  .wysiwyg .img_col3_list li {
    width: calc(33.3333333333% - 20px);
  }
  .wysiwyg .img_col3_list li * + p {
    margin-top: 20px !important;
  }
  .wysiwyg * + .img_box,
  .wysiwyg * + .img_col3_list {
    margin-top: 40px;
  }
  .wysiwyg .lang_link a {
    font-size: 18px;
    line-height: 1.72;
    padding-left: 25px;
  }
  .wysiwyg .lang_link a:hover, .wysiwyg .lang_link a:focus {
    color: #694A26;
  }
  .wysiwyg .lang_link a::after {
    top: 9px;
    width: 11px;
    height: 14px;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  .wysiwyg #filterButtons {
    gap: 12px;
    align-items: center;
  }
  .wysiwyg #filterButtons .filterTitle {
    font-size: 16px;
  }
  .wysiwyg #filterButtons button {
    font-size: 16px;
    padding: 6px 35px;
    cursor: pointer;
  }
  .wysiwyg #filterButtons button:hover, .wysiwyg #filterButtons button:focus {
    color: #000;
    background-color: #D3B270;
  }
  .wysiwyg #filterButtons button.active::before {
    width: 16px;
    height: 1px;
    right: 15px;
  }
  .wysiwyg #filterButtons button.active::after {
    width: 16px;
    height: 1px;
    right: 15px;
  }
  .wysiwyg #categoryList {
    margin-top: 40px;
    gap: 40px 16px;
  }
  .wysiwyg #categoryList li {
    border-radius: 8px;
    width: 50%;
    width: calc(33.3333333333% - 11px);
  }
  .wysiwyg #categoryList li a {
    padding: 30px 7.5%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .wysiwyg #categoryList li a:hover .detailLink, .wysiwyg #categoryList li a:focus .detailLink {
    text-decoration: underline !important;
    font-weight: 500;
  }
  .wysiwyg #categoryList li h3:hover, .wysiwyg #categoryList li h3:focus {
    color: #000;
  }
  .wysiwyg #categoryList .thumbnail::after {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: -22px;
  }
  .wysiwyg #categoryList .wrap {
    gap: 8px 12px;
    margin-top: 30px;
  }
  .wysiwyg #categoryList .wrap + .wrap {
    margin-top: 10px;
  }
  .wysiwyg #categoryList .person {
    font-size: 16px;
    padding-left: 20px;
  }
  .wysiwyg #categoryList .person::before {
    top: 2px;
  }
  .wysiwyg #categoryList .place {
    font-size: 16px;
    padding-left: 20px;
  }
  .wysiwyg #categoryList .place::before {
    top: 2px;
  }
  .wysiwyg #categoryList .place + .detailLink {
    margin-top: 36px;
  }
  .wysiwyg #categoryList .school {
    font-size: 16px;
  }
  .wysiwyg #categoryList .student {
    font-size: 16px;
  }
  .wysiwyg #categoryList .student + .detailLink {
    margin-top: 36px;
  }
  .wysiwyg #categoryList h3 {
    font-size: 18px;
    margin: 24px 0 18px;
    padding: 0 0 0 30px;
    min-height: 52px;
  }
  .wysiwyg #categoryList .txt {
    font-size: 16px;
    margin: 0 0 23px 0;
  }
  .wysiwyg #categoryList .detailLink {
    font-size: 18px;
    margin-top: auto;
  }
  .wysiwyg #categoryList .detailLink span {
    padding: 0 0 0 24px;
  }
  .wysiwyg #categoryList .detailLink span::before {
    width: 11px;
    height: 14px;
  }
  .wysiwyg .btnAdd {
    font-size: 16px;
    min-width: 296px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s;
  }
  .wysiwyg .btnAdd:hover, .wysiwyg .btnAdd:focus {
    background-color: #333;
    text-decoration: none;
  }
  .wysiwyg .btnAdd span {
    width: 11px;
    height: 14px;
    right: 15px;
  }
  .wysiwyg .shareBtns {
    position: sticky;
    top: 190px;
    left: 0;
    gap: 12px 6px;
  }
  .wysiwyg .shareBtns > a {
    font-size: 15px;
    padding: 12px 22px;
    transition: border 0.2s;
  }
  .wysiwyg .shareBtns > a:hover, .wysiwyg .shareBtns > a:focus {
    border: 1px solid #694A26;
  }
  .wysiwyg .shareBtns > a span {
    padding-left: 36px;
  }
  .wysiwyg .shareBtns > a span::before {
    width: 26px;
    height: 26px;
  }
  main {
    background-color: #F5F4F2;
  }
  .inner {
    max-width: 1200px;
    width: 90%;
    margin-inline: auto;
  }
  .pageTitleBox {
    min-height: 394px;
  }
  .pageTitleBox::before {
    width: 74.8%;
  }
  .pageTitleBox.ttl_image_none .pageTitleBase {
    width: 100%;
  }
  .pageTitleBox.ttl_nav-applicants-for-study-abroad::before {
    background: url(../image/title_bg_nav_applicants_for_study_abroad.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_planning::before {
    width: 74.8%;
    background: url(../image/title_bg_planning.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_educational::before {
    background: url(../image/title_bg_educational.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_news::before {
    background: url(../image/title_bg_news.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_event::before {
    background: url(../image/title_bg_event.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_why::before {
    background: url(../image/title_bg_why.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_faq::before {
    background: url(../image/title_bg_faq.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_network::before {
    background: url(../image/title_bg_network.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_links::before {
    background: url(../image/title_bg_links.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_about::before {
    background: url(../image/title_bg_about.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_contact::before {
    background: url(../image/title_bg_contact.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_nav-finished-studying-in-japan::before {
    background: url(../image/title_bg_network.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_nav-studying-in-japan::before {
    background: url(../image/title_bg_nav-studying-in-japan.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_work-in-japan::before {
    background: url(../image/title_bg_job.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_life::before {
    background: url(../image/title_bg_life.webp) no-repeat center/cover;
  }
  .pageTitleBox.ttl_statistics::before {
    background: url(../image/title_bg_statistics.webp) no-repeat center/cover;
  }
  .pageTitleBox .inner {
    padding-top: 10%;
    min-height: 394px;
  }
  .pageTitleBox .pageTitleBase {
    padding: 20px 20px 20px 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 30%, rgba(255, 255, 255, 0.27) 100%);
    min-height: 280px;
    width: 67.5%;
  }
  .pageTitleBox .pageTitle {
    padding-left: 30px;
    min-height: 105px;
  }
  .pageTitleBox .pageTitle:after {
    width: 5px;
    height: 71%;
    max-height: 81px;
  }
  .pageTitleBox .mainTitle {
    font-size: 30px;
    line-height: 1.63;
    letter-spacing: 0.005em;
    margin-bottom: 9px;
  }
  .pageTitleBox .subTitle {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
  .postTitleBox {
    max-width: 1200px;
    width: 90%;
    margin-inline: auto;
    padding: 3%;
  }
  .postTitleBox.data {
    display: block;
    padding: 72px 4%;
  }
  .postTitleBox.data .postInner {
    margin-inline: auto;
  }
  .postTitleBox.data .postTitle + .postAuthor {
    margin-top: 40px;
  }
  .postTitleBox.data .link-list + p {
    margin-top: 64px;
  }
  .postTitleBox.data p + p {
    margin-top: 36px;
  }
  .postTitleBox.voice {
    padding: 0;
  }
  .postTitleBox.voice .layout {
    width: 100%;
    justify-content: space-between;
    padding: 48px 8.3%;
  }
  .postTitleBox.voice .layout .overview {
    width: 44%;
    min-width: 300px;
  }
  .postTitleBox.voice .layout .thumbnail {
    width: 47%;
    margin-left: 20px;
  }
  .postTitleBox.voice .layout .tag {
    margin-top: 20px;
  }
  .postTitleBox.voice .layout .tag > li {
    padding: 4px 10px;
    border-radius: 4px;
  }
  .postTitleBox.voice .layout .wrap {
    gap: 8px 12px;
    margin-top: 20px;
  }
  .postTitleBox.voice .layout .wrap + .wrap {
    margin-top: 10px;
  }
  .postTitleBox.voice .layout .person {
    font-size: 16px;
    padding-left: 20px;
  }
  .postTitleBox.voice .layout .person::before {
    top: 2px;
  }
  .postTitleBox.voice .layout .place {
    font-size: 16px;
    padding-left: 20px;
  }
  .postTitleBox.voice .layout .place::before {
    top: 2px;
  }
  .postTitleBox.voice .layout .place + .detailLink {
    margin-top: 36px;
  }
  .postTitleBox.voice .layout .school {
    font-size: 16px;
  }
  .postTitleBox.voice .layout .student {
    font-size: 16px;
  }
  .postTitleBox.voice .layout .student + .detailLink {
    margin-top: 36px;
  }
  .postTitleBox.voice .postDate + .postTitle {
    margin-top: 20px;
  }
  .postTitleBox.voice .postTitle + .postAuthor {
    margin-top: 40px;
  }
  .postTitleBox.voice .postTitle + .postIntro {
    margin-top: 20px;
  }
  .postTitleBox.voice .link-list + p {
    margin-top: 64px;
  }
  .postTitleBox.voice p + p {
    margin-top: 36px;
  }
  .postInner {
    padding: 0 !important;
    max-width: 718px;
    width: 100%;
  }
  .postTitle {
    font-size: 30px;
  }
  .postTitle + .postDate {
    margin-top: 30px;
  }
  .postDate {
    font-size: 16px;
  }
  .postAuthor {
    font-size: 16px;
    line-height: 1.75;
  }
  .postTitleBox.event .postInner {
    max-width: 1000px;
    width: 100%;
    justify-content: space-between;
  }
  .postTitleBox.event .postInner .titleWrap {
    width: 100%;
  }
  .postTitleBox.event .postInner .postTitle + .postDate {
    margin-top: 20px;
  }
  .postTitleBox.event .postInner .titleBnr {
    width: 47%;
    flex: none;
    margin-left: 9%;
  }
  .breadCrumb {
    background-color: #F5F4F2;
  }
  .breadCrumb .breadCrumbList {
    max-width: 1200px;
    width: 90%;
    margin-inline: auto;
    padding: 30px 0;
  }
  .breadCrumb .breadCrumbList li {
    font-size: 14px;
    line-height: 1.43;
  }
  .breadCrumb .breadCrumbList li:not(:last-child)::after {
    width: 8px;
    height: 10px;
    margin-right: 10px;
    margin-left: 12px;
  }
  #contents {
    padding-bottom: 80px;
    max-width: 1200px;
    width: 90%;
    margin-inline: auto;
  }
  #contents .inner {
    padding: 120px 8.3%;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  #contents .inner.event {
    padding: 64px 8.3% 72px;
  }
  #contents .inner.w718 {
    padding: 120px 5%;
    max-width: 840px;
    margin-inline: inherit;
  }
  #contents .inner.w718 .unique_box,
  #contents .inner.w718 .m_box {
    max-width: 718px;
  }
  #contents .inner.voice {
    padding: 80px 5% 0 8.3%;
  }
  #contents .inner:has(#filterButtons) {
    padding: 50px 8.3% 120px;
  }
  #contents .beigeBg {
    padding: 64px 8.3%;
  }
  #contents .beigeBg.maxSlider {
    padding: 64px 0;
  }
  #contents .beigeBg.maxSlider > h2 {
    margin: 7px 8.3% 64px;
  }
  #contents .greyBg {
    padding: 64px 8.3%;
  }
  #contents .postWide {
    max-width: 718px;
    margin-inline: auto;
  }
  .link-list p:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .link-list p a {
    font-size: 16px;
    line-height: 1.72;
    padding: 0 0 0 25px;
  }
  .link-list p a:hover, .link-list p a:focus {
    text-decoration: underline;
    color: #694A26;
  }
  .link-list p a::after {
    width: 11px;
    height: 14px;
    top: 23px;
    top: 6px;
  }
  .link-list p a img.u_icon {
    margin: 5px 0 0 5px;
  }
  * + .link-list {
    margin-top: 20px;
  }
  .svg_container {
    text-align: center;
  }
  * + .svg_container {
    margin-top: 40px;
  }
  pre {
    padding: 2%;
    margin-top: 40px;
    margin-bottom: 70px;
  }
  pre code {
    font-size: 16px;
  }
  /* common class */
  .imgC_pc {
    margin-inline: auto;
  }
  .mB0_pc {
    margin-bottom: 0 !important;
  }
  .mB5_pc {
    margin-bottom: 5px !important;
  }
  .mB10_pc {
    margin-bottom: 10px !important;
  }
  .mB20_pc {
    margin-bottom: 20px !important;
  }
  .mB30_pc {
    margin-bottom: 30px !important;
  }
  .mB40_pc {
    margin-bottom: 40px !important;
  }
  .mB50_pc {
    margin-bottom: 50px !important;
  }
  .mB60_pc {
    margin-bottom: 60px !important;
  }
  .mT0_pc {
    margin-top: 0 !important;
  }
  .mT5_pc {
    margin-top: 5px !important;
  }
  .mT10_pc {
    margin-top: 10px !important;
  }
  .mT20_pc {
    margin-top: 20px !important;
  }
  .mT30_pc {
    margin-top: 30px !important;
  }
  .mT40_pc {
    margin-top: 40px !important;
  }
  .mT50_pc {
    margin-top: 50px !important;
  }
  .mT60_pc {
    margin-top: 60px !important;
  }
}
@media print, screen and (min-width: 1024px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .featuresSlider .slick-track {
    display: flex;
  }
  .wysiwyg .featuresSlider .slick-slide {
    height: auto !important;
    transition: opacity 0.3s;
  }
  .wysiwyg .featuresSlider .featuresItem {
    background-color: #F0F0F0;
    overflow: hidden;
    transition: opacity 0.3s;
    display: flex;
    border-radius: 8px;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    width: 900px;
    margin: 0 25px 7px;
  }
  .wysiwyg .featuresSlider .featuresImg {
    width: 346px;
  }
  .wysiwyg .featuresSlider .featuresTxt {
    background-color: #FFFDF7;
    width: 654px;
    padding: 25px 57px;
  }
  .wysiwyg .featuresSlider .featuresTxt h3 {
    margin-bottom: 20px;
  }
  .wysiwyg .featuresSlider .featuresTxt h3 + p {
    margin-top: 0;
  }
  .wysiwyg .featuresSlider .featuresTxt * + .m_list.m_list_link.txt_link {
    margin-top: 20px;
  }
  .wysiwyg .featuresSlider .prev {
    border: none;
    position: relative;
    background-color: #B50025;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
    z-index: 3;
    cursor: pointer;
    width: 40px;
    height: 40px;
    left: 130px;
    left: calc(50% - 470px);
  }
  .wysiwyg .featuresSlider .prev:hover, .wysiwyg .featuresSlider .prev:focus {
    background-color: #333;
  }
  .wysiwyg .featuresSlider .prev::after {
    content: "";
    display: block;
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    width: 11px;
    height: 14px;
  }
  .wysiwyg .featuresSlider .next {
    border: none;
    position: relative;
    background-color: #B50025;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
    z-index: 3;
    cursor: pointer;
    width: 40px;
    height: 40px;
    right: calc(50% - 470px);
  }
  .wysiwyg .featuresSlider .next:hover, .wysiwyg .featuresSlider .next:focus {
    background-color: #333;
  }
  .wysiwyg .featuresSlider .next::after {
    content: "";
    display: block;
    background: url(../image/arrow_wht.svg) no-repeat center/100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 14px;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .index_detail_2col {
    flex-wrap: inherit;
    flex-direction: inherit;
    justify-content: space-between;
  }
  .wysiwyg .detail_cont {
    width: 52.5%;
  }
  .wysiwyg .detail_img {
    width: 39.5%;
  }
  .wysiwyg .eventList li {
    width: calc(50% - 8px);
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .featuresSlider:not(.pcSlide) {
    display: flex !important;
    flex-wrap: wrap;
    gap: 64px 4.3%;
  }
  .wysiwyg .featuresSlider.pcSlide {
    display: none !important;
  }
  .wysiwyg .featuresSlider .featuresItem {
    width: calc(50% - 22px);
  }
  .wysiwyg .featuresSlider .featuresTxt h3 {
    margin-top: 45px;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .pie_graph svg {
    width: 155%;
    height: 240px;
    margin-left: -25%;
  }
  .wysiwyg .pie_graph img {
    max-width: inherit;
    width: 155%;
    height: 240px;
    margin-left: -25%;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  .wysiwyg #categoryList li {
    width: calc(50% - 8px);
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  #contents .beigeBg.maxSlider {
    padding: 64px 0;
  }
  /* common class */
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  #contents .beigeBg.maxSlider {
    padding: 64px 8.3%;
  }
  /* common class */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .prefecture_list li {
    width: calc(25% - 13px);
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .japan_map_index {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .wysiwyg #japanMap {
    width: 100%;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider_container {
    position: static;
    margin-bottom: 45px;
  }
  .wysiwyg .japan_slider {
    margin-inline: auto;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
@media screen and (max-width: 1200px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
@media print, screen and (min-width: 1201px) {
  .wysiwyg table.small_table ol li::before {
    padding-right: 6px;
  }
  .wysiwyg .st0 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: #EBE9E1;
  }
  .wysiwyg .st2 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: none;
    stroke: #000000;
    stroke-miterlimit: 10;
  }
  .wysiwyg .japan_slider.slick-initialized {
    display: block;
  }
  .wysiwyg .schoolList > *:nth-child(n+10) {
    display: none !important;
  }
  .wysiwyg .lang_link + * {
    margin-top: 0;
  }
  .wysiwyg .u_icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .wysiwyg .u_icon img {
    width: 16px;
    height: 16px;
  }
  #contents .inner > *:first-child {
    margin-top: 0;
  }
  /* common class */
}
/*# sourceMappingURL=map/second.css.map */
