@charset "UTF-8";
/* 濃い色 */
/* ゴールド */
/* グリーン */
/* レッド */
/* グリーン2 */
/* レッド2 */
/* 濃いゴールド */
/* 薄いグリーン */
/* 濃いシアン */
/* 30px 見出し文字サイズ */
/* 12px 注意事項など */
@keyframes accSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
details[open] [data-acc=slideDown] {
  animation: accSlideDown 0.3s ease-in forwards;
}

[data-acc=slideDown] {
  overflow: hidden;
}

details summary {
  display: block;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* ----------------------------------- ぺージタイトル -------- */
#pagetitle {
  padding: 40px 0 0;
}
#pagetitle .h-type01::before {
  content: "INTRODUCE";
}

/* ----------------------------------- メインビジュアル -------- */
#mainv {
  width: 1060px;
  height: 310px;
  background: url(../images/service/introduction/mainv_p_01_pc.jpg) no-repeat center top;
  background-size: 100%;
  margin: 0 auto 40px;
}

.main_lead {
  text-align: center;
  margin: 0 0 118px;
}
.main_lead .note {
  font-size: 0.75rem;
}

/* ----------------------------------- ぺージ内リンクナビ -------- */
#nav_pagelink {
  margin: 0 0 80px;
}
#nav_pagelink .subContents {
  width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 750px) {
  #nav_pagelink .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
#nav_pagelink .subContents ol {
  counter-reset: item;
  display: flex;
  justify-content: space-between;
}
#nav_pagelink .subContents ol li {
  width: 49%;
}
#nav_pagelink .subContents ol li a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  background: #DCEBDF;
  border-radius: 8px;
  padding: 20px 0;
  display: block;
  position: relative;
}
#nav_pagelink .subContents ol li a:hover {
  background: #d8efdd;
}
#nav_pagelink .subContents ol li a::before {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-display: swap;
  letter-spacing: 0;
  counter-increment: item;
  content: counter(item);
  color: #3aaa7a;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  width: 36px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
}
#nav_pagelink .subContents ol li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px #01a052;
  border-right: solid 2px #01a052;
  position: absolute;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%) rotate(135deg);
}
#nav_pagelink .subContents ol li a span {
  font-weight: bold;
}

/* ----------------------------------- ご紹介方法 -------- */
#introduce .subContents {
  width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 750px) {
  #introduce .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
#introduce .subContents .midashi {
  color: #bf9159;
  font-size: 22px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  line-height: 1.3;
}
#introduce .subContents .midashi span {
  font-size: 2.7em;
  padding-left: 15px;
}
#introduce .subContents > .wrap2 {
  width: 938px;
  text-align: left;
  margin: 0 0 130px;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 432px 426px;
  grid-row-gap: 20px;
  grid-column-gap: 80px;
}
#introduce .subContents > .wrap2 figure {
  grid-row: 1/3;
  grid-column: 1/2;
}
#introduce .subContents > .wrap2 figure img {
  width: 100%;
  height: auto;
}
#introduce .subContents > .wrap2 .lead {
  font-size: 1.875rem;
  line-height: 1.7;
  grid-row: 1/2;
  grid-column: 2/3;
}
#introduce .subContents > .wrap2 .lead span {
  position: relative;
}
#introduce .subContents > .wrap2 .lead span::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #3AA27A;
  position: absolute;
  bottom: -8px;
  left: 0;
}
#introduce .subContents > .wrap2 .name {
  grid-row: 1/2;
  grid-column: 2/3;
  color: #fff;
  font-size: 26px;
  text-align: center;
  background: #3aaa7a;
  width: 320px;
  margin: 0 0 35px;
}
#introduce .subContents > .wrap2 .text {
  grid-row: 2/3;
  grid-column: 2/3;
}
#introduce .subContents > .wrap2 .text .honbun {
  margin: 0 0 10px;
}
#introduce .subContents > .wrap2 .text .course {
  grid-row: 3/4;
  grid-column: 3/4;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#introduce .subContents > .wrap2 .text .course li {
  color: #777;
  font-size: 14px;
  text-align: center;
  background: #EDEDED;
  border-radius: 4px;
  min-width: 150px;
  margin-right: 8px;
  padding: 0 15px;
}

