@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  background-color: #000;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.gloabal {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

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

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

/* 共通パーツ */
.section-width {
  max-width: 1500px;
  margin: 0 0 0 auto;
  width: 80%;
}

.section-width-md {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.model-fixed-pagenation > p {
  left: 1rem !important;
}

/*
コンテンツ幅を設定するための共通クラス
*/
.wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

/*
  セクションタイトル用の共通クラス
  */
.section-ttl {
  font-size: 4rem;
  text-align: center;
  margin-top: 15px;
}
@media screen and (max-width: 896px) {
  .section-ttl {
    font-size: 2.4rem;
  }
}

/* 疑似要素でタイトル下に下線を引く */
.section-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.button-sp-wrap {
  display: none;
}
@media screen and (max-width: 1025px) {
  .button-sp-wrap {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    font-size: 50px;
    color: #fff;
    background: #FFEA00;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 30;
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
  }
}

/*このクラスが付与されると表示する*/
.active {
  opacity: 1;
  visibility: visible;
}

.button-sp-link {
  text-align: center;
  width: 50%;
}
.button-sp-link:first-child {
  border-right: 1px solid black;
}
.button-sp-link > p {
  font-size: 1.3rem;
  color: #000;
  margin-top: -10px;
}
.button-sp-link-img > img {
  width: 25px;
  height: 25px;
  position: relative;
  bottom: 20px;
}

#about {
  padding-top: 40px;
  margin-top: -40px;
}

/*===========
inview
===========*/
.box {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sponly {
  display: block;
}
@media screen and (max-width: 896px) {
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 1367px) {
  .sponly.pc-mn {
    display: none !important;
  }
}

.pconly {
  display: none;
}
@media screen and (max-width: 896px) {
  .pconly {
    display: block;
  }
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .site-title {
  line-height: 1px;
  padding: 64px 0 0 80px;
}
@media screen and (max-width: 1025px) {
  #header .site-title {
    padding: 20px 0 0 30px;
    width: 100px;
  }
}

#header .site-title a {
  display: block;
}

.header-r {
  margin-right: 150px;
}
.header-ttl {
  font-size: 2rem;
}
@media screen and (max-width: 1025px) {
  .header-ttl {
    display: none;
  }
}
@media screen and (max-width: 1025px) {
  .header-logo-pc {
    display: none;
  }
}
.header-logo-sp {
  display: none;
}
@media screen and (max-width: 1025px) {
  .header-logo-sp {
    display: block;
  }
}

/*
ハンバーガ―メニュー
*/
.hamburger {
  display: none;
}
@media screen and (max-width: 1025px) {
  .hamburger {
    display: block;
    background-color: transparent;
    position: fixed;
    right: 20px;
    z-index: 60;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-image: url(../../top/img/hamburger.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 50px;
  }
}
.hamburger.active {
  background-image: url(../../top/img/hamburger_close.svg);
  -webkit-transition: 2s;
  transition: 2s;
  position: fixed;
}

.hamburger:hover {
  opacity: 0.7;
}

/* ハンバーガーメニューの線の設定（メニューが閉じている時） */
.hamburger span {
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 25px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

/* 1本目の線の位置を設定 */
.hamburger span:nth-child(1) {
  top: 26px;
  background: #E3AECE;
}

.hamburger span:nth-child(1)::before {
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
}

/* 2本目の線の位置を設定 */
.hamburger span:nth-child(2) {
  top: 36px;
  background: #BBD4EF;
}

/* 3本目の線の位置を設定 */
.hamburger span:nth-child(3) {
  top: 47px;
  background: #D5EBE1;
}

/*
  ハンバーガーメニューの線の設定（メニューが開いている時）
  1本目の線を-45度回転
  */
.hamburger.active span:nth-child(1) {
  top: 30px;
  left: 26px;
  background: #000;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

/* 2本目と3本目は重ねて45度回転 */
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 30px;
  background: #000;
  -webkit-transform: rotate(37deg);
          transform: rotate(37deg);
}

.hamburger.active span:nth-child(1)::before {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  top: -50px;
  left: 55%;
  font-size: 14px;
}
@media screen and (max-width: 896px) {
  .hamburger.active span:nth-child(1)::before {
    top: -40px;
    -webkit-transform: rotate(37deg);
            transform: rotate(37deg);
  }
}

#navi {
  position: fixed;
  z-index: 60;
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh;
  background: #fff;
  color: #000;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media screen and (max-width: 1025px) {
  #navi {
    width: 30%;
  }
}
@media screen and (max-width: 896px) {
  #navi {
    width: 70%;
  }
}

