.pc-only {
  display: block;
}

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

.sp-only {
  display: none;
}

@media screen and (max-width: 769px) {
  .sp-only {
    display: block !important;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
}

header .left {
  -ms-flex-preferred-size: calc(100% - 600px);
      flex-basis: calc(100% - 600px);
  max-width: calc(100% - 600px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
  header .left {
    -ms-flex-preferred-size: calc(100% - 50px);
        flex-basis: calc(100% - 50px);
    max-width: calc(100% - 50px);
  }
}

header .left h1.logo-pdca {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  max-width: 295px;
}

header .left h1.logo-pdca img {
  /*
                width: 100%;
                max-width: 295px;
                */
}

header .left h2 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  max-width: 306px;
}

header .right {
  -ms-flex-preferred-size: 600px;
      flex-basis: 600px;
  max-width: 600px;
}

@media screen and (max-width: 1024px) {
  header .right {
    -ms-flex-preferred-size: 50px;
        flex-basis: 50px;
    max-width: 50px;
  }
}

header .right nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

header .right nav a {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
  max-width: 16.66667%;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

header .right nav a img {
  display: inline-block;
  margin-bottom: 5px;
}

header .right nav a span {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.fv-box {
  position: relative;
}

.fv-box .bg {
  margin: 0 auto;
  display: block;
}

.fv-box .text {
  position: absolute;
  top: 13%;
  left: 16%;
  width: 44%;
  max-width: 838px;
}

.fv-box a.btn {
  position: absolute;
  background: #e96c3e;
  background: -webkit-gradient(linear, left bottom, left top, from(#e96c3e), to(#e98c3e));
  background: linear-gradient(0deg, #e96c3e 0%, #e98c3e 100%);
  color: white;
  text-decoration: none;
  padding: 2% 0px;
  width: 29%;
  bottom: 16%;
  left: 20%;
  text-align: center;
  border-radius: 100px;
  -webkit-box-shadow: 0px 0px 20px rgba(180, 130, 83, 0.549);
          box-shadow: 0px 0px 20px rgba(180, 130, 83, 0.549);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 1100px) {
  .fv-box a.btn {
    bottom: 14%;
    width: 50%;
  }
}

@media screen and (max-width: 769px) {
  .fv-box a.btn {
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 16%;
    padding: 3% 0px;
  }
}

.fv-box a.btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #9c0000;
  background: -webkit-gradient(linear, left bottom, left top, from(#9c0000), to(#9c0000));
  background: linear-gradient(0deg, #9c0000 0%, #9c0000 100%);
}

.fv-box a.btn span {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  padding-left: 30px;
}

@media screen and (max-width: 769px) {
  .fv-box a.btn span {
    font-size: 1.7rem;
  }
}

.fv-box a.btn span::before {
  position: absolute;
  content: "";
  background-image: url(../img/icon-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 40px;
  height: 28px;
  top: calc(50% - 14px);
  left: -20px;
}

.fv-box .asset {
  position: absolute;
  right: 12%;
  bottom: -6%;
  width: 22%;
  max-width: 405px;
}

@media screen and (max-width: 769px) {
  .fv-box .asset {
    bottom: -7%;
    right: 0;
    width: 40%;
    max-width: 100%;
  }
}

.fv-box .wave {
  height: 60px;
  background-image: url(../img/bg-wave.png);
  background-repeat: repeat-x;
  bottom: -21px;
  position: absolute;
  width: 100%;
}

.new-lesson-bg {
  background-color: #fff3e7;
  background-image: url(../img/bg-new.png);
  background-repeat: repeat;
}

.new-lesson-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow-x: hidden;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .new-lesson-box {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .new-lesson-box {
    max-width: 90%;
  }
}

@media screen and (max-width: 769px) {
  .new-lesson-box {
    max-width: 100%;
  }
}

.new-lesson-box .box {
  position: relative;
  padding-top: 60px;
  padding-bottom: 120px;
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .new-lesson-box .box {
    width: 100%;
  }
}

.new-lesson-box .box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #534741;
  position: relative;
  width: 300px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.new-lesson-box .box h2 .small {
  font-size: 2.5rem;
  padding-left: 3px;
  padding-right: 2px;
}

@media screen and (max-width: 769px) {
  .new-lesson-box .box h2 {
    margin-bottom: 20px;
  }
}

.new-lesson-box .box h2::before {
  position: absolute;
  content: "";
  background-image: url(../img/fuki-orange-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 40px;
  top: calc(50% - 20px);
  left: -20px;
}

.new-lesson-box .box h2::after {
  position: absolute;
  content: "";
  background-image: url(../img/fuki-orange-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 40px;
  top: calc(50% - 20px);
  right: -20px;
}

.new-lesson-box .box a img {
  -webkit-box-shadow: 0px 0px 10px brown;
          box-shadow: 0px 0px 10px brown;
  margin-left: 20px;
}

@media screen and (max-width: 1024px) {
  .new-lesson-box .box a img {
    max-width: 80%;
  }
}

.new-lesson-box .asset {
  position: absolute;
  right: 6%;
  bottom: 0px;
}

@media screen and (max-width: 1024px) {
  .new-lesson-box .asset {
    width: 42%;
    right: -9%;
    z-index: 1;
  }
}

.lesson-bg {
  width: 100%;
  padding: 60px 0px;
  background-color: #e98c3e;
  position: relative;
}

@media screen and (max-width: 769px) {
  .lesson-bg {
    padding-bottom: 90px;
  }
}

.lesson-bg .asset {
  position: absolute;
  bottom: 0px;
  left: 4%;
}

@media screen and (max-width: 769px) {
  .lesson-bg .asset {
    bottom: 0px;
    left: -12px;
    width: 132px;
    z-index: 1;
  }
}

.lesson-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow-x: hidden;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .lesson-box {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .lesson-box {
    max-width: 90%;
  }
}

.lesson-box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  position: relative;
  width: 300px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 769px) {
  .lesson-box h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.lesson-box h2 .small {
  font-size: 2.5rem;
  padding-left: 3px;
  padding-right: 2px;
}

@media screen and (max-width: 769px) {
  .lesson-box h2 .small {
    font-size: 2rem;
  }
}

.lesson-box .genzaikouza-box {
  position: relative;
  margin-bottom: 70px;
}

@media screen and (max-width: 1024px) {
  .lesson-box .genzaikouza-box {
    max-width: 70%;
    margin: 0 auto;
  }
}

.lesson-box .genzaikouza-box .swiper-container-genzaikouza {
  overflow: hidden;
}

.lesson-box .genzaikouza-box .swiper-button-prev,
.lesson-box .genzaikouza-box .swiper-container-rtl .swiper-button-next {
  left: -60px;
  right: auto;
}

@media screen and (max-width: 769px) {
  .lesson-box .genzaikouza-box .swiper-button-prev,
  .lesson-box .genzaikouza-box .swiper-container-rtl .swiper-button-next {
    left: -40px;
  }
}

.lesson-box .genzaikouza-box .swiper-button-next,
.lesson-box .genzaikouza-box .swiper-container-rtl .swiper-button-prev {
  right: -60px;
  left: auto;
}

@media screen and (max-width: 769px) {
  .lesson-box .genzaikouza-box .swiper-button-next,
  .lesson-box .genzaikouza-box .swiper-container-rtl .swiper-button-prev {
    right: -40px;
  }
}

@media screen and (max-width: 769px) {
  .lesson-box .genzaikouza-box {
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 80%;
    line-height: 1.3;
  }
}

.lesson-box .course-box {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .lesson-box .course-box {
    max-width: 70%;
    margin: 0 auto;
  }
}

.lesson-box .course-box .swiper-container-course {
  overflow: hidden;
  margin-bottom: 50px;
}

.lesson-box .course-box .swiper-button-prev,
.lesson-box .course-box .swiper-container-rtl .swiper-button-next {
  left: -60px;
  right: auto;
}

@media screen and (max-width: 769px) {
  .lesson-box .course-box .swiper-button-prev,
  .lesson-box .course-box .swiper-container-rtl .swiper-button-next {
    left: -40px;
  }
}

.lesson-box .course-box .swiper-button-next,
.lesson-box .course-box .swiper-container-rtl .swiper-button-prev {
  right: -60px;
  left: auto;
}

@media screen and (max-width: 769px) {
  .lesson-box .course-box .swiper-button-next,
  .lesson-box .course-box .swiper-container-rtl .swiper-button-prev {
    right: -40px;
  }
}

@media screen and (max-width: 769px) {
  .lesson-box .course-box {
    margin: 0 auto;
    max-width: 80%;
    line-height: 1.3;
  }
}

.youtube-bg {
  width: 100%;
  background-image: url(../img/youtube-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.youtube-bg .youtube-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow-x: hidden;
  overflow: inherit;
  padding: 60px 0px 100px 0px;
}

@media screen and (max-width: 1024px) {
  .youtube-bg .youtube-box {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box {
    max-width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .youtube-bg .youtube-box {
    padding-bottom: 200px;
  }
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box {
    padding-bottom: 120px;
  }
}

.youtube-bg .youtube-box h2 {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 70px;
}

.youtube-bg .youtube-box h2 img {
  margin: 0 auto;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box h2 {
    margin-bottom: 50px;
  }
}

.youtube-bg .youtube-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: inherit;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.youtube-bg .youtube-box .flex .left {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
  max-width: 430px;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .left {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-top: -32px;
  }
}

.youtube-bg .youtube-box .flex .left h3 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .left h3 {
    font-size: 3rem;
    line-height: 1.2;
  }
}

.youtube-bg .youtube-box .flex .left h3 .num {
  color: #dd1322;
  font-size: 6rem;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .left h3 .num {
    font-size: 5rem;
  }
}

.youtube-bg .youtube-box .flex .left h3 .small {
  font-size: 3rem;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .left h3 .small {
    font-size: 2.4rem;
  }
}

.youtube-bg .youtube-box .flex .left p {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.youtube-bg .youtube-box .flex .left a {
  background-color: #dd1322;
  color: white;
  text-decoration: none;
  padding: 20px 0px;
  width: 100%;
  display: block;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}

.youtube-bg .youtube-box .flex .left a:after {
  content: "";
  position: absolute;
  background-image: url(../img/arrow-youtube.png);
  width: 10px;
  height: 12px;
  right: 20px;
  top: calc(50% - 6px);
}

.youtube-bg .youtube-box .flex .right {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  max-width: 48%;
  position: relative;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .right {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.youtube-bg .youtube-box .flex .right > img {
  max-width: 90%;
  margin: 0 auto;
  display: block;
}

.youtube-bg .youtube-box .flex .right .badge {
  position: absolute;
  top: -52px;
  right: -48px;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .right .badge {
    right: -10px;
    width: 100px;
  }
}

.youtube-bg .youtube-box .flex .right .badge img {
  -webkit-animation: 24s linear infinite rotation1;
          animation: 24s linear infinite rotation1;
}

.youtube-bg .youtube-box .flex .right .badge .big {
  color: white;
  position: absolute;
  top: 27px;
  left: 28px;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 8px;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .right .badge .big {
    top: 20px;
    left: 24px;
    font-size: 2.2rem;
  }
}

.youtube-bg .youtube-box .flex .right .badge .small {
  color: white;
  position: absolute;
  top: 75px;
  left: 31px;
  font-size: 2rem;
  letter-spacing: 0px;
}

@media screen and (max-width: 769px) {
  .youtube-bg .youtube-box .flex .right .badge .small {
    font-size: 1.6rem;
    top: 50px;
    left: 22px;
  }
}

.youtube-bg .asset-left {
  position: absolute;
  z-index: 1;
  bottom: -60px;
  left: 50px;
}

@media screen and (max-width: 1024px) {
  .youtube-bg .asset-left {
    max-width: 40%;
    left: 0px;
    bottom: -40px;
  }
}

.youtube-bg .asset-right {
  position: absolute;
  z-index: 1;
  bottom: -60px;
  right: 50px;
}

@media screen and (max-width: 1024px) {
  .youtube-bg .asset-right {
    max-width: 40%;
    right: 0px;
    bottom: -40px;
  }
}

@-webkit-keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.voice-bg {
  width: 100%;
  padding: 90px 0px 120px 0px;
  background-color: #e98c3e;
  position: relative;
}

.voice-bg .asset {
  position: absolute;
  right: 7%;
  bottom: -80px;
  z-index: 1;
}

.voice-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  overflow-x: hidden;
  padding: 0px 20px;
}

@media screen and (max-width: 1024px) {
  .voice-box {
    padding: 0px;
    max-width: 90%;
  }
}

.voice-box h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  position: relative;
  width: 400px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
  line-height: 1.2;
}

@media screen and (max-width: 769px) {
  .voice-box h2 {
    width: 320px;
  }
}

.voice-box h2 .small {
  font-size: 2.5rem;
  padding-left: 3px;
  padding-right: 2px;
}

.voice-box h2::before {
  position: absolute;
  content: "";
  background-image: url(../img/fuki-white-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 40px;
  top: calc(50% - 20px);
  left: -20px;
}

.voice-box h2::after {
  position: absolute;
  content: "";
  background-image: url(../img/fuki-white-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 40px;
  top: calc(50% - 20px);
  right: -20px;
}

.voice-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.voice-box .flex .item {
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  max-width: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1024px) {
  .voice-box .flex .item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
  }
}

.voice-box .flex .item .thumb {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  vertical-align: bottom;
}

.voice-box .flex .item .thumb img {
  display: block;
  bottom: 0px;
}

.voice-box .flex .item .box {
  background-color: white;
  padding: 40px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  min-height: 400px;
}

@media screen and (max-width: 600px) {
  .voice-box .flex .item .box {
    padding: 10px;
    min-height: 490px;
  }
}

.voice-box .flex .item .box h3 {
  text-align: center;
  color: #977c52;
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
  .voice-box .flex .item .box h3 {
    font-size: 1.3rem;
  }
}

.voice-box .flex .item .box h4 {
  text-align: center;
  font-size: 2rem;
  color: #977c52;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 769px) {
  .voice-box .flex .item .box h4 {
    font-size: 1.8rem;
  }
}

.voice-box .flex .item .box p {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.7;
}

.message-bg {
  padding: 80px 0px 120px 0px;
  background-color: #efefef;
  position: relative;
}

.message-bg .asset {
  position: absolute;
  left: 7%;
  bottom: -80px;
}

.message-box h2 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 70px;
}

@media screen and (max-width: 769px) {
  .message-box h2 {
    margin-bottom: 20px;
  }
}

.message-box h2 .small {
  font-size: 2.5rem;
  padding-left: 3px;
  padding-right: 2px;
}

.message-box h2::before {
  position: absolute;
  content: "";
  background-image: url(../img/fuki-black-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 40px;
  top: calc(50% - 20px);
  left: -20px;
}

.message-box h2::after {
  position: absolute;
  content: "";
  background-image: url(../img/fuki-black-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 40px;
  top: calc(50% - 20px);
  right: -20px;
}

@media screen and (max-width: 769px) {
  .message-box h2 {
    max-width: 80%;
    line-height: 1.3;
  }
}

.message-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  overflow-x: hidden;
  padding: 0px 20px;
}

@media screen and (max-width: 769px) {
  .message-box .flex {
    padding: 0px;
    max-width: 90%;
  }
}

.message-box .flex .item {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  max-width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 769px) {
  .message-box .flex .item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
}

.message-box .flex .item img {
  margin-bottom: 10px;
}

.message-box .flex .item h3 {
  font-weight: bold;
  font-size: 1.4rem;
}

.message-box .flex .item h4 {
  font-weight: bold;
  font-size: 2.8rem;
}

.message-box .flex .item span {
  font-weight: bold;
  margin-bottom: 20px;
}

.message-box .flex .item p {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.7;
}

.blog-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow-x: hidden;
  padding: 50px 0px;
}

@media screen and (max-width: 1024px) {
  .blog-box {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .blog-box {
    max-width: 90%;
  }
}

.blog-box .logo-note {
  float: right;
  position: relative;
  margin-bottom: 10px;
}

.blog-box .clearfix {
  clear: both;
  display: block;
}

.blog-box h2 {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
}

.blog-box p.desc {
  margin-top: 10px;
  margin-bottom: 30px;
}

.blog-box a.btn {
  text-decoration: none;
  color: white;
  background-color: #e98c3e;
  position: relative;
  padding: 6px 30px;
  border-radius: 100px;
  font-size: 1.3rem;
}

.blog-box a.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 13px;
  background-image: url(../img/arrow-btn.png);
  width: 5px;
  height: 6px;
}

.blog-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.blog-box .flex a {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  max-width: 30%;
  text-decoration: none;
  margin-bottom: 30px;
  color: inherit;
}

.blog-box .flex a .thumb {
  margin-bottom: 14px;
}

@media screen and (max-width: 769px) {
  .blog-box .flex a {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    max-width: 48%;
  }
}

.blog-box .flex a h3 {
  position: relative;
  padding-left: 10px;
}

.blog-box .flex a h3::before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow-link.png);
  width: 9px;
  height: 10px;
  top: 5px;
  left: 0px;
}

.news-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow-x: hidden;
  padding: 50px 0px;
}

@media screen and (max-width: 1024px) {
  .news-box {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .news-box {
    max-width: 90%;
  }
}

.news-box h2 {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 20px;
}

.news-box p.desc {
  margin-top: 10px;
  margin-bottom: 30px;
}

.news-box a.btn {
  text-decoration: none;
  color: white;
  background-color: #e98c3e;
  position: relative;
  padding: 6px 30px;
  border-radius: 100px;
  font-size: 1.3rem;
}

.news-box a.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 13px;
  background-image: url(../img/arrow-btn.png);
  width: 5px;
  height: 6px;
}

.news-box .item-box {
  margin-top: 50px;
}

.news-box .item-box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 769px) {
  .news-box .item-box .item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 26px;
  }
}

.news-box .item-box .item .date {
  -ms-flex-preferred-size: 90px;
      flex-basis: 90px;
  max-width: 90px;
  font-size: 1.7rem;
  color: gray;
}

.news-box .item-box .item .tag {
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  max-width: 100px;
  border: 1px solid #e98c3e;
  border-radius: 100px;
  text-align: center;
  font-size: 1.4rem;
  color: #e98c3e;
  padding: 0px;
}

@media screen and (max-width: 769px) {
  .news-box .item-box .item .tag {
    margin-left: 20px;
  }
}

.news-box .item-box .item a {
  -ms-flex-preferred-size: calc(100% - 240px);
      flex-basis: calc(100% - 240px);
  max-width: calc(100% - 240px);
  color: inherit;
}

@media screen and (max-width: 769px) {
  .news-box .item-box .item a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    margin-top: 5px;
  }
}

.access-box {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 200px;
}

.access-box h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.access-box iframe {
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 90%;
}

.access-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  overflow-x: hidden;
}

@media screen and (max-width: 1024px) {
  .access-box .flex {
    max-width: 80%;
  }
}

@media screen and (max-width: 769px) {
  .access-box .flex {
    max-width: 90%;
  }
}

.access-box .flex .left {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  max-width: 200px;
}

.access-box .flex .left h3 {
  font-weight: bold;
  font-size: 1.7rem;
}

@media screen and (max-width: 769px) {
  .access-box .flex .left {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.access-box .flex .right {
  -ms-flex-preferred-size: calc(100% - 220px);
      flex-basis: calc(100% - 220px);
  max-width: calc(100% - 220px);
}

.access-box .flex .right .address {
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
  .access-box .flex .right .address {
    margin-bottom: 20px;
  }
}

.access-box .flex .right .route {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 4px;
}

.access-box .flex .right .route span {
  border: 1px solid gray;
  padding: 0 15px 2px 15px;
  border-radius: 100px;
  margin-right: 10px;
  font-size: 1.3rem;
}

@media screen and (max-width: 769px) {
  .access-box .flex .right {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.line-box {
  position: fixed;
  bottom: 0px;
  right: 3%;
  background-color: #ddefcc;
  z-index: 1;
  width: 320px;
  border-radius: 20px 20px 0px 0px;
  -webkit-box-shadow: 0px 0px 10px rgba(141, 141, 141, 0.52);
          box-shadow: 0px 0px 10px rgba(141, 141, 141, 0.52);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.line-box.close {
  -webkit-transform: translateY(232px);
          transform: translateY(232px);
}

.line-box h2 {
  text-align: center;
  background-color: #7aba43;
  color: white;
  padding: 10px 0px;
  padding-right: 30px;
  font-size: 1.6rem;
  border-radius: 20px 20px 0px 0px;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  letter-spacing: 2px;
}

.line-box h2:after {
  content: "";
  position: absolute;
  background-image: url(../img/line-arrow.png);
  background-size: contain;
  width: 20px;
  height: 15px;
  top: calc(50% - 7px);
  right: 20px;
}

.line-box h2 img {
  width: 30px;
  margin-right: 10px;
}

.line-box h2:hover {
  background-color: #23582b;
}

.line-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 20px;
  padding-bottom: 10px;
}

.line-box .flex .left {
  -ms-flex-preferred-size: 36%;
      flex-basis: 36%;
  max-width: 36%;
  background-color: white;
}

.line-box .flex .left p {
  text-align: center;
  font-size: 1.3rem;
}

.line-box .flex .right {
  -ms-flex-preferred-size: calc(64% - 10px);
      flex-basis: calc(64% - 10px);
  max-width: calc(64% - 10px);
}

.line-box .flex .right p {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.line-box .flex .right p:last-child {
  margin-bottom: 0px;
}

.line-box .flex .right ul {
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.659);
}

.line-box .flex .right ul li {
  font-size: 1.3rem;
  font-weight: bold;
}

.line-box .flex .right ul li span.no {
  border-radius: 100%;
  border: 1px solid gray;
  padding: 0px 8px;
}

.line-box a.btn {
  text-decoration: none;
  background-color: #39a64a;
  border-radius: 20px;
  color: white;
  display: block;
  margin: 0 auto;
  width: 80%;
  text-align: center;
  margin-bottom: 12px;
  padding: 4px 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.line-box a.btn:hover {
  background-color: #23582b;
}

footer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow: inherit;
  color: white;
  background-color: #e98c3e;
  text-align: center;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
}

footer .asset-01 {
  position: absolute;
  left: 10%;
  top: -150px;
  max-width: 50%;
}

@media screen and (max-width: 769px) {
  footer .asset-01 {
    left: 0;
  }
}

footer .asset-02 {
  position: absolute;
  right: 10%;
  top: -58%;
  max-width: 50%;
}

@media screen and (max-width: 769px) {
  footer .asset-02 {
    right: 0;
    top: -70px;
  }
}

footer .copyright {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  text-align: center;
}
/*# sourceMappingURL=top.css.map */