@charset "UTF-8";
@-webkit-keyframes scroll_anim {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-12px, 12px);
    opacity: 0;
  }
}
@keyframes scroll_anim {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-12px, 12px);
    opacity: 0;
  }
}

/*---------------------------------------------------
OZ RESET CSS
Author: ONZE
Author URI: http://on-ze.com
Version: 1.1
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
----------------------------------------------------*/
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  width: 100%;
  height: 100%;
}

body {
  line-height: 1;
  position: relative;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
}

article, aside, dialog, figure, footer, header, main, menu, nav, section {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

br,
hr {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

input,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333;
  background: #F2E4DB;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.-acc {
  color: #ED6C00;
}

.br-sp {
  display: none;
}

.br-tb {
  display: none;
}

.br-pc {
  display: block;
}

@media screen and (max-width: 65.125rem) {
  .br-pc {
    display: none;
  }
  .br-tb {
    display: block;
  }
}

@media screen and (max-width: 47.9375rem) {
  .br-tb {
    display: none;
  }
  .br-sp {
    display: block;
  }
}

.-accordionWrap {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.a-accordion_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 25rem;
  height: 2.25rem;
  border: 0.0625rem solid #fff;
  border-radius: 0.125rem;
  position: relative;
  margin: auto;
  margin-top: 1rem;
}

.a-accordion_btn ._inner {
  position: relative;
}

.a-accordion_btn ._inner i {
  position: absolute;
  top: 0.125rem;
  right: -1.25rem;
  bottom: 0;
  left: auto;
  width: 0.75rem;
  height: 0.75rem;
  margin: auto;
  background: url(../images/arrow.svg);
  transition: .6s;
}

.a-accordion_btn.open i {
  transform: rotate(180deg);
}

.js-AccordionModule {
  display: flex;
  flex-wrap: wrap;
}

.js-AccordionModule .-img_wrap {
  margin-top: 0.5rem;
}

.a-heading {
  font-size: 2.375rem;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 2.5rem;
}

.a-heading .-acc {
  font-size: 2.875rem;
}

@media screen and (max-width: 47.9375rem) {
  .a-heading {
    margin-bottom: 1.875rem;
  }
}

.o-spNav {
  pointer-events: none;
  position: fixed;
  width: 128px;
  max-width: 128px;
  height: 100%;
  z-index: 9999;
  left: 0;
  top: 0;
  padding-top: 0;
  padding-left: 30px;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  transition: background .4s;
  height: 0%;
}

.o-spNav.-sp {
  display: none;
  pointer-events: none;
}

.active .o-spNav {
  height: 100%;
  right: 0;
  z-index: 9999;
}

.o-spNav .menu-trigger {
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  position: fixed;
  top: 0;
  left: calc(100% - 5rem);
  transition: .4s;
  background: #F2E4DB;
  z-index: 1000;
}

.o-spNav .menu-trigger .toggle_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 2.625rem;
  height: 2rem;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.o-spNav .menu-trigger span {
  display: block;
  width: 2.625rem;
  height: 0.25rem;
  border-radius: 0.0625rem;
  background: #333;
  transition: .4s;
}

.o-spNav .menu-trigger.active {
  background: #fff;
}

.o-spNav .menu-trigger.active .toggle_wrap {
  width: 2.625rem;
  height: 2rem;
  justify-content: center;
}

.o-spNav .menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translateX(0.1875rem) translateY(0.125rem);
}

.o-spNav .menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.o-spNav .menu-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translateX(0.1875rem) translateY(-0.1875rem);
}

.o-spNav .o-spNavigation {
  width: 100%;
  transform: translateX(21.5625rem);
  overflow-y: scroll;
  height: 100vh;
  width: 21.5625rem;
  margin-right: 0;
  margin-left: auto;
  padding-bottom: 60px;
  text-align: left;
  background: #fff;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: all;
}

.active .o-spNav .o-spNavigation {
  opacity: 1;
  transform: translateX(0);
}

.o-spNav .o-spNavigation p {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 1.5625rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: calc(24 / 16);
  letter-spacing: .2em;
  color: #333;
}

.o-spNav .o-spNavigation p::after {
  content: "";
  position: absolute;
  width: 12.5rem;
  height: 0.0625rem;
  background: #333333;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.o-spNav .o-spNavigation .-recommend {
  width: 100%;
  max-width: 39.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  padding: 0 1.25rem;
  margin: auto;
  margin-bottom: 1.5rem;
}

