@charset "utf-8";
* {
  /*outline: solid 1px red;*/
}


/* body
========================================================================== */

body {
  font-size: 16px;
  font-family: 'Segoe UI', 'Noto Sans JP', 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
}


/*　リンク設定　*/

* a {
  color: #4F3881;
  text-decoration: none;
  transition: all .2s ease;
}

* a:hover {
  opacity: .8;
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
  iframe,
  video {
    width: 100%;
    height: 33vh;
  }
}


/* common
========================================================================== */


/* タイトル */

.ttl-page {
  background-color: #F2EFF5;
  position: relative;
  color: #4F3881;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 60px 0 34px;
}

.ttl-page::after {
  display: block;
  position: absolute;
  z-index: -1;
  content: "";
  background-size: 100%;
  height: 370px;
  width: 100%;
  bottom: -368px;
  background-image: url("/assets/img/top/bg-sec-bottom.svg");
  background-position: center top;
}

@media screen and (max-width: 768px) {
  .ttl-page {
    font-size: 20px;
    padding: 48px 0 34px;
  }
}


/* キャラクター */

.img-chara-01,
.img-chara-02,
.img-chara-03 {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  width: 1000px;
  height: 250px;
  margin: 0 auto;
}

.img-chara-01::after,
.img-chara-02::after,
.img-chara-03::after {
  display: block;
  position: absolute;
  top: 118px;
  right: 0;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 250px;
}


/* おじいさん */

.img-chara-01::after {
  background-image: url("/assets/img/common/img-chara-1.png");
  width: 116px;
}


/* ひめ */

.img-chara-02::after {
  background-image: url("/assets/img/common/img-chara-2.png");
  width: 126px;
}


/* ちょんまげ */

.img-chara-03::after {
  background-image: url("/assets/img/common/img-chara-3.png");
  top: 104px;
  right: -20px;
  width: 150px;
}

@media screen and (max-width: 768px) {
  .img-chara-01,
  .img-chara-02,
  .img-chara-03 {
    width: 100%;
  }
  /* おじいさん */
  .img-chara-01::after {
    background-image: url("/assets/img/common/img-chara-1.png");
    right: 20px;
    width: 88px;
  }
  /* ひめ */
  .img-chara-02::after {
    background-image: url("/assets/img/common/img-chara-2.png");
    right: 20px;
    width: 90px;
  }
  /* ちょんまげ */
  .img-chara-03::after {
    background-image: url("/assets/img/common/img-chara-3.png");
    top: 104px;
    right: 20px;
    width: 105px;
  }
}

.ttl-large {
  color: #4F3881;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0.1em;
}

.ttl-middle {
  background-color: #F2EFF5;
  border-top: solid 1px #4F3881;
  border-bottom: solid 1px #4F3881;
  color: #4F3881;
  font-size: 26px;
  text-align: center;
  padding: 30px 40px;
}

.ttl-middle-2 {
  border-top: solid 1px #4F3881;
  border-bottom: solid 1px #4F3881;
  color: #4F3881;
  font-size: 26px;
  text-align: center;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .ttl-large {
    font-size: 18px;
  }
  .ttl-middle {
    font-size: 18px;
    padding: 15px 10px!important;
  }
  .ttl-middle-2 {
    font-size: 18px;
    padding: 15px 10px!important;
  }
}


/* ブロック */

.flex-01 {
  display: flex;
}

.flex-02 {
  display: flex;
  justify-content: space-between;
}

.flex-03 {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .flex-01,
  .flex-02,
  .flex-03 {
    display: block;
  }
}


/* ボタン */

.btn-cmn-01 {
  display: inline-block;
  background-color: #4F3881;
  position: relative;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 20px 30px;
}

.btn-cmn-01::after {
  display: inline-block;
  content: "";
  background-image: url(/assets/img/common/arrow-01.svg);
  background-size: contain;
  width: 24px;
  height: 15px;
  margin-left: 60px;
}


/* 表記切り替え */

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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


/* パンくず */

.breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 14px;
  width: 1000px;
  margin: 152px auto 140px;
}

.breadcrumbs li+li {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 18px;
}

