@charset "UTF-8";
/* Scss Document */
/*色*/
/*font*/
/*------------------------------*/
/*loading*/
/*------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #ccc;
  z-index: 1000;
}
.loading .loader_set {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.loading .loader_set .loader_Circle {
  margin: 0 auto;
}
.loading .loader_set p {
  text-align: center;
  padding: 20px;
}

/**********************
 *CSS Animations by:
 *http://codepen.io/vivinantony
***********************/
.spinner1 {
  width: 40px;
  height: 40px;
  position: relative;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner2 {
  width: 40px;
  height: 40px;
  position: relative;
}

.container1 > div, .container2 > div, .container3 > div {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner2 .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.circle1 {
  top: 0;
  left: 0;
}

.circle2 {
  top: 0;
  right: 0;
}

.circle3 {
  right: 0;
  bottom: 0;
}

.circle4 {
  left: 0;
  bottom: 0;
}

.container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner3 {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0px;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.spinner4 {
  width: 30px;
  height: 30px;
  background-color: #fff;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.spinner5 {
  width: 32px;
  height: 32px;
  position: relative;
}

.cube1, .cube2 {
  background-color: #fff;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
.spinner6 {
  width: 50px;
  height: 30px;
  text-align: center;
}

.spinner6 > div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  margin-left: 2px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner6 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner6 .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner6 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner6 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.spinner7 {
  width: 90px;
  height: 30px;
  text-align: center;
}

.spinner7 > div {
  background-color: #fff;
  height: 15px;
  width: 15px;
  margin-left: 3px;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: stretchdelay 0.7s infinite ease-in-out;
  animation: stretchdelay 0.7s infinite ease-in-out;
}

.spinner7 .circ2 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.spinner7 .circ3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.spinner7 .circ4 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.spinner7 .circ5 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: translateY(-10px);
  }
  20% {
    -webkit-transform: translateY(-20px);
  }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
  }
  20% {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
  }
}
.loader_Circle,
.loader_Circle:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader_Circle {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.9);
  border-right: 1.1em solid rgba(255, 255, 255, 0.9);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.9);
  border-left: 1.1em solid #581213;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*==================================*/
/*font*/
/*==================================*/
.fontEn {
  font-family: "Oswald", sans-serif;
  line-height: 1;
}

/*==================================*/
/*BASE*/
/*==================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
}

img {
  border: none;
}

:focus {
  outline: 0;
}

ol, ul {
  list-style: none;
}

li img {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article {
  display: block;
}

/*------------------------------*/
/*box-sizing*/
/*------------------------------*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -o-box-sizing: inherit;
  -ms-box-sizing: inherit;
  box-sizing: inherit;
}

/*------------------------------*/
/*form*/
/*------------------------------*/
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

/*==================================*/
/*SITE STYLE*/
/*==================================*/
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 56.25%;
  }
}

body {
  background-color: #FFFFFF;
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #111111;
  font-size: 1.4rem;
  /*sp*/
  -webkit-text-size-adjust: 100%;
}
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1120px;
  }
}

/*IE*/
/*//*/
/*==================================*/
/*footer 固定 (IE11対応　2020)*/
/*==================================*/
/*------------------------------*/
/*LINK STYLE*/
/*------------------------------*/
a:link {
  color: #87131b;
  text-decoration: underline;
}

a:visited {
  color: #87131b;
  text-decoration: underline;
}

a:hover {
  color: #000000;
  text-decoration: underline;
}

a:hover,
a:hover img {
  cursor: pointer;
  color: #111;
  /*text-decoration: none;*/
  transition-property: all;
  transition: 0.3s linear;
}
@media print, screen and (min-width: 768px) {
  a:hover,
  a:hover img {
    opacity: 0.6;
  }
}

button {
  transition: all 0.3s;
}

/*------------------------------*/
/*etc/
/*------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

main {
  /*for ie*/
  display: block;
}

/*------------------------------*/
/*スマホ*/
/*------------------------------*/
@media screen and (max-width: 767px) {
  img, object, embed {
    max-width: 100%;
    height: auto;
    width: auto\9 ; /* ie8 */
  }
  img {
    /*ieで縮小表示奇麗に*/
    -ms-interpolation-mode: bicubic;
  }
}
/*---------------------
anime [common]
------------------------*/
.scrollin {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 900ms;
}