/* ----------------------------------- サービス -------- */
#service {
  background: #E9F1F5;
  margin: 0 0 100px;
  padding: 70px 0;
}
#service .h-type01 {
  width: 1000px;
  margin: 0 auto 70px;
  padding-top: 28px;
}
#service .h-type01::before {
  content: "POINT";
}
#service .subContents {
  width: 1200px;
  margin: 0 auto;
  padding: 65px 70px;
  background: #fff;
}
@media (max-width: 750px) {
  #service .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
#service .subContents .leadText {
  text-align: left;
  margin: 0 100px 50px;
}
#service .subContents .jisseki {
  margin: 0 0 50px;
}
#service .subContents .jisseki .jisseki-num {
  color: #b98f53;
  font-family: "Oswald", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  margin: 18px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
#service .subContents .jisseki .jisseki-num::before, #service .subContents .jisseki .jisseki-num::after {
  content: "";
  width: 42px;
  height: 98px;
  background: url(/images/service/introduction/laurel.svg) no-repeat center/contain;
}
#service .subContents .jisseki .jisseki-num::after {
  transform: scaleX(-1);
}
#service .subContents .jisseki .jisseki-num .lbl {
  font-size: 26px;
  align-self: center;
}
#service .subContents .jisseki .jisseki-num .value {
  display: flex;
  align-items: center;
  gap: 8px;
}
#service .subContents .jisseki .jisseki-num .big {
  font-size: 110px;
  line-height: 0.82;
}
#service .subContents .jisseki .jisseki-num .frac {
  font-size: 46px;
  text-align: center;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#service .subContents .jisseki .jisseki-num .frac.dec {
  font-size: 40px;
}
#service .subContents .jisseki .lead {
  font-size: 28px;
  margin: 0;
}
#service .subContents .jisseki .lead span {
  font-weight: bold;
  padding: 0 0.5em;
}
#service .subContents .jisseki .lead::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 0 14px;
  border-color: #85C6D2 transparent transparent transparent;
  margin: 24px auto 0;
  display: block;
}
#service .subContents .jisseki figure {
  position: relative;
}
#service .subContents .jisseki figure::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 14px 0 14px;
  border-color: #85C6D2 transparent transparent transparent;
}
#service .subContents .jisseki .note {
  color: #929292;
  font-size: 0.75rem;
  margin-top: 10px;
}
#service .subContents .sample {
  margin: 0 0 50px;
}
#service .subContents .point {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-display: swap;
  width: 730px;
  border: 1px solid #E96767;
  border-radius: 5px;
  margin: 0 auto;
  padding: 25px;
}
#service .subContents .point .fukidashi {
  color: #fff;
  background: #E96767;
  border-radius: 20px;
  margin: 0 0 20px;
  padding: 0 50px;
  display: inline-block;
  position: relative;
}
#service .subContents .point .fukidashi::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 9px 0 9px;
  border-color: #E96767 transparent transparent transparent;
}
#service .subContents .point .text {
  color: #E96767;
}
#service .subContents .point .text span {
  font-weight: bold;
}

