@charset "UTF-8";
/*--------------------

    color

    --------------------*/
/*--------------------

    font

    --------------------*/
h1 {
  font-family: "Zen Kaku Gothic New";
  font-size: 46px;
  font-weight: bold;
  line-height: 1.3;
  color: #000;
}

h2 {
  font-family: "Zen Kaku Gothic New";
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

h3 {
  font-family: "Zen Kaku Gothic New";
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

h4 {
  font-family: "Zen Kaku Gothic New";
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

h5 {
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

h6 {
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.1;
}

P {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 1.1;
}

span {
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 20px;
  }
}
/*--------------------

hero

--------------------*/
#hero {
  background-image: url(../img/topimg.png);
  background-size: cover;
  background-position: center;
  height: 950px;
  background-repeat: no-repeat;
  vertical-align: center;
  position: relative;
}

#hero img {
  margin-top: 120px;
}

.top-midashi {
  padding-top: 15px;
}
.top-midashi h1 {
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 1.1;
  padding-bottom: 30px;
  color: #DB5425;
}
.top-midashi h3 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0em;
  color: #DB5425;
  padding-bottom: 40px;
}
.top-midashi span {
  font-size: 13px;
  color: #000;
  font-weight: bold;
}

/* 下から */
.top-midashi {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.heropoint {
  display: flex;
}

.heropoint li {
  background-color: #DB5425;
  color: #FFF;
  padding: 10px 30px;
  list-style: none;
  margin-right: 20px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  #hero {
    height: 900px;
  }
}
@media screen and (max-width: 480px) {
  #hero img {
    margin-top: 115px;
    width: 65%;
  }
  #hero {
    background-image: url(../img/topimg_sp.png);
    height: 700px;
    background-repeat: no-repeat;
    vertical-align: bottom;
    position: relative;
    overflow: hidden;
  }
  .top-midashi {
    padding-top: 20px;
  }
  .top-midashi h1 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .top-midashi h3 {
    font-size: 25px;
    line-height: 1.3;
    padding-bottom: 10px;
  }
  .top-midashi P {
    font-size: 13px;
    line-height: 1.5;
  }
  .heropoint li {
    padding: 8px 8px;
    margin-right: 10px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
  }
}
/*--------------------

menu

--------------------*/
#menu {
  text-align: center;
  margin: 100px auto;
}

.menuing {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}
.menuing img {
  width: 23%;
  margin: 10px auto;
}

@media screen and (max-width: 480px) {
  #menu {
    margin: 70px auto;
  }
  .menuing img {
    width: 45%;
  }
}
/*--------------------

campaign

--------------------*/
#campaign {
  background-color: #FDF4EE;
  text-align: center;
}
#campaign .tourokku {
  margin: 50px auto 100px auto;
  width: 50%;
  display: flex;
  gap: 30px;
}
#campaign .tourokku .botannew {
  width: 300px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  text-align: center;
  background-color: #FFF265;
  border-radius: 3px;
  padding: 15px;
  margin: 0 auto;
}
#campaign .tourokku .botanlogin {
  width: 300px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  background-color: #DB5425;
  border-radius: 3px;
  padding: 15px;
  margin: 0 auto;
}

#campaign img {
  width: 65%;
  margin-block: 70px;
}

@media screen and (max-width: 480px) {
  #campaign img {
    width: 100%;
    margin-block: 45px;
  }
  #campaign .tourokku {
    display: block;
    width: 90%;
  }
  #campaign .tourokku .botannew {
    margin-block: 20px;
  }
  #campaign .tourokku .botanlogin {
    margin-block: 20px;
  }
}
/*--------------------

info

--------------------*/
#info h2 {
  text-align: center;
}
#info Ul {
  display: flex;
  gap: 2%;
  margin-block: 8%;
}
#info li {
  width: 25%;
}
#info li img {
  width: 330px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
#info li .title h4 {
  font-size: 18px;
  letter-spacing: 0.1rem;
  margin-block: 4%;
}
#info li .infomore {
  border: solid 1px #333;
  margin-top: 2%;
  padding: 2% 4%;
  display: inline-block;
}
#info .readmore {
  text-align: center;
  color: #fff;
  margin-bottom: 5%;
  display: block;
  width: 300px;
}
@media screen and (max-width: 480px) {
  #info h3 {
    font-size: 24px;
  }
  #info Ul {
    gap: 1%;
    margin-block: 8%;
  }
  #info li {
    width: 50%;
    margin: 2%;
  }
  #info li img {
    width: 150px;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #info .readmore {
    margin-bottom: 15%;
  }
}

/*--------------------

about

--------------------*/
#about {
  padding-top: 100px;
  padding-bottom: 200px;
  margin: 0 auto;
  background-color: #DB5425;
}

.businesscontent {
  display: flex;
}

