@charset "UTF-8";
/* ----------------------------------------------------
	sassを使用しています。css編集の際はご注意ください。
	compass/scss
---------------------------------------------------- */
/* ----------------------------------------------------
base
---------------------------------------------------- */
html, body {
  padding: 0;
  margin: 0;
  font-family: "Muli","Noto Sans Japanese", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

ul {
  list-style: none;
  box-sizing: border-box;
}
ul li {
  box-sizing: border-box;
}

/* ----------------------------------------------------
selection
---------------------------------------------------- */
::selection {
  background: #f4f4f4;
  color: #aaa;
}

::-moz-selection {
  background: #f4f4f4;
  color: #aaa;
}

/* ----------------------------------------------------
trigger
---------------------------------------------------- */
.br {
  display: block;
}

.pcbr {
  display: block;
}
@media (max-width: 736px) {
  .pcbr {
    display: inline-block;
  }
}

.tbbr {
  display: block;
}
@media (max-width: 1080px) {
  .tbbr {
    display: inline-block;
  }
}

@media (max-width: 736px) {
  .spbr {
    display: block;
  }
}

@media (max-width: 736px) {
  .pcver {
    display: none;
  }
}

.spver {
  display: none;
}
@media (max-width: 736px) {
  .spver {
    display: block;
  }
}

@media (max-width: 375px) {
  .sebr {
    display: block;
  }
}

/* ----------------------------------------------------
set
---------------------------------------------------- */
.flexContainer {
  display: flex;
}
.flexContainer.space {
  justify-content: space-between;
}
.flexContainer.wrap {
  flex-wrap: wrap;
}

.bgColorYellow {
  background: #edd34c;
}

/* ----------------------------------------------------
link
---------------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
a:visited {
  text-decoration: none;
  color: #000;
}
a:hover {
  color: #40474f;
}
a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
  background: none !important;
  transition: 0.2s;
}
a:active {
  color: #40474f;
}

/* ----------------------------------------------------
.fixed
---------------------------------------------------- */
.fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ----------------------------------------------------
header
---------------------------------------------------- */
header .headerinner {
  position: fixed;
  top: 25px;
  transition: 0.2s ease-in-out;
  left: 0;
  z-index: 100;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  header .headerinner {
    top: 10px;
  }
}
@media (max-width: 1200px) {
  header .headerinner {
    top: 0;
    right: 0;
    left: auto;
  }
}
header .headerinner #navBtnSp {
  display: none;
  padding: 0 15px;
  width: 80px;
  height: 80px;
  text-align: center;
  background: #1f268f;
  cursor: pointer;
}
@media (max-width: 1200px) {
  header .headerinner #navBtnSp {
    display: block;
    position: relative;
    z-index: 110;
  }
}
@media (max-width: 375px) {
  header .headerinner #navBtnSp {
    padding: 0 10px;
    width: 60px;
    height: 60px;
  }
}
header .headerinner #navBtnSp p {
  padding-top: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 375px) {
  header .headerinner #navBtnSp p {
    padding-top: 6px;
    font-size: 14px;
  }
}
header .headerinner #navBtnSp .nbinner {
  position: relative;
  height: 40px;
}
header .headerinner #navBtnSp span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: .3s ease-in-out;
}
header .headerinner #navBtnSp span:nth-child(1) {
  top: 5px;
}
header .headerinner #navBtnSp span:nth-child(2) {
  top: 20px;
}
@media (max-width: 375px) {
  header .headerinner #navBtnSp span:nth-child(2) {
    top: 15px;
  }
}
header .headerinner #navBtnSp span:nth-child(3) {
  top: 35px;
}
@media (max-width: 375px) {
  header .headerinner #navBtnSp span:nth-child(3) {
    top: 25px;
  }
}
header .headerinner #navBtnSp.open {
  background: #a5a8d2;
}
header .headerinner #navBtnSp.open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
@media (max-width: 375px) {
  header .headerinner #navBtnSp.open span:nth-child(1) {
    top: 15px;
  }
}
header .headerinner #navBtnSp.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
header .headerinner #navBtnSp.open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
@media (max-width: 375px) {
  header .headerinner #navBtnSp.open span:nth-child(3) {
    top: 15px;
  }
}
header .headerinner nav {
  width: 180px;
  height: 750px;
}
header .headerinner nav .nav li {
  line-height: 0;
}
header .headerinner nav .nav li:nth-child(2) {
  margin-bottom: 14px;
}
@media (max-width: 1200px) {
  header .headerinner nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  header .headerinner nav .navinner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .headerinner nav .nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1200px) and (min-width: 736px) {
  header .headerinner nav .nav {
    margin: 0 auto;
    width: 680px;
  }
}
@media (max-width: 1200px) {
  header .headerinner nav .nav:after {
    content: "";
    display: block;
    width: 27%;
  }
  header .headerinner nav .nav li {
    margin: 0 6px 6px 6px;
    width: 24%;
    height: auto;
  }
  header .headerinner nav .nav li:first-child {
    width: 48%;
    text-align: right;
  }
}
@media (max-width: 1200px) and (max-width: 736px) {
  header .headerinner nav .nav li:first-child {
    width: 36%;
  }
}
@media (max-width: 1200px) {
  header .headerinner nav .nav li:first-child img {
    width: 190px;
    height: auto;
  }
  header .headerinner nav .nav li:nth-child(2) {
    width: 48%;
    margin-bottom: 6px;
  }
}
@media (max-width: 1200px) and (max-width: 736px) {
  header .headerinner nav .nav li:nth-child(2) {
    width: 36%;
  }
}
@media (max-width: 1200px) {
  header .headerinner nav .nav li:nth-child(2) img {
    width: 190px;
    height: auto;
  }
}
@media (max-width: 1200px) and (min-width: 736px) {
  header .headerinner nav .nav li {
    width: 20%;
  }
}
@media (max-width: 1200px) {
  header .headerinner nav .nav li img {
    width: 125px;
    height: auto;
  }
}
header .headerinner nav .sp_social {
  margin-top: 30px;
}
@media (min-width: 736px) {
  header .headerinner nav .sp_social {
    display: none;
  }
}
header .headerinner nav .sp_social p {
  margin-bottom: 8px;
  text-align: center;
}
header .headerinner nav .sp_social p img {
  width: 88px;
  height: auto;
}
header .headerinner nav .sp_social ul {
  display: flex;
  justify-content: center;
}
header .headerinner nav .sp_social ul li {
  margin: 0 6px;
}
header .headerinner nav .sp_social ul li img {
  width: 48px;
  height: auto;
}
header .socialBox {
  position: fixed;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 90;
}
@media (max-width: 1200px) {
  header .socialBox {
    top: 0;
    right: 110px;
    bottom: auto;
    height: 80px;
    background: #fff;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}
@media (max-width: 736px) {
  header .socialBox {
    display: none;
  }
}
header .socialBox p {
  margin-bottom: 9px;
}
@media (max-width: 1200px) {
  header .socialBox p {
    margin: 4px 0;
  }
  header .socialBox p img {
    width: 88px;
    height: auto;
  }
}
header .socialBox ul {
  padding: 26px 0;
  width: 80px;
  height: 250px;
  background: #fff;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 375px) and (max-width: 1200px) {
  header .socialBox ul {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 1200px) {
  header .socialBox ul {
    padding: 0 16px;
    border-radius: 0;
    flex-direction: row;
    background: none;
  }
}
header .socialBox ul li img {
  width: 48px;
  height: auto;
}

/* ----------------------------------------------------
.mainvisual
---------------------------------------------------- */
.mainvisual {
  padding: 0;
  margin: 0;
  height: 640px;
  background: url(../images/top/img_mv_txt.png) left 85px no-repeat #edd34c;
  background-size: 379px;
  transition: 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  .mainvisual {
    height: 100vh;
  }
}
@media (max-width: 1200px) {
  .mainvisual {
    background: url(../images/top/img_mv_txt.png) -150px 85px no-repeat #edd34c;
    background-size: 379px;
  }
}
@media (max-width: 786px) {
  .mainvisual {
    background: url(../images/top/img_mv_txt.png) -150px 50px no-repeat #edd34c;
    background-size: 379px;
  }
}
@media (max-width: 736px) {
  .mainvisual {
    background: url(../images/top/img_mv_txt.png) -80px 50px no-repeat #edd34c;
    background-size: 230px;
  }
}
@media (max-width: 375px) {
  .mainvisual {
    background: url(../images/top/img_mv_txt.png) -100px 6vw no-repeat #edd34c;
    background-size: 230px;
  }
}
.mainvisual h1 {
  position: absolute;
  top: -4px;
  right: 85px;
}
.mainvisual h1 img {
  width: 272px;
  height: auto;
}
@media (max-width: 1200px) {
  .mainvisual h1 {
    top: 130px;
  }
  .mainvisual h1 img {
    width: 220px;
    height: auto;
  }
}
@media (max-width: 736px) {
  .mainvisual h1 {
    top: 100px;
    right: 20px;
  }
  .mainvisual h1 img {
    width: 136px;
  }
}
.mainvisual .mvWrap {
  padding: 0;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}
@media (max-width: 1200px) {
  .mainvisual .mvWrap {
    width: 100%;
  }
}
.mainvisual .mvWrap .mvBox {
  margin: 0 auto;
  width: 960px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1080px) {
  .mainvisual .mvWrap .mvBox {
    width: 100%;
  }
}
@media (max-width: 1080px) {
  .mainvisual .mvWrap .mvBox {
    width: 100%;
  }
}
.mainvisual .mvWrap .mvBox .ill {
  text-align: center;
  width: 100%;
  position: relative;
}
.mainvisual .mvWrap .mvBox .ill img {
  width: 650px;
  height: auto;
  line-height: 0;
}
@media (min-width: 768px) and (max-width: 1080px) {
  .mainvisual .mvWrap .mvBox .ill img {
    width: 80%;
  }
}
@media (max-width: 1080px) {
  .mainvisual .mvWrap .mvBox .ill img {
    margin-top: 60px;
  }
}
.mainvisual .mvWrap .mvBox .ill .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.mainvisual .mvWrap .mvBox .ill .girl {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.mainvisual .mvWrap .mvBox .ill .hopeis {
  position: relative;
  z-index: 3;
}

/* ----------------------------------------------------
.contentsTop
---------------------------------------------------- */
.contentsTop {
  padding: 0 0 160px 0;
  margin: 0 auto;
  width: 1100px;
  transition: 0.2s ease-in-out;
  justify-content: space-between;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .contentsTop {
    width: calc(100% - 320px);
  }
}
@media (max-width: 1200px) {
  .contentsTop {
    padding-bottom: 80px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .contentsTop {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .contentsTop {
    flex-wrap: wrap;
    position: relative;
  }
}
.contentsTop .newsBox {
  margin-top: -130px;
}
.contentsTop .newsBox h2 {
  display: none;
}
@media (max-width: 736px) {
  .contentsTop .newsBox h2 {
    display: block;
    text-align: center;
    width: 100%;
  }
  .contentsTop .newsBox h2 img {
    width: 105px;
    height: auto;
  }
}
.contentsTop .newsBox .box {
  padding-top: 22px;
  width: 214px;
  height: 262px;
  background: url(../images/top/bg_news.png) center no-repeat;
  background-size: 100%;
}
.contentsTop .newsBox .box:nth-child(3) {
  display: none;
}
@media (max-width: 768px) {
  .contentsTop .newsBox .box:nth-child(3) {
    display: block;
  }
}
.contentsTop .newsBox .box a {
  padding: 14px;
  margin-right: 10px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contentsTop .newsBox .box .thumbnail img {
  width: 174px;
  height: 110px;
  object-fit: cover;
}
.contentsTop .newsBox .box .title {
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1f268f;
}
@media (max-width: 768px) {
  .contentsTop .newsBox .box .title {
    display: none;
  }
}
.contentsTop .newsBox .box .title_sp {
  display: none;
}
@media (max-width: 768px) {
  .contentsTop .newsBox .box .title_sp {
    margin: 10px 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #1f268f;
    display: block;
  }
}
@media (max-width: 768px) and (max-width: 375px) {
  .contentsTop .newsBox .box .title_sp {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contentsTop .newsBox {
    padding: 0 16px;
    margin-top: 40px;
    order: 3;
    display: flex;
    justify-content: space-between;
  }
  .contentsTop .newsBox .box {
    width: 48%;
    height: auto;
    background: #fff;
  }
  .contentsTop .newsBox .box a {
    padding: 20px;
    margin: 0;
    background: #fff;
    border: 1px solid #ccc;
  }
  .contentsTop .newsBox .box .thumbnail img {
    width: 100%;
    height: auto;
    object-fit: fill;
  }
}
@media (max-width: 736px) {
  .contentsTop .newsBox {
    flex-wrap: wrap;
  }
  .contentsTop .newsBox .box {
    width: 100%;
  }
  .contentsTop .newsBox .box:nth-child(3) {
    display: none;
  }
}
.contentsTop .jcp {
  padding-top: 40px;
}
.contentsTop .jcp img {
  width: 240px;
  height: auto;
}
@media (max-width: 1200px) {
  .contentsTop .jcp {
    width: 40%;
    text-align: center;
  }
}
@media (max-width: 786px) {
  .contentsTop .jcp {
    width: 100%;
    order: 2;
  }
}
.contentsTop .policy {
  margin-top: -76px;
}
@media (max-width: 736px) {
  .contentsTop .policy {
    margin-top: -86px;
  }
}
.contentsTop .policy img {
  width: 207px;
  height: auto;
}
@media (max-width: 736px) {
  .contentsTop .policy img {
    width: 160px;
  }
}
@media (max-width: 786px) {
  .contentsTop .policy {
    position: absolute;
    right: 30px;
    order: 1;
  }
}

/* ----------------------------------------------------
#prologue
---------------------------------------------------- */
#prologue {
  padding: 100px 0 149px 0;
  color: #1f268f;
  font-size: 27px;
  line-height: 1.7;
  font-weight: 900;
  text-align: center;
  background: url(../images/top/img_prologue02.png) center no-repeat #c0ecfb;
}
@media (max-width: 1080px) {
  #prologue {
    background: url(../images/top/img_prologue02.png) center no-repeat #c0ecfb;
    background-size: 96%;
  }
}
@media (max-width: 736px) {
  #prologue {
    padding: 70px 16px 100px 16px;
    font-size: 23px;
  }
}
@media (max-width: 375px) {
  #prologue {
    font-size: 5.6vw;
  }
}
#prologue p {
  margin-bottom: 40px;
}
@media (max-width: 375px) {
  #prologue p {
    margin-bottom: 30px;
  }
}
#prologue p:nth-child(3), #prologue p:nth-child(4) {
  margin-bottom: 100px;
}
@media (max-width: 736px) {
  #prologue p:nth-child(3), #prologue p:nth-child(4) {
    margin-bottom: 70px;
  }
}
#prologue p.hirei img {
  width: 450px;
  height: auto;
}