#navi.active {
  right: 0;
}

#navi .menu {
  margin-right: 10%;
}
@media screen and (max-width: 1025px) {
  #navi .menu {
    margin-right: 0;
  }
}

#navi .menu li {
  padding: 20px 0 20px 10px;
  text-align: left;
}
@media screen and (max-width: 896px) {
  #navi .menu li {
    padding: 15px;
  }
}

#navi .menu a {
  margin-left: 10px;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
  font-size: 1.8rem;
}
#navi .menu a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 56%;
  left: -30px;
}
@media screen and (max-width: 896px) {
  #navi .menu a {
    font-size: 1.3rem;
  }
}

#navi .menu-r li {
  margin-bottom: 20px;
  text-align: left;
  padding-bottom: 10px;
}

#navi .menu-r a {
  color: #000;
  font-size: 13px;
  font-weight: 400;
}

#navi .btn {
  width: 250px;
  border: solid 1px #fff;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 15px 0;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* ボタンの右と下の線は疑似要素で設定 */
#navi .btn::after {
  content: "";
  width: 250px;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 15px 0;
  position: absolute;
  right: -6px;
  bottom: -6px;
}

.navi-contact {
  width: 100%;
  margin-top: 30px;
}
.navi-contact a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pl-md {
  padding-left: 30px !important;
}
.pl-md > a {
  position: relative;
}
.pl-md > a::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #9F974D;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
}

.menu-flex {
  width: 600px;
}
@media screen and (max-width: 1025px) {
  .menu-flex {
    width: 100%;
    margin-top: 10px;
  }
}
.menu-flex-ttl {
  font-size: 1.9rem;
  color: #000;
  text-align: left;
}
.menu-flex__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .menu-flex__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 896px) {
  .menu-flex__inner {
    margin-top: 30px;
  }
}