.o-spNav .o-spNavigation .-recommend .item {
  flex: 0 0 auto;
  max-width: calc(50% - 0.25rem);
  flex-basis: calc(50% - 0.25rem);
  margin-bottom: 0.5rem;
}

.o-spNav .o-spNavigation .-recommend .item:not(:nth-child(2n + 1)) {
  margin-left: 0.5rem;
}

.o-spNav .o-spNavigation .-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  padding: 0 1.25rem;
  margin-bottom: 1.5rem;
}

.o-spNav .o-spNavigation .-links .item {
  flex: 0 0 auto;
  max-width: calc(50% - 0.25rem);
  flex-basis: calc(50% - 0.25rem);
  margin-bottom: 0.5rem;
  border: 0.0625rem solid #707070;
}

.o-spNav .o-spNavigation .-links .item:not(:nth-child(2n + 1)) {
  margin-left: 0.5rem;
}

.o-spNav .o-spNavigation .-links .item img {
  margin: auto;
}

.o-spNav .o-spNavigation_inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 4.375rem 1.25rem 0;
}

.o-spNav .spNavigation_item {
  flex: 0 0 auto;
  max-width: 50%;
  flex-basis: 50%;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  line-height: calc(24 / 16);
  letter-spacing: .2em;
  color: #333;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  border-left: 0.125rem solid #333333;
}

.o-spNav .menu-trigger {
  width: 3.75rem;
  height: 3.75rem;
  left: calc(100% - 3.75rem);
}

.o-spNav .menu-trigger .toggle_wrap {
  width: 100%;
  height: 1.25rem;
}

.o-spNav .menu-trigger span {
  width: 1.5625rem;
  height: 0.125rem;
}

.o-spNav .menu-trigger.active .toggle_wrap {
  width: 100%;
  height: 100%;
  padding-left: 10px;
}

.o-spNav .menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translateX(0rem) translateY(0.25rem);
}

.o-spNav .menu-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translateX(-0.0625rem) translateY(-0.1875rem);
}

.o-spNav .-img_wrap {
  padding: 3.75rem 1.5rem 0;
  margin-bottom: 1.25rem;
}