/* ----------------------------------------------------
section
---------------------------------------------------- */
section h2.titleTab {
  margin-top: -49px;
  text-align: center;
  line-height: 0;
}
section h2.titleTab img {
  width: 307px;
  height: auto;
}
@media (max-width: 736px) {
  section h2.titleTab img {
    width: 200px;
  }
}
section .planTitle {
  position: relative;
  text-align: center;
}
section .planBase {
  padding-bottom: 180px;
}
@media (max-width: 736px) {
  section .planBase {
    padding-bottom: 110px;
  }
}
section .planBase .planDetail {
  padding: 80px 0 60px 0;
  text-align: center;
}
section .planBase .planDetail p {
  font-size: 27px;
  line-height: 1.9;
  font-weight: bold;
}
@media (max-width: 736px) {
  section .planBase .planDetail p {
    font-size: 19px;
    line-height: 1.6;
  }
}
@media (max-width: 375px) {
  section .planBase .planDetail p {
    font-size: 5vw;
    line-height: 1.6;
  }
}
section .planBase .other {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 736px) {
  section .planBase .other {
    margin-top: 30px;
    padding: 0 16px;
  }
}
section .planBase .other img {
  width: 635px;
  height: auto;
}
section .planBase .more {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 736px) {
  section .planBase .more {
    margin-top: 30px;
    padding: 0 16px;
  }
}
section .planBase .more img {
  width: 500px;
  height: auto;
}
section .cardWrap {
  margin: 0 auto;
  width: 960px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  section .cardWrap {
    width: 90%;
  }
}
@media (max-width: 736px) {
  section .cardWrap {
    display: none;
  }
}
section .cardWrap img {
  width: 302px;
  height: auto;
}
section .cardWrap .cardbox {
  width: 302px;
  height: 442px;
  position: relative;
  top: 0;
  left: 0;
  float: left;
  cursor: pointer;
}
@media (max-width: 1080px) {
  section .cardWrap .cardbox {
    width: 32%;
    height: 32vh;
  }
}
section .cardWrap .cardbox img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 1.0;
}
section .cardWrap .cardbox img.start {
  opacity: 0 !important;
}
section .cardsliderWrap {
  padding: 20px 20px 10px 20px;
  margin: 0 10px;
  background: url(../images/common/frame_card.png) center no-repeat;
  background-size: 100%;
  position: relative;
}
@media (min-width: 736px) {
  section .cardsliderWrap {
    display: none;
  }
}
section .cardsliderWrap .frame_prev {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 30;
}
section .cardsliderWrap .frame_prev img {
  width: 66px;
  height: auto;
}
section .cardsliderWrap .frame_next {
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 30;
  width: 66px;
  height: 68px;
  background: url(../images/common/frame_next.png) center no-repeat;
  background-size: 100%;
}
section .cardsliderWrap .cardslider .slick-next {
  animation: shake 4.0s ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shake {
  0% {
    transform: translateX(0.1);
  }
  50% {
    transform: translateX(0.8);
  }
  100% {
    transform: translateX(1);
  }
}
/* ----------------------------------------------------
#point
---------------------------------------------------- */
#point .planTitle {
  background: url(../images/common/bg_plan.png) left top #4cc9f4;
}
#point .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #point .planTitle .jump img {
    width: 110px;
    height: auto;
  }
}
#point .planTitle .jump.view {
  opacity: 1.0;
}
#point .planBase .planDetail {
  padding: 80px 0 140px 0;
  background: url(../images/point/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #point .planBase .planDetail {
    background: url(../images/point/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
@media (max-width: 736px) {
  #point .planBase .planDetail {
    padding-bottom: 80px;
  }
}
#point .planBase .planDetail p {
  color: #4cc9f4;
}
#point .planBase .planDetail p span.br {
  display: inline;
}
@media (max-width: 736px) {
  #point .planBase .planDetail p span.br {
    display: block;
  }
}
#point .slick-dots li.slick-active button:before {
  color: #4cc9f4;
}