.scrollin.__action {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollin.__delay.__action {
  transition-delay: 600ms;
  transition-property: all;
}

.scrollin.__left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: all 900ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scrollin.__left.__action {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollin.__right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: all 900ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scrollin.__right.__action {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollin.__list {
  opacity: 1;
  transform: translate(0, 0);
}
.scrollin.__list > li,
.scrollin.__list > div {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 900ms;
}

.scrollin.__list.__action li,
.scrollin.__list.__action > div {
  opacity: 1;
  transform: translate(0, 0);
}
.scrollin.__list.__action li:nth-child(1),
.scrollin.__list.__action > div:nth-child(1) {
  transition-delay: 0.3s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(2),
.scrollin.__list.__action > div:nth-child(2) {
  transition-delay: 0.6s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(3),
.scrollin.__list.__action > div:nth-child(3) {
  transition-delay: 0.9s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(4),
.scrollin.__list.__action > div:nth-child(4) {
  transition-delay: 1.2s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(5),
.scrollin.__list.__action > div:nth-child(5) {
  transition-delay: 1.5s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(6),
.scrollin.__list.__action > div:nth-child(6) {
  transition-delay: 1.8s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(7),
.scrollin.__list.__action > div:nth-child(7) {
  transition-delay: 2.1s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(8),
.scrollin.__list.__action > div:nth-child(8) {
  transition-delay: 2.4s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(9),
.scrollin.__list.__action > div:nth-child(9) {
  transition-delay: 2.7s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(10),
.scrollin.__list.__action > div:nth-child(10) {
  transition-delay: 3s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(11),
.scrollin.__list.__action > div:nth-child(11) {
  transition-delay: 3.3s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(12),
.scrollin.__list.__action > div:nth-child(12) {
  transition-delay: 3.6s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(13),
.scrollin.__list.__action > div:nth-child(13) {
  transition-delay: 3.9s;
  transition-property: all;
}
.scrollin.__list.__action li:nth-child(14),
.scrollin.__list.__action > div:nth-child(14) {
  transition-delay: 4.2s;
  transition-property: all;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInNm {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================*/
/*tab*/
/*==================================*/
.tab_main {
  display: none;
}

.tab_main.is_show {
  display: block;
  animation: tabAnim ease 0.6s forwards;
}

@keyframes tabAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------------------------------*/
/*slick.css  */
/*------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  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;
}

/*------------------------------*/
/* from [slick-theme.css ] */
/*------------------------------*/
/* 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;
  vertical-align: middle;
  height: 8px;
  width: 8px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  background-color: #ddd;
  border-radius: 100px;
}

.slick-dots li.slick-active {
  background-color: #fc3a52;
  height: 10px;
  width: 10px;
}

.slick-dots li button {
  display: none;
  border: none;
  width: 100%;
  height: 100%;
  line-height: 1;
}

/*------------------------------*/
/* this site*/
/*------------------------------*/
/*slick*/
.slide-arrow {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 68px;
  height: 68px;
  display: block;
  position: absolute;
  top: 50%;
  right: -40px;
  margin-top: -32px;
  background: url("/assets/images/linkic_w.png") no-repeat center center #000;
  background-size: 20px;
  z-index: 2;
}
.slide-arrow.__type2 {
  width: 45px;
  height: 45px;
  background: url("/assets/images/arrow_b.png") no-repeat center center #fff;
  background-size: 20px;
  right: 0;
  top: 30px;
}
@media only screen and (max-width: 767px) {
  .slide-arrow {
    right: 0;
    width: 39px;
    height: 39px;
  }
}
.slide-arrow.prev-arrow {
  background: url("/assets/images/linkic_w.png") no-repeat center center #000;
  background-size: 20px;
  left: -40px;
  right: inherit;
  transform: scale(-1, 1);
}
.slide-arrow.prev-arrow.__type2 {
  background: url("/assets/images/arrow_b_l.png") no-repeat center center #fff;
  background-size: 20px;
  left: 0;
  top: 30px;
}
@media only screen and (max-width: 767px) {
  .slide-arrow.prev-arrow {
    left: 0;
  }
}
.slide-arrow.slick-disabled {
  opacity: 0;
}
.slide-arrow.next-arrow.__full {
  right: 0;
}
.slide-arrow.prev-arrow.__full {
  left: 0;
}

/* Dots */
.slick-dotted.slick-slider {
  padding-bottom: 80px;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 10px;
  width: 10px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  background-color: #9a9a9a;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .slick-dots li {
    margin: 0 4px;
  }
}

.slick-dots li.slick-active {
  background-color: #59740d;
  height: 18px;
  width: 18px;
}

.slick-dots li button {
  display: none;
  border: none;
  width: 100%;
  height: 100%;
  line-height: 1;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  -ms-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-container {
  max-width: 1000px;
  background: none;
  box-shadow: none;
  margin-bottom: 90px;
}

.modaal-content {
  padding: 0;
  margin: 20px 10px;
}

.modaal-content-container {
  background-color: #fff;
  padding: 20px;
}

.modaal-wrapper .modaal-close {
  position: absolute;
  right: 10px;
  top: 20px;
  cursor: pointer;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
  border-radius: 0;
  width: 60px;
  height: 60px;
  background: url(../images/close_btn.png) top right no-repeat;
  background-size: contain;
}
.modaal-wrapper .modaal-close:after, .modaal-wrapper .modaal-close:before {
  display: none;
}

@media screen and (max-width: 767px) {
  .modaal-wrapper .modaal-close {
    width: 40px;
    height: 40px;
  }
}
.modaal-inner-wrapper {
  padding: 0;
}

/*------------------------------*/
/*container*/
/*------------------------------*/
.l_container {
  width: 1000px;
  margin: 0px auto;
}

.l_container_re {
  margin: 0px 90px;
}

@media only screen and (max-width: 767px) {
  .l_container {
    width: auto;
    margin: 0 20px;
  }
  .l_container--spNo {
    margin: 0;
  }
  .l_container--spMg {
    margin: 0 40px;
  }
  .l_container--spMg2 {
    margin: 0 -20px;
  }
  .l_container_re {
    width: auto;
    margin: 0 20px;
  }
  .l_container_re--spFull {
    margin: 0;
  }
  .l_container_re--spMg {
    margin: 0 40px;
  }
}
.l_container_small {
  width: 700px;
  margin: 0px auto;
}
@media only screen and (max-width: 767px) {
  .l_container_small {
    width: auto;
  }
}

/*====================================
section
====================================*/
.l_section {
  padding: 90px 0;
}
@media only screen and (max-width: 767px) {
  .l_section {
    padding: 60px 0;
  }
}
.l_section--np {
  padding: 0;
}
.l_section--bgImg {
  background-size: cover;
  background-repeat: no-repeat;
}
.l_section--mgT {
  margin-top: 90px;
}
.l_section--mgT2 {
  margin-top: 90px;
}
@media only screen and (max-width: 767px) {
  .l_section--mgT2 {
    margin-top: 0px;
  }
}
.l_section--mgB {
  margin-bottom: 90px;
}

/*====================================
colum
====================================*/
.l_col {
  display: flex;
}
.l_col--center {
  justify-content: center;
}
.l_col--center_h {
  align-items: center;
}
.l_col--mb > div,
.l_col--mb > li {
  margin-bottom: 4%;
}
.l_col--mb_s > div,
.l_col--mb_s > li {
  margin-bottom: 10px;
}
.l_col--mb_t > div,
.l_col--mb_t > li {
  margin-bottom: 4%;
}
@media print, screen and (min-width: 768px) {
  .l_col--mb_t > div:nth-of-type(even),
  .l_col--mb_t > li:nth-of-type(even) {
    margin-top: 4%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .l_col--pc {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .l_col--sp {
    display: block;
  }
}
.l_col--ai_fs {
  align-items: flex-start;
}
.l_col__item--1 {
  flex: 1;
}
.l_col--c2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c2 > div,
.l_col--c2 > li {
  width: calc(50% - 4%);
  margin-right: 4%;
}
.l_col--c2f {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c2f > div,
.l_col--c2f > li {
  margin-right: 4%;
}
.l_col--c2f-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c2f-1 > div,
.l_col--c2f-1 > li {
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .l_col--c2f-1 > div,
  .l_col--c2f-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .l_col--c2f-1 > div:last-of-type,
  .l_col--c2f-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.l_col--c2-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
@media print, screen and (min-width: 768px) {
  .l_container_re > .l_col--c2-1 {
    margin: 0 -90px 0 0;
  }
}
.l_col--c2-1 > div,
.l_col--c2-1 > li {
  width: calc(50% - 4%);
  margin-right: 4%;
}
@media print, screen and (min-width: 768px) {
  .l_container_re > .l_col--c2-1 > div,
  .l_container_re > .l_col--c2-1 > li {
    width: calc(50% - 90px);
    margin-right: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .l_col--c2-1 > div,
  .l_col--c2-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .l_col--c2-1 > div:last-of-type,
  .l_col--c2-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.l_col--c3 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c3 > div,
.l_col--c3 > li {
  width: calc(33.333% - 4%);
  margin-right: 4%;
}
.l_col--c3-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c3-1 > div,
.l_col--c3-1 > li {
  width: calc(33.333% - 4%);
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .l_col--c3-1 > div,
  .l_col--c3-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .l_col--c3-1 > div:last-of-type,
  .l_col--c3-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.l_col--c3-2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c3-2 > div,
.l_col--c3-2 > li {
  width: calc(33.333% - 4%);
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .l_col--c3-2 > div,
  .l_col--c3-2 > li {
    width: calc(50% - 4%);
    margin-bottom: 4%;
  }
}
.l_col--c4-2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.l_col--c4-2 > div,
.l_col--c4-2 > li {
  width: calc(25% - 4%);
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .l_col--c4-2 > div,
  .l_col--c4-2 > li {
    width: calc(50% - 4%);
    margin-bottom: 4%;
  }
}
.l_col--c4-1 {
  flex-wrap: wrap;
  margin: 0 -10px 0 0;
}
.l_col--c4-1 > div,
.l_col--c4-1 > li {
  width: calc(25% - 10px);
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .l_col--c4-1 > div,
  .l_col--c4-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
}
.l_col--c4 {
  flex-wrap: wrap;
  margin: 0 -10px 0 0;
}
@media only screen and (max-width: 767px) {
  .l_col--c4 {
    margin: 0 -5px 0 0;
  }
}
.l_col--c4 > div,
.l_col--c4 > li {
  width: calc(25% - 10px);
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .l_col--c4 > div,
  .l_col--c4 > li {
    margin-right: 5px;
    width: calc(25% - 5px);
    margin-bottom: 4%;
  }
}
.l_col--cF-2 {
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .l_col--cF-2 {
    margin: 0 -4% 0 0;
  }
}
@media print, screen and (min-width: 768px) {
  .l_col--cF-2 > div,
  .l_col--cF-2 > li {
    margin: 0 5px;
    flex-grow: 1;
  }
}
@media only screen and (max-width: 767px) {
  .l_col--cF-2 > div,
  .l_col--cF-2 > li {
    margin-right: 4%;
    width: calc(50% - 4%);
    margin-bottom: 4%;
  }
}
.l_col--mb_self {
  margin-bottom: 4%;
}
.l_col--mbNone {
  margin: 0;
}
.l_col--mbNone > div,
.l_col--mbNone > li {
  margin: 0;
}
.l_col--rr {
  flex-direction: row-reverse;
}

/*====================================
btn
====================================*/
a.p_btn {
  display: inline-block;
  width: auto;
  position: relative;
  border-radius: 100px;
  background: url("/assets/images/linkic.svg") no-repeat right 10px center #59740d;
  background-size: 24px;
  min-width: 220px;
  padding: 10px 40px 10px 40px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
  transition: all 0.3s ease-out;
  margin: 5px;
  border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  a.p_btn {
    min-width: 200px;
  }
}
a.p_btn:before {
  content: "";
  display: inline-block;
  background-color: #59740d;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: transform 0.3s;
}
a.p_btn:hover {
  opacity: 0.9;
}
a.p_btn:hover:before {
  animation: btnAnime 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite;
}
a.p_btn--2 {
  background: url("/assets/images/linkic2.svg") no-repeat right 10px center #87131b;
  background-size: 24px;
}
a.p_btn--2:before {
  background-color: #87131b;
}
a.p_btn--more {
  background: url("/assets/images/ic_more.png") no-repeat right 15px center #fff;
  color: #87131b;
  border: 1px solid #ccc;
}
a.p_btn--more:before {
  display: none;
}
a.p_btn--more.__open {
  background-image: url("/assets/images/ic_more_c.png");
}
a.p_btn--small {
  padding: 10px 35px 10px 20px;
  font-size: 1.4rem;
  min-width: inherit;
  line-height: 1.2;
  background-size: 20px;
}
a.p_btn--big {
  padding: 30px 45px 30px 45px;
  font-size: 1.8rem;
  min-width: 400px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  a.p_btn--big {
    min-width: inherit;
    width: 100%;
  }
}
a.p_btn--back {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: #000;
  background-image: url("/assets/images/linkic_r.svg");
  background-position: left 10px center;
}
a.p_btn--next {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  color: #000;
}

.p_btnArrow {
  display: inline-block;
  border-radius: 100px;
  background: url("../images/linkic_b.png") no-repeat center center #f2e55c;
  background-size: 20px;
  min-width: 200px;
  height: 40px;
}

/*====================================
txtmarker
====================================*/
.p_txtmarker1 {
  background: linear-gradient(transparent 35%, #f8f3e8 35%);
  padding-bottom: 0.2em;
}

.p_txtmarker2 {
  background: linear-gradient(transparent 35%, #ecf8f1 35%);
  padding-bottom: 0.2em;
}

.p_txtmarker3 {
  background: linear-gradient(transparent 35%, #f9e9ea 35%);
  padding-bottom: 0.2em;
}

.p_txtmarker4 {
  background: linear-gradient(transparent 35%, #ecf3fc 35%);
  padding-bottom: 0.2em;
}

/*====================================
title
====================================*/
.p_ttl {
  text-align: center;
  margin-bottom: 30px;
}
.p_ttl--w {
  color: #fff;
}
.p_ttl__main {
  font-size: 3.5rem;
  font-family: "Oswald", sans-serif;
  background: url("/assets/images/sub_t_lin.png") no-repeat center bottom;
  padding-bottom: 30px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p_ttl__main {
    font-size: 2.5rem;
    background-size: 50px;
    padding-bottom: 15px;
  }
}
.p_ttl--w .p_ttl__main {
  background-image: url("/assets/images/sub_t_lin_w.png");
}
.p_ttl__sub {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p_ttl__sub {
    display: inline-block;
    width: fit-content;
    text-align: left;
    margin-top: 10px;
  }
}

.p_ttl2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}
.p_ttl2:before, .p_ttl2:after {
  content: "";
  display: block;
  height: 0px;
  width: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
}
.p_ttl2:before {
  border-bottom: 2px solid #59740d;
  transform: translate(2px, 0);
}
.p_ttl2:after {
  border-bottom: 2px solid #87131b;
  transform: translate(-100%, 0);
}

.p_ttl3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.p_ttl3__item {
  position: relative;
  display: inline-block;
  padding: 2px 20px;
}
.p_ttl3__item:before, .p_ttl3__item:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #87131b;
  position: absolute;
}
.p_ttl3__item:before {
  top: 0;
  left: 0;
  transform: rotate(-30deg);
}
.p_ttl3__item:after {
  top: 0;
  right: 0;
  transform: rotate(23deg);
}

.p_ttl4 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.p_ttl4:before, .p_ttl4:after {
  content: "";
  height: 1px;
  flex: 1;
  background-color: #000;
  min-width: 2em;
}
.p_ttl4:before {
  margin-right: 1rem;
}
.p_ttl4:after {
  margin-left: 1rem;
}

.p_ttl5 {
  border: 1px solid #e5e5e5;
  border-left: none;
  border-right: none;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  font-size: 1.6rem;
}
.p_ttl5--small {
  padding: 5px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

/*====================================
bg
====================================*/
.p_bg1 {
  background-color: #ecf3fc !important;
  position: relative;
  z-index: 1;
}

.p_bg2 {
  background-color: #f9e9ea !important;
  position: relative;
  z-index: 1;
}

.p_bg3 {
  background-color: #f2fadf !important;
  position: relative;
  z-index: 1;
}

.p_bg4 {
  background-color: #f9edf9 !important;
  position: relative;
  z-index: 1;
}

.p_bg5 {
  background-color: #f8f3e8 !important;
  position: relative;
  z-index: 1;
}

.p_bgStripe1 {
  background: repeating-linear-gradient(-45deg, #f9e9ea, #f9e9ea 2px, #fff 0, #fff 8px);
}

.p_bgStripe2 {
  background: repeating-linear-gradient(-45deg, #ecf3fc, #ecf3fc 2px, #fff 0, #fff 8px);
}

.p_bg_white {
  background-color: #f9edf9 !important;
}

/*====================================
linklist
====================================*/
.p_linklist {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p_linklist {
    margin: 0;
  }
}
.p_linklist li {
  width: 46%;
  margin: 0 4% 10px 0;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p_linklist li {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.p_linklist li a {
  display: block;
  border: 1px solid #87131b;
  background-color: #fff;
  padding: 15px 40px 15px 15px;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}
.p_linklist li a:before, .p_linklist li a:after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 100px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/linkic_w.svg") no-repeat center center;
  background-size: 15px;
  background-color: #87131b;
  transform-origin: center center;
  transition: transform 0.3s;
}
.p_linklist li a:before {
  background-image: none;
  opacity: 0.8;
}
.p_linklist li a:hover {
  opacity: 1;
}
.p_linklist li a:hover:after {
  transform: scale(1.2);
}
.p_linklist li a:hover:before {
  animation: btnAnime2 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite;
}
.p_linklist--center li a {
  justify-content: center;
}
.p_linklist--off li a {
  pointer-events: none;
  border: 1px solid #ccc;
  color: #000;
}
.p_linklist--off li a:before, .p_linklist--off li a:after {
  background-color: #ccc;
}

.p_menulist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
@media only screen and (max-width: 767px) {
  .p_menulist {
    margin: 0;
    display: block;
  }
}
.p_menulist li {
  border: 1px solid #979797;
  width: calc(33.333% - 20px);
  margin: 0 10px 10px 10px;
}
@media only screen and (max-width: 767px) {
  .p_menulist li {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.p_menulist li a {
  text-decoration: none;
  display: flex;
  background-color: #fff;
  align-items: center;
  padding: 4px 30px 4px 4px;
  position: relative;
  min-height: 73px;
  height: 100%;
}
.p_menulist li a:before, .p_menulist li a:after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 100px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/linkic_w.svg") no-repeat center center;
  background-size: 15px;
  background-color: #87131b;
  transform-origin: center center;
  transition: transform 0.3s;
}
.p_menulist li a:before {
  background-image: none;
  opacity: 0.8;
}
.p_menulist li a:hover {
  opacity: 1;
}
.p_menulist li a:hover:after {
  transform: scale(1.2);
}
.p_menulist li a:hover:before {
  animation: btnAnime2 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite;
}
.p_menulist li a .p_menulist__img {
  width: 100px;
}
.p_menulist li a .p_menulist__img img {
  width: 100%;
}
.p_menulist li a p {
  flex: 1;
  margin-left: 20px;
}
.p_menulist li:nth-of-type(even) a:before, .p_menulist li:nth-of-type(even) a:after {
  background-color: #59740d;
}

@keyframes btnAnime {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.6);
    opacity: 0;
  }
}
@keyframes btnAnime2 {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
/*====================================
image
====================================*/
.p_imgBg1 {
  position: relative;
  margin-bottom: 30px;
}
.p_imgBg1:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #bde1e2, #bde1e2 1px, #fff 0, #fff 8px);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.p_imgBg2 {
  position: relative;
  margin-bottom: 30px;
}
.p_imgBg2:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, #f9e9ea, #f9e9ea 1px, #fff 0, #fff 8px);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: -1;
}

/*====================================
image
====================================*/
.p_color1 {
  color: #87131b !important;
}

.p_color2 {
  color: #59740d !important;
}

.p_color3 {
  color: #f9e9ea !important;
}

.p_color4 {
  color: #ecf3fc !important;
}

.p_color5 {
  color: #ceaa55 !important;
}

/*====================================
tabble
====================================*/
.p_table {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 15px;
  background-color: #fff;
}
.p_table td {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  padding: 15px;
}
.p_table td.-cellAl {
  padding-right: 40px;
  position: relative;
}
.p_table td.-cellAl:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #87131b;
}
.p_table th {
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  background-color: #F9F9F9;
  padding: 15px;
  text-align: left;
}
.p_table.-fixed {
  table-layout: fixed;
}
.p_table.-center td, .p_table.-center th {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p_table--sp1 {
    border-bottom: none;
  }
  .p_table--sp1 td, .p_table--sp1 th {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #e5e5e5;
  }
}
.p_pageNavi {
  margin: 20px auto 30px auto;
  text-align: center;
  width: auto;
}
@media print, screen and (min-width: 768px) {
  .p_pageNavi {
    max-width: 1000px;
  }
}
.p_pageNavi__inner {
  display: inline-flex;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.05), 0 0 5px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767px) {
  .p_pageNavi__inner {
    max-width: 100%;
  }
}
.p_pageNavi ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px 20px;
}
@media only screen and (max-width: 767px) {
  .p_pageNavi ul {
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 5px 20px;
    overflow-x: auto;
    margin: 0 5px;
  }
}
.p_pageNavi ul li {
  margin: 5px 10px 5px 0;
  border-right: 1px solid #ccc;
  padding: 5px 0;
}
@media only screen and (max-width: 767px) {
  .p_pageNavi ul li {
    flex: 0 0 auto;
  }
}
.p_pageNavi ul li:last-child {
  border-right: none;
  margin-right: 0;
}
.p_pageNavi ul li:last-child a {
  padding-right: 0;
}
.p_pageNavi ul li a {
  display: block;
  padding: 0px 10px 0px 14px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1;
  background: url("/assets/images/link_ic_u.png") no-repeat left top 0.3em;
  background-size: 8px;
}
.p_pageNavi.__fixed {
  position: fixed;
  width: 100%;
  max-width: inherit;
  top: 100px;
  left: 0;
  z-index: 99;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .p_pageNavi.__fixed {
    top: 55px;
    padding: 0 0;
  }
}
.p_pageNavi.__fixed .p_pageNavi__inner {
  width: 100%;
  border-left: none;
  border-right: none;
}
.p_pageNavi.__fixed ul {
  margin: 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p_pageNavi.__fixed ul {
    max-width: 1000px;
  }
}

.p_box {
  border: 1px solid #e5e5e5;
  background-color: #fff;
  padding: 30px 50px;
  position: relative;
  z-index: 1;
}
.p_box--nb {
  border: none;
}
.p_box--c1 {
  border: 1px solid #87131b;
}
@media only screen and (max-width: 767px) {
  .p_box {
    padding: 20px;
  }
}
.p_box--small {
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  .p_box--small {
    padding: 15px;
  }
}
.p_box--small2 {
  padding: 10px;
}
@media only screen and (max-width: 767px) {
  .p_box--small2 {
    padding: 10px;
  }
}
.p_box--big {
  padding: 70px 50px;
}
@media only screen and (max-width: 767px) {
  .p_box--big {
    padding: 40px 20px;
  }
}

.p_link li a {
  display: block;
  background: url("../images/linkshape_ic4.svg") no-repeat left 10px center #fff;
  background-size: 30px;
  padding: 10px 10px 10px 50px;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.p_link li a:hover {
  opacity: 1;
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px) translateX(-2px);
  z-index: 1;
}
.p_link li a:hover img {
  opacity: 1;
}
.p_link--c2 li a {
  background-image: url("../images/linkshape_ic3.svg");
}
.p_link--c3 li a {
  background-image: url("../images/linkshape_ic2.svg");
}
.p_link--c4 li a {
  background-image: url("../images/linkshape_ic.svg");
}

.p_accordionMt__more {
  text-align: center;
  border-radius: 100px;
  padding: 0;
  position: relative;
  text-decoration: none !important;
  color: #000 !important;
  display: block;
  border: 1px solid #ccc;
  padding: 10px 20px;
  width: 10em;
  margin: 0 auto;
  line-height: 1;
  letter-spacing: 0;
  font-size: 1.2rem;
}
.p_accordionMt__more:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../images/ic_more.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
}
.p_accordionMt__more.__open:after {
  background: url("../images/ic_more_c.png") no-repeat;
  background-size: contain;
}

.p_linkoff {
  pointer-events: none;
  color: inherit !important;
}

.p_linkoff_color {
  color: inherit !important;
}

.p_note {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #717171;
}
.p_note--small {
  font-size: 1rem;
}

ul.p_list_note {
  padding-left: 22px;
  list-style-type: none;
}

ul.p_list_note li {
  position: relative;
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #717171;
}

ul.p_list_note li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.p_imgBr {
  border-radius: 6px;
}

.p_bdl {
  border: 1px solid #e5e5e5;
}

.p_bdl_w {
  border: 1px solid #fff;
}

.p_hr {
  border-top: 1px solid #e5e5e5;
}

.p_hr2 {
  position: relative;
  border: none;
  height: 1px;
  background-color: #e5e5e5;
  display: block;
  overflow: visible;
}
.p_hr2:before, .p_hr2:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #e5e5e5;
  border-radius: 50%;
  line-height: 0;
  font-size: 0;
  position: absolute;
}
.p_hr2:before {
  top: -3px;
  left: -1px;
}
.p_hr2:after {
  top: -3px;
  right: -1px;
}

.p_hr3 {
  border: none;
  height: 12px;
  box-shadow: inset 0 12px 20px -10px rgba(0, 0, 0, 0.09);
}

.p_num {
  display: inline-block;
  width: 1.5em;
  text-align: center;
  padding: 5px;
  line-height: 1;
  vertical-align: middle;
  background-color: #87131b;
  color: #fff;
}

.p_imgVb {
  vertical-align: bottom;
}

.p_colum {
  margin-bottom: 30px;
  word-wrap: break-word;
}
.p_colum ul, .p_colum p, .p_colum table {
  margin-bottom: 1em;
}

.p_day {
  font-size: 3rem;
}
.p_day__w {
  font-size: 1.2rem;
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 2px;
  line-height: 1;
  margin: 0 0.5rem;
}

.p_txtRound {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-weight: bold;
  margin: 5px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0;
  vertical-align: 0.1em;
}

.p_tab__link {
  display: block;
}

/*====================================
list num（かっこ数字）
====================================*/
ul.u_list_num_k {
  padding: 0 0 0 40px !important;
  margin: 0;
}

ul.u_list_num_k > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
}

ul.u_list_num_k > li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
}

/*====================================
list num （マル数字）
====================================*/
ul.u_list_num_m {
  list-style-type: none !important;
  counter-reset: number; /* カウンターを初期化 */
  padding: 0 0 0 15px !important;
}

ul.u_list_num_m > li {
  position: relative;
}

/* beforeでカウンターを作成 */
ul.u_list_num_m > li::before {
  content: counter(number);
  counter-increment: number;
  padding: 0 0.5em 0 0.2em;
}

/* afterで○を作る */
ul.u_list_num_m > li::after {
  content: "";
  position: absolute;
  display: block;
  top: 0.3em;
  left: -0.1em;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #000;
  border-radius: 50%;
}

/*==================================*/
/*header*/
/*==================================*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0;
  height: 100px;
}
.header.__fixed {
  background-color: rgb(255, 255, 255);
}
@media only screen and (max-width: 767px) {
  .header {
    height: 55px;
  }
}
.header__logo {
  width: 248px;
  position: relative;
  top: 15px;
  left: 60px;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 140px;
    left: 20px;
    top: 5px;
  }
}
.header__menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  z-index: 200;
}
.header__menu a {
  text-decoration: none;
  color: #fff;
}
.header__submenu1 {
  background-color: #370407;
  color: #fff;
  font-size: 1.2rem;
  width: 84px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .header__submenu1 {
    display: none;
  }
}
.header__submenu1 ul li {
  padding: 5px 0;
  border-bottom: 1px solid #fff;
}
.header__submenu1 ul li:last-child {
  border-bottom: none;
}
.header__submenu2 {
  background-color: #201f1f;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .header__submenu2 {
    display: none;
  }
}
.header__submenu2 ul li {
  width: 14px;
  line-height: 0;
  padding: 4px 0;
}
.header__submenu2 ul li img {
  width: 100%;
}
.header__spmenu {
  background-color: #87131b;
  color: #fff;
  width: 170px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__spmenu a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header__spmenu a:hover {
  opacity: 1;
  background-color: #ceaa55;
}
@media only screen and (max-width: 767px) {
  .header__spmenu {
    width: 70px;
    height: 55px;
  }
}
.header__spmenu__ttl {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .header__spmenu__ttl {
    font-size: 1rem;
    margin-top: 5px;
  }
}

.header__open {
  position: fixed;
  box-sizing: border-box;
  z-index: 90;
  width: 85%;
  right: -85%;
  height: 100%;
  top: 0px;
  overflow: hidden;
  background-color: #fff;
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .header__open {
    padding-bottom: 100px;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .header__open {
    padding-bottom: 30px;
  }
}
.header__open .header__colne {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  z-index: 100;
}
.header__open .header__openBody {
  height: 100%;
  /*スクロールさせる*/
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  /**/
}

.header__bg {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 25;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  padding-bottom: 108px;
  cursor: pointer;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.header__navi {
  width: auto;
  padding: 60px 60px 30px 60px;
}
@media only screen and (max-width: 767px) {
  .header__navi {
    width: auto;
    margin: 0px 0px;
    display: block;
    padding: 10px 10px 20px 10px;
  }
}
.header__navi__gr {
  background-color: #F2F2F2;
  padding: 10px 10px 5px 10px;
}
@media print, screen and (min-width: 768px) {
  .header__navi__gr {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.header__navi__gr__ttl {
  width: 100%;
  background-size: 40%;
}
.header__navi__gr__ttl a {
  text-decoration: none;
  color: inherit;
}
.header__navi__gr__ttl__set {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  background-color: #fff;
}
.header__navi__gr__ttl__img {
  width: 30%;
  margin-left: 20px;
}
.header__navi__gr__ttl__img img {
  width: 100%;
}
.header__navi__gr__ttl__main {
  flex: 1;
  padding: 10px;
}
.header__navi__gr__ttl__ic {
  border: 1px solid #ccc;
  padding: 1px 4px;
  font-size: 1rem;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .header__navi ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header__navi ul {
    width: 100%;
  }
}
.header__navi ul > li {
  margin-top: 5px;
}
.header__navi ul > li.__houmohsa {
  border-top: 1px solid #fff;
  padding-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .header__navi ul > li {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .header__navi ul > li {
    margin-top: 5px;
  }
  .header__navi ul > li.__houmohsa {
    border-top: 1px solid #fff;
    padding-top: 20px;
    margin-top: 20px;
  }
}
.header__navi ul > li > a {
  display: block;
  background-color: #fff;
  padding: 10px 30px 10px 10px;
  color: #000;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: bold;
  background: url("/assets/images/link_ic_u.png") no-repeat right 10px center #fff;
  background-size: 10px;
  border: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .header__navi ul > li > a {
    font-size: 1.4rem;
  }
}
.header__navi ul > li > a.open {
  background-image: url("/assets/images/link_ic_u_b.png");
  background-color: #F2F2F2 !important;
  border: none;
}
.header__navi ul > li > a.-sub {
  padding-left: 20px;
}
.header__navi ul > li > a.-notsub {
  background-image: url("/assets/images/linkic.svg");
  background-size: 14px;
}
.header__navi ul > li ul {
  margin-top: 5px;
}
@media print, screen and (min-width: 768px) {
  .header__navi ul > li ul {
    width: 49%;
    display: block;
    border: none;
  }
}
.header__navi ul > li ul li {
  margin-top: 0;
  margin-bottom: 0px;
  border: 1px solid #ccc;
}
@media print, screen and (min-width: 768px) {
  .header__navi ul > li ul li {
    width: 100%;
    margin: 0 0 5px 0;
  }
}
@media only screen and (max-width: 767px) {
  .header__navi ul > li ul li {
    margin-bottom: 5px;
  }
}
.header__navi ul > li ul li a {
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 0;
  background: url("/assets/images/linkic.svg") no-repeat right 10px center #fff;
  background-size: 14px;
  border: none;
}
@media only screen and (max-width: 767px) {
  .header__navi ul > li ul li a {
    font-size: 1.4rem;
  }
}
.header__navi .header__target {
  background-color: #575757;
  padding: 5px 10px 10px 10px;
  margin-top: 20px;
}
.header__navi .header__target li {
  border: none;
}
.header__navi .header__target li a {
  border-radius: 0;
}
.header__navi.-etc {
  margin-top: 0;
  padding-top: 0;
}
@media print, screen and (min-width: 768px) {
  .header__navi.-etc ul {
    padding: 10px;
    display: flex;
    justify-content: center;
    width: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .header__navi.-etc ul li {
    width: inherit;
    margin: 0 20px 10px 20px;
  }
}
.header__navi.-etc ul li a {
  font-size: 1.2rem;
  background-color: transparent;
}
@media print, screen and (min-width: 768px) {
  .header__navi.-etc ul li a {
    border: none;
    padding: 0;
    text-decoration: underline;
    background-image: none;
  }
}
.header__navi .header__spCv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
.header__navi .header__spCv > div {
  width: 48%;
}
.header__navi__ttl {
  background-color: #f5f5f5;
  padding: 10px;
  margin-bottom: 10px;
}

.hamburgerLink {
  display: inline-block;
  transition: all 0.4s;
  position: relative;
  width: 40px;
  height: 26px;
  margin-top: 0px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .hamburgerLink {
    width: 30px;
    height: 18px;
  }
}
.hamburgerLink:hover {
  opacity: 1;
}
.hamburgerLink span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.hamburgerLink span:nth-of-type(1) {
  top: 0;
  animation: hamburgerLink_anime 2s cubic-bezier(0.23, 1, 0.32, 1) 1s infinite both;
}
.hamburgerLink span:nth-of-type(2) {
  top: 12px;
  animation: hamburgerLink_anime 2s cubic-bezier(0.23, 1, 0.32, 1) 1.5s infinite both;
}
@media only screen and (max-width: 767px) {
  .hamburgerLink span:nth-of-type(2) {
    top: 8px;
  }
}
.hamburgerLink span:nth-of-type(3) {
  animation: hamburgerLink_anime 2s cubic-bezier(0.23, 1, 0.32, 1) 2s infinite both;
  bottom: 0;
}
.hamburgerLink.active span {
  width: 100%;
  animation: none !important;
}
.hamburgerLink.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .hamburgerLink.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
}
.hamburgerLink.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburgerLink.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .hamburgerLink.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

@keyframes hamburgerLink_anime {
  0% {
    transform: scale(0.5, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(0.5, 1);
    transform-origin: 0 100%;
  }
}
.header__spCv {
  display: flex;
  margin-bottom: 10px;
}
.header__spCv .cvBtn {
  width: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .header__spCv .cvBtn {
    font-size: 1.2rem;
  }
}
.header__spCv .cvBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #87131b;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 10px;
}
@media only screen and (max-width: 767px) {
  .header__spCv .cvBtn a {
    padding: 15px 10px;
  }
}
.header__spCv .cvBtn a span {
  display: inline-block;
  padding-top: 17px;
  background: url("/assets/images/ic_panf.svg") no-repeat top center;
  background-size: auto 15px;
}
.header__spCv .cvBtn--2 a {
  background-color: #59740d;
}
.header__spCv .cvBtn--2 a span {
  background-image: url("/assets/images/ic_school.svg");
}

.header__spHome {
  margin-bottom: 10px;
  font-weight: 500;
  position: absolute;
  top: 20px;
  left: 15px;
  background-color: #fff;
  color: #000;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 300;
  font-size: 1.4rem;
  background: url("/assets/images/ic_home.svg") no-repeat left center;
  background-size: 20px;
  padding-left: 25px;
  line-height: 1;
}
.header__spHome a {
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .header__spHome {
    left: 60px;
    top: 40px;
    font-size: 1.8rem;
  }
}

.header__navisns ul {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.header__navisns li {
  margin: 0 10px;
}
.header__navisns li a {
  display: flex;
  align-items: center;
  height: 100%;
  background-color: #87131b;
  padding: 8px;
  border-radius: 100px;
}
.header__navisns li a img {
  width: 20px;
}

.header {
  pointer-events: none;
}

.header__logo,
.header__menu,
.header__open,
.header__bg {
  pointer-events: auto;
}

/*==================================*/
/*footer*/
/*==================================*/
.footer {
  position: relative;
}
.footer__cv {
  background: url("/assets/images/footer_bg.jpg") no-repeat top center;
  background-size: cover;
  padding: 120px 0;
}
@media only screen and (max-width: 767px) {
  .footer__cv {
    padding: 90px 0;
  }
}
.footer__cv__inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer__cv__inner {
    display: block;
  }
}
.footer__cv__item {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 60px 30px;
  width: 420px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__cv__item {
    width: 90%;
    margin: 0 auto 40px auto;
    padding: 30px 20px;
  }
}
.footer__cv__ttlSub {
  width: 300px;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-7deg);
}
@media only screen and (max-width: 767px) {
  .footer__cv__ttlSub {
    width: 90%;
  }
}
.footer__cv__ttl {
  font-size: 2rem;
  color: #59740d;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer__cv__ttl.-type2 {
  color: #87131b;
}
.footer__cv a {
  margin-top: 20px;
}
.footer__main {
  background-color: #482427;
  color: #C5C5C5;
  text-align: center;
  padding: 40px 20px;
  font-size: 1.2rem;
}
.footer__main a {
  color: #C5C5C5;
}
.footer__cp {
  background-color: #3b070b;
  color: #C5C5C5;
  text-align: center;
  font-size: 1rem;
  padding: 20px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__sns li {
  margin: 0 10px;
}
.footer__sns li a {
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid #fff;
  padding: 8px;
  border-radius: 100px;
}
.footer__sns li a img {
  width: 20px;
}

.main {
  overflow: hidden;
}

/*==================================*/
/*top*/
/*==================================*/
.y4_Mv_header {
  background-color: #fff;
  padding: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .y4_Mv_header {
    padding: 10px;
  }
}
.y4_Mv_header__logo {
  width: 320px;
}
@media only screen and (max-width: 767px) {
  .y4_Mv_header__logo {
    width: 200px;
  }
}

main {
  overflow: hidden;
}

/*==================================*/
/*mv*/
/*==================================*/
.y4_Mv {
  background-color: #ff326c;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.y4_Mv__bg {
  transform-style: preserve-3d;
  will-change: transform, animation, position;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.y4_Mv__bg > div {
  will-change: transform, animation, position;
}
.y4_Mv__bg1 {
  position: absolute;
  width: 100%;
  left: -50vw;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__bg1 {
    top: 50%;
  }
}
.y4_Mv__bg1 > div {
  animation: y4_Mv_bganime1 5s ease-in-out infinite alternate;
}
.y4_Mv__bg2 {
  position: absolute;
  left: -20vw;
  top: -25vw;
}
.y4_Mv__bg2 > div {
  transform: rotate(51deg);
  animation: y4_Mv_bganime2 5s ease-in-out infinite alternate;
}
.y4_Mv__bg3 {
  position: absolute;
  right: -40vw;
  top: 25vw;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__bg3 {
    top: 10vh;
    right: -60vw;
    width: 80%;
  }
}
.y4_Mv__bg3 > div {
  transform: scale(-1, 1);
  animation: y4_Mv_bganime3 5s ease-in-out infinite alternate;
}
.y4_Mv__bg4 {
  position: absolute;
  left: 20vw;
  top: -10vw;
}
.y4_Mv__bg4 > div {
  transform: scale(0.8);
  animation: y4_Mv_bganime4 5s ease-in-out infinite alternate;
}
.y4_Mv__bg5 {
  position: absolute;
  right: -40vw;
  top: -20vw;
}
.y4_Mv__bg5 > div {
  transform: scale(0.8);
  animation: y4_Mv_bganime1 8s ease-in-out infinite alternate;
}
.y4_Mv__bg6 {
  position: absolute;
  right: -40vw;
  bottom: 5vw;
}
.y4_Mv__bg6 > div {
  transform: scale(0.8) rotate(80deg);
  animation: y4_Mv_bganime2 10s ease-in-out infinite alternate;
}
.y4_Mv__bg7 {
  position: absolute;
  left: -10vw;
  bottom: -50vw;
}
.y4_Mv__bg7 > div {
  transform: scale(-1, 0.5) rotate(-150deg);
  animation: y4_Mv_bganime3 3s ease-in-out infinite alternate;
}
.y4_Mv__bg8 {
  position: absolute;
  left: -40vw;
  top: 10vw;
}
.y4_Mv__bg8 > div {
  transform: scale(1, 0.5);
  animation: y4_Mv_bganime2 8s ease-in-out infinite alternate;
}
.y4_Mv__bg9 {
  position: absolute;
  left: -10vw;
  top: -35vw;
}
.y4_Mv__bg9 > div {
  transform: scale(0.8) rotate(-90deg);
  animation: y4_Mv_bganime2 10s ease-in-out infinite alternate;
}
.y4_Mv__bg10 {
  position: absolute;
  left: -30vw;
  top: 150%;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__bg10 {
    top: 100%;
  }
}
.y4_Mv__bg10 > div {
  animation: y4_Mv_bganime2 10s ease-in-out infinite alternate;
}
.y4_Mv__set {
  display: flex;
  height: 55vw;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__set {
    height: 80vh;
    display: block;
  }
}
.y4_Mv__main {
  width: 25%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__main {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
  }
}
.y4_Mv__main__ttl {
  mix-blend-mode: lighten;
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
  opacity: 0;
}
.y4_Mv__visual {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__visual {
    width: 100%;
    height: 100%;
  }
}
.y4_Mv__visual img {
  vertical-align: bottom;
}
.y4_Mv__visual__cara1 {
  position: absolute;
  top: -60px;
  left: 100px;
  width: 90%;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__visual__cara1 {
    width: 120%;
    top: 15vh;
    left: 30%;
  }
}
.y4_Mv__visual__cara2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__visual__cara2 {
    width: 90%;
    top: 30vh;
    left: -10%;
  }
}
.y4_Mv__visual__main {
  position: relative;
  bottom: -40px;
}
.y4_Mv__visual__main img {
  width: 100%;
}
.y4_Mv__visual__copy {
  position: absolute;
  bottom: 15%;
  left: 0;
  transform: translate(5%, 0);
  width: 60%;
  z-index: 5;
}
.y4_Mv__visual__copy img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .y4_Mv__visual__copy {
    bottom: 6%;
  }
}

@keyframes y4_Mv_bganime1 {
  0% {
    transform: rotateY(0deg) rotate(0deg) scale(1);
  }
  100% {
    transform: rotateY(30deg) rotate(25deg) scale(1.5);
  }
}
@keyframes y4_Mv_bganime2 {
  0% {
    transform: rotateY(0deg) rotate(0deg) scale(1);
  }
  100% {
    transform: rotateY(20deg) rotate(15deg) scale(1.5);
  }
}
@keyframes y4_Mv_bganime3 {
  0% {
    transform: rotateX(0deg) rotate(0deg) scale(1);
  }
  100% {
    transform: rotateX(60deg) rotate(15deg) scale(1.5);
  }
}
@keyframes y4_Mv_bganime4 {
  0% {
    transform: rotateX(0deg) rotate(0deg);
  }
  100% {
    transform: rotateX(70deg) rotate(20deg);
  }
}
.y4_Section {
  padding: 120px 0;
}
@media only screen and (max-width: 767px) {
  .y4_Section {
    padding: 90px 0;
  }
}

.y4_Point {
  background: url("../images/bg1.jpg") no-repeat #101876;
  background-size: 100%;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.y4_Point__head {
  text-align: center;
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .y4_Point__head {
    margin-bottom: -5vw;
  }
  .y4_Point__head img {
    width: 100%;
  }
}
.y4_Point__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list {
    display: block;
  }
}
.y4_Point__list li {
  border-radius: 12px;
  background-color: #fff;
  width: 35%;
  position: relative;
  box-shadow: 18.414px 19.747px 88.35px 6.65px rgba(246, 155, 11, 0.29);
}
@media only screen and (max-width: 767px) {
  .y4_Point__list li {
    width: 85%;
    margin-bottom: 20px;
    border-radius: 0 12px 12px 0;
  }
}
.y4_Point__list li.-type1 {
  margin-left: 12%;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list li.-type1 {
    margin-left: 0;
  }
}
.y4_Point__list li.-type2 {
  width: 45%;
  border-radius: 12px 0 0 12px;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list li.-type2 {
    width: 85%;
    margin-left: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .y4_Point__list li.-type2 .y4_Point__list__info {
    padding-right: 80px;
  }
}
.y4_Point__list li.-type3 {
  border-radius: 0 12px 12px 0;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list li.-type3 {
    width: 85%;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .y4_Point__list li.-type3 .y4_Point__list__info {
    padding-left: 80px;
  }
}
.y4_Point__list li.-type4 {
  margin-right: 12%;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list li.-type4 {
    border-radius: 12px 0 0 12px;
    margin-right: 0;
    margin-left: auto;
  }
}
.y4_Point__list__img img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.y4_Point__list__info {
  padding: 40px;
  position: relative;
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list__info {
    padding: 15px;
  }
}
.y4_Point__list__ttl {
  position: relative;
  font-weight: bold;
  font-size: 2.3rem;
  line-height: 1.5;
  color: #111978;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list__ttl {
    margin-bottom: 10px;
  }
}
.y4_Point__list__ttl.-color2 {
  color: #ff326c;
}
.y4_Point__list__ttl__main {
  position: relative;
}
.y4_Point__list__ttl__ic {
  position: absolute;
  top: -50px;
  left: -70px;
}
@media only screen and (max-width: 767px) {
  .y4_Point__list__ttl__ic {
    width: 70px;
  }
  .y4_Point__list__ttl__ic.-typeR {
    left: inherit;
    right: -60px;
    transform: scale(-1, 1);
  }
}

.y4_bgline01 {
  position: absolute;
  top: -5%;
  right: -30%;
}
@media only screen and (max-width: 767px) {
  .y4_bgline01 {
    top: -3%;
    right: -50%;
    width: 110%;
  }
}

.y4_bgline02 {
  position: absolute;
  top: 10%;
  left: -50%;
}
.y4_bgline03 {
  position: absolute;
  top: 40%;
  left: -50%;
}
.y4_bgline03 > div {
  transform: rotate(40deg);
}

.y4_bgline04 {
  position: absolute;
  top: 40%;
  right: -60%;
}
.y4_bgline04 > div {
  transform: rotate(120deg) scale(0.7);
}

.y4_feature__head {
  display: flex;
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .y4_feature__head {
    flex-direction: column;
    margin-bottom: 90px;
  }
}
.y4_feature__head__sub {
  background: url("../images/feature_head_cara.jpg") no-repeat top left;
  background-size: cover;
  width: 233px;
  width: 15%;
  border-radius: 0 12px 12px 0;
  position: relative;
  top: 90px;
}
@media only screen and (max-width: 767px) {
  .y4_feature__head__sub {
    width: 100%;
    border: 1px solid red;
    display: none;
  }
}
.y4_feature__head__main {
  flex: 1;
  margin-left: 60px;
  background: url("../images/bg_gr.jpg") no-repeat top center #eeeeee;
  background-size: cover;
  padding: 20px 60px 20px 60px;
  border-radius: 12px 0 0 12px;
}
@media only screen and (max-width: 767px) {
  .y4_feature__head__main {
    margin-left: 5px;
    padding: 20px 10px;
    background-size: 100%;
  }
}
.y4_feature__head__set {
  position: relative;
  padding: 100px 0 200px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .y4_feature__head__set {
    padding: 40px 0;
  }
}
.y4_feature__head__ttl > img {
  width: min(90%, 850px);
}
.y4_feature__head__menu {
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .y4_feature__head__menu {
    position: static;
    width: 90%;
    margin: 0 auto;
  }
}
.y4_feature__head__menuList {
  --column_space: min(5vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--column_space);
  row-gap: min(5vw, 3.5rem);
  padding-inline: min(5vw, 5rem);
  margin-block: min(5vw, 5rem) 0;
}
.y4_feature__head__menuList > * {
  width: calc(100% / var(--column_wide, 2) - var(--column_space) / var(--column_wide, 2) * (var(--column_wide, 2) - 1));
}
@media only screen and (max-width: 767px) {
  .y4_feature__head__menuList {
    --column_wide: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 20px 0 20px;
  }
}

.y4_ttl {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
  background: url("../images/ttl_bh.png") no-repeat bottom center;
  background-size: 40px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .y4_ttl {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }
}

.y4_featureSet {
  display: flex;
  justify-content: space-between;
  margin-bottom: 130px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet {
    display: block;
    margin-bottom: 90px;
  }
}
.y4_featureSet--typeR {
  flex-direction: row-reverse;
}
.y4_featureSet:last-of-type {
  margin-bottom: 0;
}
.y4_featureSet__head {
  background: url("../images/fearure_item_bg1.jpg") no-repeat;
  background-size: cover;
  width: calc(50% - 20px);
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__head {
    width: 95%;
  }
}
.y4_featureSet--typeR .y4_featureSet__head {
  border-radius: 12px 0 0 12px;
  margin-left: auto;
}
.y4_featureSet:nth-of-type(2) .y4_featureSet__head {
  background-image: url("../images/fearure_item_bg2.jpg");
}
.y4_featureSet:nth-of-type(3) .y4_featureSet__head {
  background-image: url("../images/fearure_item_bg3.jpg");
}
.y4_featureSet:nth-of-type(4) .y4_featureSet__head {
  background-image: url("../images/fearure_item_bg4.jpg");
}
.y4_featureSet__head__ttl {
  position: relative;
  top: -33px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__head__ttl {
    top: -5vw;
  }
}
.y4_featureSet:nth-of-type(1) .y4_featureSet__head__ttl {
  width: 80%;
}
.y4_featureSet:nth-of-type(2) .y4_featureSet__head__ttl {
  top: -43px;
  left: -40px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet:nth-of-type(2) .y4_featureSet__head__ttl {
    top: -6.5vw;
    left: -5vw;
  }
}
.y4_featureSet:nth-of-type(3) .y4_featureSet__head__ttl {
  top: -29px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet:nth-of-type(3) .y4_featureSet__head__ttl {
    top: -4.5vw;
  }
}
.y4_featureSet:nth-of-type(4) .y4_featureSet__head__ttl {
  top: -34px;
  left: -40px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet:nth-of-type(4) .y4_featureSet__head__ttl {
    left: -5vw;
    top: -5vw;
  }
}
.y4_featureSet__head__photo {
  margin-top: auto;
  text-align: right;
  margin-left: 10%;
}
.y4_featureSet__head__photo img {
  vertical-align: bottom;
  border-radius: 12px 0 0 0;
}
.y4_featureSet--typeR .y4_featureSet__head__photo {
  text-align: left;
  margin-left: 0;
  margin-right: 10%;
}
.y4_featureSet--typeR .y4_featureSet__head__photo img {
  border-radius: 0 12px 0 0;
}
.y4_featureSet__main {
  background: #f5f4f4;
  border-radius: 12px 0 0 12px;
  width: calc(50% - 20px);
  padding: 60px;
  position: relative;
  top: 60px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__main {
    width: 95%;
    margin-left: auto;
    padding: 15px;
    top: 0;
    margin-top: 20px;
  }
}
.y4_featureSet--typeR .y4_featureSet__main {
  border-radius: 0 12px 12px 0;
}
@media print, screen and (min-width: 768px) {
  .y4_featureSet--typeR .y4_featureSet__main {
    top: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .y4_featureSet--typeR .y4_featureSet__main {
    margin-left: 0;
    margin-right: auto;
  }
}
.y4_featureSet__main__ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(7vw, 4.6rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.5;
  background: linear-gradient(90deg, #ff628e, 42%, #4cc5f8);
  color: rgba(0, 0, 0, 0);
  background-clip: text;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__main__ttl {
    letter-spacing: -2px;
  }
}
.y4_featureSet__main__ttl .strong_line {
  border-bottom: 2px solid #fff;
}
.y4_featureSet__cara1 {
  position: absolute;
  top: -192px;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__cara1 {
    display: none;
  }
}
.y4_featureSet__box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 3px 19.53px 1.47px rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__box {
    padding: 25px 15px;
  }
}
.y4_featureSet_photolist {
  --column_space: min(5vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--column_space);
  row-gap: min(5vw, 5rem);
}
.y4_featureSet_photolist > * {
  width: calc(100% / var(--column_wide, 2) - var(--column_space) / var(--column_wide, 2) * (var(--column_wide, 2) - 1));
}
.y4_featureSet_photolist > * > figure {
  margin-inline: 0;
}
.y4_featureSet_photolist > * > figure > img {
  border-radius: min(3vw, 1rem);
  width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet#featureSet02 {
    margin-bottom: 60px;
  }
}

.y4_flow a {
  text-decoration: none;
  color: inherit;
}
.y4_flow li {
  background-color: #fff;
  box-shadow: 0px 3px 19.53px 1.47px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 10px 20px 10px 20px;
}
.y4_flow li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ff326c transparent transparent transparent;
  margin: 0 auto -15px auto;
}
.y4_flow li:last-child:after {
  display: none;
}
.y4_flow__item {
  display: flex;
  background: url("../images/ac_m.png") no-repeat center right 0;
  background-size: 40px;
  padding-right: 60px;
  width: 100%;
}
.y4_flow__item.__open {
  background-image: url("../images/ac_m_off.png");
}
.y4_flow__years {
  font-weight: bold;
  margin-right: 10px;
  width: 5rem;
}
.y4_flow__years span {
  font-size: 2.8rem;
}
.y4_flow__ttl {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  padding-top: 1.2rem;
  flex: 1;
  border-left: 1px solid #ccc;
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .y4_flow__ttl {
    margin-bottom: 10px;
  }
}
.y4_flow__more {
  margin: 10px 0;
}

.y4_lessonList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .y4_lessonList {
    flex-wrap: wrap;
    margin: 0 20px;
  }
}
.y4_lessonList li {
  margin: 0 2px;
}
@media only screen and (max-width: 767px) {
  .y4_lessonList li {
    width: 25%;
    margin-bottom: 5%;
  }
}

.y4_subttl {
  margin-top: 15px;
  text-align: center;
}
.y4_subttl__inner {
  display: inline-block;
  padding: 2px;
  font-weight: bold;
  background-color: #ffeaf0;
  line-height: 1.2;
  color: #ff326c;
  font-size: 1.8rem;
}

.y4_featureSet__box--lesson {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__box--lesson {
    margin-top: 30px;
  }
}
.y4_featureSet__box--lesson__ic {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 62px;
}
@media only screen and (max-width: 767px) {
  .y4_featureSet__box--lesson__ic {
    width: 45px;
  }
}

.y4_Wc {
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .y4_Wc {
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
  }
}
.y4_Wc__set {
  border: 2px solid #ff326c;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .y4_Wc__set {
    padding: 15px;
    background-color: #fff;
  }
}
.y4_Wc__inner {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media only screen and (max-width: 767px) {
  .y4_Wc__inner {
    padding: 50px 10px 20px 10px;
  }
}
.y4_Wc__cara {
  position: absolute;
  top: -90px;
  left: -120px;
  width: 320px;
}
@media only screen and (max-width: 767px) {
  .y4_Wc__cara {
    width: 70%;
    top: -30vw;
    left: -20%;
    z-index: -1;
  }
}
.y4_Wc__no1 {
  border: 2px solid #ff326c;
  background-color: #fff;
  border-radius: 100%;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: 2;
  top: -30px;
  left: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .y4_Wc__no1 {
    width: 80px;
    height: 80px;
    left: 0;
  }
  .y4_Wc__no1 img {
    width: 70%;
  }
}
.y4_Wc__ttl {
  font-size: 4rem;
  color: #ff326c;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .y4_Wc__ttl {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
.y4_Wc__ttl__hukidashi {
  font-size: 1.4rem;
  position: absolute;
  right: -5rem;
  top: -0.5rem;
  display: inline-block;
  transform: rotate(15deg);
}
@media only screen and (max-width: 767px) {
  .y4_Wc__ttl__hukidashi {
    font-size: 1.2rem;
    right: 0;
    top: -2.5rem;
  }
}
.y4_Wc__ttl__hukidashi:after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #ff326c;
  position: absolute;
  top: 0;
  left: -10px;
  transform: rotate(-15deg);
}
.y4_Wc__ttl__hukidashi:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #ff326c;
  position: absolute;
  top: 0;
  right: -10px;
  transform: rotate(15deg);
}
.y4_Wc__lead {
  font-weight: bold;
  margin-bottom: 30px;
}
.y4_Wc__com {
  font-weight: bold;
}

a.y4_btn {
  text-decoration: none;
  color: inherit;
}

.y4_btn {
  display: inline-block;
  border-radius: 100px;
  padding: 10px 14px;
  position: relative;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgb(255, 50, 108) 3px, rgb(255, 50, 108) 5px);
}
.y4_btn--color2 {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #101872 3px, #101872 5px);
}
.y4_btn:hover {
  transform: translateY(2px) translateX(2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 1;
}
.y4_btn__inner {
  min-width: 300px;
  display: inline-block;
  padding: 10px 65px;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
  background: url("../images/linkic_w.svg") no-repeat center right 10px #ff326c;
  background-size: 20px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .y4_btn__inner {
    min-width: inherit;
    padding: 10px 40px;
  }
}
.y4_btn--color2 .y4_btn__inner {
  background-color: #101872;
}

.y4_headSet {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 90px;
}
.y4_headSet > div {
  content: "";
  display: block;
  height: 1px;
}
.y4_headSet > div:nth-of-type(1) {
  background-color: #ff326c;
  width: 15%;
}
@media only screen and (max-width: 767px) {
  .y4_headSet > div:nth-of-type(1) {
    width: auto;
    flex: 1;
  }
}
.y4_headSet > div:nth-of-type(2) {
  background-color: #171f80;
  flex: 1;
}
.y4_headSet__ttl {
  padding: 0 20px;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .y4_headSet__ttl {
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.5;
  }
}
.y4_headSet__ttl:before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #ff326c;
}
.y4_headSet__ttl:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: -20px;
  width: calc(100% + 40px);
  height: 1px;
  background-color: #171f80;
}

.y4_learn4year {
  background-color: #f5f4f4;
}
.y4_learn4year hgroup {
  position: relative;
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff;
  z-index: 5;
}
.y4_learn4year .y4_Section__title {
  font-size: min(8vw, 4.5rem);
  color: #ff326c;
  font-weight: 700;
}
.y4_learn4year .y4_Section__sub_title {
  font-size: min(4vw, 1.5rem);
  font-weight: 700;
}
.y4_learn4year .y4_learn4year_list__wrap {
  position: relative;
  width: min(95%, 1300px);
  margin-inline: auto;
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list {
  --column_space: min(5vw, 5rem);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--column_space);
  row-gap: min(15vw, 5rem);
  counter-reset: yearCounter 0;
  z-index: 5;
  margin-block: min(15vw, 5rem);
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item {
  position: relative;
  counter-increment: yearCounter 1;
  width: calc(100% / var(--column_wide, 4) - var(--column_space) / var(--column_wide, 4) * (var(--column_wide, 4) - 1));
  background-color: #fff;
  border-radius: min(3vw, 1rem);
  padding: min(25vw, 10rem) min(6vw, 3rem) min(6vw, 3rem);
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item:not(:last-child):after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  content: "";
  background-color: #ff326c;
  width: min(10vw, 2rem);
  height: auto;
  aspect-ratio: 1/1.5;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 767px) {
  .y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item:not(:last-child):after {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -10%);
    width: 10vw;
    aspect-ratio: 2/1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item .y4_learn4year_list__item_title {
  position: relative;
  font-size: min(5vw, 2rem);
  font-weight: 700;
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item .y4_learn4year_list__item_title:before, .y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item .y4_learn4year_list__item_title:after {
  position: absolute;
  top: 0;
  left: 50%;
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item .y4_learn4year_list__item_title:before {
  font-family: "Josefin Sans", sans-serif;
  transform: translate(-50%, calc(-100% - min(3vw, 2rem) * 1.5));
  content: counter(yearCounter);
  color: var(--counter_color);
  font-weight: 700;
  font-size: min(25vw, 12rem);
  line-height: 1;
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item .y4_learn4year_list__item_title:after {
  transform: translate(-50%, calc(-100% - min(3vw, 2rem)));
  content: "年次";
  border-bottom: 1px solid #a0a0a0;
  font-size: min(5vw, 1.75rem);
  padding-inline: min(6vw, 1.5rem);
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item:nth-child(odd) {
  --counter_color: #fbd006;
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list > .y4_learn4year_list__item:nth-child(even) {
  --counter_color: #711298;
}
@media only screen and (max-width: 767px) {
  .y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list {
    --column_wide: 1;
  }
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list__illust {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-20%, 0);
}
.y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list__illust img {
  max-height: 700px;
}
@media only screen and (max-width: 767px) {
  .y4_learn4year .y4_learn4year_list__wrap .y4_learn4year_list__illust {
    top: 0;
    transform: translate(-20%, -25vw);
    width: 55vw;
  }
}

.y4_course {
  position: relative;
}
.y4_course .y4_bgline01,
.y4_course .y4_bgline02,
.y4_course .y4_bgline03,
.y4_course .y4_bgline04 {
  opacity: 0.2;
}

.y4_courseItem {
  margin-bottom: 90px;
}
.y4_courseItem__set {
  margin: 0 5vw;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__set {
    margin: 0 3vw;
  }
}
.y4_courseItem__main {
  background: url("../images/course_bg1.jpg") no-repeat top center;
  background-size: cover;
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__main {
    display: block;
  }
}
.y4_courseItem--set2 .y4_courseItem__main {
  background-image: url("../images/course_bg2.jpg");
}
.y4_courseItem--set3 .y4_courseItem__main {
  background-image: url("../images/course_bg3.jpg");
}
.y4_courseItem--set4 .y4_courseItem__main {
  background-image: url("../images/course_bg4.jpg");
}
.y4_courseItem--set5 .y4_courseItem__main {
  background-image: url("../images/course_bg5.jpg");
}
.y4_courseItem--set6 .y4_courseItem__main {
  background-image: url("../images/course_bg6.jpg");
}
.y4_courseItem__ttl {
  flex: 1;
  position: relative;
  margin-top: -1vw;
  left: -5vw;
  margin-bottom: -5vw;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__ttl {
    width: 110%;
    margin-top: 0;
    margin-bottom: 0;
    top: -3vw;
  }
}
.y4_courseItem__ttl > img {
  height: 275px;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__ttl > img {
    height: auto;
    margin-bottom: 5vw;
  }
}
.y4_courseItem__photo {
  width: 48%;
  position: relative;
  right: -5vw;
  margin-top: -2vw;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__photo {
    width: 100%;
  }
}
.y4_courseItem__photo ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.y4_courseItem__photo li {
  width: calc(50% - 15px);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 0 15px 15px 0;
}
.y4_courseItem__photo li:nth-child(2), .y4_courseItem__photo li:nth-child(4) {
  top: 40px;
}
.y4_courseItem__photo li img {
  width: 100%;
}
.y4_courseItem__detail {
  margin: -30px 0 0 80px;
  position: relative;
  translate: 0 -3em;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__detail {
    margin: 10vw 0 0 0;
  }
}
.y4_courseItem__lead {
  margin-bottom: 10px;
}
.y4_courseItem__lead span {
  background: linear-gradient(transparent 0%, #ff326c 0%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.2em;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.y4_courseItem:nth-of-type(odd) .y4_courseItem__lead span {
  background: linear-gradient(transparent 0%, #101872 0%);
}
.y4_courseItem__info {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__info {
    display: block;
  }
}
.y4_courseItem__info > p {
  flex: 1;
  font-size: 1.4rem;
  color: #101872;
  font-weight: 600;
}
.y4_courseItem__info__btn {
  display: flex;
  flex-direction: column;
  row-gap: min(5vw, 1.25rem);
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__info__btn {
    text-align: center;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
.y4_courseItem__info__btn .y4_btn,
.y4_courseItem__info__btn .y4_btn__inner {
  min-width: auto;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .y4_courseItem__info__btn .y4_btn,
  .y4_courseItem__info__btn .y4_btn__inner {
    width: 100%;
  }
}

.y4_dream {
  padding: 0;
}
.y4_dream__body {
  background: url("../images/dream_bg1.png") no-repeat top 0 right, url("../images/dream_bg2.png") no-repeat bottom 0 left;
  padding: 200px 0 90px 0;
}
@media only screen and (max-width: 767px) {
  .y4_dream__body {
    padding: 30vw 0 90px 0;
    background-size: 120%, 80%;
  }
}
.y4_dream .y4_headSet {
  margin-bottom: -28px;
}
@media only screen and (max-width: 767px) {
  .y4_dream .y4_headSet {
    margin-bottom: -5vw;
  }
}

.y4_dreamSet {
  padding: 90px 0 0 0;
  position: relative;
}
.y4_dreamSet__list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .y4_dreamSet__list {
    flex-wrap: wrap;
  }
}
.y4_dreamSet__list li {
  margin: 0 5px;
}
@media only screen and (max-width: 767px) {
  .y4_dreamSet__list li {
    width: calc(50% - 10px);
    position: relative;
    margin-bottom: 20px;
  }
}
.y4_dreamSet__list li:nth-of-type(even) {
  position: relative;
  top: 40px;
}
@media only screen and (max-width: 767px) {
  .y4_dreamSet__list li:nth-of-type(even) {
    top: 20px;
  }
}
.y4_dreamSet__list li a:hover {
  opacity: 1;
}
.y4_dreamSet__list li a:hover img {
  opacity: 1;
}
.y4_dreamSet__logo {
  position: absolute;
  top: -120px;
  left: 30%;
}
.y4_dreamSet__logo img {
  max-height: 201px;
}
@media only screen and (max-width: 767px) {
  .y4_dreamSet__logo {
    width: 25vw;
    left: 0;
    top: -10vw;
  }
}

.hover2 {
  display: block;
  transition: 0.3s;
}
.hover2--ib {
  display: inline-block;
}
.hover2:hover {
  opacity: 1;
  transform: translateY(4px) translateX(4px);
  z-index: 1;
}
.hover2:hover img {
  opacity: 1;
}

/*==================================*/
/*page*/
/*==================================*/
.pageContent {
  background-color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/*==================================*/
/*COMMON CLASS*/
/*==================================*/
/*------------------------------*/
/*pc/sp*/
/*------------------------------*/
.u_sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .u_pc {
    display: none !important;
  }
  .u_sp {
    display: block !important;
  }
}
/*------------------------------*/
/*link */
/*------------------------------*/
a.u_linknone {
  pointer-events: none;
  cursor: default;
}

/*------------------------------*/
/*TXT*/
/*------------------------------*/
.u_txtSmall {
  font-size: 80%;
  line-height: 150%;
}

.u_txtMidium {
  font-size: 120%;
  line-height: 150%;
}

.u_lh1 {
  line-height: 1 !important;
}

.u_lh1_5 {
  line-height: 1.5 !important;
}

.u_lh1_8 {
  line-height: 1.8 !important;
}

/*------------------------------*/
/*TXT*/
/*------------------------------*/
.u_ft10 {
  font-size: 10px !important;
  font-size: 1rem !important;
}

.u_ft11 {
  font-size: 11px !important;
  font-size: 1.1rem !important;
}

.u_ft12 {
  font-size: 12px !important;
  font-size: 1.2rem !important;
}

.u_ft13 {
  font-size: 13px !important;
  font-size: 1.3rem !important;
}

.u_ft14 {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

.u_ft15 {
  font-size: 15px !important;
  font-size: 1.5rem !important;
}

.u_ft16 {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

.u_ft17 {
  font-size: 17px !important;
  font-size: 1.7rem !important;
}

.u_ft18 {
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

.u_ft19 {
  font-size: 19px !important;
  font-size: 1.9rem !important;
}

.u_ft20 {
  font-size: 20px !important;
  font-size: 2rem !important;
}

.u_ft21 {
  font-size: 21px !important;
  font-size: 2.1rem !important;
}

.u_ft22 {
  font-size: 22px !important;
  font-size: 2.2rem !important;
}

.u_ft23 {
  font-size: 23px !important;
  font-size: 2.3rem !important;
}

.u_ft24 {
  font-size: 24px !important;
  font-size: 2.4rem !important;
}

.u_ft25 {
  font-size: 25px !important;
  font-size: 2.5rem !important;
}

.u_ft30 {
  font-size: 30px !important;
  font-size: 3rem !important;
}

.u_ft35 {
  font-size: 35px !important;
  font-size: 3.5rem !important;
}

.u_ft40 {
  font-size: 40px !important;
  font-size: 4rem !important;
}

.u_ft45 {
  font-size: 45px !important;
  font-size: 4.5rem !important;
}

.u_ft50 {
  font-size: 50px !important;
  font-size: 5rem !important;
}

.u_ft60 {
  font-size: 50px !important;
  font-size: 6rem !important;
}

/*--- font-weight ----------*/
.u_ftB {
  font-weight: bold;
}

.u_ftNo {
  font-weight: normal;
}

/*------------------------------*/
/*LAYOUT*/
/*------------------------------*/
.u_floatLeft {
  float: left;
}

.u_floatRight {
  float: right;
}

.u_centerBox {
  text-align: center;
}

.u_rightBox {
  text-align: right;
}

/*------------------------------*/
/*LAYOUT2*/
/*------------------------------*/
.u_flL {
  float: left;
}

.u_flR {
  float: right;
}

.u_flLPc {
  float: left;
}

.u_flRPc {
  float: right;
}

@media screen and (max-width: 767px) {
  .u_flLPc,
  .u_flRPc {
    float: none;
  }
}
.u_txL {
  text-align: left;
}

.u_txC {
  text-align: center;
}

.u_txR {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .u_txL__pc {
    text-align: left;
  }
  .u_txC__pc {
    text-align: center;
  }
  .u_txR__pc {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .u_txL__sp {
    text-align: left;
  }
  .u_txC__sp {
    text-align: center;
  }
  .u_txR__sp {
    text-align: right;
  }
}
/*------------------------------*/
/*colum*/
/*------------------------------*/
.u_clm2-1,
.u_clm2-2,
.u_clm3-1,
.u_clm3-2,
.u_clm3-3,
.u_clm4-1,
.u_clm4-2,
.u_clm4-4,
.u_clm5-1,
.u_clm5-2,
.u_clm5-3,
.u_clm5-5 {
  width: 100%;
  overflow: hidden;
}

ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
ul.u_clm2-2 > li, .u_clm2-2 > dl, .u_clm2-2 > div,
ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
ul.u_clm3-3 > li, .u_clm3-3 > dl, .u_clm3-3 > div,
ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
ul.u_clm4-4 > li, .u_clm4-4 > dl, .u_clm4-4 > div,
ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div,
ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div,
ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div,
ul.u_clm5-5 > li, .u_clm5-5 > dl, .u_clm5-5 > div {
  float: left;
  margin-bottom: 2%;
}

ul.u_clm2-1 > li a, .u_clm2-1 > dl > a, .u_clm2-1 > div > a,
ul.u_clm2-2 > li a, .u_clm2-2 > dl > a, .u_clm2-2 > div > a,
ul.u_clm3-1 > li a, .u_clm3-1 > dl > a, .u_clm3-1 > div > a,
ul.u_clm3-2 > li a, .u_clm3-2 > dl > a, .u_clm3-2 > div > a,
ul.u_clm3-3 > li a, .u_clm3-3 > dl > a, .u_clm3-3 > div > a,
ul.u_clm4-1 > li a, .u_clm4-1 > dl > a, .u_clm4-1 > div > a,
ul.u_clm4-2 > li a, .u_clm4-2 > dl > a, .u_clm4-2 > div > a,
ul.u_clm4-4 > li a, .u_clm4-4 > dl > a, .u_clm4-4 > div > a,
ul.u_clm5-1 > li a, .u_clm5-1 > dl > a, .u_clm5-1 > div > a,
ul.u_clm5-2 > li a, .u_clm5-2 > dl > a, .u_clm5-2 > div > a,
ul.u_clm5-3 > li a, .u_clm5-3 > dl > a, .u_clm5-3 > div > a,
ul.u_clm5-5 > li a, .u_clm5-5 > dl > a, .u_clm5-5 > div > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
  ul.u_clm2-2 > li, .u_clm2-2 > dl, .u_clm2-2 > div,
  ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
  ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
  ul.u_clm3-3 > li, .u_clm3-3 > dl, .u_clm3-3 > div,
  ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
  ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
  ul.u_clm4-4 > li, .u_clm4-4 > dl, .u_clm4-4 > div,
  ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div,
  ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div,
  ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div,
  ul.u_clm5-5 > li, .u_clm5-5 > dl, .u_clm5-5 > div {
    float: left;
    margin-bottom: 2%;
  }
}
ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
ul.u_clm2-2 > li, .u_clm2-2 > dl, .u_clm2-2 > div {
  width: 49%;
  margin-right: 2%;
}

ul.u_clm2-1 > li:nth-child(2n), .u_clm2-1 > dl:nth-child(2n), .u_clm2-1 > div:nth-child(2n),
ul.u_clm2-2 > li:nth-child(2n), .u_clm2-2 > dl:nth-child(2n), .u_clm2-2 > div:nth-child(2n) {
  margin-right: 0;
}

ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
ul.u_clm3-3 > li, .u_clm3-3 > dl, .u_clm3-3 > div {
  width: 32%;
  margin-right: 2%;
}

ul.u_clm3-1 > li:nth-child(3n), .u_clm3-1 > dl:nth-child(3n), .u_clm3-1 > div:nth-child(3n),
ul.u_clm3-2 > li:nth-child(3n), .u_clm3-2 > dl:nth-child(3n), .u_clm3-2 > div:nth-child(3n),
ul.u_clm3-3 > li:nth-child(3n), .u_clm3-3 > dl:nth-child(3n), .u_clm3-3 > div:nth-child(3n) {
  margin-right: 0;
}

ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
ul.u_clm4-4 > li, .u_clm4-4 > dl, .u_clm4-4 > div {
  width: 23.5%;
  margin-right: 2%;
}

ul.u_clm4-1 > li:nth-child(4n), .u_clm4-1 > dl:nth-child(4n), .u_clm4-1 > div:nth-child(4n),
ul.u_clm4-2 > li:nth-child(4n), .u_clm4-2 > dl:nth-child(4n), .u_clm4-2 > div:nth-child(4n),
ul.u_clm4-4 > li:nth-child(4n), .u_clm4-4 > dl:nth-child(4n), .u_clm4-4 > div:nth-child(4n) {
  margin-right: 0;
}

ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div,
ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div,
ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div,
ul.u_clm5-5 > li, .u_clm5-5 > dl, .u_clm5-5 > div {
  width: 18.4%;
  margin-right: 2%;
}

ul.u_clm5-1 > li:nth-child(5n), .u_clm5-1 > dl:nth-child(5n), .u_clm5-1 > div:nth-child(5n),
ul.u_clm5-2 > li:nth-child(5n), .u_clm5-2 > dl:nth-child(5n), .u_clm5-2 > div:nth-child(5n),
ul.u_clm5-3 > li:nth-child(5n), .u_clm5-3 > dl:nth-child(5n), .u_clm5-3 > div:nth-child(5n),
ul.u_clm5-5 > li:nth-child(5n), .u_clm5-5 > dl:nth-child(5n), .u_clm5-5 > div:nth-child(5n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  ul.u_clm2-1 > li, .u_clm2-1 > dl, .u_clm2-1 > div,
  ul.u_clm3-1 > li, .u_clm3-1 > dl, .u_clm3-1 > div,
  ul.u_clm4-1 > li, .u_clm4-1 > dl, .u_clm4-1 > div,
  ul.u_clm5-1 > li, .u_clm5-1 > dl, .u_clm5-1 > div {
    width: 100%;
    margin-right: 0;
  }
  ul.u_clm3-2 > li, .u_clm3-2 > dl, .u_clm3-2 > div,
  ul.u_clm4-2 > li, .u_clm4-2 > dl, .u_clm4-2 > div,
  ul.u_clm5-2 > li, .u_clm5-2 > dl, .u_clm5-2 > div {
    width: 49%;
    margin-right: 2%;
  }
  ul.u_clm3-2 > li:nth-child(3n), .u_clm3-2 > dl:nth-child(3n), .u_clm3-2 > div:nth-child(3n) {
    margin-right: 2%;
  }
  ul.u_clm3-2 > li:nth-child(2n), .u_clm3-2 > dl:nth-child(2n), .u_clm3-2 > div:nth-child(2n) {
    margin-right: 0;
  }
  ul.u_clm4-2 > li:nth-child(2n), .u_clm4-2 > dl:nth-child(2n), .u_clm4-2 > div:nth-child(2n) {
    margin-right: 0;
  }
  ul.u_clm5-2 > li:nth-child(2n), .u_clm5-2 > dl:nth-child(2n), .u_clm5-2 > div:nth-child(2n) {
    margin-right: 0;
  }
  ul.u_clm5-3 > li, .u_clm5-3 > dl, .u_clm5-3 > div {
    width: 32%;
    margin-right: 2%;
  }
  ul.u_clm5-3 > li:nth-child(5n), .u_clm5-3 > dl:nth-child(5n), .u_clm5-3 > div:nth-child(5n) {
    margin-right: 2%;
  }
  ul.u_clm5-3 > li:nth-child(3n), .u_clm5-3 > dl:nth-child(3n), .u_clm5-3 > div:nth-child(3n) {
    margin-right: 0;
  }
}
/*--- column（inline-block） ----------*/
.u_clmIb2-1,
.u_clmIb2-2,
.u_clmIb3-1,
.u_clmIb3-2,
.u_clmIb3-3,
.u_clmIb4-1,
.u_clmIb4-2,
.u_clmIb4-4,
.u_clmIb5-1,
.u_clmIb5-3,
.u_clmIb5-5 {
  width: 100%;
  letter-spacing: -0.4em;
}

ul.u_clmIb2-1 > li, .u_clmIb2-1 > dl, .u_clmIb2-1 > div,
ul.u_clmIb2-2 > li, .u_clmIb2-2 > dl, .u_clmIb2-2 > div,
ul.u_clmIb3-1 > li, .u_clmIb3-1 > dl, .u_clmIb3-1 > div,
ul.u_clmIb3-2 > li, .u_clmIb3-2 > dl, .u_clmIb3-2 > div,
ul.u_clmIb3-3 > li, .u_clmIb3-3 > dl, .u_clmIb3-3 > div,
ul.u_clmIb4-1 > li, .u_clmIb4-1 > dl, .u_clmIb4-1 > div,
ul.u_clmIb4-2 > li, .u_clmIb4-2 > dl, .u_clmIb4-2 > div,
ul.u_clmIb4-4 > li, .u_clmIb4-4 > dl, .u_clmIb4-4 > div,
ul.u_clmIb5-1 > li, .u_clmIb5-1 > dl, .u_clmIb5-1 > div,
ul.u_clmIb5-3 > li, .u_clmIb5-3 > dl, .u_clmIb5-3 > div,
ul.u_clmIb5-5 > li, .u_clmIb5-5 > dl, .u_clmIb5-5 > div {
  display: inline-block;
  letter-spacing: normal;
}

ul.u_clmIb2-1 > li, .u_clmIb2-1 > dl, .u_clmIb2-1 > div,
ul.u_clmIb2-2 > li, .u_clmIb2-2 > dl, .u_clmIb2-2 > div {
  width: 50%;
}

ul.u_clmIb3-1 > li, .u_clmIb3-1 > dl, .u_clmIb3-1 > div,
ul.u_clmIb3-2 > li, .u_clmIb3-2 > dl, .u_clmIb3-2 > div,
ul.u_clmIb3-3 > li, .u_clmIb3-3 > dl, .u_clmIb3-3 > div {
  width: 33.333%;
}

ul.u_clmIb3-1 > li:nth-child(3n+2), .u_clmIb3-1 > dl:nth-child(3n+2), .u_clmIb3-1 > div:nth-child(3n+2),
ul.u_clmIb3-2 > li:nth-child(3n+2), .u_clmIb3-2 > dl:nth-child(3n+2), .u_clmIb3-2 > div:nth-child(3n+2),
ul.u_clmIb3-3 > li:nth-child(3n+2), .u_clmIb3-3 > dl:nth-child(3n+2), .u_clmIb3-3 > div:nth-child(3n+2) {
  width: 33.334%;
}

ul.u_clmIb4-1 > li, .u_clmIb4-1 > dl, .u_clmIb4-1 > div,
ul.u_clmIb4-2 > li, .u_clmIb4-2 > dl, .u_clmIb4-2 > div,
ul.u_clmIb4-4 > li, .u_clmIb4-4 > dl, .u_clmIb4-4 > div {
  width: 25%;
}

ul.u_clmIb5-1 > li, .u_clmIb5-1 > dl, .u_clmIb5-1 > div,
ul.u_clmIb5-3 > li, .u_clmIb5-3 > dl, .u_clmIb5-3 > div,
ul.u_clmIb5-5 > li, .u_clmIb5-5 > dl, .u_clmIb5-5 > div {
  width: 20%;
}

ul.u_clmIb2-1 > li a, .u_clmIb2-1 > dl > a, .u_clmIb2-1 > div > a,
ul.u_clmIb2-2 > li a, .u_clmIb2-2 > dl > a, .u_clmIb2-2 > div > a,
ul.u_clmIb3-1 > li a, .u_clmIb3-1 > dl > a, .u_clmIb3-1 > div > a,
ul.u_clmIb3-2 > li a, .u_clmIb3-2 > dl > a, .u_clmIb3-2 > div > a,
ul.u_clmIb3-3 > li a, .u_clmIb3-3 > dl > a, .u_clmIb3-3 > div > a,
ul.u_clmIb4-1 > li a, .u_clmIb4-1 > dl > a, .u_clmIb4-1 > div > a,
ul.u_clmIb4-2 > li a, .u_clmIb4-2 > dl > a, .u_clmIb4-2 > div > a,
ul.u_clmIb4-4 > li a, .u_clmIb4-4 > dl > a, .u_clmIb4-4 > div > a,
ul.u_clmIb5-1 > li a, .u_clmIb5-1 > dl > a, .u_clmIb5-1 > div > a,
ul.u_clmIb5-3 > li a, .u_clmIb5-3 > dl > a, .u_clmIb5-3 > div > a,
ul.u_clmIb5-5 > li a, .u_clmIb5-5 > dl > a, .u_clmIb5-5 > div > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  ul.u_clmIb2-1 > li, .u_clmIb2-1 > dl, .u_clmIb2-1 > div,
  ul.u_clmIb3-1 > li, .u_clmIb3-1 > dl, .u_clmIb3-1 > div,
  ul.u_clmIb4-1 > li, .u_clmIb4-1 > dl, .u_clmIb4-1 > div,
  ul.u_clmIb5-1 > li, .u_clmIb5-1 > dl, .u_clmIb5-1 > div {
    width: 100%;
  }
  ul.u_clmIb3-1 > li:nth-child(3n+2), .u_clmIb3-1 > dl:nth-child(3n+2), .u_clmIb3-1 > div:nth-child(3n+2) {
    width: 100%;
  }
  ul.u_clmIb3-2 > li, .u_clmIb3-2 > dl, .u_clmIb3-2 > div,
  ul.u_clmIb4-2 > li, .u_clmIb4-2 > dl, .u_clmIb4-2 > div {
    width: 50%;
  }
  ul.u_clmIb3-2 > li:nth-child(3n+2), .u_clmIb3-2 > dl:nth-child(3n+2), .u_clmIb3-2 > div:nth-child(3n+2) {
    width: 50%;
  }
  ul.u_clmIb5-3 > li, .u_clmIb5-3 > dl, .u_clmIb5-3 > div {
    width: 33.333%;
  }
  ul.u_clmIb5-3 > li:nth-child(3n+2), .u_clmIb5-3 > dl:nth-child(3n+2), .u_clmIb5-3 > div:nth-child(3n+2) {
    width: 33.334%;
  }
}
/*--- flexbox ----------*/
.u_clmFl2, ul.u_clmFl2 > li, .u_clmFl2 > dl,
.u_clmFl3, ul.u_clmFl3 > li, .u_clmFl3 > dl,
.u_clmFl4, ul.u_clmFl4 > li, .u_clmFl4 > dl,
.u_clmFl5, ul.u_clmFl5 > li, .u_clmFl5 > dl {
  display: flex;
  display: -webkit-box; /* Androidブラウザ用 */
  display: -ms-flexbox; /* IE10 */
  display: -webkit-flex; /* safari（PC）用 */
  justify-content: space-between;
  align-content: space-between;
  -ms-align-content: space-between; /* IE10 */
  -webkit-align-content: space-between; /* safari（PC）用 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; /* IE10 */
  -webkit-flex-wrap: wrap; /* safari（PC）用 */
  align-items: stretch;
  -ms-align-items: stretch; /* IE10 */
  -webkit-align-items: stretch; /* safari（PC）用 */
}

.u_clmFl2, ul.u_clmFl2 > li, .u_clmFl2 > dl {
  flex-basis: 49%;
}

.u_clmFl3, ul.u_clmFl3 > li, .u_clmFl3 > dl {
  flex-basis: 32%;
}

.u_clmFl4, ul.u_clmFl4 > li, .u_clmFl4 > dl {
  flex-basis: 23.5%;
}

.u_clmFl5, ul.u_clmFl5 > li, .u_clmFl5 > dl {
  flex-basis: 18.4%;
}

.u_clmFl2 a, ul.u_clmFl2 > li a, .u_clmFl2 > dl a,
.u_clmFl3 a, ul.u_clmFl3 > li a, .u_clmFl3 > dl a,
.u_clmFl4 a, ul.u_clmFl4 > li a, .u_clmFl4 > dl a,
.u_clmFl5 a, ul.u_clmFl5 > li a, .u_clmFl5 > dl a {
  display: block;
  width: 100%;
  height: 100%;
}

/*--- flexbox（複数行に渡って上下左右の間隔を均等にする場合） ----------*/
.u_clmFlSp2-1, ul.u_clmFlSp2-1 > li, .u_clmFlSp2-1 > dl,
.u_clmFlSp2-2, ul.u_clmFlSp2-2 > li, .u_clmFlSp2-2 > dl,
.u_clmFlSp3-1, ul.u_clmFlSp3-1 > li, .u_clmFlSp3-1 > dl,
.u_clmFlSp3-2, ul.u_clmFlSp3-2 > li, .u_clmFlSp3-2 > dl,
.u_clmFlSp3-3, ul.u_clmFlSp3-3 > li, .u_clmFlSp3-3 > dl,
.u_clmFlSp4-1, ul.u_clmFlSp4-1 > li, .u_clmFlSp4-1 > dl,
.u_clmFlSp4-2, ul.u_clmFlSp4-2 > li, .u_clmFlSp4-2 > dl,
.u_clmFlSp4-4, ul.u_clmFlSp4-4 > li, .u_clmFlSp4-4 > dl,
.u_clmFlSp5-1, ul.u_clmFlSp5-1 > li, .u_clmFlSp5-1 > dl,
.u_clmFlSp5-3, ul.u_clmFlSp5-3 > li, .u_clmFlSp5-3 > dl,
.u_clmFlSp5-5, ul.u_clmFlSp5-5 > li, .u_clmFlSp5-5 > dl {
  display: flex;
  display: -webkit-box; /* Androidブラウザ用 */
  display: -ms-flexbox; /* IE10 */
  display: -webkit-flex; /* safari（PC）用 */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; /* IE10 */
  -webkit-flex-wrap: wrap; /* safari（PC）用 */
  align-items: stretch;
  -ms-align-items: stretch; /* IE10 */
  -webkit-align-items: stretch; /* safari（PC）用 */
  margin: 0.5%;
}

.u_clmFlSp2-1, ul.u_clmFlSp2-1 > li, .u_clmFlSp2-1 > dl,
.u_clmFlSp2-2, ul.u_clmFlSp2-2 > li, .u_clmFlSp2-2 > dl {
  flex-basis: 49%;
}

.u_clmFlSp3-1, ul.u_clmFlSp3-1 > li, .u_clmFlSp3-1 > dl,
.u_clmFlSp3-2, ul.u_clmFlSp3-2 > li, .u_clmFlSp3-2 > dl,
.u_clmFlSp3-3, ul.u_clmFlSp3-3 > li, .u_clmFlSp3-3 > dl {
  flex-basis: 32.333%;
}

.u_clmFlSp4-1, ul.u_clmFlSp4-1 > li, .u_clmFlSp4-1 > dl,
.u_clmFlSp4-2, ul.u_clmFlSp4-2 > li, .u_clmFlSp4-2 > dl,
.u_clmFlSp4-4, ul.u_clmFlSp4-4 > li, .u_clmFlSp4-4 > dl {
  flex-basis: 24%;
}

.u_clmFlSp5-1, ul.u_clmFlSp5-1 > li, .u_clmFlSp5-1 > dl,
.u_clmFlSp5-3, ul.u_clmFlSp5-3 > li, .u_clmFlSp5-3 > dl,
.u_clmFlSp5-5, ul.u_clmFlSp5-5 > li, .u_clmFlSp5-5 > dl {
  flex-basis: 19%;
}

.u_clmFlSp2-1 a, ul.u_clmFlSp2-1 > li a, .u_clmFlSp2-1 > dl > a,
.u_clmFlSp2-2 a, ul.u_clmFlSp2-2 > li a, .u_clmFlSp2-2 > dl > a,
.u_clmFlSp3-1 a, ul.u_clmFlSp3-1 > li a, .u_clmFlSp3-1 > dl > a,
.u_clmFlSp3-2 a, ul.u_clmFlSp3-2 > li a, .u_clmFlSp3-2 > dl > a,
.u_clmFlSp3-3 a, ul.u_clmFlSp3-3 > li a, .u_clmFlSp3-3 > dl > a,
.u_clmFlSp4-1 a, ul.u_clmFlSp4-1 > li a, .u_clmFlSp4-1 > dl > a,
.u_clmFlSp4-2 a, ul.u_clmFlSp4-2 > li a, .u_clmFlSp4-2 > dl > a,
.u_clmFlSp4-4 a, ul.u_clmFlSp4-4 > li a, .u_clmFlSp4-4 > dl > a,
.u_clmFlSp5-1 a, ul.u_clmFlSp5-1 > li a, .u_clmFlSp5-1 > dl > a,
.u_clmFlSp5-3 a, ul.u_clmFlSp5-3 > li a, .u_clmFlSp5-3 > dl > a,
.u_clmFlSp5-5 a, ul.u_clmFlSp5-5 > li a, .u_clmFlSp5-5 > dl > a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .u_clmFlSp2-1, ul.u_clmFlSp2-1 > li, .u_clmFlSp2-1 > dl,
  .u_clmFlSp3-1, ul.u_clmFlSp3-1 > li, .u_clmFlSp3-1 > dl,
  .u_clmFlSp4-1, ul.u_clmFlSp4-1 > li, .u_clmFlSp4-1 > dl,
  .u_clmFlSp5-1, ul.u_clmFlSp5-1 > li, .u_clmFlSp5-1 > dl {
    flex-basis: 100%;
    margin: 0 0 1% 0;
  }
  .u_clmFlSp3-2, ul.u_clmFlSp3-2 > li, .u_clmFlSp3-2 > dl,
  .u_clmFlSp4-2, ul.u_clmFlSp4-2 > li, .u_clmFlSp4-2 > dl {
    flex-basis: 49%;
  }
  .u_clmFlSp5-3, ul.u_clmFlSp5-3 > li, .u_clmFlSp5-3 > dl {
    flex-basis: 32.333%;
  }
}
/*------------------------------*/
/*CREAR*/
/*------------------------------*/
.u_clear {
  clear: both;
  _zoom: 1;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.u_clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.u_clearfix {
  display: inline-block;
}

/*hides IE-mac \*/
* html .u_clearfix {
  height: 1%;
}

.u_clearfix {
  display: block;
}

/*hide  IE-mac */
/*------------------------------*/
/*COLOR*/
/*------------------------------*/
.u_color-orange {
  color: #FF6600;
}

.u_color-red {
  color: #FF0000;
}

.u_color-black {
  color: #000000;
}

.u_color-white {
  color: #FFFFFF;
}

.u_color-green {
  color: #009900;
}

/*------------------------------*/
/*Margin Padding */
/*------------------------------*/
/*------------------------------*/
/*Margin Padding 2*/
/*------------------------------*/
/*--- 中央配置 ----------*/
.u_mgC {
  margin-right: auto !important;
  margin-left: auto !important;
}

/*--- 上 ----------*/
.u_mgT0 {
  margin-top: 0px !important;
}

.u_mgT5 {
  margin-top: 5px !important;
}

.u_mgT10 {
  margin-top: 10px !important;
}

.u_mgT15 {
  margin-top: 15px !important;
}

.u_mgT20 {
  margin-top: 20px !important;
}

.u_mgT25 {
  margin-top: 25px !important;
}

.u_mgT30 {
  margin-top: 30px !important;
}

.u_mgT40 {
  margin-top: 40px !important;
}

.u_mgT50 {
  margin-top: 50px !important;
}

.u_pdT5 {
  padding-top: 5px !important;
}

.u_pdT10 {
  padding-top: 10px !important;
}

.u_pdT15 {
  padding-top: 15px !important;
}

.u_pdT20 {
  padding-top: 20px !important;
}

.u_pdT25 {
  padding-top: 25px !important;
}

.u_pdT30 {
  padding-top: 30px !important;
}

.u_pdT40 {
  padding-top: 40px !important;
}

.u_pdT50 {
  padding-top: 50px !important;
}

/*--- 右 ----------*/
.u_mgR0 {
  margin-right: 0px !important;
}

.u_mgR10 {
  margin-right: 10px !important;
}

.u_mgR15 {
  margin-right: 15px !important;
}

.u_mgR20 {
  margin-right: 20px !important;
}

.u_mgR25 {
  margin-right: 25px !important;
}

.u_mgR30 {
  margin-right: 30px !important;
}

.u_mgR40 {
  margin-right: 40px !important;
}

.u_mgR50 {
  margin-right: 50px !important;
}

.u_pdR5 {
  padding-right: 5px !important;
}

.u_pdR10 {
  padding-right: 10px !important;
}

.u_pdR15 {
  padding-right: 15px !important;
}

.u_pdR20 {
  padding-right: 20px !important;
}

.u_pdR25 {
  padding-right: 25px !important;
}

.u_pdR30 {
  padding-right: 30px !important;
}

.u_pdR40 {
  padding-right: 40px !important;
}

.u_pdR50 {
  padding-right: 50px !important;
}

/*--- 左 ----------*/
.u_mgL0 {
  margin-left: 0px !important;
}

.u_mgL10 {
  margin-left: 10px !important;
}

.u_mgL15 {
  margin-left: 15px !important;
}

.u_mgL20 {
  margin-left: 20px !important;
}

.u_mgL25 {
  margin-left: 25px !important;
}

.u_mgL30 {
  margin-left: 30px !important;
}

.u_mgL40 {
  margin-left: 40px !important;
}

.u_mgL50 {
  margin-left: 50px !important;
}

.u_pdL5 {
  padding-left: 5px !important;
}

.u_pdL10 {
  padding-left: 10px !important;
}

.u_pdL15 {
  padding-left: 15px !important;
}

.u_pdL20 {
  padding-left: 20px !important;
}

.u_pdL25 {
  padding-left: 25px !important;
}

.u_pdL30 {
  padding-left: 30px !important;
}

.u_pdL40 {
  padding-left: 40px !important;
}

.u_pdL50 {
  padding-left: 50px !important;
}

/*--- 下 ----------*/
.u_mgB0 {
  margin-bottom: 0px !important;
}

.u_mgB5 {
  margin-bottom: 5px !important;
}

.u_mgB10 {
  margin-bottom: 10px !important;
}

.u_mgB15 {
  margin-bottom: 15px !important;
}

.u_mgB20 {
  margin-bottom: 20px !important;
}

.u_mgB25 {
  margin-bottom: 25px !important;
}

.u_mgB30 {
  margin-bottom: 30px !important;
}

.u_mgB40 {
  margin-bottom: 40px !important;
}

.u_mgB50 {
  margin-bottom: 50px !important;
}

.u_pdB5 {
  padding-bottom: 5px !important;
}

.u_pdB10 {
  padding-bottom: 10px !important;
}

.u_pdB15 {
  padding-bottom: 15px !important;
}

.u_pdB20 {
  padding-bottom: 20px !important;
}

.u_pdB25 {
  padding-bottom: 25px !important;
}

.u_pdB30 {
  padding-bottom: 30px !important;
}

.u_pdB40 {
  padding-bottom: 40px !important;
}

.u_pdB50 {
  padding-bottom: 50px !important;
}

/*--- 上下 ----------*/
.u_mgTB0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u_mgTB5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.u_mgTB10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.u_mgTB15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.u_mgTB20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.u_mgTB20 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.u_mgTB30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.u_mgTB40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u_mgTB50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.u_pdTB5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.u_pdTB10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.u_pdTB15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.u_pdTB20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.u_pdTB25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.u_pdTB30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.u_pdTB40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u_pdTB50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/*--- 左右 ----------*/
.u_mgLR0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u_mgLR10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.u_mgLR15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.u_mgLR20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.u_mgLR25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.u_mgLR30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.u_mgLR40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.u_mgLR50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.u_pdLR5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.u_pdLR10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.u_pdLR15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.u_pdLR20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.u_pdLR25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.u_pdLR30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.u_pdLR40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.u_pdLR50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

/*--- 全体 ----------*/
.u_mgA0 {
  margin: 0px !important;
}

.u_mgA10 {
  margin: 10px !important;
}

.u_mgA15 {
  margin: 15px !important;
}

.u_mgA20 {
  margin: 20px !important;
}

.u_mgA25 {
  margin: 25px !important;
}

.u_mgA30 {
  margin: 30px !important;
}

.u_mgA40 {
  margin: 40px !important;
}

.u_mgA50 {
  margin: 50px !important;
}

.u_pdA5 {
  padding: 5px !important;
}

.u_pdA10 {
  padding: 10px !important;
}

.u_pdA15 {
  padding: 15px !important;
}

.u_pdA20 {
  padding: 20px !important;
}

.u_pdA25 {
  padding: 25px !important;
}

.u_pdA30 {
  padding: 30px !important;
}

.u_pdA40 {
  padding: 40px !important;
}

.u_pdA50 {
  padding: 50px !important;
}

/*--- 横幅 ----------*/
/* ピクセル */
.u_w1000 {
  width: 1000px !important;
}

.u_w950 {
  width: 950px !important;
}

.u_w900 {
  width: 900px !important;
}

.u_w850 {
  width: 850px !important;
}

.u_w800 {
  width: 800px !important;
}

.u_w750 {
  width: 750px !important;
}

.u_w700 {
  width: 700px !important;
}

.u_w650 {
  width: 650px !important;
}

.u_w600 {
  width: 600px !important;
}

.u_w550 {
  width: 550px !important;
}

.u_w500 {
  width: 500px !important;
}

.u_w450 {
  width: 450px !important;
}

.u_w400 {
  width: 400px !important;
}

.u_w350 {
  width: 350px !important;
}

.u_w300 {
  width: 300px !important;
}

.u_w250 {
  width: 250px !important;
}

.u_w200 {
  width: 200px !important;
}

.u_w150 {
  width: 150px !important;
}

.u_w100 {
  width: 100px !important;
}

.u_w50 {
  width: 50px !important;
}

/* パーセント */
.u_wP100 {
  width: 100% !important;
}

.u_wP95 {
  width: 95% !important;
}

.u_wP90 {
  width: 90% !important;
}

.u_wP85 {
  width: 85% !important;
}

.u_wP80 {
  width: 80% !important;
}

.u_wP75 {
  width: 75% !important;
}

.u_wP70 {
  width: 70% !important;
}

.u_wP65 {
  width: 65% !important;
}

.u_wP60 {
  width: 60% !important;
}

.u_wP55 {
  width: 55% !important;
}

.u_wP50 {
  width: 50% !important;
}

.u_wP45 {
  width: 45% !important;
}

.u_wP40 {
  width: 40% !important;
}

.u_wP35 {
  width: 35% !important;
}

.u_wP30 {
  width: 30% !important;
}

.u_wP25 {
  width: 25% !important;
}

.u_wP20 {
  width: 20% !important;
}

.u_wP15 {
  width: 15% !important;
}

.u_wP10 {
  width: 10% !important;
}

.u_wP5 {
  width: 5% !important;
}

.u_wAuto {
  width: auto !important;
}

@media only screen and (max-width: 767px) {
  .u_wP--sp {
    width: 100% !important;
  }
}
/*------------------------------*/
/*TABLE */
/*------------------------------*/
.u_table-no {
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  padding: 15px;
}

.u_table-no td {
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  padding: 15px;
}

.u_table-no th {
  border-collapse: collapse;
  border: 1px solid #CCCCCC;
  background-color: #EDEDED;
  padding: 15px;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .u_table-no--sp1 {
    border-bottom: none;
  }
  .u_table-no--sp1 td, .u_table-no--sp1 th {
    width: 100%;
    display: block;
    border: none;
    border-bottom: 1px solid #CCCCCC;
  }
}
/*------------------------------*/
/*Efect */
/*------------------------------*/
/*banner rollover end etc*/
a:hover img.u_overBtn {
  filter: alpha(opacity=70);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

/* //banner rollover */
/*------------------------------*/
/*JS Efect */
/*------------------------------*/
.u_imgover {
  margin: 0;
  padding: 0;
}

/*------------------------------*/
/*for txt float  */
/*------------------------------*/
.u_floatNext {
  overflow: auto;
  zoom: 1;
}

/*------------------------------*/
/*for txt float2  */
/*------------------------------*/
.u_floatOver {
  overflow: hidden;
  _zoom: 1;
}

/*------------------------------*/
/*ohters  */
/*------------------------------*/
.u_clearNone {
  clear: none !important;
}

/*------------------------------*/
/*sp table (scrol)  */
/*------------------------------*/
@media only screen and (max-width: 767px) {
  .scrollTable {
    overflow: auto;
    white-space: nowrap;
  }
  .scrollTable table {
    width: 100%;
  }
  .scrollTable::-webkit-scrollbar {
    height: 5px;
  }
  .scrollTable::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scrollTable::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
ul.u_list_normal {
  /*margin: 1em 0;*/
  padding-left: 40px;
  list-style-type: disc;
}
ul.u_list_normal li {
  margin-bottom: 0.5em;
}
ul.u_list_normal--2-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.u_list_normal--2-1 li {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  ul.u_list_normal--2-1 li {
    width: 100%;
  }
}
ul.u_list_normal--2-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.u_list_normal--2-2 li {
  width: 45%;
}
ul.u_list_normal--small li {
  margin-bottom: 0;
}

ul.u_list_num {
  padding-left: 40px;
  list-style-type: decimal;
}

ul.u_list_note {
  padding-left: 22px;
  list-style-type: none;
}

ul.u_list_note li {
  position: relative;
  padding-left: 1em;
}

ul.u_list_note li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/*------------------------------*/
/*flex*/
/*------------------------------*/
.u_flex {
  display: flex;
}
.u_flex--center {
  justify-content: center;
}
.u_flex--center_h {
  align-items: center;
}
.u_flex--mb > div,
.u_flex--mb > li {
  margin-bottom: 4%;
}
.u_flex--mb_s > div,
.u_flex--mb_s > li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .u_flex--pc {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .u_flex--sp {
    display: block;
  }
}
.u_flex__item--1 {
  flex: 1;
}
.u_flex--c2 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2 > div,
.u_flex--c2 > li {
  width: 46%;
  margin-right: 4%;
}
.u_flex--c2f {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2f > div,
.u_flex--c2f > li {
  margin-right: 4%;
}
.u_flex--c2f-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2f-1 > div,
.u_flex--c2f-1 > li {
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .u_flex--c2f-1 > div,
  .u_flex--c2f-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .u_flex--c2f-1 > div:last-of-type,
  .u_flex--c2f-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.u_flex--c2-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c2-1 > div,
.u_flex--c2-1 > li {
  width: 46%;
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .u_flex--c2-1 > div,
  .u_flex--c2-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .u_flex--c2-1 > div:last-of-type,
  .u_flex--c2-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.u_flex--c3 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c3 > div,
.u_flex--c3 > li {
  width: 29.33333%;
  margin-right: 4%;
}
.u_flex--c3-1 {
  flex-wrap: wrap;
  margin: 0 -4% 0 0;
}
.u_flex--c3-1 > div,
.u_flex--c3-1 > li {
  width: 29.33333%;
  margin-right: 4%;
}
@media only screen and (max-width: 767px) {
  .u_flex--c3-1 > div,
  .u_flex--c3-1 > li {
    width: 100%;
    margin-bottom: 4%;
  }
  .u_flex--c3-1 > div:last-of-type,
  .u_flex--c3-1 > li:last-of-type {
    margin-bottom: 0;
  }
}
.u_flex--mb_self {
  margin-bottom: 4%;
}

/*------------------------------*/
/*margin*/
/*------------------------------*/
.u_bl {
  margin-bottom: 40px !important;
}

.u_bl2 {
  margin-bottom: 60px !important;
}

/*------------------------------*/
/*movie*/
/*------------------------------*/
.u_movieSet {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.u_movieSet iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*------------------------------*/
/*img*/
/*------------------------------*/
.u_imgMw100 {
  max-width: 100%;
}

/*------------------------------*/
/*map*/
/*------------------------------*/
.u_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.u_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------*/
/*hr*/
/*------------------------------*/
.u_hr {
  border-top: 1px solid #BBB;
}

/*==================================*/
/*footer
 (base = https://www.bac.ac.jp/assets/css/common.css)
*/
/*==================================*/
.wrap2 {
  width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .wrap2 {
    width: auto;
    margin: 0 20px;
  }
}

footer {
  margin-top: 190px;
  position: relative;
}
footer .footerCv {
  background: url("https://www.bac.ac.jp/assets/images/footer_cv_bg.jpg") no-repeat bottom center;
  background-size: cover;
  height: 362px;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  footer .footerCv {
    height: 270px;
    background: url("https://www.bac.ac.jp/assets/images/footer_cv_bg_sp.jpg") no-repeat bottom center;
    background-size: cover;
  }
}
footer .footerCv .footerCv__ca {
  position: absolute;
  width: 90px;
  top: -80px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  footer .footerCv .footerCv__ca {
    width: 60px;
  }
}
footer .footerCv .footer__stu {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 462px;
  height: 200px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  footer .footerCv .footer__stu {
    width: 80%;
    height: 90px;
  }
}
footer .footerCv .footer__stu > div {
  width: 50%;
  text-align: center;
}
footer .footerCv .footer__stu > div img {
  width: 100%;
}
footer .footerCv .footerCv__menu {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer .footerCv .footerCv__menu {
    margin: 0 5px;
  }
}
footer .footerCv .footerCv__menu li {
  text-align: center;
  margin: 0 5px;
}
footer .footerMain {
  background-color: #292929;
  text-align: center;
  padding: 60px;
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  footer .footerMain {
    padding: 40px 0;
  }
}
footer .footerMain .footerMain__logo {
  width: 400px;
  margin: 0 auto 50px auto;
}
footer .footerMain .footerMain__logo > span {
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__logo {
    width: 300px;
  }
}
footer .footerMain .footerMain__logo img {
  width: 100%;
}
footer .footerMain .footerMain__set {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__set {
    display: block;
  }
}
footer .footerMain .footerMain__set > div {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__set > div {
    width: 100%;
  }
}
footer .footerMain .footerMain__set .footerMain__info {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__set .footerMain__info {
    text-align: center;
  }
}
footer .footerMain .footerMain__set p {
  margin-bottom: 15px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__set p {
    font-size: 1.4rem;
  }
}
footer .footerMain .footerMain__link {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__link {
    display: block;
  }
}
footer .footerMain .footerMain__link li {
  margin: 0px 10px 10px 0;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 1;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__link li {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
footer .footerMain .footerMain__link li a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 5px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__link li a {
    margin-right: 5px;
  }
}
footer .footerMain .footerMain__link li.__tel a {
  background: url("https://www.bac.ac.jp/assets/images/ic_phone.png") no-repeat left top;
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__link li.__tel a {
    background-size: auto 22px;
  }
}
footer .footerMain .footerMain__link li.__mail a {
  background: url("https://www.bac.ac.jp/assets/images/ic_mail.png") no-repeat left top 0.3em;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__link li.__mail a {
    background-size: auto 15px;
  }
}
footer .footerMain .footerMain__link2 {
  margin: 30px 0 0 0;
}
@media only screen and (max-width: 767px) {
  footer .footerMain .footerMain__link2 {
    text-align: left;
    width: 15em;
    margin: 0 auto;
  }
}
footer .footerMain .footerMain__link2 li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
}
footer .footerMain .footerMain__link2 li:before {
  content: "";
  border-bottom: 1px solid #abcd03;
  width: 10px;
  position: absolute;
  top: 0.8em;
  left: 0;
}
footer .footerMain .footerMain__link2 li a {
  color: #908d8d;
  font-size: 1.2rem;
  text-decoration: none;
}
footer .footerMain .footerMain__link2 li a:hover {
  text-decoration: underline;
}
footer .footerMain__map iframe {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  footer .footerMain__map {
    margin-top: 30px;
  }
}
footer .footerCp {
  background-color: #000000;
  color: #fff;
  padding: 35px 0;
  text-align: center;
  font-size: 1rem;
}
@media only screen and (max-width: 767px) {
  footer .footerCp {
    padding: 20px;
    padding-bottom: 80px;
  }
}

/*==================================*/
/*etc
*/
/*==================================*/
.opSlider {
  background: url("https://www.bac.ac.jp/assets/images/br_st_gr.jpg");
  background-size: auto;
  animation: bgMove 40s infinite linear;
  padding: 60px 0px 30px 0px;
  margin-bottom: 100px;
}
.opSlider .wrap {
  width: auto;
  margin: 0 60px;
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .opSlider .wrap {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .opSlider {
    padding: 40px 0;
    margin-bottom: 0;
  }
}
.opSlider .btn {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translate(-50%, 0);
}
.opSlider .opSlider__list {
  padding-bottom: 30px;
  margin-top: -30px;
}
.opSlider .opSlider__list .slick-track {
  padding: 40px 0;
}
.opSlider .opSlider__list li.slick-slide {
  width: 284px;
  margin: 0 20px;
  position: relative;
  padding: 10px;
}
@media print, screen and (min-width: 768px) {
  .opSlider .opSlider__list li.slick-slide:nth-child(even) {
    margin-top: 50px;
  }
}
.opSlider .opSlider__list li.slick-slide:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0px;
  left: 0;
  background: url("https://www.bac.ac.jp/assets/images/waku.png") no-repeat top left;
  background-size: cover;
}
.opSlider .opSlider__list li.slick-slide:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0px;
  right: 0;
  background: url("https://www.bac.ac.jp/assets/images/waku.png") no-repeat top left;
  background-size: cover;
  transform: scaleX(-1);
}
.opSlider .opSlider__list li.slick-slide a {
  text-decoration: none;
  color: #000;
  display: inline-block;
  position: relative;
}
.opSlider .opSlider__list li.slick-slide a:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -10px;
  left: -10px;
  background: url("https://www.bac.ac.jp/assets/images/waku.png") no-repeat top left;
  background-size: cover;
  transform: scaleY(-1);
}
.opSlider .opSlider__list li.slick-slide a:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -10px;
  right: -10px;
  background: url("https://www.bac.ac.jp/assets/images/waku.png") no-repeat top left;
  background-size: cover;
  transform: scaleY(-1) scaleX(-1);
}
.opSlider .opSlider__list li.slick-slide a .copSlider__w1 {
  position: relative;
}
.opSlider .opSlider__list li.slick-slide a .copSlider__w1:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("https://www.bac.ac.jp/assets/images/waku_l.png") no-repeat center left;
  background-size: contain;
  left: -30px;
  top: 50%;
  margin-top: -10px;
}
.opSlider .opSlider__list li.slick-slide a .copSlider__w1:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("https://www.bac.ac.jp/assets/images/waku_l.png") no-repeat center left;
  background-size: contain;
  right: -30px;
  top: 50%;
  margin-top: -10px;
}
.opSlider .opSlider__list li.slick-slide a .copSlider__w2 {
  position: relative;
}
.opSlider .opSlider__list li.slick-slide a .copSlider__w2:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 20px;
  background: url("https://www.bac.ac.jp/assets/images/waku_l.png") no-repeat center left;
  background-size: contain;
  left: 50%;
  top: -30px;
  margin-left: -10px;
  transform: rotate(90deg);
}
.opSlider .opSlider__list li.slick-slide a .copSlider__w2:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 20px;
  background: url("https://www.bac.ac.jp/assets/images/waku_l.png") no-repeat center left;
  background-size: contain;
  left: 50%;
  bottom: -30px;
  margin-left: -10px;
  transform: rotate(90deg);
}
.opSlider .opSlider__list li.slick-slide img {
  width: 100%;
}
.opSlider .opSlider__list li.slick-slide .opSlider__info {
  background-color: #fff;
  padding: 20px;
  width: 100%;
}
.opSlider .opSlider__list li.slick-slide .opSlider__info .opSlider__title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: "GenShinGothic-A-w", "CorporateLogo-w", "GenShinGothic-w", sans-serif;
}
.opSlider .opSlider__list li.slick-slide .opSlider__info .opSlider__day:before {
  content: "開催日";
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  background-color: #656565;
  color: #fff;
  padding: 5px;
  margin-right: 10px;
  vertical-align: bottom;
}

@keyframes bgMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -732px 732px;
  }
}
.titleSet {
  text-align: center;
}
.titleSet .titleSet__set {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 0 100px;
}
@media only screen and (max-width: 767px) {
  .titleSet .titleSet__set {
    padding: 0 30px;
    margin-bottom: 20px;
  }
}
.titleSet .titleSet__set:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("https://www.bac.ac.jp/assets/images/t_f_c.png") no-repeat;
  background-size: contain;
  width: 91px;
  height: 105px;
}
@media only screen and (max-width: 767px) {
  .titleSet .titleSet__set:before {
    width: 30px;
    height: 50px;
  }
}
.titleSet .titleSet__set:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  background: url("https://www.bac.ac.jp/assets/images/t_f_c.png") no-repeat;
  background-size: contain;
  width: 91px;
  height: 105px;
}
@media only screen and (max-width: 767px) {
  .titleSet .titleSet__set:after {
    width: 30px;
    height: 50px;
  }
}
.titleSet .titleSet__m {
  font-family: "Iceberg", cursive;
  font-size: 7.6rem;
  display: inline-block;
  font-style: italic;
  line-height: 1;
  color: #ff3f8c;
  -webkit-text-stroke: 1px #fff;
  color: #ff3f8c;
  text-shadow: 3px 3px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
@media only screen and (max-width: 767px) {
  .titleSet .titleSet__m {
    font-size: 4.2rem;
  }
}
.titleSet p {
  text-align: center;
  font-family: "GenShinGothic-A-w", "CorporateLogo-w", "GenShinGothic-w", sans-serif;
  font-size: 3rem;
  margin-top: -0.2em;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .titleSet p {
    font-size: 1.8rem;
  }
}
.titleSet p span {
  background: linear-gradient(transparent 20%, #fff 20%);
}
.titleSet.__color2 .titleSet__set:before {
  background-image: url("https://www.bac.ac.jp/assets/images/t_f_c2.png");
}
.titleSet.__color2 .titleSet__set:after {
  background-image: url("https://www.bac.ac.jp/assets/images/t_f_c2.png");
}
.titleSet.__color2 .titleSet__m {
  -webkit-text-stroke: 1px #abcd03;
  color: #fff;
  text-shadow: 3px 3px 0 #abcd03, -1px -1px 0 #abcd03, 1px -1px 0 #abcd03, -1px 1px 0 #abcd03, 1px 1px 0 #abcd03;
}

.bnr_area.bnr_area1 {
  margin: 0 0 80px;
}
.bnr_area.bnr_area2 {
  margin: 80px 0 0;
}
.bnr_area .bnr_column_2_1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(95%, 1300px);
  margin-inline: auto;
}
.bnr_area .bnr_column_2_1 a {
  width: 47%;
  text-decoration: none;
  color: inherit;
}
.bnr_area .bnr_column_2_1 a:hover {
  transform: translateY(2px) translateX(2px);
  opacity: 1;
}
.bnr_area .bnr_column_2_1 a img:hover {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .bnr_area .bnr_column_2_1 a {
    width: 90%;
    margin: 0 auto;
  }
}
.bnr_area .bnr_column_2_1 a:nth-child(1) {
  margin-bottom: 10px;
}