.navi__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
  margin: 180px auto 0;
}
@media screen and (max-width: 1025px) {
  .navi__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;
    margin: 30px auto 0;
  }
}
.navi__flex-logo {
  text-align: left;
}
@media screen and (max-width: 896px) {
  .navi__flex-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
.navi__flex-logo > a {
  width: 150px;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 896px) {
  .navi__flex-logo > a {
    width: 50px;
  }
}
@media screen and (max-width: 896px) {
  .navi__flex-logo > img {
    width: 10%;
    margin-right: 30px;
  }
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.js-fade.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fixed-navi {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 60px;
  color: #fff;
  z-index: 50;
}
@media screen and (max-width: 1500px) {
  .fixed-navi {
    left: 30px;
  }
}
@media screen and (max-width: 1025px) {
  .fixed-navi {
    display: none;
  }
}
.fixed-navi__li {
  margin-bottom: 50px;
}
@media screen and (max-width: 1367px) {
  .fixed-navi__li {
    margin-bottom: 30px;
  }
}
.fixed-navi__li:last-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 1367px) {
  .fixed-navi__li:last-child {
    margin-bottom: 50px;
  }
}
.fixed-navi__li a {
  font-size: 1.6rem;
  position: relative;
  margin-left: 15px;
}
@media screen and (max-width: 1367px) {
  .fixed-navi__li a {
    font-size: 1.4rem;
  }
}
.fixed-navi__li a::before {
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 56%;
  left: -30px;
}
.fixed-navi__contact {
  margin-left: -20px;
}
.fixed-navi__contact a {
  padding: 10px 50px;
  border: 1px solid #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 1367px) {
  .fixed-navi__contact a {
    font-size: 1.6rem;
  }
}
.fixed-navi__contact a::before {
  display: none;
}

.main-txt {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
}
@media screen and (max-width: 1500px) {
  .main-txt {
    left: 55%;
  }
}
@media screen and (max-width: 1025px) {
  .main-txt {
    left: 50%;
    width: 80%;
  }
}
.main-txt__blk {
  text-align: center;
  color: #fff;
  margin-left: 10%;
}
@media screen and (max-width: 896px) {
  .main-txt__blk {
    margin-left: 0;
  }
}
.main-txt__blk p {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.3;
}
@media screen and (max-width: 1500px) {
  .main-txt__blk p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 1367px) {
  .main-txt__blk p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 896px) {
  .main-txt__blk p {
    line-height: 2.2;
    text-align: left;
    font-size: 1.8rem;
  }
}

.mv {
  background-image: url(../img/kv.jpg);
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 1900px;
  position: relative;
}
@media screen and (max-width: 1500px) {
  .mv {
    height: 1400px;
  }
}
@media screen and (max-width: 1367px) {
  .mv {
    height: 1200px;
  }
}
@media screen and (max-width: 896px) {
  .mv {
    height: 900px;
  }
}
.mv__ttl-wrap {
  position: absolute;
  top: 15%;
  right: 20%;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .mv__ttl-wrap {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .mv__ttl-wrap {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 75%;
    margin: 0 auto;
  }
}
.mv__ttl--mn {
  font-size: 3.4rem;
  margin-bottom: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1500px) {
  .mv__ttl--mn {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1367px) {
  .mv__ttl--mn {
    font-size: 3rem;
  }
}
@media screen and (max-width: 896px) {
  .mv__ttl--mn {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__ttl--mn {
    font-size: 1.8rem;
  }
}
.mv__ttl--main {
  font-size: 7rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 900;
}
@media screen and (max-width: 1500px) {
  .mv__ttl--main {
    font-size: 6.6rem;
  }
}
@media screen and (max-width: 1367px) {
  .mv__ttl--main {
    font-size: 6rem;
  }
}
@media screen and (max-width: 896px) {
  .mv__ttl--main {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 480px) {
  .mv__ttl--main {
    font-size: 3.4rem;
  }
}

/*-------------------------------------------
  メイン
  -------------------------------------------*/
.main-ttl {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 1367px) {
  .main-ttl {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 896px) {
  .main-ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .main-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .main-ttl.sec {
    font-size: 2rem;
  }
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto 0 0;
  width: 100%;
}

.question {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(227, 174, 206, 0.8)), color-stop(50%, rgba(187, 212, 239, 0.8)), to(rgba(213, 235, 225, 0.8)));
  background-image: linear-gradient(90deg, rgba(227, 174, 206, 0.8), rgba(187, 212, 239, 0.8) 50%, rgba(213, 235, 225, 0.8) 100%);
  width: 80%;
  margin: 0 0 0 auto;
  padding: 100px 40px 50px;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}
@media screen and (max-width: 1367px) {
  .question {
    width: 75%;
  }
}
@media screen and (max-width: 1025px) {
  .question {
    width: 90%;
    margin: 0px 0 0 auto;
  }
}
@media screen and (max-width: 896px) {
  .question {
    padding: 50px 20px 20px;
  }
}
.question ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .question ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
}
.question ul li {
  width: 50%;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0px 30px 30px 0;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .question ul li {
    width: 100%;
    border-right: none;
    margin-bottom: 30px;
    padding: 0px 0 30px 0;
  }
}
.question ul li:nth-child(2) {
  border-right: none;
  padding: 0px 0px 30px 30px;
}
@media screen and (max-width: 896px) {
  .question ul li:nth-child(2) {
    padding: 0px 0 30px 0;
  }
}
.question ul li:nth-child(3) {
  border-bottom: none;
  padding: 30px 30px 0px 0;
}
@media screen and (max-width: 896px) {
  .question ul li:nth-child(3) {
    border-bottom: 1px solid #fff;
    padding: 0px 0 30px 0;
  }
}
.question ul li:nth-child(4) {
  border-right: none;
  border-bottom: none;
  padding: 30px 0px 0px 30px;
}
@media screen and (max-width: 896px) {
  .question ul li:nth-child(4) {
    padding: 0px 0 30px 0;
  }
}
.question ul li h3 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1367px) {
  .question ul li h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 896px) {
  .question ul li h3 {
    font-size: 2rem;
  }
}
.question ul li .txt-detail {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 1367px) {
  .question ul li .txt-detail {
    font-size: 2rem;
  }
}
@media screen and (max-width: 896px) {
  .question ul li .txt-detail {
    font-size: 1.8rem;
  }
}
.question ul li .txt-detail02 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.7;
}
@media screen and (max-width: 1367px) {
  .question ul li .txt-detail02 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 896px) {
  .question ul li .txt-detail02 {
    font-size: 1.4rem;
  }
}
.question ul li .txt-blk {
  background: #fff;
  font-weight: 700;
  font-size: 2rem;
  padding: 10px 20px;
  width: 100%;
  line-height: 1.6;
  height: 160px;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 1600px) {
  .question ul li .txt-blk {
    height: 170px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1025px) {
  .question ul li .txt-blk {
    height: 160px;
  }
}
@media screen and (max-width: 896px) {
  .question ul li .txt-blk {
    font-size: 1.4rem;
    height: auto;
  }
}
.question ul li .txt-blk span {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3%;
  width: 90%;
}
@media screen and (max-width: 896px) {
  .question ul li .txt-blk span {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.btn-blk {
  padding-top: 200px;
  padding-left: 10%;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 1367px) {
  .btn-blk {
    padding-left: 0;
    padding-top: 100px;
    width: 75%;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 1025px) {
  .btn-blk {
    margin: 0 auto;
    width: 90%;
  }
}
.btn-blk__inner {
  width: 1300px;
}
@media screen and (max-width: 1600px) {
  .btn-blk__inner {
    width: auto;
  }
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
}
@media screen and (max-width: 1025px) {
  .btn-wrap {
    -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;
    margin-top: 60px;
  }
}
.btn-wrap li {
  width: 540px;
  margin-right: 3%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1700px) {
  .btn-wrap li {
    width: 500px;
  }
}
@media screen and (max-width: 1500px) {
  .btn-wrap li {
    width: 45%;
  }
}
@media screen and (max-width: 1367px) {
  .btn-wrap li {
    width: 40%;
  }
}
@media screen and (max-width: 1025px) {
  .btn-wrap li {
    width: 100%;
    margin-right: 0;
  }
}
.btn-wrap li:nth-child(2n) {
  margin-right: 0;
}
.btn-wrap li a {
  border-radius: 30px;
  background: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  color: #000;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 25px 20px;
  line-height: 1.5;
  pointer-events: none;
}
@media screen and (max-width: 1367px) {
  .btn-wrap li a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .btn-wrap li a {
    font-size: 1.4rem;
  }
}
.btn-wrap li a:hover {
  opacity: 0.8;
  background: #fff;
}

.assignment {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(227, 174, 206, 0.8)), color-stop(50%, rgba(187, 212, 239, 0.8)), to(rgba(213, 235, 225, 0.8)));
  background-image: linear-gradient(90deg, rgba(227, 174, 206, 0.8), rgba(187, 212, 239, 0.8) 50%, rgba(213, 235, 225, 0.8) 100%);
  width: 78%;
  margin: 180px auto 0 0;
  padding: 100px 40px 50px 100px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}
@media screen and (max-width: 1500px) {
  .assignment {
    width: 85%;
  }
}
@media screen and (max-width: 1025px) {
  .assignment {
    margin: 100px auto 0 0;
    padding: 100px 40px 50px 40px;
  }
}
@media screen and (max-width: 896px) {
  .assignment {
    padding: 50px 20px 50px 20px;
  }
}
.assignment__inner {
  max-width: 1300px;
  margin: 0 0 0 auto;
  width: 80%;
}
@media screen and (max-width: 1025px) {
  .assignment__inner {
    width: 100%;
  }
}
.assignment ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 100px;
}
@media screen and (max-width: 1025px) {
  .assignment ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 896px) {
  .assignment ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
}
.assignment ul li {
  width: 45%;
  margin-right: 5%;
  margin-bottom: 70px;
  height: 150px;
  background: #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  .assignment ul li {
    width: 45%;
  }
}
@media screen and (max-width: 896px) {
  .assignment ul li {
    width: 100%;
    margin-bottom: 30px;
    height: auto;
  }
}
.assignment ul li::after {
  content: "";
  background-image: url(../img/icon01.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  right: -40px;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 1367px) {
  .assignment ul li::after {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 896px) {
  .assignment ul li::after {
    width: 60px;
    height: 60px;
    right: -20px;
    bottom: 0;
  }
}
.assignment ul li:nth-child(2)::after {
  content: "";
  background-image: url(../img/icon02.png);
}
.assignment ul li:nth-child(3)::after {
  content: "";
  background-image: url(../img/icon03.png);
}
.assignment ul li:nth-child(4)::after {
  content: "";
  background-image: url(../img/icon04.png);
}
.assignment ul li:nth-child(2n) {
  margin-right: 0;
}
.assignment ul li.last-flex {
  width: 95%;
  margin-right: 0;
}
@media screen and (max-width: 1025px) {
  .assignment ul li.last-flex {
    width: 95%;
  }
}
@media screen and (max-width: 896px) {
  .assignment ul li.last-flex {
    width: 100%;
  }
}
.assignment ul li.last-flex::after {
  content: "";
  background-image: url(../img/icon05.png);
  right: 100px;
  bottom: -3px;
}
@media screen and (max-width: 1700px) {
  .assignment ul li.last-flex::after {
    right: 10px;
  }
}
@media screen and (max-width: 1367px) {
  .assignment ul li.last-flex::after {
    right: 0;
  }
}
@media screen and (max-width: 896px) {
  .assignment ul li.last-flex::after {
    right: -20px;
  }
}
.assignment ul li.last-flex p {
  left: 50%;
}
@media screen and (max-width: 896px) {
  .assignment ul li.last-flex p {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 1.4rem;
    padding: 10px;
  }
}
.assignment ul li p {
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1600px) {
  .assignment ul li p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 896px) {
  .assignment ul li p {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 1.4rem;
    padding: 20px;
    width: 85%;
  }
}

.reson {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(227, 174, 206, 0.8)), color-stop(50%, rgba(187, 212, 239, 0.8)), to(rgba(213, 235, 225, 0.8)));
  background-image: linear-gradient(90deg, rgba(227, 174, 206, 0.8), rgba(187, 212, 239, 0.8) 50%, rgba(213, 235, 225, 0.8) 100%);
  width: 80%;
  margin: 200px 0 0 auto;
  padding: 100px 40px 50px;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 0px;
}
@media screen and (max-width: 1367px) {
  .reson {
    width: 75%;
  }
}
@media screen and (max-width: 1025px) {
  .reson {
    width: 90%;
    margin: 100px 0 0 auto;
  }
}
@media screen and (max-width: 896px) {
  .reson {
    padding: 50px 20px 20px;
  }
}
.reson .reson-txt {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  line-height: 1.5;
}
@media screen and (max-width: 896px) {
  .reson .reson-txt {
    font-size: 2rem;
  }
}
.reson ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .reson ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reson ul li {
  width: 45%;
  margin-bottom: 60px;
  margin-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 896px) {
  .reson ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.reson ul li:nth-child(2n) {
  margin-right: 0;
}
.reson ul li span {
  font-family: "Anton", sans-serif;
  font-size: 7.8rem;
  margin-right: 16px;
}
@media screen and (max-width: 1367px) {
  .reson ul li span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 896px) {
  .reson ul li span {
    font-size: 4rem;
  }
}
.reson ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}
.reson ul li div p:first-child {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 1367px) {
  .reson ul li div p:first-child {
    font-size: 2rem;
  }
}
@media screen and (max-width: 896px) {
  .reson ul li div p:first-child {
    font-size: 1.8rem;
  }
}
.reson ul li div p:last-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 896px) {
  .reson ul li div p:last-child {
    font-size: 1.4rem;
  }
}