/* ----------------------------------------------------
#plan001
---------------------------------------------------- */
#plan001 .planTitle {
  background: url(../images/common/bg_plan.png) left top #3dd8c4;
}
#plan001 .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #plan001 .planTitle .jump img {
    width: 147px;
    height: auto;
  }
}
#plan001 .planTitle .jump.view {
  opacity: 1.0;
}
#plan001 .planBase .planDetail {
  background: url(../images/plan001/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #plan001 .planBase .planDetail {
    background: url(../images/plan001/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
#plan001 .planBase .planDetail p {
  color: #3dd8c4;
}
#plan001 .slick-dots li.slick-active button:before {
  color: #3dd8c4;
}

/* ----------------------------------------------------
#plan002
---------------------------------------------------- */
#plan002 .planTitle {
  background: url(../images/common/bg_plan.png) left top #4cc9f4;
}
#plan002 .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #plan002 .planTitle .jump img {
    width: 105px;
    height: auto;
  }
}
#plan002 .planTitle .jump.view {
  opacity: 1.0;
}
#plan002 .planBase .planDetail {
  background: url(../images/plan002/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #plan002 .planBase .planDetail {
    background: url(../images/plan002/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
#plan002 .planBase .planDetail p {
  color: #4cc9f4;
}
#plan002 .planBase .planDetail p span.br {
  display: block;
}
@media (max-width: 375px) {
  #plan002 .planBase .planDetail p span.br {
    display: inline;
  }
}
@media (max-width: 375px) {
  #plan002 .planBase .planDetail p {
    padding: 0 10px;
  }
}
#plan002 .slick-dots li.slick-active button:before {
  color: #4cc9f4;
}

