/* -- color --*/
/*-- fonts --*/
/* line 9, sass/_default.scss */
.en {
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
/* line 14, sass/_default.scss */
.en.bold {
  font-weight: 700;
}

/* line 18, sass/_default.scss */
.caslon {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-style: normal;
}

/*-- default --*/
/* line 26, sass/_default.scss */
html {
  font-size: 62.5%;
}

/* line 30, sass/_default.scss */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  color: #222;
  position: relative;
  line-height: 1.6;
}

/* line 39, sass/_default.scss */
main {
  padding-top: 7.172rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 1024px) {
  /* line 44, sass/_default.scss */
  main {
    padding-top: 9vw;
    padding-bottom: 20vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 50, sass/_default.scss */
  body {
    font-size: 1.4rem;
  }

  /* line 53, sass/_default.scss */
  main {
    padding-top: 12vw;
    padding-bottom: 24vw;
  }
}
/* line 59, sass/_default.scss */
*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

/* line 62, sass/_default.scss */
caption, th, td {
  font-weight: 500;
}

/* line 66, sass/_default.scss */
a {
  text-decoration: none;
  color: #222;
}

/* line 71, sass/_default.scss */
img {
  max-width: 100%;
  height: auto;
}

/*-- common --*/
/* line 78, sass/_default.scss */
.flex {
  display: flex;
}

/* line 82, sass/_default.scss */
.center {
  text-align: center;
}

/* line 86, sass/_default.scss */
.right {
  text-align: right;
}

/* line 90, sass/_default.scss */
.left {
  text-align: left;
}

/* line 95, sass/_default.scss */
.bold {
  font-weight: 600;
}

/* line 100, sass/_default.scss */
.inner {
  width: 92%;
  max-width: 140rem;
  margin: 0 auto 0;
}

/* line 106, sass/_default.scss */
h2.title {
  color: #001c55;
  font-size: 1.8rem;
  margin-bottom: 10rem;
}
/* line 110, sass/_default.scss */
h2.title .en {
  font-size: 4.8rem;
}

/* line 115, sass/_default.scss */
.page-btn {
  text-align: center;
  margin-top: 6rem;
}
/* line 118, sass/_default.scss */
.page-btn a {
  display: inline-block;
  color: #fff;
  background: #222;
  padding: 1.4rem 6.8rem;
  position: relative;
}
/* line 124, sass/_default.scss */
.page-btn a::after {
  content: '';
  width: 1.6rem;
  height: .6rem;
  background: url(../img/common/arrow.png) no-repeat center center/cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* line 137, sass/_default.scss */
.more-link {
  color: #001c55;
  text-align: right;
  padding-right: 3.4rem;
  position: relative;
  margin-top: 1.6rem;
}
/* line 143, sass/_default.scss */
.more-link a {
  color: #001c55;
}
/* line 146, sass/_default.scss */
.more-link::after {
  content: '';
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/beginner/arrow.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  /* line 158, sass/_default.scss */
  .more-link {
    padding-right: 7vw;
    margin-top: 4vw;
  }
  /* line 161, sass/_default.scss */
  .more-link::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
/* ------------------------- 
            button
--------------------------- */
/* line 181, sass/_default.scss */
.pconly {
  display: block;
}

/* line 184, sass/_default.scss */
.sponly {
  display: none;
}

@media screen and (max-width: 1024px) {
  /* line 189, sass/_default.scss */
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  /* line 195, sass/_default.scss */
  .pconly {
    display: none;
  }

  /* line 198, sass/_default.scss */
  .sponly {
    display: block;
  }
}
/* ------------------------- 
            header
--------------------------- */
/* line 207, sass/_default.scss */
#header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3%;
  background: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  border-bottom: .1rem solid #eeeeee;
}
/* line 219, sass/_default.scss */
#header .logo {
  width: 5.2%;
}
/* line 222, sass/_default.scss */
#header .head-menu-area {
  width: 40%;
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* line 229, sass/_default.scss */
#header .head-menu-list {
  width: calc(100% - 8rem);
  justify-content: space-between;
  align-items: center;
}
/* line 234, sass/_default.scss */
#header .toggle {
  width: 3.4rem;
  height: 1.4rem;
  position: relative;
}
/* line 238, sass/_default.scss */
#header .toggle::before, #header .toggle::after {
  content: '';
  width: 100%;
  height: .2rem;
  background-color: #222;
  position: absolute;
  transition: .3s;
}
/* line 246, sass/_default.scss */
#header .toggle::before {
  top: 0;
  left: 0;
}
/* line 250, sass/_default.scss */
#header .toggle::after {
  bottom: 0;
  left: 0;
}
/* line 255, sass/_default.scss */
#header .toggle.open::before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
/* line 259, sass/_default.scss */
#header .toggle.open::after {
  transform: rotate(-45deg) translateY(-50%);
  bottom: auto;
  top: 50%;
}
/* line 266, sass/_default.scss */
#header .head-humb-area {
  width: 100%;
  height: calc(100vh - 7.172rem);
  background: #fff;
  padding: 10% 4%;
  position: absolute;
  top: 7.172rem;
  left: 0;
  display: none;
}
/* line 275, sass/_default.scss */
#header .head-humb-area .inner {
  justify-content: center;
}
/* line 279, sass/_default.scss */
#header .humb-item {
  display: flex;
}
/* line 281, sass/_default.scss */
#header .humb-item.humb-top {
  width: 15%;
}
/* line 284, sass/_default.scss */
#header .humb-item.humb-sec {
  width: 35%;
}
/* line 287, sass/_default.scss */
#header .humb-item.humb-third {
  width: 35%;
}
/* line 291, sass/_default.scss */
#header .humb-list {
  justify-content: space-between;
}
/* line 293, sass/_default.scss */
#header .humb-list a {
  color: #001c55;
  font-size: 2rem;
  font-weight: 600;
}
/* line 298, sass/_default.scss */
#header .humb-list .en {
  font-size: 4.8rem;
  line-height: 1.2;
}
/* line 302, sass/_default.scss */
#header .humb-list:nth-of-type(2) {
  margin-left: 14%;
}
/* line 306, sass/_default.scss */
#header .humb-list > li:not(:last-child) {
  margin-bottom: 3rem;
}
/* line 310, sass/_default.scss */
#header .humb-list .humb-list-child {
  margin-top: 2rem;
  padding-left: 1.2rem;
  border-left: 0.1rem solid #001c55;
}
/* line 315, sass/_default.scss */
#header .humb-list .humb-list-child li:not(:last-child) {
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 1024px) {
  /* line 323, sass/_default.scss */
  #header {
    padding: 1.8vw 4vw;
  }
  /* line 325, sass/_default.scss */
  #header .logo {
    width: 10%;
  }
  /* line 328, sass/_default.scss */
  #header .head-menu-area {
    width: auto;
  }
  /* line 331, sass/_default.scss */
  #header .head-menu-list {
    display: none;
  }
  /* line 334, sass/_default.scss */
  #header .head-humb-area {
    top: 8vw;
    overflow: scroll;
  }
  /* line 337, sass/_default.scss */
  #header .head-humb-area .inner {
    display: block;
  }
  /* line 341, sass/_default.scss */
  #header .humb-item {
    justify-content: flex-start;
  }
  /* line 343, sass/_default.scss */
  #header .humb-item.humb-top {
    width: 100%;
    margin-bottom: 4vw;
  }
  /* line 347, sass/_default.scss */
  #header .humb-item.humb-sec {
    width: 100%;
    margin-bottom: 4vw;
  }
  /* line 351, sass/_default.scss */
  #header .humb-item.humb-third {
    width: 100%;
  }
  /* line 355, sass/_default.scss */
  #header .humb-list {
    width: 50%;
  }
  /* line 357, sass/_default.scss */
  #header .humb-list:nth-of-type(2) {
    margin-left: 0;
  }
  /* line 361, sass/_default.scss */
  #header .humb-list > li:not(:last-child) {
    margin-bottom: 4vw;
  }
  /* line 365, sass/_default.scss */
  #header .humb-list a {
    font-size: 1.8rem;
  }
  /* line 368, sass/_default.scss */
  #header .humb-list .en {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 375, sass/_default.scss */
  #header {
    padding: 2vw 4vw;
  }
  /* line 377, sass/_default.scss */
  #header .logo {
    width: 18%;
  }
  /* line 380, sass/_default.scss */
  #header .toggle {
    width: 3rem;
  }
  /* line 383, sass/_default.scss */
  #header .head-humb-area {
    top: 5.1rem;
  }
  /* line 387, sass/_default.scss */
  #header .humb-list a {
    font-size: 1.3rem;
  }
  /* line 390, sass/_default.scss */
  #header .humb-list .en {
    font-size: 6.4vw;
  }
  /* line 393, sass/_default.scss */
  #header .humb-list .humb-list-child {
    margin-top: 2vw;
  }
  /* line 396, sass/_default.scss */
  #header .humb-list .humb-list-child li:not(:last-child) {
    margin-bottom: 1vw;
  }
}
/* ------------------------- 
            footer
--------------------------- */
/* line 409, sass/_default.scss */
#footer .top-bnr {
  background: #173c5f;
  padding: 6rem 0;
}
/* line 412, sass/_default.scss */
#footer .top-bnr .bnr-flex {
  justify-content: center;
}
/* line 415, sass/_default.scss */
#footer .top-bnr .bnr-item {
  margin: 0 1rem;
}
/* line 417, sass/_default.scss */
#footer .top-bnr .bnr-item a {
  display: block;
  transition: .3s;
}
/* line 420, sass/_default.scss */
#footer .top-bnr .bnr-item a:hover {
  opacity: .8;
}
/* line 426, sass/_default.scss */
#footer .btm-footer {
  color: #fff;
  padding: 13rem 0 7rem;
  background: #0b121e;
}
/* line 430, sass/_default.scss */
#footer .btm-footer .inner {
  justify-content: center;
  align-items: center;
}
/* line 434, sass/_default.scss */
#footer .btm-footer .footer-symbol {
  width: 22.4%;
  text-align: center;
  margin-right: 4rem;
}
/* line 438, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn {
  margin: 2.6rem 0 1rem;
}
/* line 440, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn a {
  font-size: 2.6rem;
  color: #fff;
  border: 0.1rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
/* line 448, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn a .icon {
  margin-right: 1.2rem;
}
/* line 454, sass/_default.scss */
#footer .btm-footer .sns-wrap {
  padding-top: 7rem;
}
/* line 457, sass/_default.scss */
#footer .btm-footer .sns-list {
  justify-content: center;
  align-items: center;
}
/* line 460, sass/_default.scss */
#footer .btm-footer .sns-list li {
  margin: 0 .4rem;
}
/* line 464, sass/_default.scss */
#footer .btm-footer .copy {
  padding-top: 3rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  /* line 472, sass/_default.scss */
  #footer .top-bnr {
    padding: 4vw 0;
  }
  /* line 475, sass/_default.scss */
  #footer .btm-footer {
    padding: 12vw 0 6vw;
  }
  /* line 477, sass/_default.scss */
  #footer .btm-footer .footer-symbol {
    width: 40%;
    margin-right: 4vw;
  }
  /* line 480, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn {
    margin: 2.4vw 0 1vw;
  }
  /* line 482, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn a {
    font-size: 2rem;
  }
  /* line 487, sass/_default.scss */
  #footer .btm-footer .sns-wrap {
    padding-top: 6vw;
  }
  /* line 490, sass/_default.scss */
  #footer .btm-footer .copy {
    padding-top: 3vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 498, sass/_default.scss */
  #footer .top-bnr {
    padding: 8vw 0;
  }
  /* line 501, sass/_default.scss */
  #footer .btm-footer {
    padding: 18vw 0 10vw;
  }
  /* line 503, sass/_default.scss */
  #footer .btm-footer .inner {
    display: block;
  }
  /* line 506, sass/_default.scss */
  #footer .btm-footer .footer-symbol {
    width: 92%;
    margin: 0 auto 10vw;
  }
  /* line 509, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn {
    width: 80%;
    margin: 8vw auto 4vw;
  }
  /* line 514, sass/_default.scss */
  #footer .btm-footer .footer-info {
    text-align: center;
  }
  /* line 517, sass/_default.scss */
  #footer .btm-footer .sns-wrap {
    padding-top: 10vw;
  }
  /* line 520, sass/_default.scss */
  #footer .btm-footer .copy {
    padding-top: 8vw;
  }
}
/* ------------------------- 
            CTA
--------------------------- */
/* ------------------------- 
        page under_FV
--------------------------- */
/* ------------------------- 
            404
--------------------------- */
@media screen and (max-width: 1024px) {
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
      page under_FV
  --------------------------- */
  /* ------------------------- 
          404
  --------------------------- */
}
@media screen and (max-width: 750px) {
  /* ------------------------- 
          header
  --------------------------- */
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
      page under_FV
  --------------------------- */
}
/* line 7, sass/beginner.scss */
#page-under.page-beginner .mainv .mainv-bg {
  background: url(../img/beginner/mainv-bg.jpg) no-repeat center center/cover;
}