.measure {
  background: #fff;
  padding: 100px 0 100px 40px;
  width: 80%;
  margin: 0 0 0 auto;
  border-bottom-left-radius: 80px;
}
@media screen and (max-width: 1367px) {
  .measure {
    width: 75%;
  }
}
@media screen and (max-width: 1025px) {
  .measure {
    width: 90%;
    margin: 0px 0 0 auto;
  }
}
@media screen and (max-width: 896px) {
  .measure {
    padding: 50px 20px 20px;
  }
}
.measure__inner {
  max-width: 1300px;
  margin: 0 auto 0 0;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .measure__inner {
    margin: 0 auto;
    width: 100%;
  }
}
.measure-wrap {
  margin-top: 100px;
}
@media screen and (max-width: 896px) {
  .measure-wrap {
    margin-top: 70px;
  }
}
.measure-wrap h3 {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1367px) {
  .measure-wrap h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 896px) {
  .measure-wrap h3 {
    font-size: 2rem;
  }
}
.measure-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 896px) {
  .measure-wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.measure-wrap ul li {
  width: 30%;
  margin-right: 3%;
  margin-bottom: 3%;
  background-image: linear-gradient(159deg, #e3aece 1%, #bbd4ef 50% 52%, #d5ebe1);
  padding: 40px 30px 40px 30px;
}
@media screen and (max-width: 1367px) {
  .measure-wrap ul li {
    width: 45%;
  }
}
@media screen and (max-width: 896px) {
  .measure-wrap ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1367px) {
  .measure-wrap ul li:nth-child(2) {
    margin-right: 0;
  }
}
.measure-wrap ul li:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 1367px) {
  .measure-wrap ul li:nth-child(3) {
    margin-right: 3%;
  }
}
.measure-wrap ul li h4 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 1367px) {
  .measure-wrap ul li h4 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 896px) {
  .measure-wrap ul li h4 {
    font-size: 1.8rem;
  }
}
.measure-wrap ul li p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 896px) {
  .measure-wrap ul li p {
    font-size: 1.4rem;
  }
}