/* ----------------------------------------------------
#plan003
---------------------------------------------------- */
#plan003 .planTitle {
  background: url(../images/common/bg_plan.png) left top #3dd8c4;
}
#plan003 .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #plan003 .planTitle .jump img {
    width: 167px;
    height: auto;
  }
}
#plan003 .planTitle .jump.view {
  opacity: 1.0;
}
#plan003 .planBase .planDetail {
  background: url(../images/plan003/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #plan003 .planBase .planDetail {
    background: url(../images/plan003/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
#plan003 .planBase .planDetail p {
  color: #3dd8c4;
}
#plan003 .planBase .planDetail p span.br {
  display: block;
}
@media (max-width: 736px) {
  #plan003 .planBase .planDetail p span.br {
    display: inline;
  }
}
@media (max-width: 375px) {
  #plan003 .planBase .planDetail p {
    padding: 0 10px;
  }
}
#plan003 .slick-dots li.slick-active button:before {
  color: #3dd8c4;
}

/* ----------------------------------------------------
#plan004
---------------------------------------------------- */
#plan004 .planTitle {
  background: url(../images/common/bg_plan.png) left top #4cc9f4;
}
#plan004 .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #plan004 .planTitle .jump img {
    width: 82px;
    height: auto;
  }
}
#plan004 .planTitle .jump.view {
  opacity: 1.0;
}
#plan004 .planBase .planDetail {
  background: url(../images/plan004/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #plan004 .planBase .planDetail {
    background: url(../images/plan004/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
#plan004 .planBase .planDetail p {
  color: #4cc9f4;
}
#plan004 .planBase .planDetail p span.br {
  display: block;
}
@media (max-width: 736px) {
  #plan004 .planBase .planDetail p span.br {
    display: inline;
  }
}
@media (max-width: 375px) {
  #plan004 .planBase .planDetail p span.br {
    display: block;
  }
}
@media (max-width: 736px) {
  #plan004 .planBase .planDetail p span.spbr {
    display: block;
  }
}
@media (max-width: 375px) {
  #plan004 .planBase .planDetail p span.spbr {
    display: inline;
  }
}
@media (max-width: 375px) {
  #plan004 .planBase .planDetail p span.spsebr {
    display: block;
  }
}
@media (max-width: 375px) {
  #plan004 .planBase .planDetail p {
    padding: 0 10px;
  }
}
#plan004 .planBase .other img {
  width: 735px;
  height: auto;
}
#plan004 .slick-dots li.slick-active button:before {
  color: #4cc9f4;
}

