@import url(reset.css);
@import url(font-awesome/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@700;800&display=swap);

html {
  font-size: 62.5%;
  max-width: 100vw;
  overflow-x: hidden;
}
body {
  color: #111;
  font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic","Myriad Pro", Helvetica, Arial, sans-serif;
  font-weight:normal;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.6;
  /*min-width: 320px;*/
  overflow-x: hidden;
}
.inner {
  max-width: 1020px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

@media (max-width: 736px) {
  .inner {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .inner {
    padding: 0 10px;
  }
}


/* --------------------------------------------------- テキストスタイル */
a {color: #3a8dd5;}
.txt-bold {font-weight: bold;}
.txt-red {color: #dc0120;}

.mark-yellow {background-color: #fff6af;}
.mark-yellow-thin {
  background: linear-gradient(transparent 60%, #fff6af 60%);
  font-weight: bold;
}

.mark-pink-thin {
  background: linear-gradient(transparent 60%, #ffd0d0 60%);
  font-weight: bold;
}

.green-1 {color: #11863a;}
.green-2 {color: #4cb169;}
.green-3 {color: #87cb8b;}

.orange-1 {color: #da8120;}
.orange-2 {color: #f4a652;}
.orange-3 {color: #f4c577;}

.red-1 {color: #c23021;}
.red-2 {color: #d8584b;}
.red-3 {color: #fc918e;}
.red-4 {color: #ffb0b0;}

.blue-1 {color: #1c43b0;}
.blue-2 {color: #5a86d8;}
.blue-3 {color: #89b3ff;}
.blue-4 {color: #b1cdff;}

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

.txt-inner {
  max-width: 900px;
  margin: 0 auto;
}
.txt-inner p:not(:last-child) {
  margin-bottom: 30px;
}

.size_8 {
  font-size: 0.8em;
}
.size1h {
  font-size: 1.5em;
}
.size2 {
  font-size: 2em;
}
.size2h {
  font-size: 2.5em;
  line-height: 1.2;
}
.mar-top-40 {
  margin-top: 4.0rem;
}

@media (max-width: 736px) {
  .size1h {
    font-size: 1.3em;
  }
  .size2 {
    font-size: 1.5em;
  }
  .size2h {
    font-size: 2em;
  }
  .mar-top-40 {
    margin-top: 3.8rem;
  }
}

@media (max-width: 480px) {
  .txt-center.sp-left {
    text-align: left;
  }
  .txt-center.sp-left br {
    display: none;
  }
  .txt-inner br {
    display: none;
  }
  .size1h {
    font-size: 1.2em;
  }
  .size2 {
    font-size: 1.3em;
  }
  .size2h {
    font-size: 1.5em;
  }
  .mar-top-40 {
    margin-top: 2.5rem;
  }
  .txt-inner p:not(:last-child) {
    margin-bottom: 25px;
  }
}


/* --------------------------------------------------- アニメーション */
.fade-pop.delighter {
  transition: all .6s ease-out;
  transform: scale(0.5);
  opacity: 0;
} 
.fade-pop.delighter.started {
  transform: none;
  opacity: 1;
}
.fade-top.delighter {
  transition: all .6s ease-out;
  transform: translateY(30%);
  opacity: 0;
}
.fade-top.delighter.started {
  transform: none;
  opacity: 1;
}
.fade-bottom.delighter {
  transition: all .6s ease-out;
  transform: translateY(-50%);
  opacity: 0;
}
.fade-bottom.delighter.started {
  transform: none;
  opacity: 1;
}
.fade-left.delighter {
  transition: all .6s ease-out;
  transform: translateX(-30%);
  opacity: 0;
}
.fade-left.delighter.started {
  transform: none;
  opacity: 1;
}
.fade-right.delighter {
  transition: all .6s ease-out;
  transform: translateX(30%);
  opacity: 0;
}
.fade-right.delighter.started {
  transform: none;
  opacity: 1;
}
.delighter li {opacity: 0; transform: translatey(30%); transition: all .6s ease-out;}
.delighter.started li { opacity: 1; transform: none; }
.delighter.started li:nth-child(1) { transition: all .6s ease-out .1s; }
.delighter.started li:nth-child(2) { transition: all .6s ease-out .3s; }
.delighter.started li:nth-child(3) { transition: all .6s ease-out .5s; }
.delighter.started li:nth-child(4) { transition: all .6s ease-out .6s; }
.delighter.started li:nth-child(5) { transition: all .6s ease-out .9s; }
.delighter.started li:nth-child(6) { transition: all .6s ease-out 1.1s; }
.delighter.started li:nth-child(7) { transition: all .6s ease-out 1.3s; }


/* --------------------------------------------------- ヘッダー */
.header {
  background: #fff;
	width: 100%;
	height: 70px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .logo a {
  display: block;
	width: 140px;
	margin-top: 14px;
}

@media (max-width: 480px) {
  .header {
    height: 60px;
  }
  .header .logo a {
    width: 120px;
    margin-top: 12px;
  }
}


/* --------------------------------------------------- キャッチ */
.catch-area {
  background: url(../images/catch_bg.jpg) no-repeat top center;
  background-color: #19483d;
  text-align: center;
}
.catch-area .catch-pc {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.catch-area .catch-sp {
  display: none;
}

@media (max-width: 480px) {
  .catch-area .catch-pc {
    display: none;
  }
  .catch-area .catch-sp {
    display: block;
    width: 100%;
  }
}


/* --------------------------------------------------- 共通 */
.sp {display: none;}
.sec-ttl-first {
  color: #666;
  font-size: 26px;
  font-size: 2.6rem;
  display: block;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 20px;
}
.sec-ttl {
  font-family: 'M PLUS 1p', sans-serif;
  color: #03114a;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 50px;
}
.sec-ttl span {
  color: #10a07d;
  font-weight: 800;
  font-size: 1.2em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .sec-ttl-first {
    font-size: 23px;
    font-size: 2.3rem;
    margin: 0 auto 10px;
  }
  .sec-ttl {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media (max-width: 736px) {
  .sec-ttl-first {
    font-size: 20px;
    font-size: 2.0rem;
    margin: 0 auto 10px;
  }
  .sec-ttl {
    font-size: 28px;
    font-size: 2.8rem;
    margin: 0 auto 40px;
  }
}

@media (max-width: 600px) {
  .sec-ttl {
    padding: 0 10px;
  }
  .sec-ttl br {
    display: none;
  }
}

@media (max-width: 480px) {
  .pc {display: none;}
  .sp {display: block;}
  .sec-ttl-first {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 auto 3px;
  }
  .sec-ttl {
    font-size: 22px;
    font-size: 2.2rem;
    margin: 0 auto 20px;
  }
}


/* --------------------------------------------------- ボタン */
.order-btn {
  max-width: 620px;
  margin: 45px auto 0;
}
.order-btn img {
  width: 100%;
}
.order-btn img:hover {
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 480px) {
  .order-btn {
    margin: 30px auto 0;
  }
}


/* --------------------------------------------------- ボックス */
.box01 {
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
}
.box01:not(:first-child) {
  margin-top: 40px;
}
.box01 p:not(:last-child) {
  margin-bottom: 30px;
}
.box02 {
  padding: 40px;
  border: 4px solid #e8e8e8;
  box-sizing: border-box;
}
.box02:not(:first-child) {
  margin-top: 40px;
}
.box02 p:not(:last-child) {
  margin-bottom: 30px;
}
.box03 {
  padding: 40px;
  border: 1px solid #d7d7d7;
  box-sizing: border-box;
}
.check-box {
  padding: 40px;
  border: 2px solid #a9d9c4;
  margin: 40px 0;
}
.check-box li {
  background: url(../images/icon01.png) no-repeat top left;
  background-size: 20px;
  padding: 0 0 0 28px;
  font-weight: bold;
  font-size: 1.1em;
}
.check-box li:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 736px) {
  .box01 {
    padding: 25px;
  }
  .box02 {
    padding: 25px;
  }
  .box03 {
    padding: 25px;
  }
  .check-box {
    padding: 30px;
    margin: 40px 0;
  }
}

@media (max-width: 480px) {
  .box01 {
    padding: 15px;
  }
  .box01:not(:first-child) {
    margin-top: 15px;
  }
  .box02 {
    padding: 15px;
  }
  .box02:not(:first-child) {
    margin-top: 15px;
  }
  .box03 {
    padding: 15px;
  }
  .check-box {
    padding: 15px;
    margin: 20px 0;
  }
  .box01 p:not(:last-child),
  .box02 p:not(:last-child) {
    margin-bottom: 20px;
  }
}


/* --------------------------------------------------- juku */
.juku-content {
  padding: 60px 0 0;
}
.juku-content .juku-box {
  margin-bottom: 60px;
}
.juku-content .juku-box .juku-ttl {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #ccc;
}
.juku-content .juku-box .juku-ttl figure img {
  margin: 0 auto;
}
.juku-content .juku-box .juku-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.juku-content .juku-box .juku-item .row img {
  width: 100%;
  border: 1px solid #b6b6b6;
}
.juku-content .juku-box .juku-item .row:first-child {
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  margin-right: 60px;
}
.juku-content .juku-box .juku-item .row:first-child p a {
  background: #b6b6b6;
  color: #fff;
  font-size: 0.8em;
  line-height: 1.4;
  text-align: center;
  padding: 8px 10px;
  margin-top: 15px;
  border-radius: 6px;
  display: block;
  text-decoration: none;
}
.juku-content .juku-box .juku-item .row h5 {
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.3;
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 2px solid #e60012;
}
.juku-content .juku-box .juku-item .row h5:not(:first-child) {
  margin-top: 50px;
}
.juku-content .juku-box .juku-item .row .anke-bot {
  font-size: 0.8em;
  margin-top: 60px;
}
.juku-content .sec-ttl span {
  color: #dc0120;
  font-weight: 800;
  font-size: 1.2em;
  line-height: 1.2;
}
.juku-content .check-box {
  padding: 40px;
  border: 2px solid #ffaaa6;
  margin: 40px 0 60px;
}
.juku-content .check-box li {
  background: url(../images/icon02.png) no-repeat top left;
  background-size: 20px;
  padding: 0 0 0 28px;
  font-weight: bold;
  font-size: 1.1em;
}
.juku-content .juku-img {
  margin: 80px 0 -40px;
}

@media (max-width: 768px) {
  .juku-content {
    padding: 50px 0 0;
  }
  .juku-content .juku-box {
    margin-bottom: 50px;
  }
  .juku-content .juku-box .juku-item .row:first-child {
    margin-right: 40px;
  }
  .juku-content .juku-img {
    margin: 70px 0 -40px;
  }
}

@media (max-width: 736px) {
  .juku-content {
    padding: 40px 0 0;
  }
  .juku-content .juku-box .juku-ttl {
    margin-bottom: 40px;
  }
  .juku-content .juku-box .juku-item .row:first-child {
    width: 100%;
    min-width: 200px;
    max-width: 200px;
    margin-right: 30px;
  }
  .juku-content .juku-box .juku-item .row h5 {
    font-size: 1.3em;
  }
  .juku-content .juku-box .juku-item .row .anke-bot {
    margin-top: 50px;
  }
  .juku-content .check-box {
    padding: 30px;
    margin: 40px 0 50px;
  }
  .juku-content .juku-img {
    margin: 50px 0 -20px;
  }
}

@media (max-width: 480px) {
  .juku-content {
    padding: 30px 0 0;
  }
  .juku-content .juku-box {
    margin-bottom: 30px;
  }
  .juku-content .juku-box .juku-ttl {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .juku-content .juku-box .juku-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .juku-content .juku-box .juku-item .row:first-child {
    margin: 0 auto 30px;
  }
  .juku-content .juku-box .juku-item .row:first-child p {
    margin-top: 10px;
  }
  .juku-content .juku-box .juku-item .row h5 {
    font-size: 1.1em;
    margin-bottom: 15px;
  }
  .juku-content .juku-box .juku-item .row h5:not(:first-child) {
    margin-top: 30px;
  }
  .juku-content .juku-box .juku-item .row .anke-bot {
    margin-top: 20px;
  }
  .juku-content .check-box {
    padding: 20px;
    margin: 30px 0 40px;
  }
  .juku-content .juku-img {
    margin: 40px 0 -20px;
  }
}


/* --------------------------------------------------- why */
.why-content {
  padding: 60px 0;
}
.why-content .why-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  padding: 30px;
  border: 8px solid #cbe5df;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.why-content .why-box:last-child {
  margin-bottom: 0;
}
.why-content .why-box .why-icon {
  width: 100px;
  margin-right: 25px;
}
.why-content .why-box .why-icon img {
  width: 100%;
}
.why-content .why-box .why-txt {
  padding: 10px 0 10px;
}
.why-content .why-box .why-txt figure {
  display: none;
}
.why-content .why-box .why-txt h4 {
  font-family: 'M PLUS 1p', sans-serif;
  color: #03114a;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.why-content .why-box .why-txt h4 span {
  color: #10a07d;
}
.why-content .why-box.bg01 {
  background: url(../images/pic01_bg.jpg) no-repeat right bottom;
  background-size: 210px;
}
.why-content .why-box.bg02 {
  background: url(../images/pic02_bg.jpg) no-repeat right -40px bottom;
  background-size: 280px;
}
.why-content .why-box.bg03 {
  background: url(../images/pic03_bg.jpg) no-repeat right -80px bottom -25px;
  background-size: 310px;
}

@media (max-width: 1000px) {
  .why-content .why-box .why-txt {
    width: 60%;
    padding: 10px 0 10px;
  }
  .why-content .why-box .why-txt br {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-content {
    padding: 50px 0;
  }
  .why-content .why-box.bg01 {
    background: url(../images/pic01_bg.jpg) no-repeat right -30px bottom;
    background-size: 200px;
  }
  .why-content .why-box.bg02 {
    background: url(../images/pic02_bg.jpg) no-repeat right -60px bottom;
    background-size: 260px;
  }
  .why-content .why-box.bg03 {
    background: url(../images/pic03_bg.jpg) no-repeat right -80px bottom -20px;
    background-size: 290px;
  }
}

@media (max-width: 736px) {
  .why-content {
    padding: 40px 0;
  }
  .why-content .why-box {
    padding: 20px;
    border: 8px solid #cbe5df;
    margin-bottom: 30px;
  }
  .why-content .why-box .why-txt h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .why-content .why-box .why-icon {
    width: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 600px) {
  .why-content .why-box.bg01,
  .why-content .why-box.bg02,
  .why-content .why-box.bg03 {
    background: none;
  }
  .why-content .why-box .why-txt {
    width: 100%;
    padding: 0 0 0;
  }
  .why-content .why-box .why-txt figure {
    display: block;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .why-content {
    padding: 30px 0;
  }
  .why-content .why-box {
    /*-ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
    border: 5px solid #cbe5df;
    margin-bottom: 15px;
  }
  .why-content .why-box .why-txt h4 {
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 15px;
  }
  .why-content .why-box .why-icon {
    width: 60px;
    margin-right: 10px;
    margin-left: -10px;
    margin-top: -5px;
  }
  
}


/* --------------------------------------------------- product */
.product-content {
  background: #e6f3ee;
  padding: 30px 0 60px;
}
.product-content .product-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.product-content .product-ttl .sec-ttl {
  display: block;
  text-align: left;
  margin: 0 30px 0 0;
}
.product-content .product-ttl figure {
  width: 135px;
}
.product-box {
  background: #fff;
  padding: 15px;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  box-sizing: border-box;
}
.product-box .inbox {
  padding: 40px 23px 30px;
  border: 2px solid #e6f3ee;
}
.product-box .inbox h4 {
  font-family: 'M PLUS 1p', sans-serif;
  color: #03114a;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1px;
  text-align: center;
}
.product-box .inbox h4 span {
  color: #dc0120;
  font-weight: 800;
  font-size: 1.2em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .product-content {
    padding: 25px 0 50px;
  }
  .product-box .inbox h4 {
    font-size: 30px;
    font-size: 3.0rem;
  }
}

@media (max-width: 736px) {
  .product-content {
    padding: 20px 0 40px;
  }
  .product-content .product-ttl figure {
    width: 120px;
  }
  .product-box {
    padding: 10px;
  }
  .product-box .inbox {
    padding: 30px 15px 20px;
  }
  .product-box .inbox h4 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media (max-width: 600px) {
  .product-content .product-ttl .sec-ttl {
    margin: 0 5px 0 0;
  }
  .product-content .product-ttl figure {
    width: 180px;
  }
  .product-box .inbox h4 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .product-content {
    padding: 15px 0 25px;
  }
  .product-content .product-ttl figure {
    width: 160px;
  }
  .product-box {
    padding: 8px;
  }
  .product-box .inbox {
    padding: 20px 8px 10px;
  }
  .product-box .inbox h4 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

@media (max-width: 320px) {
  .product-box .inbox br {
    display: none;
  }
}


/* --------------------------------------------------- profile */
.profile-content {
  padding: 0 0 60px;
}
.profile-content .profile-arrow {
  width: 340px;
  margin: 0 auto 40px;
}
.profile-content .profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.profile-content .profile-item .item-pic {
  max-width: 320px;
  min-width: 320px;
  margin-right: 6.1224%;
}
.profile-content .profile-item .item-pic img:first-child {
  margin-bottom: 15px;
}
.profile-content .profile-item .item-txt {
  width: 61.2244%;
  padding-top: 30px;
}
.profile-content .profile-item .item-txt p:not(:last-child) {
  margin-bottom: 35px;
}
.profile-content .profile-item .item-txt .prof-name {
  font-size: 38px;
  font-size: 3.8rem;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.profile-content .profile-item .item-txt .prof-name span:last-child {
  font-size: 0.8em;
  letter-spacing: -1px;
}
.profile-content .profile-item .item-txt .prof-name [data-ruby] {
  position: relative;
}
.profile-content .profile-item .item-txt .prof-name [data-ruby]:before {
  content: attr(data-ruby);
  color: #666;
  font-size: 0.4em;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 5.5px;
  position: absolute;
  top: -20px;
  left: 2px;
  right: 0;
  margin: auto;
}
.profile-content .profile-item-sp {
  display: none;
}

@media (max-width: 768px) {
  .profile-content {
    padding: 0 0 50px;
  }
  .profile-content .profile-item .item-pic {
    max-width: 240px;
    min-width: 240px;
  }
  .profile-content .profile-item .item-txt p:not(:last-child) {
    margin-bottom: 30px;
  }
  .profile-content .profile-item .item-txt .prof-name {
    font-size: 34px;
    font-size: 3.4rem;
    margin-bottom: 35px;
  }
  .profile-content .profile-item .item-txt .prof-name [data-ruby]:before {
    letter-spacing: 4px;
  }
}

@media (max-width: 736px) {
  .profile-content {
    padding: 0 0 40px;
  }
  .profile-content .profile-item .item-txt {
    padding-top: 15px;
  }
  .profile-content .profile-item .item-txt .prof-name {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  .profile-content .profile-item .item-txt .prof-name [data-ruby]:before {
    top: -15px;
  }
}

@media (max-width: 600px) {
  .profile-content .profile-item .item-pic {
    max-width: 200px;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .profile-content {
    padding: 0 0 30px;
  }
  .profile-content .profile-arrow {
    width: 280px;
    margin: 0 auto 25px;
  }
  .profile-content .profile-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile-content .profile-item .item-pic {
    max-width: 100%;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .profile-content .profile-item .item-pic img:first-child {
    width: 70%;
    margin: 0 auto 20px;
  }
  .profile-content .profile-item .item-txt {
    width: 100%;
  }
  .profile-content .profile-item .item-txt .prof-name {
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  .profile-content .profile-item .item-txt .prof-name [data-ruby]:before {
    letter-spacing: 3px;
  }
  .profile-content .profile-item {
    display: none;
  }
  .profile-content .profile-item-sp {
    display: block;
  }
  .profile-content .profile-item-sp > img:nth-of-type(1) {
    width: 60%;
    margin: -20px auto 0;
  }
  .profile-content .profile-item-sp .item-txt .img-margin {
    margin: 5px 0 10px;
  }
  .profile-content .profile-item-sp .item-txt p:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .profile-content .profile-item-sp .item-txt .prof-name {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  .profile-content .profile-item-sp .item-txt .prof-name span:last-child {
    font-size: 0.8em;
    letter-spacing: -1px;
  }
  .profile-content .profile-item-sp .item-txt .prof-name [data-ruby] {
    position: relative;
  }
  .profile-content .profile-item-sp .item-txt .prof-name [data-ruby]:before {
    content: attr(data-ruby);
    color: #666;
    font-size: 0.4em;
    line-height: 1;
    font-weight: normal;
    letter-spacing: 3px;
    position: absolute;
    top: -15px;
    left: 2px;
    right: 0;
    margin: auto;
  }
}


/* --------------------------------------------------- reason */
.reason-content {
  background: #f1f1f1;
  padding: 60px 0;
}
.reason-content .box01 h4 {
  font-weight: bold;
  font-size: 1.8em;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #a9d9c4;
}
.reason-content .box01 h4 span:first-child {
  background: #10a07d;
  color: #fff;
  font-weight: bold;
  font-size: 0.9em;
  padding: 2px 30px;
  margin-right: 10px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .reason-content {
    padding: 50px 0;
  }
}

@media (max-width: 736px) {
  .reason-content {
    padding: 40px 0;
  }
  .reason-content .box01 h4 {
    font-size: 1.5em;
  }
  .reason-content .box01 h4 span:first-child {
    padding: 2px 20px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .reason-content {
    padding: 30px 0;
  }
  .reason-content .box01 h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  .reason-content .box01 h4 span:first-child {
    padding: 2px 15px;
  }
}


/* --------------------------------------------------- graph */
.graph-content {
  padding: 60px 0;
}
.graph-content .graph-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.graph-content .graph-area .graph-item {
  width: 47.9591%;
  padding-top: 20px;
  padding-bottom: 5%;
}
.graph-content .graph-area .graph-item:nth-child(odd) {
  padding-right: 2.0408%;
}
.graph-content .graph-area .graph-item:nth-child(even) {
  padding-left: 2.0408%;
}
.graph-content .graph-area .graph-item h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  max-width: 290px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.graph-content .graph-area .graph-item h4 + p {
  max-width: 290px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.graph-content .graph-area .graph-item figure {
  max-width: 340px;
  margin: 15px auto 30px;
}

@media (max-width: 900px) {
  .graph-content .graph-area .graph-item h4 {
    font-size: 20px;
    font-size: 2.0rem;
    max-width: 260px;
  }
  .graph-content .graph-area .graph-item h4 + p {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .graph-content {
    padding: 50px 0;
  }
  .graph-content .graph-area .graph-item figure {
    max-width: 260px;
    margin: 15px auto 25px;
  }
}

@media (max-width: 736px) {
  .graph-content {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .graph-content .graph-area .graph-item {
    width: 100%;
    padding-bottom: 30px;
  }
  .graph-content .graph-area .graph-item:nth-child(odd) {
    padding-right: 0;
  }
  .graph-content .graph-area .graph-item:nth-child(even) {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .graph-content {
    padding: 30px 0;
  }
  .graph-content .graph-area .graph-item {
    padding-top: 5px;
  }
  .graph-content .graph-area .graph-item figure {
    max-width: 200px;
    margin: 15px auto 20px;
  }
  .graph-content .graph-area .graph-item:last-child {
    padding-bottom: 0;
  }
}


/* --------------------------------------------------- voice */
.voice-content {
  padding: 0 0 60px;
}
.voice-catch {
  background: #f1f1f1;
  text-align: center;
  margin-bottom: 60px;
}
.voice-catch img {
  margin: 0 auto;
}
.voice-content .voice-box .voice-ttl {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #ccc;
}
.voice-content .voice-box .voice-ttl figure img {
  margin: 0 auto;
}
.voice-content .voice-box .voice-ttl p:first-child {
  background: #10a07d;
  color: #fff;
  font-weight: bold;
  font-size: 1.7em;
  text-align: center;
  padding: 2px 20px;
  width: 240px;
  margin: 0 auto 40px;
  border-radius: 20px;
}
.voice-content .voice-box .voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.voice-content .voice-box .voice-item .row img {
  width: 100%;
  border: 1px solid #b6b6b6;
}
.voice-content .voice-box .voice-item .row:first-child {
  width: 100%;
  min-width: 280px;
  max-width: 280px;
  margin-right: 60px;
}
.voice-content .voice-box .voice-item .row:first-child p a {
  background: #b6b6b6;
  color: #fff;
  font-size: 0.8em;
  line-height: 1.4;
  text-align: center;
  padding: 8px 10px;
  margin-top: 15px;
  border-radius: 6px;
  display: block;
  text-decoration: none;
}
.voice-content .voice-box .voice-item .row h5 {
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.3;
  padding-bottom: 5px;
  margin-bottom: 25px;
  border-bottom: 2px solid #10a07d;
}
.voice-content .voice-box .voice-item .row h5:not(:first-child) {
  margin-top: 50px;
}
.voice-content .voice-box .voice-item .row .anke-bot {
  font-size: 0.8em;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .voice-content {
    padding: 0 0 50px;
  }
  .voice-content .voice-box .voice-item .row:first-child {
    margin-right: 40px;
  }
}

@media (max-width: 736px) {
  .voice-content {
    padding: 0 0 40px;
  }
  .voice-content .voice-box .voice-ttl {
    margin-bottom: 40px;
  }
  .voice-content .voice-box .voice-ttl p:first-child {
    font-size: 1.3em;
    margin: 0 auto 30px;
    width: 180px;
  }
  .voice-content .voice-box .voice-item .row:first-child {
    width: 100%;
    min-width: 200px;
    max-width: 200px;
    margin-right: 30px;
  }
  .voice-content .voice-box .voice-item .row h5 {
    font-size: 1.3em;
  }
  .voice-content .voice-box .voice-item .row .anke-bot {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .voice-content {
    padding: 0 0 30px;
  }
  .voice-catch {
    margin-bottom: 30px;
  }
  .voice-content .voice-box .voice-ttl {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .voice-content .voice-box .voice-ttl p:first-child {
    font-size: 1.1em;
    margin: 0 auto 25px;
    width: 160px;
  }
  .voice-content .voice-box .voice-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .voice-content .voice-box .voice-item .row:first-child {
    margin: 0 auto 30px;
  }
  .voice-content .voice-box .voice-item .row:first-child p {
    margin-top: 10px;
  }
  .voice-content .voice-box .voice-item .row h5 {
    font-size: 1.1em;
    margin-bottom: 15px;
  }
  .voice-content .voice-box .voice-item .row h5:not(:first-child) {
    margin-top: 30px;
  }
  .voice-content .voice-box .voice-item .row .anke-bot {
    margin-top: 20px;
  }
}


/* --------------------------------------------------- price */
.price-content {
  background: #176044;
  padding: 60px 0;
}
.price-content .sec-ttl-first {
  color: #fff;
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1;
  margin: 0 auto 10px;
}
.price-content .sec-ttl {
  color: #fff;
}
.price-content .sec-ttl span {
  color: #fded7d;
}
.price-content .box01 h4 {
  font-size: 30px;
  font-size: 3.0rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
.price-content .box01 .cal-box {
  background: #f1f1f1;
  font-size: 0.8em;
  max-width: 560px;
  padding: 15px;
  margin: 0 auto 60px;
}
.price-content .box01 .cal-box p:first-child {
  font-size: 1.1em;
  font-weight: bold;
}
.price-content .box01 .cal-box p:not(:last-child) {
  margin-bottom: 15px;
}
.price-content .box03 img {
  width: 194px;
  float: left;
  margin-right: 40px;
}

@media (max-width: 768px) {
  .price-content {
    padding: 50px 0;
  }
  .price-content .box01 h4 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media (max-width: 736px) {
  .price-content {
    padding: 40px 0;
  }
  .price-content .sec-ttl-first {
    font-size: 26px;
    font-size: 2.6rem;
    margin: 0 auto 10px;
  }
  .price-content .box01 h4 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .price-content .box01 .cal-box {
    margin: 0 auto 50px;
  }
}

@media (max-width: 600px) {
  .price-content .box03 img {
    width: 200px;
    float: none;
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .price-content {
    padding: 30px 0;
  }
  .price-content .sec-ttl-first {
    font-size: 20px;
    font-size: 2.0rem;
  }
  .price-content .box01 {
    padding: 20px 12px;
  }
  .price-content .box01 h4 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .price-content .box01 .cal-box {
    margin: 0 auto 30px;
  }
}


/* --------------------------------------------------- merit */
.merit-content {
  padding: 60px 0;
}
.merit-content .merit-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 30px;
}
.merit-content .merit-area .merit-item {
  width: 31.6326%;
  margin-right: 2.551%;
  margin-bottom: 2.551%;
}
.merit-content .merit-area .merit-item:nth-child(3n) {
  margin-right: 0;
}
.merit-content .merit-area .merit-item .merit-item-inner {
  padding: 30px;
}
.merit-content .merit-area .merit-item figure {
  max-width: 250px;
  margin-bottom: 25px;
}
.merit-content .merit-area .merit-item.m01 {
  background: #effef3;
}
.merit-content .merit-area .merit-item.m02 {
  background: #fff6e6;
}
.merit-content .merit-area .merit-item.m03 {
  background: #feece9;
}
.merit-content .merit-area .merit-item.m04 {
  background: #fef0ff;
}
.merit-content .merit-area .merit-item.m05 {
  background: #f1faff;
}
.merit-content .merit-area .merit-item.m06 {
  background: #eff4ff;
}

@media (max-width: 768px) {
  .merit-content {
    padding: 50px 0;
  }
}

@media (max-width: 736px) {
  .merit-content {
    padding: 40px 0;
  }
}

@media (max-width: 600px) {
  .merit-content .merit-area .merit-item {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .merit-content .merit-area .merit-item:nth-child(3n) {
    margin-right: 2%;
  }
  .merit-content .merit-area .merit-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .merit-content {
    padding: 30px 0;
  }
  .merit-content .merit-area {
    margin-top: 40px;
    margin-bottom: 25px;
  }
  .merit-content .merit-area .merit-item .merit-item-inner {
    padding: 20px;
  }
  .merit-content .merit-area .merit-item figure {
    margin-bottom: 15px;
  }
}


/* --------------------------------------------------- type */
.type-content {
  background: #e6f3ee;
  padding: 60px 0;
}
.type-content .type-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.type-content .type-area .type-item {
  background: #fff;
  width: 48.4693%;
  margin-right: 3.0612%;
  margin-bottom: 3.0612%;
  -webkit-box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
  box-shadow: 0 0 15px rgba(102, 102, 102, 0.1);
}
.type-content .type-area .type-item:nth-child(2n) {
  margin-right: 0;
}
.type-content .type-area .type-item .type-inner {
  padding: 30px;
}

@media (max-width: 768px) {
  .type-content {
    padding: 50px 0;
  }
}

@media (max-width: 736px) {
  .type-content {
    padding: 40px 0;
  }
  .type-content .type-area .type-item .type-inner {
    padding: 20px 20px 10px 20px;
  }
}

@media (max-width: 480px) {
  .type-content {
    padding: 30px 0;
  }
  .type-content .type-area {
    margin-bottom: 10px;
  }
  .type-content .type-area .type-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .type-content .type-area .type-item .type-inner {
    padding: 20px 20px 10px 20px;
  }
}


/* --------------------------------------------------- faq */
.faq-content {
  padding: 60px 0 40px;
}
.faq-content .sec-ttl span:nth-child(1) {
  color: #356c97;
  font-size: 1.4em;
  line-height: 1.2;
}
.faq-content .sec-ttl span:nth-child(2) {
  color: #666;
  font-weight: 700;
  font-size: 1em;
}
.faq-content .sec-ttl span:nth-child(3) {
  color: #b64040;
  font-size: 1.4em;
  line-height: 1.2;
}
.faq-content dl .section-q {
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #eaeaea;
}
.faq-content dl .section-q > span {
  font-size: 1.5em;
  background: #356c97;
  color: #fff;
  line-height: 40px;
  vertical-align: middle;
  text-align: center;
  padding: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  float: left;
}
.faq-content dl .section-q > p {
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.4;
  display: block;
  padding-top: 7px;
  margin-left: 50px;
}
.faq-content dl .section-a > span {
  font-size: 1.5em;
  background: #b64040;
  color: #fff;
  line-height: 40px;
  vertical-align: middle;
  text-align: center;
  padding: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  float: left;
}
.faq-content dl .section-a > p {
  padding-top: 7px;
  margin-left: 50px;
}

@media (max-width: 768px) {
  .faq-content {
    padding: 50px 0 30px;
  }
}

@media (max-width: 736px) {
  .faq-content {
    padding: 40px 0 20px;
  }
  .faq-content dl .section-q > span,
  .faq-content dl .section-a > span {
    font-size: 1.4em;
    line-height: 35px;
    width: 35px;
    min-width: 35px;
    height: 35px;
  }
  .faq-content dl .section-q > p {
    font-size: 1.2em;
    padding-top: 5px;
    margin-left: 45px;
  }
  .faq-content dl .section-a > p {
    padding-top: 5px;
    margin-left: 45px;
  }
}

@media (max-width: 480px) {
  .faq-content {
    padding: 30px 0 20px;
  }
  .faq-content dl .section-q {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .faq-content dl .section-q > span,
  .faq-content dl .section-a > span {
    font-size: 1.2em;
    line-height: 30px;
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
  .faq-content dl .section-q > p {
    font-size: 1.1em;
    padding-top: 3px;
    margin-left: 38px;
  }
  .faq-content dl .section-a > p {
    padding-top: 3px;
    margin-left: 38px;
  }
}


/* --------------------------------------------------- SSL プライバシー */
.ssl-content {
	max-width: 500px;
	font-size: 12px;
	font-size: 1.2rem;
  border: 1px solid #dedede;
  padding: 15px;
  background: #fff;
  overflow: hidden;
  margin: 30px auto 0;
}
.ssl-content img {
  float: left;
  width: 115px;
  margin-right: 10px;
}

@media (max-width: 480px) {
  .ssl-content {
    font-size: 11px;
    font-size: 1.1rem;
    margin: 20px auto 0;
    padding: 10px;
  }
  .ssl-content img {
    width: 80px;
  }
}


/* --------------------------------------------------- フッター */
.footer-nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 10px;
}
.footer-nav ul li {
  padding: 4px 10px;
  position: relative;
}
.footer-nav ul li:not(:last-child):after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1px;
  height: 1em;
  position: absolute;
  background-color: #ccc;
  top: 50%;
  margin-top: -0.5em;
  right: 0;
}
.footer-nav ul li a {
  color: #212121;
  display: block;
  white-space: nowrap;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 5px;
}
.footer-nav ul li a:hover {
  text-decoration: underline;
}
.footer {
	background: #176044;
	color: #fff;
	padding: 25px 0;
}
.footer .footer-item {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer .footer-item .footer-logo {
	width: 90px;
	margin: -5px 10px 0 0;
}
.footer .footer-item .copyright {
	font-size: 0.7em;
}

@media (max-width: 640px) {
  .footer {
    text-align: center;
    padding: 20px 0;
  }
  .footer .footer-item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer .footer-item .footer-logo {
    width: 90px;
    margin: -5px 0 10px 0;
  }
  .footer .footer-item .copyright {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-nav ul {
    margin: 30px 0 10px;
  }
  .footer-nav ul li a {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 4px 3px;
  }
}


/* --------------------------------------------------- トピックエリア */
.topic-content {
  padding: 60px 0 0;
  margin-bottom: -30px;
}
.topic-area {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  padding: 15px;
  margin: 0 auto;
  border: 1px solid #fa0000;
  border-radius: 3px;
  box-sizing: border-box;
}
.topic-area p:first-child {
  font-size: 16px;
  background: #fa0000;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 3px 0;
  margin-bottom: 15px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .topic-content {
    padding: 60px 0 0;
    margin-bottom: -30px;
  }
}

@media (max-width: 736px) {
  .topic-content {
    padding: 50px 0 0;
    margin-bottom: -10px;
  }
}

@media (max-width: 600px) {
  .topic-area {
    text-align: left;
  }
  .topic-area br {
    display: none;
  }
}

@media (max-width: 480px) {
  .topic-content {
    padding: 40px 0 0;
    margin-bottom: -10px;
  }
}


/* --------------------------------------------------- pagetop */
.pagetop {
  transition: opacity 1.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.pagetop.fadein {
  visibility: visible;
  opacity: 1;
}

.arrow {
  position: fixed;
  right: 12px;
  bottom: 12px;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 22px;
  padding: 20px;
  transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 769px) {
  .arrow:hover {
    opacity: 0.8;
    bottom: 15px;
  }
}

.arrow:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 14px;
}

.arrow:after {
  top: 17px;
}