@charset "UTF-8";
/*=======================================================
 1.0 -- Foundation
=========================================================*/
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Quicksand:wght@300;400;500;600;700&display=swap');
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul, ol {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul, ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: bottom;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: .01ms !important;
            transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

address {
  font-style: normal;
}

:root {
  --ff-text: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,sans-serif;
  --ff-marugo: "FOT-筑紫A丸ゴシック Std D"
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  color: #683f1d;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
  color: #683f1d;
  scroll-behavior: smooth;
  font-family: var(--ff-marugo);
  background-color: #fef8f2;
  background: url(../img/common/bg_body.png) repeat center/500px 500px, #fef8f2;
}

a {
  text-decoration: none;
  color: #683f1d;
  cursor: pointer;
}

picture {
  display: block;
}

img {
  vertical-align: middle;
  height: auto;
}

img.cover, video.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

#container {
  overflow: hidden;
}

.inner {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

*:focus-visible {
  outline: 1px solid #111111;
}

button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 5;
}

/* responsive
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*=======================================================
 2.0 -- Common
=========================================================*/
/*-------------------------------------------------------
  common parts
-------------------------------------------------------*/
/*  font family
-----------------------------------------------------*/
.ff-text {
  font-family: var(--ff-text);
}

.fc-maincolor {
  color: #ed930f;
}

/* title
-----------------------------------------------------*/
.sec-title, .sec-subtitle {
  color: #683f1d;
  letter-spacing: 0.2em;
}

.sec-title .en-title, .sec-subtitle .en-title {
  color: #ebb75b;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}

.sub-en-title {
	font-size: 1.5rem;
}

.sec-title {
  font-size: 3.5rem;
  font-weight: bold;
}

.sec-title .en-title {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

.sec-subtitle {
  font-size: 2.1rem;
  font-weight: bold;
}

.sec-subtitle .en-title {
  font-family: var(--ff-text);
}

.vertical-title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

/* button
-----------------------------------------------------*/
.link-button {
  display: block;
  background: #ed930f;
  color: #fff;
  text-align: center;
  border-radius: 100rem;
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
  border: 2px solid #ed930f;
  font-size: 2.1rem;
  padding: 10px 0;
  letter-spacing: 0.1em;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.link-button.center {
  margin-right: auto;
  margin-left: auto;
}

.link-button:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.circle-button {
  border-radius: 50%;
}

/* layout
-----------------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex.-spacebetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.-aligncenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-center {
  text-align: center;
}

/* background point
-----------------------------------------------------*/
.bg-point {
  position: relative;
  z-index: 0;
}

.bg-point::after {
  content: '';
  display: block;
  position: absolute;
  width: 586px;
  height: 590px;
  background: url(../img/common/bg_point.png) no-repeat center/contain;
  z-index: 0;
}

.bg-point.point-left::after {
  left: -190px;
}

.bg-point.point-right::after {
  right: -190px;
}

/* margin, padding
-----------------------------------------------------*/
/* line-height
-----------------------------------------------------*/
.lh-2 {
  line-height: 2.375;
}




/* responsive
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 2.5rem;
  }
  .link-button {
    font-size: 1.6rem;
    padding: 0;
    padding: 10px 0;
  }
  .flex.sp-col1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex.sp-col1 > * {
    width: 100%;
    max-width: 100%;
  }
  .bg-point::after {
    width: 300px;
    height: 400px;
  }
  .bg-point.point-left::after {
    left: -150px;
  }
  .bg-point.point-right::after {
    right: -150px;
  }
}

/*-------------------------------------------------------
  Header
-------------------------------------------------------*/
/* header
-----------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}

/* globalnav
-----------------------------------------------------*/
.globalnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.globalnav-list li:not(:last-child) {
  margin-right: 25px;
}

.globalnav-list a {
  color: #231815;
  font-weight: bold;
}

/* Button */
.button-hamburger {
  position: absolute;
  top: 0;
  right: 2.5%;
  bottom: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #683f1d;
  margin: auto 0;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* IE非対応 */
}

.button-hamburger::after {
  content: 'MENU';
  position: absolute;
  color: #683f1d;
  font-size: 1rem;
  width: 100%;
  top: calc(100% + 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 4px;
  background-color: #fff;
}

.hamburger:before, .hamburger:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
  content: '';
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hamburger:before {
  top: -5px;
}

.hamburger:after {
  top: 5px;
}

@media screen and (min-width: 1024px) {
  .button-hamburger {
    display: none;
  }	
}

/* responsive
-----------------------------------------------------*/
@media screen and (max-width: 1024px) {
  .globalnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding-top: 90px;
    padding-right: 30px;
    padding-left: 30px;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
    overflow: auto;
    padding-bottom: 40px;
  }
  .globalnav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .globalnav-list li {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin-right: 0;
    width: 100%;
  }
  .globalnav-list li + * {
    margin-top: 15px;
  }
  .globalnav-list li a {
    display: block;
    color: #683f1d;
  }
  .globalnav-list li a::before {
    content: attr(data-entext);
    display: block;
    color: #ebb75b;
    font-size: 0.71429em;
    letter-spacing: 0;
  }
  .sp-wrap {
    position: relative;
  }
  .globalnav-sns {
    position: absolute;
    bottom: 00px;
    right: 20px;
  }
  .globalnav-sns li + * {
    margin-top: 10px;
  }
  .globalnav-line {
    background: #906c51;
    border-radius: 10px;
    padding: 15px 10%;
    color: #fff;
    font-size: 1.3rem;
    margin: 30px 0 80px ;
  }
  .globalnav-line .title {
    font-size: 2rem;
    position: relative;
    display: inline-block;
  }
  .globalnav-line .title::before {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background: url(../img/icon/line_white.svg) no-repeat center/contain;
    top: 20px;
    left: calc(100% + 40px);
  }
  .globalnav-line .title .en-title {
    color: #ebb75b;
    font-size: 1rem;
    display: block;
  }
  .globalnav-line .title + * {
    margin-top: 10px;
  }
  .globalnav-line .link-button {
    background: transparent;
    border: 1px solid #fff;
    margin-top: 10px;
    padding: 0;
  }
  .globalnav-line .link-button a {
       padding: 8px 0;
    color: #fff;
    font-size: 1.4rem;
    display: block;
}
  }
  .is-open .globalnav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .is-open .hamburger {
    background: transparent;
  }
  .is-open .hamburger::before, .is-open .hamburger::after {
    background: #fff;
    top: 0;
  }
  .is-open .hamburger::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .is-open .hamburger::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }


/*-------------------------------------------------------
  Footer
-------------------------------------------------------*/
/* footer
-----------------------------------------------------*/
.footer {
  background: #906c51;
  color: #fff;
  position: relative;
	    padding: 0 0 15px;

}

.footer-logo {
  width: 350px;
  max-width: 100%;
  padding: 40px 0;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  top: -80px;
  background: #906c51;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-sns {
  position: absolute;
  bottom: 30px;
  right: 100px;
  text-align: center;
  font-size: 1rem;
}

.footer-sns-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.footer-sns-list li {
  width: 24px;
  margin: 0 10px;
}

.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
  margin-top: -50px;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border-radius: 50%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.pagetop:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* responsive
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 80px;
  }
  .footer-logo {
    padding: 20px 0;
    width: 200px;
    top: -120px;
  }
  .footer-logo img {
    width: 65px;
  }
  .footer-sns {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
	  bottom: 70px;
  }
.footer-copyright {

    margin-top: -20px;
}
  .pagetop {
    width: 50px;
    height: 50px;
    right: 10px;
  }
}