.breadcrumbs li+li:before {
  display: block;
  content: "";
  background-color: #A5A5A5;
  width: 20px;
  height: 1px;
  margin-right: 18px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    width: 100%;
    padding: 0 15px;
    margin: 130px 0 64px;
  }
  .breadcrumbs li+li {
    margin-left: 18px;
  }
  .breadcrumbs li+li:before {
    width: 20px;
    margin-right: 18px;
  }
}


/* pagetop */

.pagetop {
  display: inline-block;
  position: fixed;
  z-index: 2;
  bottom: 20px;
  right: 20px;
}

.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 100%;
  color: #4F3881;
  line-height: 1;
  font-size: 28px;
  text-align: center;
  width: 48px;
  height: 48px;
}

@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 16px;
    right: 16px;
  }
  .pagetop a {
    width: 38px;
    height: 38px;
  }
}


/* テキスト */

p {
  line-height: 1.4;
}

.txt-small {
  font-size: 14px;
  line-height: 2;
}

.txt-middle {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .txt-small {
    font-size: 12px;
    line-height: 1.8;
  }
  .txt-middle {
    font-size: 14px;
    line-height: 2;
  }
}


/* コンテンツ幅 */

.content-width-01 {
  width: 1000px;
  margin: 0 auto;
}

.content-width-02 {
  width: 660px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content-width-01,
  .content-width-02 {
    width: 100%;
    padding: 0 16px;
  }
  .content-width-01 .content-width-02 {
    width: 100%;
    padding: 0;
  }
}


/* 位置 */

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

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

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


/* 余白 */

.mb00 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb140 {
  margin-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .mb50,
  .mb60,
  .mb70,
  .mb80,
  .mb90,
  .mb100,
  .mb140 {
    margin-bottom: 32px;
  }
}

.bnr-check a {
  display: block;
}

.bnr-check a:hover img {
  opacity: .7;
}


/* header
========================================================================== */

.header-wrapper {
  display: block;
  background-color: #F2EFF5;
  text-align: center;
  padding: 30px 0 62px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: #fff;
  width: 1000px;
  margin: 0 auto;
}


/* logo */

.ttl-header a {
  display: block;
  background-size: contain;
  background-image: url(/assets/img/common/logo.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 204px;
  height: 80px;
  margin: 0 auto;
}


/* nav */

.btn-hamburger {
  display: none;
}

.nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-header a {
  position: relative;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.nav-header a:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  background-image: url("/assets/img/common/arrow-nav-01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 9px;
  margin: 16px auto auto;
}

.nav-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.nav-header ul li+li {
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  .header-wrapper {
    position: relative;
    background-color: #fff;
    padding: 16px;
  }
  .header-inner {
    width: 100%;
  }
  /* logo */
  .ttl-header a {
    width: 120px;
    height: 48px;
  }
  /* nav */
  .btn-hamburger,
  .btn-hamburgerr span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .btn-hamburger {
    position: absolute;
    z-index: 20;
    top: 12px;
    right: 8px;
    width: 38px;
    height: 26px;
  }
  .btn-hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #7C60BA;
  }
  .btn-hamburger span:nth-of-type(1) {
    top: 0;
  }
  .btn-hamburger span:nth-of-type(2) {
    top: 11px;
  }
  .btn-hamburger span:nth-of-type(3) {
    bottom: 0;
  }
  .btn-hamburger span:nth-of-type(3)::after {
    display: block;
    position: absolute;
    right: 0;
    background-color: #fff;
    content: "";
    width: 6px;
    height: 4px;
  }
  .btn-hamburger.active {
    position: fixed;
    right: 25px;
  }
  .btn-hamburger.active span {
    background-color: #fff;
    right: 20px;
  }
  .btn-hamburger.active span:nth-of-type(1) {
    top: 29px;
    transform: rotate(45deg);
  }
  .btn-hamburger.active span:nth-of-type(2) {
    display: none;
  }
  .btn-hamburger.active span:nth-of-type(3) {
    bottom: -7px;
    transform: rotate(135deg);
  }
  .btn-hamburger.active span:nth-of-type(3)::after {
    display: none;
  }
  .nav-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #7C60BA;
    width: 100vw;
    height: 100vh;
    padding: 98px 0;
  }
  .nav-header.active {
    display: block;
  }
  .nav-header a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0;
  }
  .nav-header a:after {
    display: block;
    position: static;
    content: "";
    background-image: url("/assets/img/common/arrow-right.svg");
    width: 28px;
    height: 5px;
    margin: 0 0 0 16px;
  }
  .nav-header ul {
    display: block;
    text-align: center;
  }
  .nav-header ul li {
    text-align: center;
    width: 100%;
  }
  .nav-header ul li+li {
    margin-left: 0;
  }
}