/* line 16, sass/beginner.scss */
.page-beginner .section {
  padding-top: 18rem;
}
/* line 19, sass/beginner.scss */
.page-beginner .sec-ttl {
  color: #001c55;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
/* line 28, sass/beginner.scss */
.page-beginner .anchor-container .anchor-ttl {
  color: #001c55;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
/* line 34, sass/beginner.scss */
.page-beginner .anchor-container .anchor-link {
  justify-content: center;
  align-items: center;
}
/* line 38, sass/beginner.scss */
.page-beginner .anchor-container .anchor-link li:not(:last-child) {
  margin-right: 6rem;
}
/* line 42, sass/beginner.scss */
.page-beginner .anchor-container .anchor-link a {
  color: #001c55;
  font-size: 1.8rem;
  font-weight: 600;
  padding-right: 3.6rem;
  position: relative;
}
/* line 48, sass/beginner.scss */
.page-beginner .anchor-container .anchor-link a::after {
  content: '';
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/beginner/arrow.png) no-repeat center center/cover;
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-55%);
  transition: .3s;
}
/* line 60, sass/beginner.scss */
.page-beginner .anchor-container .anchor-link a:hover::after {
  right: -.4rem;
}
/* line 69, sass/beginner.scss */
.page-beginner .reason-container .inner {
  max-width: 100rem;
}
/* line 72, sass/beginner.scss */
.page-beginner .reason-container .reason-main {
  margin-bottom: 8rem;
}
/* line 76, sass/beginner.scss */
.page-beginner .reason-container .reason-item:not(:last-of-type) {
  margin-bottom: 12rem;
}
/* line 79, sass/beginner.scss */
.page-beginner .reason-container .reason-item .reason-ttl {
  color: #001c55;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  background: #e7ecf8;
  position: relative;
  padding: 1rem;
  margin-bottom: 5rem;
}
/* line 88, sass/beginner.scss */
.page-beginner .reason-container .reason-item .reason-ttl .num {
  display: inline-block;
  color: #fff;
  background: #001c55;
  font-size: 175%;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  border-radius: 10vw;
  padding: 1.8rem 1.92rem 2.6rem;
}
/* line 103, sass/beginner.scss */
.page-beginner .reason-container .table-ttl {
  color: #001c55;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 6rem 0 2rem;
  text-align: center;
}
/* line 110, sass/beginner.scss */
.page-beginner .reason-container .first-price {
  margin: 0 auto 4rem;
  table-layout: fixed;
  width: 80%;
  border: 0.1rem solid #001c55;
}
/* line 115, sass/beginner.scss */
.page-beginner .reason-container .first-price th {
  color: #fff;
  background: #001c55;
}
/* line 118, sass/beginner.scss */
.page-beginner .reason-container .first-price th.border {
  border-right: 0.1rem solid #fff;
}
/* line 123, sass/beginner.scss */
.page-beginner .reason-container .first-price td.border {
  border-right: 0.1rem solid #001c55;
}
/* line 127, sass/beginner.scss */
.page-beginner .reason-container .first-price th, .page-beginner .reason-container .first-price td {
  padding: 1.4rem;
  text-align: center;
}
/* line 131, sass/beginner.scss */
.page-beginner .reason-container .first-price .blue {
  color: #001c55;
  font-weight: 600;
}
/* line 136, sass/beginner.scss */
.page-beginner .reason-container .reason-flex {
  align-items: center;
  justify-content: space-between;
}
/* line 139, sass/beginner.scss */
.page-beginner .reason-container .reason-flex .flex-img {
  width: 45%;
  text-align: center;
}
/* line 143, sass/beginner.scss */
.page-beginner .reason-container .reason-flex .reason-detail {
  width: 50%;
}
/* line 146, sass/beginner.scss */
.page-beginner .reason-container .reason-flex .detail-ttl {
  color: #001c55;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
/* line 153, sass/beginner.scss */
.page-beginner .reason-container .reason-flex p:not(:last-of-type) {
  margin-bottom: 2rem;
}
/* line 156, sass/beginner.scss */
.page-beginner .reason-container .reason-flex p .blue {
  color: #001c55;
  font-weight: 600;
}
/* line 165, sass/beginner.scss */
.page-beginner .voice-container .inner {
  max-width: 100rem;
}
/* line 168, sass/beginner.scss */
.page-beginner .voice-container .intro {
  margin-bottom: 6rem;
}
/* line 171, sass/beginner.scss */
.page-beginner .voice-container .voice-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f3f7ff;
  padding: 3rem 5rem;
}
/* line 177, sass/beginner.scss */
.page-beginner .voice-container .voice-item:not(:last-of-type) {
  margin-bottom: 3rem;
}
/* line 180, sass/beginner.scss */
.page-beginner .voice-container .voice-item .voice-icon {
  width: 18%;
}
/* line 183, sass/beginner.scss */
.page-beginner .voice-container .voice-item .voice-text {
  width: 76%;
}
/* line 186, sass/beginner.scss */
.page-beginner .voice-container .voice-item p.link {
  margin-top: 6rem;
  text-align: right;
}
/* line 189, sass/beginner.scss */
.page-beginner .voice-container .voice-item p.link a {
  color: #001c55;
  text-decoration: underline;
}
/* line 198, sass/beginner.scss */
.page-beginner .store-container .store-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
}
/* line 203, sass/beginner.scss */
.page-beginner .store-container .store-info .logo {
  width: 25%;
  margin-right: 4rem;
}
/* line 207, sass/beginner.scss */
.page-beginner .store-container .store-info .address {
  width: auto;
  text-align: left;
}
/* line 211, sass/beginner.scss */
.page-beginner .store-container .store-info .page-btn {
  margin-top: 2rem;
}
/* line 213, sass/beginner.scss */
.page-beginner .store-container .store-info .page-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* line 217, sass/beginner.scss */
.page-beginner .store-container .store-info .page-btn a .icon {
  margin-right: 2rem;
}
/* line 226, sass/beginner.scss */
.page-beginner .faq-container .inner {
  max-width: 100rem;
}
/* line 230, sass/beginner.scss */
.page-beginner .faq-container .acWrap:not(:last-of-type) {
  margin-bottom: 3rem;
}
/* line 233, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acMenu {
  color: #001c55;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.4rem 4rem 1.4rem 3rem;
  background: #f3f7ff;
  position: relative;
}
/* line 240, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acMenu::before {
  content: 'Q.';
}
/* line 243, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acMenu::after {
  content: '';
  border-top: 1.2rem solid #001c55;
  border-right: .9rem solid transparent;
  border-left: .9rem solid transparent;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
/* line 254, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acMenu:hover {
  cursor: pointer;
}
/* line 258, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acMenu.open::after {
  transform: translateY(-50%) rotate(180deg);
}
/* line 263, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acCont {
  display: none;
  padding: 2rem 2rem 0;
}
/* line 266, sass/beginner.scss */
.page-beginner .faq-container .acWrap .acCont a.anc {
  color: #001c55;
  text-decoration: underline;
}