.o-spNav .m-sns {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.o-spNav .m-sns .-item {
  margin: 0 1rem;
}

.o-spNav .-copyright {
  display: flex;
  justify-content: center;
  margin: auto;
  padding-bottom: 2rem;
}

@media screen and (max-width: 65.125rem) {
  .o-spNav .menu-trigger.active .toggle_wrap {
    padding-left: 0.375rem;
  }
  .o-spNav.-sp {
    display: block;
  }
}

@media screen and (max-width: 47.9375rem) {
  .o-spNav .menu-trigger {
    width: 3.25rem;
    height: 3.25rem;
    left: calc(100% - 3.25rem);
    background: transparent;
  }
  .o-spNav .menu-trigger.active {
    background: transparent;
  }
  .o-spNav .o-spNavigation {
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
  }
}

.m-Watermark {
  position: relative;
  z-index: 100;
  width: 100%;
}

.m-Watermark .-float {
  position: relative;
}

.m-Watermark .m-Watermark_inner {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.m-Watermark .m-Watermark_inner .img_wrap {
  position: absolute;
  pointer-events: none;
}

.m-Watermark .m-Watermark_inner .no_1 {
  top: 2.25rem;
  right: 10.75rem;
}

.m-Watermark .m-Watermark_inner .no_2 {
  left: -0.5rem;
  bottom: 2.25rem;
  transform: rotate(-1deg);
}

.o-About {
  position: relative;
  width: 100%;
  padding: 7.5rem 1rem 14.375rem;
}

.o-About .a-heading {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1000;
}

.o-About .-txt {
  width: 100%;
  max-width: 39.375rem;
  background-color: #fff;
  padding: 2rem;
  margin: auto;
  font-weight: 500;
  font-size: 1rem;
  line-height: calc(35/14);
  position: relative;
  z-index: 1000;
}

.o-About .-img_wrap {
  position: absolute;
  margin: auto;
  z-index: 100;
  width: 22.75rem;
  height: 15rem;
}

.o-About .no_1 {
  top: 0;
  right: 0;
}

.o-About .no_2 {
  top: 6.25rem;
  left: 0;
}

.o-About .no_3 {
  right: 11.25rem;
  bottom: 5rem;
}

@media screen and (max-width: 48rem) {
  .o-About {
    padding: 3.75rem 1rem 4.5rem;
  }
  .o-About .-txt {
    line-height: calc(32/14);
    margin-bottom: 1.5rem;
    background: none;
    padding: 0;
  }
  .o-About .-img_wrap {
    position: relative;
    width: auto;
    max-width: 22.75rem;
    max-height: 15rem;
  }
  .o-About .-About_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
  }
  .o-About .no_1 {
    display: none;
  }
  .o-About .no_2 {
    display: none;
  }
  .o-About .no_3 {
    right: auto;
    bottom: auto;
  }
}

.o-Articles {
  width: 100%;
  padding: 4.5rem 1rem 6rem;
  margin-bottom: 5rem;
  background: url(../images/Articles/bg_art.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #F2E4DB;
  box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.48);
}

.o-Articles .a-heading {
  margin-bottom: 0rem;
}

.o-Articles .-txtBox {
  position: relative;
  width: 100%;
  max-width: 40.625rem;
  margin: auto;
  padding-top: 2.5rem;
}

.o-Articles .m-Articles {
  padding-bottom: 2.5rem;
}

.o-Articles .m-Articles .-item {
  font-size: 1rem;
  font-weight: 500;
  line-height: calc(38/26);
  margin-bottom: 2.5rem;
}

.o-Articles .m-Articles .-em {
  font-size: 1.375rem;
}

.o-Articles .-num {
  font-size: 1.625rem;
}

.o-Articles .-img_wrap {
  position: absolute;
  margin: auto;
  z-index: 100;
  width: 8.125rem;
  height: 8.125rem;
}

.o-Articles .no_1 {
  top: 0;
  left: -9.375rem;
}

.o-Articles .no_2 {
  top: 4.5rem;
  right: -9.375rem;
}

.o-Articles .no_3 {
  top: 8.5rem;
  left: -9.375rem;
}

.o-Articles .no_4 {
  top: 13rem;
  right: -9.375rem;
}

.o-Articles .-article05 {
  width: 100%;
  max-width: 46.875rem;
  margin: auto;
  padding: 0.375rem 1.125rem 0.625rem;
  background: #F2E4DB;
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
}

.o-Articles .-article05 .-num {
  font-size: 2.125rem;
}

@media screen and (max-width: 65.125rem) {
  .o-Articles {
    padding: 2.5rem 0 3.75rem;
  }
  .o-Articles .a-heading {
    margin-bottom: 1.25rem;
  }
  .o-Articles .-txtBox {
    max-width: 100%;
    padding-top: 0rem;
  }
  .o-Articles .m-Articles {
    margin-top: 1.5rem;
  }
  .o-Articles .-img_wrap {
    display: inline-block;
    position: relative;
    width: 6.25rem;
    height: 6.25rem;
    top: auto;
    left: auto;
    right: auto;
  }
  .o-Articles .-img_wrap .-Articles_img {
    height: 100%;
  }
  .o-Articles .-img_wrap:not(:nth-child(1)) {
    margin-left: 0.5rem;
  }
  .o-Articles .-article05 {
    display: inline-block;
    width: auto;
    max-width: 46.875rem;
    margin: auto;
    padding: 0.875rem 1.25rem 1.75rem;
  }
  .o-Articles .-article05 .-num {
    display: block;
  }
}

@media screen and (max-width: 47.9375rem) {
  .o-Articles .a-heading {
    font-size: 1.7rem;
  }
  .o-Articles .a-heading .-acc {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }
  .o-Articles .m-Articles {
    padding-bottom: 0.75rem;
  }
  .o-Articles .m-Articles .-item {
    font-size: 0.875rem;
    line-height: calc(29/14);
    margin-bottom: 1.5rem;
  }
  .o-Articles .m-Articles .-em {
    font-size: 1.3125rem;
    line-height: calc(29/21);
  }
  .o-Articles .-num {
    display: block;
    font-size: 1.5rem;
    line-height: calc(29/24);
  }
  .o-Articles .-img_wrap {
    width: 4rem;
    height: 4rem;
  }
  .o-Articles .-article05 {
    width: calc(100% -32px);
    max-width: 25rem;
    margin: auto 1rem;
    font-size: 1.25rem;
    line-height: calc(27/20);
  }
  .o-Articles .-article05 .-num {
    font-size: 2rem;
    line-height: calc(27/32);
  }
}

.o-Event {
  background: #69482F;
  padding: 3.75rem 0;
  box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.48);
  margin-bottom: 5rem;
  color: #F2E4DB;
}

