@charset "UTF-8";
/* 
 * base
 * -------------------------------------------------------------
 */
html {
  font-size: 10px;
}
@media screen and (min-width: 1500px) {
  html {
    font-size: 11.5px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 1.0248vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.73vw;
  }
}

body.noscroll {
  overflow: hidden;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  display: block;
  transition: 0.2s;
}

/* tel PC処理
------------------------------------------*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a:hover {
  opacity: 0.9;
  transition: 0.2s;
}

p {
  text-align: justify;
}

dt {
  font-weight: 400;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.wrap {
  overflow: hidden;
}

/* 
 * l-section
 * -------------------------------------------------------------
 */
.l-section {
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 21.33vw;
  }
}

/* 
 * inner
 * -------------------------------------------------------------
 */
.inner {
  max-width: 95rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 5.33vw;
  }
}

/* 
 * section-header
 * -------------------------------------------------------------
 */
.section-header__ttl {
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .section-header__ttl {
    font-size: 5.33vw;
  }
}

.section-header__ttl span {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section-header__ttl span {
    display: block;
    margin-bottom: 2.133vw;
  }
}

/* 
 * section-lead
 * -------------------------------------------------------------
 */
.section-lead {
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-lead {
    padding-top: 5.33vw;
  }
}

.section-lead__txt {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .section-lead__txt {
    font-size: 4.26vw;
    margin-bottom: 8vw;
  }
}

/* 
 * content
 * -------------------------------------------------------------
 */
.content {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .content {
    padding: 6vw 5.33vw 8vw;
  }
}

.content--yellow {
  background: #FFCC00;
}

.content__ttl {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .content__ttl {
    font-size: 4.53vw;
    margin-bottom: 4vw;
    text-align: center;
  }
}

.content__ttl--border {
  border-bottom: 1px solid #FFCC00;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .content__ttl--border {
    padding-bottom: 2.66vw;
    margin-bottom: 5.33vw;
  }
}

.content__txt {
  line-height: 1.6;
}

/* 
 * box-item
 * -------------------------------------------------------------
 */
.box-item {
  display: flex;
  gap: 0 1rem;
  width: 54rem;
  height: 13.3rem;
}
@media screen and (max-width: 767px) {
  .box-item {
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 5.33vw 0;
  }
}

.box-item__ttl {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  border: 1px solid #FFCC00;
  width: 11.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .box-item__ttl {
    font-size: 4.53vw;
    width: 100%;
    padding: 3.2vw 0;
  }
}

.box-item__ttl--yellow {
  background: #FFCC00;
}

.box-item__ttl span {
  display: block;
}

.box-item__content {
  background: #FFFAE5;
  padding: 1rem;
  width: calc(100% - 12.2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .box-item__content {
    width: 100%;
    padding: 6vw 5.33vw 6vw 2vw;
  }
}

.box-item__txt {
  line-height: 1.6;
  width: calc(100% - 1.7rem);
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .box-item__txt {
    width: calc(100% - (1rem + 1.6vw));
    padding-left: 5.33vw;
  }
}

.box-item__txt::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background: #FFCC00;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .box-item__txt::before {
    width: 1.6vw;
    height: 1.6vw;
    top: 2.133vw;
  }
}

/* 
 * arrow
 * -------------------------------------------------------------
 */
.arrow {
  display: block;
  width: 10.5rem;
  height: 4.2rem;
  background: url(./../img/arrow.png) no-repeat center;
  background-size: 100%;
  margin: 0 auto;
  padding: 3.5rem 0;
}
@media screen and (max-width: 767px) {
  .arrow {
    padding: 10.66vw 0;
  }
}

/* 
 * features-items
 * -------------------------------------------------------------
 */
.features-items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.features__item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .features__item {
    flex-direction: column;
  }
}

.features__img {
  width: 23rem;
  margin-right: 9rem;
}
@media screen and (max-width: 767px) {
  .features__img {
    width: 80%;
    margin: 0 auto 8vw;
  }
}

.features__contents {
  width: calc(100% - 32rem);
}
@media screen and (max-width: 767px) {
  .features__contents {
    width: 100%;
  }
}

/* 
 * br
 * -------------------------------------------------------------
 */
.br-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

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

/* 
 * footer
 * -------------------------------------------------------------
 */
.footer {
  padding: 1.5rem 0 2rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.66vw 0 4vw;
  }
}

.footer__contents {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    flex-direction: column;
    align-items: center;
    gap: 3.2vw 0;
  }
}

.footer__logo {
  width: 10.7rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 32vw;
  }
}

.footer__copy {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2.933vw;
  }
}

/* 
 * mv
 * -------------------------------------------------------------
 */