.businesscontent h2 {
  margin: 30px auto;
  margin-top: 60px;
  color: #FFF;
  line-height: 1.5;
  font-size: 28px;
  letter-spacing: 0rem;
}
.businesscontent p {
  line-height: 1.8;
  color: #FFF;
}
.businesscontent .contents1,
.businesscontent .contents2 {
  width: 50%;
  margin: 0 auto;
}
.businesscontent img {
  margin: 0 auto;
}

.line {
  margin: 70px auto;
  padding: 0 15px;
  text-align: center;
}

.catch {
  width: 55%;
  margin: 0 auto;
  text-align: center;
}
.catch h2 {
  display: inline-block;
  background: linear-gradient(transparent 60%, #FFF365 50%);
}

.research {
  width: 60%;
  margin: 50px auto;
  text-align: center;
}
.research span {
  font-size: 26px;
  font-weight: bold;
}
.research img {
  text-align: center;
  margin: 50px auto;
}
.research h2 {
  margin-top: 10px auto;
}

.ba {
  width: 65%;
  max-width: 1515px;
  background-image: url(../img/ba-back.png);
  margin: 0 auto;
  padding: 80px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.ba h3 {
  text-align: center;
  color: #FFF;
  margin-bottom: 30px;
}
.ba p {
  color: #FFF;
}
.ba .ba-img {
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  justify-items: center;
}
.ba .ba-img-contents1,
.ba .ba-img-contents2,
.ba .ba-img-contents3 {
  text-align: center;
}
.ba .ba-img-contents1,
.ba .ba-img-contents3 {
  width: 90%;
}
.ba .ba-img-contents2 {
  width: 90%;
  padding-top: 70px;
  padding-bottom: 70px;
}

.ba-arrow {
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 1366px) {
  #about {
    padding-bottom: 100px;
  }
  .businesscontent {
    display: block;
  }
  .businesscontent .contents1,
.businesscontent .contents2 {
    width: 65%;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  #about {
    padding-bottom: 50px;
  }
  .businesscontent h2 {
    line-height: 1.3;
    letter-spacing: 0.1rem;
    font-size: 28px;
    text-align: center;
  }
  .businesscontent .contents1,
.businesscontent .contents2 {
    width: 100%;
  }
  .businesscontent .contents2 {
    letter-spacing: 1.2;
  }
  .catch {
    width: 90%;
  }
  .catch h2 {
    background: linear-gradient(transparent 80%, #FFF365 50%);
  }
  .research {
    width: 90%;
    text-align: start;
  }
  .research span {
    font-size: 22px;
  }
  .research h2 {
    margin-top: 10px auto;
    text-align: center;
  }
  .research .research-p p {
    text-align: center;
  }
  .ba {
    width: 90%;
    padding: 20px;
  }
  .ba h3 {
    text-align: center;
    line-height: 1.1;
  }
  .ba .ba-img {
    display: block;
  }
  .ba .ba-img-contents1,
.ba .ba-img-contents2,
.ba .ba-img-contents3 {
    margin: 0 auto;
  }
  .ba-img-contents2 {
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1366px) {
  .ba {
    width: 90%;
  }
}
/*--------------------

trial

--------------------*/
#trial {
  margin-top: 100px;
}
#trial h3 {
  text-align: center;
  margin: 20px auto;
  line-height: 1.3;
}

.trialmenu {
  text-align: center;
}
.trialmenu img {
  margin: 40px auto;
}
.trialmenu h4 {
  color: #DB5425;
  font-size: 17px;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  margin-top: 30px;
  letter-spacing: 0.1rem;
}

/*--------------------

fee

--------------------*/
#fee {
  padding-top: 50px;
}

.feecontents {
  margin: 150px auto;
}
.feecontents h2 {
  text-align: center;
}
.feecontents p {
  text-align: center;
  margin-top: 30px;
  line-height: 1.3;
}

.feebox {
  margin-inline: auto;
  width: 70%;
  display: flex;
  justify-content: space-around;
  text-align: center;
  align-items: center;
}
.feebox .feebox1 {
  background-color: #DB5425;
  padding: 8%;
}
.feebox .feebox1 h3,
.feebox .feebox1 p {
  color: #fff;
}
.feebox .feebox3 {
  background-color: #fff;
  padding: 8%;
}
.feebox .feebox3 h3,
.feebox .feebox3 p {
  color: #DB5425;
}
.feebox .feebox2 P {
  font-size: 30px;
  font-weight: bold;
}

.h2plus {
  text-align: center;
}

@media screen and (max-width: 480px) {
  .feebox {
    width: 100%;
    display: block;
  }
  .feecontents {
    margin: 80px auto;
  }
  .feecontents P {
    text-align: start;
  }
}
/*--------------------

plan

--------------------*/
#plan {
  padding-top: 150px;
  text-align: center;
}