.o-Event .m-mainEvent {
  width: 100%;
  max-width: 65.125rem;
  margin: auto;
  padding: 0 1rem;
}

.o-Event .-heading {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 1rem;
  text-align: left;
}

.o-Event .-txt {
  line-height: 2;
  padding: 2rem 0.625rem 4.625rem;
}

.o-Event .-contain {
  width: 100%;
  height: auto;
}

.o-Event .m-eventArchive {
  width: 100%;
  max-width: 65.125rem;
  margin: auto;
  padding: 0 1rem;
}

.o-Event .-bnr_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.o-Event .-bnr_items .-img_wrap {
  flex: 0 0 auto;
  max-width: calc(100%/3 - 2rem/3);
  flex-basis: calc(100%/3 - 2rem/3);
}

.o-Event .-bnr_items .-img_wrap:not(:nth-child(3n)) {
  margin-right: 1rem;
}

.o-Event .-bnr_items .-img_wrap:not(:nth-child(n + 4)) {
  margin-bottom: 1rem;
}

.o-Event .-bnr_items .-img_wrap .-bnr_img {
  position: relative;
  height: 0;
  padding-top: calc(400/1010*100%);
}

.o-Event .-bnr_items .-img_wrap .-bnr_img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 65.125rem) {
  .o-Event {
    padding-top: 3rem;
  }
  .o-Event .-txt {
    line-height: calc(24/14);
    padding: 0.8125rem 0 2.5rem;
  }
  .o-Event .-bnr_items .-img_wrap {
    max-width: calc(100%/2 - 0.5rem/2);
    flex-basis: calc(100%/2 - 0.5rem/2);
  }
  .o-Event .-bnr_items .-img_wrap:not(:nth-child(3n)) {
    margin-right: 0rem;
  }
  .o-Event .-bnr_items .-img_wrap:not(:nth-child(n + 4)) {
    margin-bottom: 0rem;
  }
  .o-Event .-bnr_items .-img_wrap:nth-child(odd) {
    margin-right: 0.5rem;
  }
  .o-Event .-bnr_items .-img_wrap:nth-child(n + 2) {
    margin-bottom: 0rem;
  }
}

footer {
  position: relative;
  width: 100%;
  max-width: 85.375rem;
  padding: 0 1rem;
  margin: auto;
}

footer .-top_btn {
  position: absolute;
  bottom: 3.375rem;
  right: 2.5rem;
}

footer .-footer_flex {
  display: flex;
  width: 100%;
  max-width: 48rem;
  justify-content: center;
  align-items: start;
  margin: auto;
  margin-bottom: 2rem;
}

footer .-flex_column {
  flex: 0 0 auto;
}

footer .-flex_column:nth-child(1) {
  max-width: 37.25rem;
  flex-basis: 37.25rem;
  border-right: 0.0625rem solid #AA7354;
  padding-right: 2.5rem;
}

footer .-flex_column:nth-child(2) {
  max-width: 10.5rem;
  flex-basis: 10.5rem;
  padding-left: 2.5rem;
}

footer .-flex_column p {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 1rem;
}

footer .-recommend {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  margin-bottom: 1.5625rem;
}

footer .-recommend .item {
  flex: 0 0 auto;
  max-width: 10.625rem;
  flex-basis: calc(33% - 0.5rem*2/3);
  margin-bottom: 0.5rem;
}

footer .-recommend .item:not(:nth-child(3n+1)) {
  margin-left: 0.5rem;
}

footer .-links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
}

footer .-links .item {
  flex: 0 0 auto;
  max-width: 11.25rem;
  flex-basis: calc(33% - 0.5rem*2/3);
  margin-bottom: 0.5rem;
}

footer .-links .item:not(:nth-child(3n+1)) {
  margin-left: 0.5rem;
}

footer .-links .item:nth-child(n+3) {
  margin-bottom: 0;
}

footer .o-Navigation {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  padding-top: 1.875rem;
  margin-bottom: 1.875rem;
}

footer .o-Navigation .-navItem {
  height: 1.3125rem;
  flex: 0 0 auto;
  max-width: 100%;
  flex-basis: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 1.1875rem;
  -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(255, 255, 255, 0.73));
          filter: drop-shadow(0 0.1875rem 0.375rem rgba(255, 255, 255, 0.73));
}

footer .m-snsItems {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
}

footer .m-snsItems .-item:nth-child(2) {
  margin-left: 1.5rem;
}

footer .m-link_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