.mv {
  height: min(55rem, 45vw);
  position: relative;
  background: url(./../img/top_bg.png) no-repeat bottom;
  background-size: 101% min(30rem, 25vw);
}
@media screen and (max-width: 767px) {
  .mv {
    height: 100%;
    background-size: 101% 65%;
    padding: 16vw 0 10.66vw;
  }
}

.mv__container {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .mv__container {
    flex-direction: column;
    align-items: center;
    position: static;
    transform: inherit;
  }
}

.mv__ttl {
  width: 40%;
  padding: 2rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .mv__ttl {
    width: 100%;
    padding: 0 0 6.66vw 0;
  }
}

.mv__logo {
  width: min(35rem, 100%);
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .mv__logo {
    width: 85%;
    margin: 0 auto 5.33vw;
  }
}

.mv-header__ttl {
  font-size: clamp(2.4rem, 2.33vw, 2.8rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .mv-header__ttl {
    font-size: 5.33vw;
    text-align: center;
  }
}

.mv__img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: 100%;
  }
}

/* 
 * about-nav
 * -------------------------------------------------------------
 */
.about-nav__inner {
  position: relative;
}

.about-nav__inner::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 15rem;
  height: 100%;
  background: #FFCC00;
  position: absolute;
  top: 0;
  left: -1.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-nav__inner::before {
    display: none;
  }
}

.about-nav__content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about-nav__content {
    flex-direction: column;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.about-nav__item {
  width: 50%;
  padding: 3rem 3rem 6rem;
}
@media screen and (max-width: 767px) {
  .about-nav__item {
    width: 100%;
    padding: 8vw 5.33vw 10.66vw;
  }
}

.about-nav__item--yellow {
  background: #FFCC00;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .about-nav__item--yellow {
    padding-left: 5.33vw;
  }
}

.about-nav__item--white {
  background: #fff;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .about-nav__item--white {
    padding-right: 5.33vw;
    padding-bottom: 0;
  }
}

.about-nav__img {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .about-nav__img {
    padding-top: 2.66vw;
  }
}

.about-nav__list-item {
  background: #FFFAE5;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .about-nav__list-item {
    padding: 4vw 5.33vw;
  }
}

.about-nav__list-item:nth-child(1) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .about-nav__list-item:nth-child(1) {
    margin-bottom: 5.33vw;
  }
}

.about-nav__list-item:nth-child(1)::before {
  content: "";
  display: block;
  background: url(./../img/about-nav_2.png) no-repeat center;
  background-size: 100%;
  width: 6.5rem;
  height: 6.5rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .about-nav__list-item:nth-child(1)::before {
    width: 14.66vw;
    height: 14.66vw;
    margin-right: 5.33vw;
  }
}

.about-nav__list-item:nth-child(1) .about-nav__list-content {
  width: calc(100% - 9.5rem);
}
@media screen and (max-width: 767px) {
  .about-nav__list-item:nth-child(1) .about-nav__list-content {
    width: calc(100% - 19.99vw);
  }
}

.about-nav__list-item:nth-child(2)::before {
  content: "";
  display: block;
  background: url(./../img/about-nav_3.png) no-repeat center;
  background-size: 100%;
  width: 7.7rem;
  height: 7.7rem;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .about-nav__list-item:nth-child(2)::before {
    width: 14.66vw;
    height: 14.66vw;
    margin-right: 5.33vw;
  }
}

.about-nav__list-item:nth-child(2) .about-nav__list-content {
  width: calc(100% - 9.7rem);
}
@media screen and (max-width: 767px) {
  .about-nav__list-item:nth-child(2) .about-nav__list-content {
    width: calc(100% - 19.99vw);
  }
}

/* 
 * shift
 * -------------------------------------------------------------
 */
.shift__item {
  display: flex;
  gap: 0 2rem;
}
@media screen and (max-width: 767px) {
  .shift__item {
    flex-direction: column;
  }
}

.shift__ttl {
  font-size: 1.8rem;
  font-weight: 600;
  border: 1px solid #FFCC00;
  display: grid;
  place-items: center;
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .shift__ttl {
    font-size: 4.53vw;
    width: 100%;
    padding: 3.2vw 0;
    margin-bottom: 5.33vw;
  }
}

.shift__ttl--yellow {
  background: #FFCC00;
}

.shift__ttl--yellow {
  background: #FFCC00;
}

.shift__content {
  background: #FFFAE5;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  gap: 0 4rem;
  width: calc(100% - 10rem);
}
@media screen and (max-width: 767px) {
  .shift__content {
    padding: 6vw 5.33vw;
    flex-direction: column;
    width: 100%;
  }
}

.shift__content-txt {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .shift__content-txt {
    width: 100%;
    margin-bottom: 8vw;
  }
}