.planbox {
  width: 60%;
  margin-inline: auto;
}

@media screen and (max-width: 480px) {
  .planbox {
    width: 100%;
  }
}
/*--------------------

point

--------------------*/
#point {
  text-align: center;
  padding-top: 150px;
}

.pointcontents {
  display: flex;
  flex-wrap: wrap;
}
.pointcontents .cotents1,
.pointcontents .cotents2,
.pointcontents .cotents3,
.pointcontents .cotents4,
.pointcontents .cotents5 {
  width: 31%;
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  margin: 20px auto;
}
.pointcontents h3 {
  margin: 20px auto;
  color: #DB5425;
}
.pointcontents span {
  color: #DB5425;
}

@media screen and (max-width: 480px) {
  .pointcontents {
    display: block;
  }
  .pointcontents .cotents1,
.pointcontents .cotents2,
.pointcontents .cotents3,
.pointcontents .cotents4,
.pointcontents .cotents5,
.pointcontents .cotents6 {
    width: 100%;
  }
}
/*--------------------

step

--------------------*/
#step {
  text-align: center;
  margin: 40px auto;
  padding-top: 150px;
}

#step h2 {
  margin-bottom: 40px;
}

.stepcontents {
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  background: #DB5425;
  padding: 30px;
  margin-bottom: 70px;
}
.stepcontents .contents1,
.stepcontents .contents2,
.stepcontents .contents3 {
  width: 31%;
  padding: 30px 20px;
  margin: 20px auto;
  align-items: center;
}
.stepcontents .contents1 h3,
.stepcontents .contents2 h3,
.stepcontents .contents3 h3 {
  color: #fff;
}
.stepcontents .contents1 h5,
.stepcontents .contents2 h5,
.stepcontents .contents3 h5 {
  font-size: 20px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}
.stepcontents .contents1 .botan,
.stepcontents .contents2 .botan,
.stepcontents .contents3 .botan {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  text-align: center;
  background-color: #FFF265;
  border-radius: 3px;
  padding: 15px 20px;
  margin-top: 20px;
}
.stepcontents .contentsbox {
  margin-top: 50px;
  background-color: #fff;
  padding: 0px 20px 50px 20px;
  height: 250px;
}
.stepcontents .contentsbox img {
  margin-top: -40px;
  padding-top: 0px;
}
.stepcontents p {
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .stepcontents {
    display: block;
    padding: 10px;
  }
  .stepcontents .contents1,
.stepcontents .contents2,
.stepcontents .contents3 {
    width: 100% !important;
    margin: 0px auto;
  }
}
/*--------------------

voice

--------------------*/
#voice {
  width: 60%;
  margin: 40px auto;
  padding-top: 150px;
}

@media screen and (max-width: 480px) {
  #voice {
    width: 90%;
  }
}
li {
  list-style: none;
}

/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  /* はみ出したスライドを隠す */
}

/*  ↓ スライド（コンテンツ） */
.slide {
  /*スライド全体 */
  width: 400%;
  height: 100%;
  display: flex;
  transition: all 0.6s;
}

.slide div {
  /* スライド */
  width: 25%;
  height: 100%;
  font-size: 16px;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 40px 80px;
}
.slide div h3 {
  margin-bottom: 20px;
  line-height: 1.3;
  color: #DB5425;
}

.slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}

.slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-25%);
}

.slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-50%);
}

.slide4 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-75%);
}

.slide div:nth-of-type(1) {
  /* 背景色 */
  background-color: #fff;
}

.slide div:nth-of-type(2) {
  /* 背景色 */
  background-color: #fff;
}

.slide div:nth-of-type(3) {
  /* 背景色 */
  background-color: #fff;
}

.slide div:nth-of-type(4) {
  /* 背景色 */
  background-color: #fff;
}

/* ↓ 左右のボタン */
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 10px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(45deg) translateY(50%);
}

.prev {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 25px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  transform: rotate(-135deg) translateY(-50%);
}

/* ↓ インジケーター */
.indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 2px #000 solid;
  cursor: pointer;
}

.indicator li:first-of-type {
  background-color: #000;
}

@media screen and (max-width: 480px) {
  .slide-wrapper {
    height: 400px;
  }
  .slide div {
    padding: 40px;
  }
}
/*--------------------

faq

--------------------*/
#faq {
  margin: 10% auto;
  width: 85%;
}
#faq h2 {
  text-align: center;
  margin-bottom: 8%;
}
@media screen and (max-width: 480px) {
  #faq #faq {
    width: 100%;
  }
}

/*--------------------

links

--------------------*/
#links {
  padding-top: 150px;
  margin: 50px auto;
  text-align: center;
}

.linkscontents {
  width: 80%;
  display: flex;
  margin: 80px auto;
}
.linkscontents img {
  width: 95%;
}
/*# sourceMappingURL=top.css.map */