/*=======================================================
 3.0 -- Pages
=========================================================*/
/*
  3.1 -- top
---------------------------------------------------------*/
/*  mainvisual
-----------------------------------------------------*/
.top-mv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.top-mv-slider {
  width: 100%;
  height: 100%;
}

.top-mv-slider.slick-slider .slick-track,
.top-mv-slider.slick-slider .slick-list {
  width: 100%;
  height: 100%;
}

.top-mv-slider .slider-item {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s linear,-webkit-transform 10s ease;
  transition: opacity 1s linear,-webkit-transform 10s ease;
  transition: transform 10s ease,opacity 1s linear;
  transition: transform 10s ease,opacity 1s linear,-webkit-transform 10s ease;
  background-image: url(../img/top/mv_img.jpg);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 0;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}

.top-mv-slider .slider-item.slick-current, .top-mv-slider .slider-item.is-active {
  -webkit-animation: zoom 20s forwards linear;
          animation: zoom 20s forwards linear;
  z-index: 1;
  opacity: 1;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

.top-mv-slider .slider-item:nth-child(1) {
  background-image: url(../img/top/mv_img.jpg);
}

.top-mv-slider .slider-item:nth-child(2) {
  background-image: url(../img/top/mv_img02.jpg);
}

.top-mv-slider .slider-item:nth-child(3) {
  background-image: url(../img/top/mv_img03.jpg);
}

.top-mv-cta {
  position: absolute;
  width: 271px;
  height: 271px;
  border-radius: 50%;
  background: url(../img/common/bg_body.png) repeat center/500px 500px, #fef8f2;
  -webkit-box-shadow: 5px -4px 10px 2px rgba(0, 0, 0, 0.35);
          box-shadow: 5px -4px 10px 2px rgba(0, 0, 0, 0.35);
  bottom: -100px;
  left: 0;
  text-align: center;
  padding-top: 50px;
  font-weight: bold;
}

.top-mv-cta .cta-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 16px;
}