footer .m-link_logo .-item:nth-child(1) {
  height: 3.375rem;
}

footer .m-link_logo .-item:not(:nth-child(1)) {
  margin-left: 2.5rem;
}

footer .-copyright {
  flex: 100%;
  font-size: 0.75rem;
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  padding-bottom: 1.25rem;
}

@media screen and (max-width: 65.125rem) {
  footer .-top_btn {
    right: 1rem;
  }
  footer .-footer_flex {
    padding: 0 1.25rem;
  }
  footer .-flex_column:nth-child(1) {
    max-width: 31.25rem;
    flex-basis: 31.25rem;
  }
}

@media screen and (max-width: 47.9375rem) {
  footer .-top_btn {
    top: auto;
    bottom: 10rem;
  }
  footer .o-Navigation {
    margin: auto;
    margin-bottom: 2rem;
    justify-content: center;
    padding-top: 0;
  }
  footer .o-Navigation .-navItem {
    max-width: auto;
    flex-basis: auto;
    display: flex;
    align-items: center;
    height: 1rem;
    margin-right: 1.25rem;
    padding-right: 1.1875rem;
    border-right: 0.0625rem solid #000;
  }
  footer .o-Navigation .-navItem:not(:nth-child(1)) {
    margin-left: 0rem;
  }
  footer .o-Navigation .-navItem:last-child {
    margin-right: 0.625rem;
  }
  footer .m-link_logo {
    margin-bottom: 1.5rem;
  }
  footer .m-link_logo .-item:not(:nth-child(1)) {
    margin-left: 1.25rem;
  }
  footer .m-link_logo img {
    height: 100%;
  }
  footer .m-snsItems {
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  footer .-copyright {
    font-size: 0.625rem;
    padding-bottom: 1.375rem;
  }
  footer .-footer_flex {
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
  }
  footer .-flex_column:nth-child(1) {
    display: none;
    max-width: 100%;
    flex-basis: 100%;
    border-right: none;
    padding-right: 0;
  }
  footer .-flex_column:nth-child(2) {
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
  }
}

.o-header .-logo {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.875rem;
  height: 7.5rem;
  background: #F2E4DB;
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16);
  z-index: 1000;
}
.o-MainVisual   .header-text{
  position: absolute;
  top: 40px;
  right: 104px;
  display: flex;
  justify-content: center;
font-size: 16px;
font-weight: 700;
line-height: 23px;
letter-spacing: 0em;
text-align: left;
color: #fff;
z-index: 10;
}
@media screen and (max-width: 47.9375rem) {
  .o-header {
    position: fixed;
    width: 100%;
    height: 3.25rem;
    background: #F2E4DB;
    z-index: 9999;
  }
  .o-header .-logo {
    top: 0;
    left: 0.5rem;
    width: 5rem;
    height: 100%;
    padding: 0.9375rem 0;
    box-shadow: none;
  }
  .o-MainVisual .header-text{
    right: auto;
    top: 60px;
    left: 20px;
font-size: 12px;
line-height: 17px;
color: #333;
}
}

.o-MainVisual {
  position: relative;
  height: 100vh;
  min-height: 37.5rem;
  overflow: hidden;
}

.o-MainVisual .-MainVisual_img_wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 2.5rem);
  overflow: hidden;
}

.o-MainVisual .-MainVisual_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.o-MainVisual .-MainVisual_img .-cover {
  width: 100%;
}

.o-MainVisual .m-mainView_bg {
  width: calc(100% - 4.5rem);
  margin-left: 0;
  position: relative;
}

.o-MainVisual .m-mainView_bg .-gradidient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.875rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1000;
}

.o-MainVisual .-flexWrap {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1000;
  margin-bottom: 2rem;
}

.o-MainVisual .-bnr {
  margin-left: 2.5rem;
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16);
}

.o-MainVisual .m-lpLinks {
  width: 100%;
  max-width: 39.625rem;
  display: flex;
  justify-content: flex-end;
  margin-right: 2rem;
}

.o-MainVisual .m-lpLinks .-item {
  margin-right: 2rem;
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.16);
}

.o-MainVisual .m-lpLinks .-item:last-child {
  margin-right: 0;
}

.o-MainVisual .m-mainView_nav {
  padding-top: 5rem;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  height: 100%;
  max-width: 4.5rem;
  margin: auto;
}