/* ----------------------------------- 推薦紹介に対するお声 -------- */
#voice {
  margin: 0 0 130px;
}
#voice .subContents {
  width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (max-width: 750px) {
  #voice .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
#voice .subContents .balloon {
  color: #bf9159;
  font-size: 24px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: center;
  width: 460px;
  margin: 0 auto 60px;
  padding: 10px 0;
  border-top: 1px solid #bf9159;
  border-bottom: 1px solid #bf9159;
  position: relative;
}
#voice .subContents .balloon::before, #voice .subContents .balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
}
#voice .subContents .balloon::before {
  bottom: 0;
  border-width: 13px 13px 0 13px;
  border-color: #bf9159 transparent transparent transparent;
}
#voice .subContents .balloon::after {
  bottom: 1px;
  border-width: 12px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
}
#voice .subContents .lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#voice .subContents .lists li {
  text-align: left;
  width: 48%;
  border-radius: 10px;
  padding: 25px;
}
#voice .subContents .lists li .guest {
  line-height: 1.6;
  margin: 0 0 18px;
  padding: 7px 0 7px 85px;
}
#voice .subContents .lists li .guest .detail {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
}
#voice .subContents .lists li .guest .name {
  font-weight: bold;
  font-size: 18px;
}
#voice .subContents .lists li .text {
  line-height: 1.8;
}
#voice .subContents .lists li:nth-child(n+3) {
  margin-top: 40px;
}
#voice .subContents .lists li.man {
  background: #E8EFF3;
}
#voice .subContents .lists li.man .guest {
  background: url(../images/service/introduction/voice_i_man.png) no-repeat left center/auto 100%;
}
#voice .subContents .lists li.man .guest .detail {
  color: #58A2B6;
}
#voice .subContents .lists li.woman {
  background: #F7E6E9;
}
#voice .subContents .lists li.woman .guest {
  background: url(../images/service/introduction/voice_i_woman.png) no-repeat left center/auto 100%;
}
#voice .subContents .lists li.woman .guest .detail {
  color: #D76C85;
}

/* ----------------------------------- フッター -------- */
#contact .subContents {
  width: 1200px;
  text-align: left;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 750px) {
  #contact .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
#contact .subContents .head {
  font-size: 30px;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  margin: 0 0 35px;
  padding: 0 30px;
  display: inline-block;
  position: relative;
}
#contact .subContents .head::before, #contact .subContents .head::after {
  content: "";
  width: 2px;
  height: 80%;
  background-color: #333;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-20deg) translateY(-50%);
}
#contact .subContents .head::after {
  left: auto;
  right: 0;
  top: 50%;
  transform: rotate(20deg) translateY(-50%);
}
#contact .subContents .btn-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
#contact .item01.subContents {
  margin: 0 auto 90px;
}
#contact .item01.subContents ul {
  width: 808px;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}
#contact .item02.subContents {
  width: auto;
  text-align: left;
  margin: 0 auto;
  min-width: 1200px;
  background: #f2f3f5;
  padding: 40px 0;
  text-align: center;
}
@media (max-width: 750px) {
  #contact .item02.subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
#contact .item02.subContents ul {
  width: 792px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#contact .item02.subContents ul li {
  width: 384px;
}
#contact .item02.subContents ul li img {
  width: 100%;
}