.shift__img {
  width: 75%;
}

@media screen and (max-width: 767px) {
  .shift__img-1 {
    width: 40%;
  }
}
/* 
 * service
 * -------------------------------------------------------------
 */
.service__img {
  width: 55rem;
  margin-right: auto;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .service__img {
    width: 66%;
    margin: 0 auto 5.33vw;
  }
}

.service__content {
  width: 75.2rem;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__content {
    width: 100%;
  }
}

.service__content::before {
  content: "";
  display: inline-block;
  width: 5.5rem;
  height: 6.5rem;
  background: url(./../img/service_arrow.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: -5.3rem;
  left: 2.7rem;
}
@media screen and (max-width: 767px) {
  .service__content::before {
    background: url(./../img/service_arrow_sp.png) no-repeat center;
    background-size: 100%;
    width: 29.866vw;
    height: 80vw;
    top: -68.5vw;
    left: inherit;
    right: -1px;
    z-index: -1;
  }
}

.service__lists {
  display: flex;
  gap: 0 1rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .service__lists {
    flex-direction: column;
    gap: 4vw 0;
    padding-top: 8vw;
  }
}

.service__list {
  font-weight: 600;
  line-height: 1.6;
  background: #fff;
  width: 25%;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .service__list {
    font-size: 4.26vw;
    width: 80%;
    height: 16vw;
    margin: 0 auto;
  }
}

.service__list span {
  display: block;
}

/* 
 * price
 * -------------------------------------------------------------
 */
.price__inner {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__inner {
    flex-direction: column;
  }
}

.price__inner::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 15rem;
  height: 100%;
  background: #FFCC00;
  position: absolute;
  top: 0;
  right: -1.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .price__inner::before {
    display: none;
  }
}

.price__content {
  width: 50%;
  padding: 3rem 3rem 9rem 0;
}
@media screen and (max-width: 767px) {
  .price__content {
    width: 100%;
    padding: 0 0 20vw;
  }
}

.price__table {
  width: 100%;
  line-height: 1.5;
}

.price__table tr {
  height: 7.5rem;
  border-bottom: 1px solid #FFCC00;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .price__table tr {
    height: 20vw;
    padding-bottom: 1.866vw;
  }
}

.price__table th {
  display: block;
}

.price__table td {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .price__table td {
    font-size: 3.2vw;
  }
}

.price__table td span {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .price__table td span {
    font-size: 6.66vw;
  }
}

.price__table td span::after {
  content: "円";
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .price__table td span::after {
    font-size: 3.2vw;
  }
}

.price__img {
  width: 50%;
  background: #FFCC00;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__img {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.price__img img {
  width: 33.6rem;
  position: absolute;
  right: 0;
  bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .price__img img {
    width: 100%;
    position: static;
  }
}

/* 
 * apply
 * -------------------------------------------------------------
 */
.apply__inner {
  max-width: 95.5rem;
}

.apply__contents {
  display: flex;
  gap: 0 1.8rem;
}
@media screen and (max-width: 767px) {
  .apply__contents {
    flex-direction: column;
    gap: 12vw 0;
    padding-top: 3vw;
  }
}

.apply-item {
  display: flex;
  flex-direction: column;
}

.apply-item--web {
  width: 50.7rem;
}
@media screen and (max-width: 767px) {
  .apply-item--web {
    width: 100%;
  }
}

.apply-item--and {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .apply-item--and {
    width: 100%;
  }
}

.apply__item-header {
  width: 38rem;
  flex: 1;
  margin-left: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .apply__item-header {
    width: 100%;
    margin-bottom: 8vw;
  }
}

.apply-item__box-item {
  gap: 0 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .apply-item__box-item {
    gap: 0;
    margin-bottom: 5.33vw;
  }
}

.apply-item__box-item:last-child {
  margin-bottom: 0;
}

.apply-item__box-ttl {
  width: 10.7rem;
}
@media screen and (max-width: 767px) {
  .apply-item__box-ttl {
    width: 100%;
    padding: 2vw 0;
  }
}

.apply-item__box-content {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .apply-item__box-content {
    width: 100%;
  }
}

.apply__link {
  font-size: 1.2rem;
  text-decoration: underline;
  color: #0000EE;
  padding-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .apply__link {
    font-size: 3.2vw;
    padding-top: 4vw;
  }
}

.apply__link--web {
  white-space: nowrap;
}

.apply-item__box-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .apply-item__box-list {
    padding-left: 1vw;
  }
}

.apply-item__box-txt {
  width: 50%;
}

.apply-item__box-ttl--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .apply-item__box-ttl--sp {
    display: block;
    padding: 2vw 0;
  }
}