/* footer
========================================================================== */

.footer-wrapper {
  display: block;
  text-align: center;
  position: relative;
}

.footer-inner {
  background-color: #4F3881;
  position: relative;
  color: #fff;
}


/* bg curve */

.bg-curve {
  display: block;
  position: relative;
  z-index: -1;
  height: 370px;
}

.bg-curve::before {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  content: "";
  background-image: url(/assets/img/common/bg-footer.svg);
  background-position: center bottom -1px;
  background-size: 100%;
  height: 370px;
  width: 100%;
}


/* logo */

.ttl-footer {
  position: absolute;
  z-index: 1;
  top: 118px;
  left: 0;
  right: 0;
}

.ttl-footer a {
  display: block;
  background-size: contain;
  background-image: url(/assets/img/common/logo.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
  width: 204px;
  height: 80px;
  margin: 0 auto;
}


/* chara */

.img-chara {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  width: 1000px;
  height: 250px;
  margin: 0 auto;
}

.img-chara::after {
  display: block;
  position: absolute;
  top: 0;
  right: -120px;
  content: "";
  background-size: contain;
  background-image: url(/assets/img/common/chara-02.png);
  background-repeat: no-repeat;
  width: 120px;
  height: 250px;
}


/* nav */

.nav-footer a {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.nav-footer a:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  background-image: url("/assets/img/common/arrow-nav-02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 9px;
  margin: 16px auto auto;
}

.nav-footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.nav-footer ul li+li {
  margin-left: 40px;
}


/* company-data */

.footer-company {
  display: flex;
  justify-content: center;
  font-size: 14px;
  padding: 60px 0 0;
  text-align: left;
}

.footer-company-data {
  margin: 0 16px;
}


/* copyright */

.txt-copyright {
  font-family: "Montserrat";
  color: #A493C9;
  font-size: 12px;
  font-weight: 500;
  padding: 60px 0;
}

@media screen and (max-width: 1200px) {
  .img-chara {
    width: 100%;
  }
  .img-chara::after {
    right: 5%;
  }
}

@media screen and (max-width: 768px) {
  .footer-wrapper {
    text-align: center;
    position: relative;
  }
  .footer-inner {
    padding-top: 70px;
  }
  /* bg curve */
  .bg-curve {
    display: block;
    position: relative;
    z-index: -1;
    height: 280px;
    margin-bottom: -2px;
  }
  .bg-curve::before {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    content: "";
    background-image: url(/assets/img/common/bg-footer.svg);
    background-position: center bottom;
    background-size: 100%;
    height: 370px;
    width: 100%;
  }
  /* logo */
  .ttl-footer {
    position: absolute;
    z-index: 1;
    top: 118px;
    left: 0;
    right: 0;
  }
  .ttl-footer a {
    display: block;
    background-size: contain;
    background-image: url(/assets/img/common/logo.png);
    background-repeat: no-repeat;
    text-indent: -9999px;
    width: 204px;
    height: 74px;
    margin: 0 auto;
  }
  /* chara */
  .img-chara {
    display: block;
    position: absolute;
    top: 27%;
    right: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 250px;
    margin: 0 auto;
  }
  .img-chara::after {
    right: 30px;
    width: 64px;
    height: 132px;
  }
  /* nav */
  .nav-footer {
    position: relative;
    z-index: 5;
  }
  .nav-footer a {
    position: relative;
    font-size: 12px;
  }
  .nav-footer a:after {
    display: none;
  }
  .nav-footer ul {
    flex-wrap: wrap;
  }
  .nav-footer ul li {
    width: calc(98%/3);
    line-height: 1;
    padding: 0;
    margin: 18px 0;
  }
  .nav-footer ul li+li {
    margin-left: 0;
  }
  /* company-data */
  .footer-company {
    display: block;
    text-align: center;
    padding: 24px 0 0;
  }
  .footer-company-data {
    margin: 0;
  }
  .footer-company-data+.footer-company-data {
    margin-top: 16px;
  }
  /* copyright */
  .txt-copyright {
    padding: 40px 0 40px;
  }
}