.o-MainVisual .m-mainView_nav .-items {
  max-width: 4.5rem;
  max-height: 14.375rem;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.o-MainVisual .m-mainView_nav .-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: auto;
  flex: 0 1 auto;
  padding: 0.125rem 0;
  font-size: 0.875rem;
  letter-spacing: .2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  cursor: pointer;
}

.o-MainVisual .m-mainView_nav .-item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.1875rem;
  margin: auto;
  width: 0.125rem;
  height: 100%;
  background-color: #69482F;
}

.o-MainVisual .m-snsItems {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  width: 100%;
  max-width: 4.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 1000;
  margin-bottom: 0.375rem;
}

.o-MainVisual .m-snsItems .-item {
  flex: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 74.9375rem) {
  .o-MainVisual .-flexWrap {
    max-width: 25rem;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 0 1.25rem;
  }
  .o-MainVisual .-bnr {
    margin-left: 0;
  }
  .o-MainVisual .m-lpLinks {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .o-MainVisual .m-lpLinks .-item {
    margin-right: 0.5rem;
  }
  .o-MainVisual .m-lpLinks .-item:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 65.125rem) {
  .o-MainVisual .-bnr {
    width: 100%;
    max-width: 25rem;
    right: 0;
    left: 0;
    margin: auto;
  }
  .o-MainVisual .m-mainView_bg {
    width: calc(100% - 3.75rem);
  }
  .o-MainVisual .m-mainView_nav {
    padding-top: 5rem;
    max-width: 3.75rem;
  }
  .o-MainVisual .m-mainView_nav .-items {
    max-width: 3.75rem;
  }
  .o-MainVisual .m-snsItems {
    max-width: 3.75rem;
  }
}

@media screen and (max-width: 47.9375rem) {
  .o-MainVisual .-MainVisual_img_wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  .o-MainVisual .m-mainView_bg {
    width: 100%;
  }
  .o-MainVisual .m-snsItems,
  .o-MainVisual .m-mainView_nav {
    display: none;
  }
}

.o-News {
  background: #E7D6C9;
  padding: 3.75rem 0 0;
  box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.48);
}

.o-News .m-News_wrap {
  width: 100%;
  max-width: 65.125rem;
  margin: auto;
  padding: 0 1rem;
  margin-bottom: 3.75rem;
}

.o-News .m-News_wrap .-scroll_wrapper {
  padding: 1.5rem;
  padding-right: 0.625rem;
  background: #fff;
}

.o-News .m-News_wrap .-scroll_inner {
  font-family: YuGothic, 'Yu Gothic', sans-serif;
  font-weight: 500;
  padding-right: 0.4375rem;
  overflow: hidden;
  overflow-y: scroll;
  height: 20.375rem;
}

.o-News .m-News_wrap .-scroll_inner::-webkit-scrollbar {
  width: 0.4375rem;
  height: 5rem;
}

.o-News .m-News_wrap .-scroll_inner::-webkit-scrollbar-track {
  background: #fff;
}

.o-News .m-News_wrap .-scroll_inner::-webkit-scrollbar-thumb {
  border-radius: 0.125rem;
  background: #333333;
}

.o-News .-news_item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-bottom: 0.0625rem solid #AA7354;
  margin-bottom: 1.5rem;
}

.o-News .-news_item.-tab::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: url(../images/tab.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.o-News .-news_item .-head {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.o-News .-news_item .-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 1.5rem;
  background: #AA7354;
  color: #FFFFFF;
  padding: 0 0.9375rem;
  margin-left: 0.5rem;
}

.o-News .-news_item .-text {
  text-align: left;
  line-height: 1.5;
  padding-bottom: 1.25rem;
}

.o-Sns {
  background: #E7D6C9;
  padding: 3.75rem 0;
  box-shadow: 0 0.1875rem 0.625rem 0 rgba(0, 0, 0, 0.48);
  margin-bottom: 5rem;
}

.o-Sns .-Sns_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 65.125rem;
  margin: auto;
  padding: 0 1rem;
}

.o-Sns .-Sns_inner .-item {
  flex: 1 0 auto;
  max-width: 30.1875rem;
  flex-basis: calc(495/1042*100%);
}

.o-Sns .-Sns_inner .-more {
  display: block;
  width: 100%;
  text-align: right;
  margin-top: 0.75rem;
  position: relative;
  z-index: 100;
}

.o-Sns .fb-page span {
  overflow: hidden;
  margin-bottom: -4.3125rem;
}

.o-Sns .fb-page iframe {
  transform: translateY(-4.3125rem);
}