.page-beginner .bnr{
/*    padding-bottom: 18rem;*/
    text-align: center;
}
.page-beginner .bnr img{
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
}

@media screen and (max-width: 1024px) {
  /* line 278, sass/beginner.scss */
  .page-beginner .section {
    padding-top: 18vw;
  }
  /* line 281, sass/beginner.scss */
  .page-beginner .sec-ttl {
    font-size: 3.2vw;
    margin-bottom: 5vw;
  }
  /* line 287, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-ttl {
    font-size: 3.4vw;
    margin-bottom: 5vw;
  }
  /* line 291, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link {
    flex-flow: wrap;
  }
  /* line 293, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link li {
    margin-bottom: 2vw;
  }
  /* line 295, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link li:not(:last-child) {
    margin-right: 4vw;
  }
  /* line 303, sass/beginner.scss */
  .page-beginner .reason-container .reason-main {
    margin-bottom: 8vw;
  }
  /* line 307, sass/beginner.scss */
  .page-beginner .reason-container .reason-item:not(:last-of-type) {
    margin-bottom: 12vw;
  }
  /* line 310, sass/beginner.scss */
  .page-beginner .reason-container .reason-item .reason-ttl {
    font-size: 3vw;
    padding: 1.4vw 1.4vw 1.4vw 10vw;
    margin-bottom: 5vw;
  }
  /* line 314, sass/beginner.scss */
  .page-beginner .reason-container .reason-item .reason-ttl .num {
    left: -1vw;
    padding: 1.8vw 1.92vw 2.6vw;
  }
  /* line 320, sass/beginner.scss */
  .page-beginner .reason-container .table-ttl {
    margin: 6vw 0 2vw;
  }
  /* line 323, sass/beginner.scss */
  .page-beginner .reason-container .first-price {
    width: 100%;
    margin: 0 auto 4vw;
  }
  /* line 326, sass/beginner.scss */
  .page-beginner .reason-container .first-price th, .page-beginner .reason-container .first-price td {
    padding: 1.4vw;
  }
  /* line 331, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex .flex-img {
    width: 35%;
  }
  /* line 334, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex .reason-detail {
    width: 60%;
  }
  /* line 337, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex .detail-ttl {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
  /* line 345, sass/beginner.scss */
  .page-beginner .voice-container .voice-item {
    padding: 3vw 4vw;
  }
  /* line 347, sass/beginner.scss */
  .page-beginner .voice-container .voice-item p.link {
    margin-top: 4vw;
  }
  /* line 354, sass/beginner.scss */
  .page-beginner .store-container .store-info {
    margin-top: 10vw;
  }
  /* line 356, sass/beginner.scss */
  .page-beginner .store-container .store-info .logo {
    width: 35%;
    margin-right: 6vw;
  }
  /* line 365, sass/beginner.scss */
  .page-beginner .faq-container .acWrap:not(:last-of-type) {
    margin-bottom: 3vw;
  }
  /* line 368, sass/beginner.scss */
  .page-beginner .faq-container .acWrap .acMenu {
    font-size: 1.6rem;
    padding: 1.4vw 4vw 1.4vw 3vw;
  }
  /* line 372, sass/beginner.scss */
  .page-beginner .faq-container .acWrap .acCont {
    padding: 4vw 4vw 0;
  }
}
@media screen and (max-width: 750px) {
  /* line 383, sass/beginner.scss */
  .page-beginner .section {
    padding-top: 24vw;
  }
  /* line 386, sass/beginner.scss */
  .page-beginner .sec-ttl {
    font-size: 4.8vw;
  }
  /* line 391, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-ttl {
    font-size: 5.066666666666666vw;
    margin-bottom: 6vw;
  }
  /* line 395, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link {
    flex-flow: column;
  }
  /* line 397, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link li {
    margin-bottom: 0;
  }
  /* line 399, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2vw;
  }
  /* line 404, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link a {
    font-size: 1.4rem;
    padding-right: 6vw;
  }
  /* line 407, sass/beginner.scss */
  .page-beginner .anchor-container .anchor-link a::after {
    width: 1.6rem;
    height: 1.6rem;
  }
  /* line 417, sass/beginner.scss */
  .page-beginner .reason-container .reason-item:not(:last-of-type) {
    margin-bottom: 14vw;
  }
  /* line 420, sass/beginner.scss */
  .page-beginner .reason-container .reason-item .reason-ttl {
    font-size: 4.8vw;
    text-align: left;
    padding: 2vw 2vw 2vw 16vw;
    margin-bottom: 6vw;
  }
  /* line 425, sass/beginner.scss */
  .page-beginner .reason-container .reason-item .reason-ttl .num {
    font-size: 160%;
    padding: 3vw 3.1vw 4.2vw;
  }
  /* line 430, sass/beginner.scss */
  .page-beginner .reason-container .reason-item p {
    text-align: left;
  }
  /* line 434, sass/beginner.scss */
  .page-beginner .reason-container .table-ttl {
    font-size: 1.6rem;
    margin: 8vw 0 2vw;
  }
  /* line 438, sass/beginner.scss */
  .page-beginner .reason-container .first-price {
    table-layout: auto;
    margin: 0 auto 6vw;
  }
  /* line 442, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex {
    flex-flow: column-reverse;
  }
  /* line 444, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex .flex-img {
    width: 80%;
    margin: 8vw auto 0;
  }
  /* line 448, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex .reason-detail {
    width: 100%;
  }
  /* line 451, sass/beginner.scss */
  .page-beginner .reason-container .reason-flex .detail-ttl {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
  /* line 459, sass/beginner.scss */
  .page-beginner .voice-container .intro {
    margin-bottom: 6vw;
  }
  /* line 462, sass/beginner.scss */
  .page-beginner .voice-container .voice-item {
    padding: 4vw;
  }
  /* line 464, sass/beginner.scss */
  .page-beginner .voice-container .voice-item:not(:last-of-type) {
    margin-bottom: 3vw;
  }
  /* line 467, sass/beginner.scss */
  .page-beginner .voice-container .voice-item p.link {
    font-size: 1.2rem;
  }
  /* line 474, sass/beginner.scss */
  .page-beginner .store-container .store-info {
    display: block;
  }
  /* line 476, sass/beginner.scss */
  .page-beginner .store-container .store-info .logo {
    width: 60%;
    margin: 0 auto 6vw;
  }
  /* line 480, sass/beginner.scss */
  .page-beginner .store-container .store-info .address {
    width: 100%;
  }
  /* line 484, sass/beginner.scss */
  .page-beginner .store-container .store-info .page-btn a {
    padding: 3.4vw;
  }
  /* line 493, sass/beginner.scss */
  .page-beginner .faq-container .acWrap .acMenu {
    font-size: 1.4rem;
    padding: 3vw 5vw 3vw 2vw;
  }
  /* line 496, sass/beginner.scss */
  .page-beginner .faq-container .acWrap .acMenu:not(:last-of-type) {
    margin-bottom: 4vw;
  }
  /* line 499, sass/beginner.scss */
  .page-beginner .faq-container .acWrap .acMenu::after {
    border-top-width: .8rem;
    border-right-width: .6rem;
    border-left-width: .6rem;
    right: 2vw;
  }
}