.measure-bottom-ttl {
  margin-top: 100px;
}
@media screen and (max-width: 896px) {
  .measure-bottom-ttl {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

.achievements {
  background: #fff;
  padding: 100px 0 100px 40px;
  width: 80%;
  margin: 200px 0 0 auto;
}
@media screen and (max-width: 1367px) {
  .achievements {
    width: 75%;
  }
}
@media screen and (max-width: 1025px) {
  .achievements {
    width: 90%;
  }
}
@media screen and (max-width: 896px) {
  .achievements {
    padding: 50px 20px 20px;
    margin: 100px 0 0 auto;
  }
}
.achievements__inner {
  max-width: 1300px;
  margin: 0 auto 0 0;
  width: 90%;
}
@media screen and (max-width: 896px) {
  .achievements__inner {
    margin: 0 auto;
    width: 100%;
  }
}
.achievements ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #170304;
  padding-top: 50px;
  padding-bottom: 80px;
}
.achievements ul.first {
  margin-top: 60px;
}
@media screen and (max-width: 896px) {
  .achievements ul.first {
    margin-top: 30px;
  }
}
@media screen and (max-width: 896px) {
  .achievements ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.achievements ul:last-of-type {
  padding-bottom: 0;
}
.achievements ul li:first-child {
  width: 50%;
}
@media screen and (max-width: 896px) {
  .achievements ul li:first-child {
    width: 100%;
  }
}
.achievements ul li:last-child {
  width: 45%;
  text-align: right;
}
@media screen and (max-width: 896px) {
  .achievements ul li:last-child {
    text-align: center;
  }
}
@media screen and (max-width: 896px) {
  .achievements ul li:last-child {
    width: 100%;
  }
}
.achievements ul li:last-child .last-img {
  width: 80%;
  padding-top: 30px;
}
.achievements ul li:last-child div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
}
.achievements ul li .jiseki-ttl {
  font-weight: 900;
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 896px) {
  .achievements ul li .jiseki-ttl {
    font-size: 2.4rem;
  }
}
.achievements ul li .sub-ttl {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 896px) {
  .achievements ul li .sub-ttl {
    font-size: 1.8rem;
  }
}
.achievements ul li .txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
.achievements ul li .before {
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.copyright {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 1025px) {
  .copyright {
    text-align: center;
    line-height: 1.4;
    margin-top: 30px;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 1025px) {
  .sp-br {
    display: block;
  }
}

.contact {
  width: 80%;
  margin: 190px 0 0 auto;
}
@media screen and (max-width: 1367px) {
  .contact {
    width: 75%;
  }
}
@media screen and (max-width: 896px) {
  .contact {
    width: 90%;
    margin: 100px auto 0;
  }
}
.contact-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#e3aece), color-stop(45%, #bbd4ef), to(#d5ebe1));
  background-image: linear-gradient(90deg, #e3aece, #bbd4ef 45%, #d5ebe1);
  width: 1000px;
}
@media screen and (max-width: 1367px) {
  .contact-btn {
    width: 75%;
    margin: 0 auto 0 0;
  }
}
@media screen and (max-width: 896px) {
  .contact-btn {
    width: 90%;
    margin: 0 auto;
  }
}
.contact-btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px;
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 1025px) {
  .contact-btn a {
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-btn a {
    font-size: 2.2rem;
    padding: 30px;
  }
}

footer {
  margin: 170px 0 0 auto;
  width: 90%;
  padding: 0 60px 80px 0;
}
@media screen and (max-width: 896px) {
  footer {
    padding: 0;
    margin: 60px auto;
  }
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer ul li:first-child {
  color: #fff;
  font-size: 13px;
}
footer ul li:last-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.txt_aap {
  position: relative;
  font-size: 1.3rem;
  display: inline-block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 400;
  text-align: left;
  line-height: 1.2em;
  padding-bottom: 4px;
  bottom: 4px;
}

.logo-img {
  width: 36px;
  margin-right: 8px;
}
@media screen and (max-width: 480px) {
  .logo-img {
    width: 30px;
  }
}

#page-top {
  bottom: 0px;
  position: fixed;
  right: 0px;
}

#page-top a {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, right top, from(#e3aece), color-stop(46%, #bbd4ef), to(#d5ebe1));
  background-image: linear-gradient(90deg, #e3aece, #bbd4ef 46%, #d5ebe1);
  color: #000;
  text-align: center;
  font-weight: 500;
  line-height: 70px;
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  #page-top a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}