.o-Sns .-sns_name {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .2em;
  margin-bottom: 1rem;
  -webkit-filter: drop-shadow(0 0.1875rem 0.375rem rgba(255, 255, 255, 0.73));
          filter: drop-shadow(0 0.1875rem 0.375rem rgba(255, 255, 255, 0.73));
}

.o-Sns .m-insta {
  margin-right: 2rem;
}

.o-Sns .m-insta img {
  max-width: 100%;
  height: auto;
}

.o-Sns .m-insta .gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 30.1875rem;
  margin: auto;
  padding: 0;
}

.o-Sns .m-insta .gallery-item {
  flex: 0 0 auto;
  max-width: 9.6875rem;
  flex-basis: calc(100%/3 - 1rem/3);
}

.o-Sns .m-insta .gallery-item:not(:nth-child(3n)) {
  margin-right: 0.5rem;
}

.o-Sns .m-insta .gallery-item:nth-child(n + 4) {
  margin-top: 0.5rem;
}

@media screen and (max-width: 65.125rem) {
  .o-Sns .-Sns_inner .-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .o-Sns .-Sns_inner .-more {
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 0.75rem;
    position: relative;
    z-index: 100;
  }
}

.p-renewal_LP .o-Message {
  padding-top: 10rem;
}

.p-renewal_LP .o-Schools,
.p-renewal_LP .o-Special,
.p-renewal_LP .o-Background {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 65.125rem) {
  .p-renewal_LP .o-Message {
    padding-top: 5rem;
  }
  .p-renewal_LP .o-Schools {
    padding-top: 5rem;
    padding-bottom: 6.25rem;
  }
  .p-renewal_LP .o-Special,
  .p-renewal_LP .o-Background {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.u-bullet-arrowCircle {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  background: url(../images/arrow_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  margin-right: 0.3125rem;
}

.u-Flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.o-MainNavigation .u-Flex-center {
  max-width: 67.5rem;
  margin: auto;
}

.o-MainNavigation .u-Flex-center .u-Flex_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex: 0 0 25%;
  height: 100%;
}

.u-Flex-space-between {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.u-Flex-space-between .u-Flex_content {
  display: flex;
  align-items: center;
}

.o-internalLinks .u-Flex-space-between {
  flex-wrap: wrap;
}

.m-GlobalNavigation_L .u-Flex-space-between {
  flex-wrap: wrap;
  align-items: flex-start;
}

.u-Flex-flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.u-Flex-flex-start .u-Flex_content {
  display: flex;
  align-items: center;
  margin-right: 1.875rem;
}

.m-InterviewList .u-Flex-flex-start {
  flex-wrap: wrap;
  align-items: flex-start;
}

.m-InterviewList .u-Flex-flex-start .u-Flex_content {
  margin-right: 1.5rem;
}

.m-InterviewList .u-Flex-flex-start .u-Flex_content:nth-child(4n) {
  margin-right: 0;
}

.u-Flex-end {
  display: flex;
  justify-content: end;
  align-items: center;
}

.u-Flex-end .u-Flex_content {
  display: flex;
  align-items: center;
  margin-right: 1.875rem;
}

@media screen and (max-width: 74.9375rem) {
  .o-MainNavigation .o-MainNavigation_inner {
    max-width: 48rem;
  }
}

@media screen and (max-width: 47.9375rem) {
  .m-InterviewList .u-Flex-flex-start .u-Flex_content {
    margin-right: 0.625rem;
  }
  .m-InterviewList .u-Flex-flex-start .u-Flex_content:nth-child(2n) {
    margin-right: 0;
  }
}

.u-fz20 {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: .04em;
  line-height: calc(35/20);
}

.u-fz16 {
  font-size: 1rem;
  letter-spacing: .04em;
  line-height: calc(24/16);
}

.u-fz14 {
  font-size: 1rem;
  letter-spacing: .04em;
  line-height: calc(24/16);
}

.u-fz12 {
  font-size: 1rem;
  letter-spacing: .04em;
  line-height: calc(24/16);
}

.u-hover {
  transition: .6s;
}

.u-hover img {
  transition: .2s;
}

.u-hover:hover {
  opacity: .4;
}

.u-hover:hover img {
  opacity: .4;
}

@media screen and (max-width: 47.9375rem) {
  .u-hover:hover {
    opacity: 1;
  }
  .u-hover:hover img {
    opacity: 1;
  }
}

/*!
 * jquery.modal.css inline
**/
.blocker, .modal {
  box-sizing: border-box;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 100%, 40% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%, 100%, 40% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/*!
/* youtube video */
.vdo-unit {
  list-style: none;
  font-size: 0;
  padding: 0;
}

.pkg {
  vertical-align: top;
  display: inline-block;
  width: 50%;
}

.pkg .txt-ttl {
  font-size: 1.1rem;
}

.pkg .txt-txt {
  font-size: 1rem;
}

.vdo-base {
  position: relative;
}

.modal-open {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
}

.vdo-body {
  max-width: 100%;
  height: auto;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.vdo-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* modal */
.blocker {
  z-index: 11;
}

.modal {
  background-color: #242424;
  border-radius: 4px;
  max-width: 1200px;
  padding: 10px;
}

.modal-window .vdo-txt {
  margin-left: 3%;
}

.modal-window .vdo-txt .txt-ttl {
  margin-top: -.2rem;
}

.modal-window .vdo-txt .txt-txt {
  margin-bottom: .4rem;
}

.modal a.close-modal {
  background-color: #000;
  border: 2px solid #242424;
  border-radius: 50%;
  display: block;
  width: 26px;
  height: 26px;
  padding: 30px 30px 0 0;
  overflow: hidden;
  position: absolute;
  top: -13px;
  right: -13px;
}

.modal a.close-modal:hover {
  background-color: #424242;
}

.modal a.close-modal::before,
.modal a.close-modal::after {
  background-color: #999;
  content: '';
  display: block;
  width: 2px;
  height: 24px;
  margin-left: -1px;
  position: absolute;
  top: 3px;
  left: 50%;
}

.modal a.close-modal::before {
  transform: rotate(-45deg);
}

.modal a.close-modal::after {
  transform: rotate(45deg);
}

/* *****
   *  */
/* SP */
@media screen and (max-width: 65.125rem) {
  .pkg {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .pkg {
    display: block;
    width: 100%;
  }
  .modal-open {
    display: none;
  }
}

.lazyload,
.lazyloading {
  opacity: 0;
  transition-delay: .4s;
}

.lazyload.-fadeIn,
.lazyloading.-fadeIn {
  transform: translateY(3rem);
}

.lazyloaded {
  opacity: 1;
  transition: 1s;
}

.lazyloaded.-fadeIn {
  transform: translateY(0);
}

.u-mb60 {
  margin-bottom: 3.75rem;
}

.u-mb120 {
  margin-bottom: 7.5rem;
}

@media screen and (max-width: 65.125rem) {
  .u-mb60 {
    margin-bottom: 1.875rem;
  }
  .u-mb120 {
    margin-bottom: 3.75rem;
  }
}

.u-MaxWidth-1080 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75rem) {
  .u-MaxWidth-1080 {
    max-width: 67.5rem;
  }
}

@media screen and (max-width: 74.9375rem) {
  .u-MaxWidth-1080 {
    max-width: 48rem;
  }
}

@media screen and (max-width: 65.125rem) {
  .u-MaxWidth-1080 {
    max-width: 36.75rem;
  }
}

@media screen and (max-width: 47.9375rem) {
  .u-MaxWidth-1080 {
    padding: 0 0.625rem;
  }
}

.u-objectFit {
  display: block;
  line-height: 0;
}

.u-objectFit .-cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.u-objectFit .-contain {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: 'object-fit: contain;';
}

.js-scroll-blur {
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
}

.js-scroll-blur.is-animation {
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: ease;
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.u-visiblity-hidden {
  /* コンテンツの流れから切り離す */
  position: absolute;
  /* 誤ったコードに対処するための回避策 */
  white-space: nowrap;
  /* 可能な限り文字サイズを小さくするための処理
     * (スクリーンリーダー中には height と width が 0 のものを無視するため)
     */
  width: 1px;
  height: 1px;
  /* オーバーフローしているコンテンツを隠す */
  overflow: hidden;
  /* 要素サイズを変更しうるプロパティのリセット */
  border: 0;
  padding: 0;
  /* 要素のどの部分が表示されるかを定義するもの */
  /* 古いブラウザでは使用できない */
  clip: rect(0 0 0 0);
  /* 最近のブラウザ用
     * コンテンツを非表示にする設定  */
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  /* 今現在なぜ-1pxがここで設定されるかは分かっていないそうです。
     * それに加えていくつか問題もあるそうです
     * (参考: https://github.com/h5bp/html5-boilerplate/issues/1985)
     */
  margin: -1px;
}