/* ----------------------------------------------------
#plan005
---------------------------------------------------- */
#plan005 {
  border-top: 4px solid #1f268f;
  background: url(../images/plan005/bg.jpg);
}
@media (max-width: 736px) {
  #plan005 h2.titleTab {
    margin-top: -34px;
  }
}
#plan005 .planBase {
  padding-top: 60px;
}
#plan005 .slick-dots li.slick-active button:before {
  color: #78d17d;
}

/* ----------------------------------------------------
#plan006
---------------------------------------------------- */
#plan006 .planTitle {
  background: url(../images/common/bg_plan.png) left top #ff9496;
}
#plan006 .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #plan006 .planTitle .jump img {
    width: 121px;
    height: auto;
  }
}
#plan006 .planTitle .jump.view {
  opacity: 1.0;
}
#plan006 .planBase .planDetail {
  padding-bottom: 80px;
  background: url(../images/plan006/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #plan006 .planBase .planDetail {
    background: url(../images/plan006/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
@media (max-width: 736px) {
  #plan006 .planBase .planDetail {
    padding-bottom: 60px;
  }
}
#plan006 .planBase .planDetail p {
  color: #ff9496;
}
#plan006 .planBase .planDetail p span.br {
  display: inline;
}
@media (max-width: 736px) {
  #plan006 .planBase .planDetail p span.br {
    display: block;
  }
}
#plan006 .planBase .more img {
  width: 550px;
  height: auto;
}
#plan006 .planBase .cardWrap .cardbox {
  cursor: auto;
}
#plan006 .planBase .total {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 736px) {
  #plan006 .planBase .total {
    margin-top: 10px;
  }
  #plan006 .planBase .total img {
    width: 154px;
    height: auto;
  }
}
#plan006 .slick-dots li.slick-active button:before {
  color: #ff9496;
}