/* FOR smartphone landscape
***************************************************************************/
@media screen and (max-width: 750px) {
  /* ----------------------------------- ぺージタイトル -------- */
  #pagetitle {
    padding: 6vw 0;
  }
  #pagetitle .h-type01 {
    margin-bottom: 0;
  }
  /* ----------------------------------- メインビジュアル -------- */
  #mainv {
    width: 100vw;
    height: 55.5vw;
    background: url(../images/service/introduction/mainv_p_01_sp.jpg) no-repeat center top;
    background-size: auto 55.5vw;
    margin: 0 calc(50% - 50vw) 7vw;
  }
  .main_lead {
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
    margin: 0 0 50px;
    padding: 0 6vw;
  }
  .main_lead .note {
    margin-top: 20px;
    display: inline-block;
  }
  /* ----------------------------------- ぺージ内リンクナビ -------- */
  #nav_pagelink {
    margin: 0 0 45px;
  }
  #nav_pagelink .subContents {
    width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
  }
  /* ----------------------------------- ご紹介方法 -------- */
  /* ----------------------------------- サービス -------- */
  /* ----------------------------------- 推薦紹介に対するお声 -------- */
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  #nav_pagelink .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
@media screen and (max-width: 750px) {
  #nav_pagelink .subContents ol {
    display: block;
  }
  #nav_pagelink .subContents ol li {
    width: 100%;
  }
  #nav_pagelink .subContents ol li + li {
    margin-top: 12px;
  }
  #nav_pagelink .subContents ol li a {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 10px;
    padding: 2vw 18vw;
  }
  #nav_pagelink .subContents ol li a::before {
    font-size: 20px;
    font-weight: bold;
    line-height: 9.3vw;
    width: 9.3vw;
    left: 4vw;
    transform: translateY(-50%);
  }
  #nav_pagelink .subContents ol li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #01a052;
    border-right: solid 2px #01a052;
    position: absolute;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 5vw;
    transform: translateY(-50%) rotate(135deg);
  }
  #nav_pagelink .subContents ol li a span {
    font-weight: bold;
  }
  #introduce .subContents {
    width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  #introduce .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
@media screen and (max-width: 750px) {
  #introduce .subContents .midashi {
    font-size: 18px;
    letter-spacing: 2px;
    margin: 0 0 5px;
  }
  #introduce .subContents .midashi span {
    padding-left: 15px;
  }
  #introduce .subContents > .wrap2 {
    width: 100%;
    margin: 0 0 40px;
    display: block;
  }
  #introduce .subContents > .wrap2 figure {
    margin: 0 0 20px;
  }
  #introduce .subContents > .wrap2 .lead {
    font-size: 23px;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 30px;
  }
  #introduce .subContents > .wrap2 .lead span::before {
    bottom: -5px;
  }
  #introduce .subContents > .wrap2 .name {
    font-size: 22px;
    width: 100%;
    margin: 0 0 20px;
    padding: 3px 0;
  }
  #introduce .subContents > .wrap2 .text .honbun {
    font-size: 16px;
    margin: 0 0 15px;
  }
  #introduce .subContents > .wrap2 .text .course li {
    font-size: 12px;
    min-width: 130px;
    margin-right: 4px;
    padding: 0 0.5em;
  }
  #introduce .subContents .fukidashi {
    padding: 15px 4.5vw;
  }
  #introduce .subContents .fukidashi .wrap2 {
    display: block;
  }
  #introduce .subContents .fukidashi .wrap2 .chatch {
    text-align: center;
    font-size: 21px;
    line-height: 1.5;
    margin: 0 0 15px;
  }
  #introduce .subContents .fukidashi .wrap2 figure {
    width: 48%;
    margin: 0 auto 15px;
  }
  #introduce .subContents .fukidashi .wrap2 .text {
    padding: 20px 4vw;
    font-size: 15px;
  }
  #introduce .subContents .fukidashi .wrap2 .note {
    margin: 10px 0 0;
  }
  #service {
    margin: 0 0 60px;
    padding: 10vw 4vw;
  }
  #service .h-type01 {
    font-size: 28px;
    width: 100%;
    margin: 0 auto 35px;
    padding-top: 28px;
  }
  #service .h-type01::before {
    letter-spacing: 2px;
  }
  #service .subContents {
    width: 100%;
    padding: 30px 5vw;
  }
  #service .subContents .leadText {
    text-align: left;
    margin: 0 0 8vw;
  }
  #service .subContents .leadText p {
    margin-bottom: 10px;
  }
  #service .subContents .jisseki {
    margin: 0 0 25px;
  }
  #service .subContents .jisseki .jisseki-num .lbl {
    font-size: 5.5vw;
  }
  #service .subContents .jisseki .jisseki-num .big {
    font-size: 20vw;
  }
  #service .subContents .jisseki .jisseki-num .frac {
    font-size: 8vw;
  }
  #service .subContents .jisseki .jisseki-num::before, #service .subContents .jisseki .jisseki-num::after {
    width: 9.5vw;
    height: 22vw;
  }
  #service .subContents .jisseki .lead {
    font-size: 6vw;
    line-height: 1.6;
    margin: 0;
  }
  #service .subContents .jisseki figure {
    width: 85%;
    margin: 0 auto;
  }
  #service .subContents .jisseki figure::before {
    top: -40px;
  }
  #service .subContents .sample {
    margin: 0 0 70px;
  }
  #service .subContents .point {
    width: 100%;
    padding: 4vw;
    position: relative;
  }
  #service .subContents .point .fukidashi {
    font-size: 16px;
    margin: 0 0 20px;
    padding: 2px 50px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
  #service .subContents .point .text {
    text-align: left;
  }
  #voice {
    margin: 0 0 75px;
  }
  #voice .subContents .balloon {
    font-size: 20px;
    width: 100%;
    margin: 0 auto 35px;
    padding: 11px 0;
  }
  #voice .subContents .lists {
    display: block;
  }
  #voice .subContents .lists li {
    width: 100%;
    padding: 6vw;
  }
  #voice .subContents .lists li .guest {
    padding: 7px 0 7px 90px;
  }
  #voice .subContents .lists li .text {
    font-size: 16px;
  }
  #voice .subContents .lists li + li {
    margin-top: 25px;
  }
  #voice .subContents .lists li:nth-child(n+3) {
    margin-top: 25px;
  }
  #contact .subContents {
    width: 1000px;
    text-align: left;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  #contact .subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}