.top-mv-cta .cta-button img {
  height: 60px;
  width: auto;
}

.top-mv-cta .link-button {
  padding: 10px 20px;
  font-size: 1rem;
  width: 115px;
  margin-right: 10px;
  margin-left: 10px;
}

/*  concept
-----------------------------------------------------*/
.top-concept {
  padding: 120px 0 150px;
}

.top-concept.bg-point::after {
  bottom: 0;
}

.top-concept .bg-point.point-left::after {
  bottom: -150px;
  z-index: -1;
}

.top-concept-img {
  margin-top: 75px;
  position: relative;
  max-width: 516px;
}

.top-cencept-button {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #ed930f;
  width: 165px;
  height: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.5;
  padding-top: 10px;
  color: #fff;
  text-align: center;
  font-size: 2.1rem;
  -webkit-transform: translate(50%, 35px);
      -ms-transform: translate(50%, 35px);
          transform: translate(50%, 35px);
}

.top-cencept-button .icon {
  margin-top: 10px;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.top-cencept-button::after {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px dashed #ed930f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: button-circle infinite 20s linear;
          animation: button-circle infinite 20s linear;
}

@-webkit-keyframes button-circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes button-circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.top-cencept-button:hover .icon {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.top-cencept-icon {
  position: absolute;
  bottom: -20px;
  left: 0;
}

/*  policy
-----------------------------------------------------*/
.top-policy.bg-point::after {
  bottom: -200px;
}

.top-policy-list {
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-policy-item {
  width: calc(33.3% - 25px);
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 0 30px;
}

.top-policy-item:nth-child(2) {
  margin-top: 60px;
}

.top-policy-text {
  margin-top: 20px;
  font-size: 1.4rem;
	letter-spacing: 0.08em;
	text-align: justify;
	line-height: 2;
}

/* school
-----------------------------------------------------*/
.top-school {
	 margin-top: 100px;
 	background-repeat: no-repeat;
 	background-position: center bottom 50px;
 	background-image: url(../img/top/school_bg.png);
 	background-size: 1440px auto;
 	padding-bottom: 550px;
}

}

.top-school .bg-point.point-left::after {
  left: -350px;
  bottom: -850px;
}

.top-school-message {
  margin-top: 35px;
}

.top-school-button {
  width: 240px;
  margin-top: 40px;
}

/*  member ship
-----------------------------------------------------*/
.menbership_bannar{
	margin-right: auto;
  margin-left: auto;
	margin-bottom: 140px;
	max-width: 650px;
	width: 90%;
}


/*  news
-----------------------------------------------------*/
.top-news {
  background: #906c51;
  position: relative;
  padding-bottom: 100px;
}

.top-news-title {
  background: #906c51;
  width: 356px;
  padding: 48px 0;
  text-align: center;
  border-radius: 50%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  top: -70px;
}

.top-news-title .sec-title {
  color: #fff;
}

.top-news-list {
  margin-top: -50px;
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
}

.top-news-list .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px;
}

.top-news-list .flex:not(:last-child) {
  border-bottom: 1px dashed #e0e1e1;
}

.top-news-list dt {
  color: #ebb75b;
  font-size: 1.4rem;
  width: 110px;
}

.top-news-list dd {
  width: calc(100% - 110px);
}

.top-news-list dd a {
  color: #fff;
}




/*  line
-----------------------------------------------------*/
.top-line {
  background: url(../img/top/line_bg.jpg) no-repeat center/cover;
  color: #fff;
  position: relative;
}

.top-line .inner {
  padding-top: 130px;
  padding-bottom: 240px;
  position: relative;
}

.top-line .sec-title {
  color: #fff;
}

.top-line a {
  color: inherit;
}

.top-line a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.top-line:hover a::before {
  opacity: 1;
}

.top-line-sp {
  width: 320px;
  height: 620px;
  background: url(../img/top/line_img.png) no-repeat center/100% auto;
  padding: 60px 30px 60px;
  position: absolute;
  bottom: -100px;
  right: 0;
}

.top-line-sp-inner {
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.top-line-sp-inner .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-line-sp-inner .message + * {
  margin-top: 20px;
}

.top-line-sp-inner .message .img {
  width: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.top-line-sp-inner .message p {
  border-radius: 20px;
  padding: 15px 10px;
  position: relative;
  color: #231815;
  font-size: 1rem;
}

.top-line-sp-inner .message p::before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 20px;
  border-color: transparent transparent  transparent #fbd9bd;
  top: 15px;
  right: -20px;
}

.top-line-sp-inner .message.staff p {
  background: #fbd9bd;
  margin-right: 10px;
}

.top-line-sp-inner .message.customer {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top-line-sp-inner .message.customer p {
  background: #ededed;
  margin-left: 10px;
}

.top-line-sp-inner .message.customer p::before {
  border-color: transparent #ededed transparent  transparent;
  border-width: 10px 10px 10px 20px;
  right: calc(100% - 1px);
}

/*  access
-----------------------------------------------------*/
.top-access {
  padding-top: 125px;
  padding-bottom: 200px;
}

.top-access .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top-access.point-right::after {
  bottom: auto;
  top: 0;
  right: -250px;
}

.top-access-contents {
  width: 800px;
  max-width: 100%;
}

.top-access-map {
  position: relative;
  max-width: 790px;
}

.top-access-map .top-access-button {
  position: absolute;
  right: -40px;
  bottom: 40px;
  z-index: 1;
  font-size: 1.6rem;
  padding: 15px 20px;
}

.top-access-map-inner {
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.top-access-map-inner iframe,
.top-access-map-inner object,
.top-access-map-inner embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-access-infowrap {
  margin-top: 100px;
}

.top-access-infowrap > * {
  width: 50%;
}

.top-access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}

.top-access-info dt, .top-access-info dd {
  margin-bottom: 20px;
}

.top-access-info dt {
  width: 100px;
}

.top-access-info dd {
  width: calc(100% - 100px);
}

/* responsive
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .top-mv-slider .slider-item:nth-child(1) {
    background-image: url(../img/top/mv_img_sp.jpg);
  }
  .top-mv-slider .slider-item:nth-child(2) {
    background-image: url(../img/top/mv_img02_sp.jpg);
  }
  .top-mv-slider .slider-item:nth-child(3) {
    background-image: url(../img/top/mv_img03_sp.jpg);
  }
  .top-concept .sec-title {
    position: absolute;
    top: 0;
    left: 15px;
	  line-height: 1.6;
  }
  .top-concept-text {
    font-size: 1.4rem;
  }
  .top-concept-text > p {
    padding-left: 110px;
  }
  .top-concept-text .img {
    margin-right: -20px;
  }
  .top-cencept-button {
    width: 130px;
    height: 130px;
    font-size: 1.2rem;
    -webkit-transform: translate(0, 50%);
        -ms-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
.top-cencept-button img{
		width: 80%;
	}
  .top-cencept-icon {
    position: static;
    margin-right: 0;
    margin-left: auto;
    width: 120px;
  }
  .top-concept .bg-point.point-left::after {
    bottom: auto;
    top: 100px;
  }
  .top-policy-item {
    margin-right: 0;
    margin-left: 0;
    width: calc(100% - 45px);
    display: block;
  }
  .top-policy-item + * {
    margin-top: 40px;
  }
  .top-policy-item .vertical-title {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  .top-policy-item:nth-child(even) .top-policy-img {
    right: -20px;
  }
  .top-policy-item:nth-child(odd) .top-policy-img {
    left: -20px;
  }
  .top-policy-img {
    width: 100%;
    position: relative;
    margin-top: 10px;
  }
  .top-policy-img img {
    width: 100%;
  }
  .top-school {
    background-size: 120% auto;
    padding-bottom: 73.33333vw;
    background-position: center bottom 20%;
  }
	
	
  .top-line .inner {
    padding-bottom: 100px;
    margin-bottom: 500px;
  }
  .top-line-sp {
    bottom: auto;
    top: calc(100% - 50px);
    right: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .top-news-title {
    max-width: 90%;
  }
  .top-news-list {
    margin-top: -100px;
    position: relative;
    z-index: 1;
  }
  .top-news-list .flex {
    padding-left: 0;
    padding-right: 0;
  }
  .top-news-list .flex dd {
    font-size: 1.4rem;
  }
  .top-access {
    padding-bottom: 100px;
  }
  .top-access-map {
    margin-left: -20px;
    background: #fff;
  }
  .top-access-map .top-access-button {
    font-size: 1.2rem;
    padding: 5px 10px;
    right: -20px;
   bottom: -10px;
  }
  .top-access .top-access-info {
    max-width: 100vw;
    width: calc(100% + 50px);
    font-size: 1.4rem;
  }
  .top-access.point-right::after {
    right: -150px;
  }
}
.page-mv{
	  height: 458px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(../img/top/mv_img.jpg);	
}
#page-mv {
  height: 458px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.about{
	background-image: url("../img/top/under_01.jpg");	
}
.menu,.menu-2{
	background-image: url("../img/top/under_02.jpg");	
}
.profile{
	background-image: url("../img/top/under_03.jpg");	
}
.access{
	background-image: url("../img/top/under_05.jpg");		
}
.contact,.thanks{
	background-image: url("../img/top/under_04.jpg");		
}
.news {
  background: url(../img/common/bg_news.png) repeat-y center top/120% auto;
}

/*  archive
-----------------------------------------------------*/
.archive-title {
  width: 440px;
  padding: 30px 0;
  text-align: center;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  margin-top: -70px;
  position: relative;
  z-index: 1;
  background: url(../img/common/bg_body.png) repeat center/500px 500px, #fef8f2;
  margin-bottom: 60px;
}

.archive-layout {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 195px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.archive-main {
  width: 650px;
  max-width: 100%;
}

.sidebar {
  width: 270px;
}

.category li {
  display: inline-block;
  text-align: center;

  background: #ed930f;
  border-radius: 4px;
  padding: 4px 20px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-right: 10px;
}
.category li a{
	  color: #fff;
}
/*  news-item
-----------------------------------------------------*/
.news-item {
  background: #fff;
  position: relative;
  border-radius: 30px;
  padding: 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.news-item + * {
  margin-top: 55px;
}

.news-item:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.news-item a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.news-item .meta {
  max-width: 370px;
}

.news-item .date {
  color: #ebb75b;
  font-size: 1.4rem;
}

.news-item .title {
  font-size: 2.1rem;
}

.news-item .category {
  margin-top: 10px;
}

.news-item .excerpt {
  margin-top: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.86;
}

.news-item .thumbnail {
  width: 180px;
  padding-top: 135px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*  pagenation
-----------------------------------------------------*/
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
}

.pagenation .pager {
  display: block;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  background: #683f1d;
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
}

.pagenation a {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.pagenation a:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*  sidebar
-----------------------------------------------------*/
.sidebar-title {
  border-radius: 20px;
  color: #fff;
  font-size: 2rem;
  padding: 10px 25px;
  background: #7d5223;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.sidebar-list {
  margin-bottom: 60px;
}

.sidebar-list li {
  border-bottom: 1px dashed #683f1d;
}

.sidebar-list a {
  padding: 15px 20px;
  display: inline-block;
  font-weight: 500;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease, -webkit-transform .4s ease;
}

.sidebar-list a:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* responsive
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .news {
    background: url(../img/common/bg_news_sp.png) repeat-y center top 150px/cover;
  }
  .archive-layout {
    padding-bottom: 100px;
  }
  .archive-title {
    max-width: 100%;
    margin-top: -40px;
    margin-bottom: 0;
  }
  .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 20px 15px;
  }
  .news-item .thumbnail {
    width: 100%;
    padding-top: 57.14286%;
    margin-bottom: 25px;
  }
}

/*
 3.2 -- projects
---------------------------------------------------------*/
/*
 3.3 -- utility
---------------------------------------------------------*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.u-tac {
  text-align: center;
}

.sp-db {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-db {
    display: block;
  }
}

.sp-di {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-di {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .sp-dib {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .pc-db {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-dib {
    display: none;
  }
}


.pc_only{
	display: block;
}
.sp_only{
	display: none;
}
.btm30{
	margin-bottom: 30px;
}
.single .excerpt{
	margin: 30px 0 0;
	line-height: 2;
	letter-spacing: 0.08em;
}
.single .excerpt a,.pageTopInner a{
	color: #251ECA;
	text-decoration: underline;
}
.single .excerpt a:hover,.pageTopInner a:hover{
	color: #251ECA;
	text-decoration: none;
}
@media screen and (max-width: 768px) {
.pc_only{
	display: none;
}
.top-concept {
    padding: 40px 0 100px;
}
.top-news {
    padding-bottom: 50px;
}
.top-concept-img {
    margin-top: 55px;
}
.sec-subtitle .en-title {
    font-size: 1rem;
    font-weight: normal;
}
.sec-subtitle {
    font-size: 2.1rem;
}
.top-policy-list {
    margin-top: 40px;
}
}
@media screen and (max-width: 640px) {
.sec-title .en-title {
    font-size: 1.2rem;
}
.sp_only{
	display: block;
}
.top-line .inner {
    padding-top: 50px;
}
.top-access-infowrap {
    margin-top: 50px;
}
.top-access {
    padding-bottom: 70px;
}
.top-access h2{
	line-height: 1.6;	
	}
}