/* ----------------------------------------------------
#plan007
---------------------------------------------------- */
#plan007 .planTitle {
  background: url(../images/common/bg_plan.png) left top #edd34c;
}
#plan007 .planTitle .jump {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
  text-align: center;
  opacity: 0;
}
@media (max-width: 736px) {
  #plan007 .planTitle .jump img {
    width: 79px;
    height: auto;
  }
}
#plan007 .planTitle .jump.view {
  opacity: 1.0;
}
#plan007 .planBase .planDetail {
  background: url(../images/plan007/bg.png) center bottom no-repeat #fff;
}
@media (max-width: 1080px) {
  #plan007 .planBase .planDetail {
    background: url(../images/plan007/bg.png) center bottom no-repeat #fff;
    background-size: 96%;
  }
}
#plan007 .planBase .planDetail p {
  color: #edd34c;
}
#plan007 .planBase .planDetail p span.br {
  display: block;
}
@media (max-width: 736px) {
  #plan007 .planBase .planDetail p span.br {
    display: inline;
  }
}
@media (max-width: 736px) {
  #plan007 .planBase .planDetail p span.spbr {
    display: block;
  }
}
@media (max-width: 375px) {
  #plan007 .planBase .planDetail p span.spbr {
    display: inline;
  }
}
#plan007 .slick-dots li.slick-active button:before {
  color: #edd34c;
}

/* animation
--------------------- */
.ani1_1 {
  animation: a1_1 0.5s forwards;
}

.ani1_2 {
  animation: a1_2 0.5s forwards;
}

@keyframes a1_1 {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
    opacity: 1.0;
  }
  51% {
    opacity: 0.0;
  }
  100% {
    opacity: 0.0;
  }
}
@keyframes a1_2 {
  0% {
    transform: rotateY(0deg);
    opacity: 0.0;
  }
  50% {
    transform: rotateY(90deg);
    opacity: 0.0;
  }
  51% {
    opacity: 1.0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1.0;
  }
}
.ani2_1 {
  animation: a2_1 0.5s forwards;
}

.ani2_2 {
  animation: a2_2 0.5s forwards;
}

@keyframes a2_1 {
  0% {
    opacity: 0.0;
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(90deg);
    opacity: 0.0;
  }
  51% {
    opacity: 1.0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1.0;
  }
}
@keyframes a2_2 {
  0% {
    transform: rotateY(0deg);
    opacity: 1.0;
  }
  50% {
    transform: rotateY(90deg);
    opacity: 1.0;
  }
  51% {
    opacity: 0.0;
  }
  100% {
    opacity: 0.0;
  }
}
/* ----------------------------------------------------
#other
---------------------------------------------------- */
#other {
  padding: 65px 0 100px 0;
  background: #3dd8c4;
}
@media (max-width: 736px) {
  #other {
    padding-bottom: 70px;
  }
}
#other h2 {
  margin-bottom: 50px;
  text-align: center;
}
#other h2 img {
  width: 716px;
  height: auto;
}
@media (max-width: 736px) {
  #other h2 {
    padding: 0 16px;
  }
}
#other .innerbox {
  padding: 50px 20px;
  margin: 0 auto 40px auto;
  width: 740px;
  text-align: center;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 736px) {
  #other .innerbox {
    padding: 40px 10px;
    margin: 0 16px 40px 16px;
    width: auto;
  }
}
#other .innerbox p {
  margin-bottom: 30px;
  font-size: 26px;
  line-height: 1.8;
  font-weight: bold;
  color: #1f268f;
}
#other .innerbox p:last-child {
  margin-bottom: 0;
}
@media (max-width: 736px) {
  #other .innerbox p {
    font-size: 19px;
  }
}
@media (max-width: 375px) {
  #other .innerbox p {
    font-size: 5vw;
  }
}
@media (max-width: 736px) {
  #other .innerbox p span.spbr {
    display: block;
  }
}
#other .cbox {
  text-align: center;
}
@media (max-width: 736px) {
  #other .cbox {
    padding: 0 16px;
  }
}
#other .cbox p:first-child {
  margin-bottom: 10px;
}
#other .cbox p:first-child img {
  width: 435px;
  height: auto;
}
#other .cbox p.btn img {
  width: 434px;
  height: auto;
}