@media screen and (max-width: 750px) {
  #contact .subContents .head {
    font-size: 5vw;
    line-height: 1.48;
    margin: 0 0 7.8vw;
    padding: 0 4vw;
  }
  #contact .subContents .head::before, #contact .subContents .head::after {
    width: 2px;
  }
  #contact .subContents .btn-text {
    color: #1e9062;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    border: solid 2px #1e9062;
    border-radius: 1vw;
    padding: 0.8vw 0;
    position: relative;
    z-index: 0;
  }
  #contact .subContents .btn-text::before, #contact .subContents .btn-text::after {
    content: "";
    border-left: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-top: 2vw solid #1e9062;
    position: absolute;
    bottom: -2vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #contact .subContents .btn-text::before {
    border-left: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-top: 2vw solid #FFF;
    bottom: -1.3vw;
    z-index: 0;
  }
  #contact .subContents .btn-text.require {
    color: #58A9BD;
    border: solid 2px #58A9BD;
  }
  #contact .subContents .btn-text.require::after {
    border-top: 2vw solid #58A9BD;
  }
  #contact .subContents .btn-text.reserve {
    color: #1e9062;
    border: solid 2px #1e9062;
  }
  #contact .subContents .btn-text.reserve::after {
    border-top: 2vw solid #1e9062;
  }
  #contact .subContents .btn-text.simulation {
    color: #E6882C;
    border: solid 2px #E6882C;
  }
  #contact .subContents .btn-text.simulation::after {
    border-top: 2vw solid #E6882C;
  }
  #contact .item01.subContents {
    margin: 0 0 10vw;
  }
  #contact .item01.subContents > div {
    margin: 0 0 5vw;
  }
  #contact .item01.subContents ul {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  #contact .item01.subContents ul li {
    width: 100%;
    margin: 0 0 6vw;
  }
  #contact .item01.subContents ul li img {
    width: 100%;
  }
  #contact .item01.subContents ul li:last-child {
    margin: 0;
  }
  #contact .item02.subContents {
    width: 1000px;
    text-align: left;
    margin: 0 auto;
    min-width: auto;
    background: #FFF;
    padding: 40px 0;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  #contact .item02.subContents {
    width: 100vw;
    padding: 0 4vw;
  }
}

/*# sourceMappingURL=introduction.css.map */