/* ----------------------------------------------------
.standardWrap
---------------------------------------------------- */
.standardWrap {
  padding: 100px 0;
  margin: 0 auto;
  width: 960px;
  /* .archiveBox
  --------------------------------- */
  /* .singleBox
  --------------------------------- */
}
@media (max-width: 1080px) {
  .standardWrap {
    padding: 60px 20px;
    width: 100%;
  }
}
.standardWrap h2 {
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  color: #1f268f;
}
@media (max-width: 1080px) {
  .standardWrap h2 {
    margin-bottom: 30px;
  }
}
.standardWrap .catenavi {
  margin: 0 0 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.standardWrap .catenavi div {
  margin: 0 6px 10px 6px;
}
.standardWrap .catenavi div a {
  padding: 8px 20px 10px 20px;
  color: #fff;
  line-height: 1.0;
  display: block;
  border-radius: 100px;
  background: #1f268f;
}
.standardWrap .catenavi div a:hover {
  color: #1f268f;
  background: #fff;
}
.standardWrap .catenavi div.non {
  padding: 8px 20px 10px 20px;
  line-height: 1.0;
  border-radius: 100px;
  color: #fff;
  background: #888;
}
@media (max-width: 1080px) {
  .standardWrap .catenavi {
    margin-bottom: 20px;
  }
}
.standardWrap .archiveBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.standardWrap .archiveBox:after {
  content: "";
  display: block;
  width: 32%;
}
.standardWrap .archiveBox .box {
  margin-bottom: 30px;
  width: 32%;
  transition: 0.1s;
}
@media (max-width: 736px) {
  .standardWrap .archiveBox .box {
    margin-bottom: 20px;
    width: 100%;
  }
}
.standardWrap .archiveBox .box .title {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1f268f;
}
@media (max-width: 375px) {
  .standardWrap .archiveBox .box .title {
    font-size: 16px;
  }
}
.standardWrap .archiveBox .box .thumbnail {
  line-height: 0;
}
.standardWrap .archiveBox .box .thumbnail img {
  line-height: 0;
}
.standardWrap .archiveBox .box .thumbnail_img {
  position: relative;
  width: 100%;
}
.standardWrap .archiveBox .box .thumbnail_img:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.standardWrap .archiveBox .box .thumbnail_img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.standardWrap .archiveBox .box .singleinfo {
  font-size: 14px;
  line-height: 1.5;
}
.standardWrap .archiveBox .box .singleinfo .category {
  font-size: 12px;
  line-height: 1.0;
  font-weight: 500;
  color: #1f268f;
}
.standardWrap .archiveBox .box .singleinfo .category span {
  padding: 4px 10px 5px 10px;
  margin-top: 10px;
  margin-right: 6px;
  display: inline-block;
  border: 1px solid #1f268f;
  border-radius: 100px;
}
.standardWrap .archiveBox .box .singleinfo .category span:last-child {
  margin-right: 0;
}
.standardWrap .archiveBox .box a {
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  display: block;
}
.standardWrap .archiveBox .box a:hover {
  transform: translate(0, -10px);
}
@media (max-width: 768px) {
  .standardWrap .archiveBox .box a {
    padding: 20px;
  }
}
.standardWrap .singleBox article {
  padding: 40px 50px;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 16px;
}
.standardWrap .singleBox article h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: #1f268f;
}
@media (max-width: 736px) {
  .standardWrap .singleBox article h3 {
    font-size: 18px;
  }
}
.standardWrap .singleBox article .thumbnail {
  margin: 30px 0;
  text-align: center;
}
.standardWrap .singleBox article .thumbnail .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.standardWrap .singleBox article .thumbnail .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.standardWrap .singleBox article .text {
  line-height: 1.5;
}
.standardWrap .singleBox article .categoryBox {
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.0;
  font-weight: 500;
  display: flex;
}
.standardWrap .singleBox article .categoryBox p {
  margin: 10px 6px 10px 0;
}
.standardWrap .singleBox article .categoryBox p:last-child {
  margin-right: 0;
}
.standardWrap .singleBox article .categoryBox p a {
  padding: 4px 10px 5px 10px;
  display: block;
  border: 1px solid #1f268f;
  color: #1f268f;
  border-radius: 100px;
}
.standardWrap .singleBox article .categoryBox p a:hover {
  color: #fff;
  background: #1f268f;
}
@media (max-width: 736px) {
  .standardWrap .singleBox article {
    padding: 30px 20px;
  }
}
@media (max-width: 375px) {
  .standardWrap .singleBox article {
    padding: 20px;
  }
}
.standardWrap .singleBox .backBtn {
  margin: 0 auto;
  width: 240px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.standardWrap .singleBox .backBtn a {
  padding: 16px 0;
  display: block;
  border-radius: 100px;
  background: #1f268f;
  color: #fff;
}
.standardWrap .singleBox .backBtn a:hover {
  color: #1f268f;
  background: #fff;
}
@media (max-width: 736px) {
  .standardWrap .singleBox .backBtn {
    width: 100%;
  }
}

/* ----------------------------------------------------
.pager
---------------------------------------------------- */
.pager {
  margin-top: 40px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
}
.pager a {
  color: #1f268f;
  background: #fff;
  border-radius: 6px;
}
.pager a:hover {
  color: #fff;
  background: #1f268f;
}
.pager .link_before,
.pager .link_next {
  padding: 6px 10px;
  display: block;
  color: #1f268f;
  background: #fff;
  border-radius: 6px;
}
.pager .link_before:hover,
.pager .link_next:hover {
  color: #fff;
  background: #1f268f;
}
@media (max-width: 736px) {
  .pager .link_before,
  .pager .link_next {
    margin-bottom: 6px;
  }
}
.pager .link_before {
  margin: 0 5px 0 0;
}
.pager .link_next {
  margin: 0 0 0 5px;
}
.pager .link_page {
  padding: 6px 14px;
  color: #1f268f;
  background: #fff;
  border-radius: 6px;
}
.pager .link_page:hover {
  color: #fff;
  background: #1f268f;
}
@media (max-width: 736px) {
  .pager .link_page {
    margin-bottom: 6px;
  }
}
.pager .current_page {
  padding: 6px 14px;
  color: #fff;
  background: #1f268f;
  border-radius: 6px;
}
@media (max-width: 736px) {
  .pager .current_page {
    margin-bottom: 6px;
  }
}
@media (max-width: 736px) {
  .pager {
    flex-wrap: wrap;
  }
}

/* ----------------------------------------------------
#pageup
---------------------------------------------------- */
#pageup {
  position: fixed;
  right: 100px;
  bottom: 40px;
  cursor: pointer;
  color: #fff;
  background: #1f268f;
}

/* ----------------------------------------------------
footer
---------------------------------------------------- */
footer {
  text-align: center;
  background: #fff;
}
footer.gtm_footer {
  padding-bottom: 80px;
}
@media (max-width: 736px) {
  footer.gtm_footer {
    padding-bottom: 50px;
  }
}
footer .illbox {
  margin-top: -50px;
  background: url(../images/other/line.png) center bottom no-repeat;
}
@media (max-width: 736px) {
  footer .illbox {
    margin-left: 8px;
    margin-right: 8px;
    background: url(../images/other/line.png) center bottom no-repeat;
    background-size: 100%;
  }
}
footer .illbox .landing {
  opacity: 0;
}
footer .illbox .landing.view {
  opacity: 1.0;
}
footer .logo {
  margin-top: 80px;
}
@media (max-width: 736px) {
  footer .logo {
    margin-top: 50px;
  }
}
footer .logo img {
  width: 198px;
  height: auto;
}
@media (max-width: 736px) {
  footer .logo img {
    width: 99px;
  }
}
footer .sp_social {
  margin-top: 30px;
}
@media (min-width: 736px) {
  footer .sp_social {
    display: none;
  }
}
footer .sp_social p {
  margin-bottom: 8px;
  text-align: center;
}
footer .sp_social p img {
  width: 88px;
  height: auto;
}
footer .sp_social ul {
  display: flex;
  justify-content: center;
}
footer .sp_social ul li {
  margin: 0 6px;
}
footer .sp_social ul li img {
  width: 48px;
  height: auto;
}

/* ----------------------------------------------------
.pop
---------------------------------------------------- */
.pop {
  opacity: 0;
  transform: translate(0, 30px);
}
.pop.fadein {
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-width: 736px) {
  .pop {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeinanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
