@charset "UTF-8";
/* -------------------------------------------------
	メディアクエリ
-------------------------------------------------- */
/* -------------------------------------------------
	変数
-------------------------------------------------- */
/* -------------------------------------------------
	page-mv
-------------------------------------------------- */
.page-mv {
  margin-top: 19rem;
  margin-bottom: 73px;
}
@media screen and (max-width: 780px) {
  .page-mv {
    margin-top: 5rem;
  }
}
.page-mv-tit {
  padding: 100px 0 21.3rem;
  background: #fff;
  position: relative;
}
.page-mv-tit::before {
  content: "";
  width: 100%;
  height: 18.4rem;
  background: url(../img/deco-wave.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 780px) {
  .page-mv-tit::before {
    height: 5.4rem;
    background: url(../img/deco-wave-sp.svg) no-repeat;
    background-size: 101%;
    background-position: bottom;
  }
}
@media screen and (max-width: 780px) {
  .page-mv-tit {
    padding: 55px 0 11.3rem;
  }
}
.page-mv-tit__text {
  margin-bottom: 0;
  color: #4F473C;
  font-size: 4.8rem;
}
@media screen and (max-width: 780px) {
  .page-mv-tit__text {
    font-size: 2.6rem;
  }
}
.page-mv-tit__text-en {
  font-size: 2.4rem;
}
@media screen and (max-width: 780px) {
  .page-mv-tit__text-en {
    font-size: 2.6rem;
  }
}
.page-mv-tit__text-sm {
  margin-left: 2rem;
}
.page-mv-tit__text--s {
  font-size: 4rem;
}
@media screen and (max-width: 780px) {
  .page-mv-tit__text--s {
    font-size: 2rem;
  }
}
.page-mv-pan {
  margin-top: -2rem;
  text-align: right;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 781px) {
  .page-mv-pan {
    margin-top: -4rem;
    font-size: 1.6rem;
  }
}
.page-mv-pan span:not(:last-of-type) {
  color: #FBB015;
  text-decoration: underline;
}

/* -------------------------------------------------
	page-flex
-------------------------------------------------- */
.page-flex {
  max-width: 1680px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}
@media screen and (max-width: 780px) {
  .page-flex {
    flex-direction: column;
  }
}

.page-flex-content {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .page-flex-content {
    width: 69%;
    max-width: 1160px;
  }
}
@media screen and (min-width: 1700px) {
  .page-flex-content {
    width: 81%;
  }
}
@media screen and (max-width: 780px) {
  .page-flex-content {
    order: 2;
  }
}

@media screen and (min-width: 781px) {
  .page-flex-sidebar {
    max-width: 480px;
    width: 32%;
  }
}
@media screen and (max-width: 780px) {
  .page-flex-sidebar {
    order: 1;
  }
}
.page-flex-sidebar__tit {
  padding: 15px 4rem;
  border-radius: 10px 10px 0 0;
  background: #4F473C;
  color: #fff;
}

/* -------------------------------------------------
	blog
-------------------------------------------------- */
.blog,
.page-blog {
  margin-bottom: 160px;
}
@media screen and (max-width: 780px) {
  .blog,
.page-blog {
    margin-bottom: 80px;
  }
}

.blog-list {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (min-width: 781px) {
  .blog-list::after {
    content: "";
    width: 30%;
    display: block;
  }
}
@media screen and (max-width: 780px) {
  .blog-list {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 781px) {
  .blog-list .blog-item {
    width: 30%;
  }
}

/* -------------------------------------------------
	post
-------------------------------------------------- */
.post {
  max-width: 1440px;
  margin-bottom: 160px;
}
@media screen and (max-width: 780px) {
  .post {
    margin-bottom: 80px;
  }
}
.post__tit {
  margin-bottom: 35px;
}

.post-info {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
  gap: 3rem;
}
.post-info__cat {
  padding: 5px 1rem;
  border-radius: 5px;
  border: 1px solid #FBB015;
  color: #FBB015;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (max-width: 780px) {
  .post-info__cat {
    font-size: 1.4rem;
  }
}
.post-info__cat--blog {
  background: #FBB015;
  color: #fff;
}
.post-info__date {
  color: #707070;
}
@media screen and (min-width: 781px) {
  .post-info__date {
    font-size: 1.6rem;
  }
}

.post-content {
  margin-bottom: 100px;
  line-height: 2;
}
.post-content img {
  max-width: 100%;
  margin-bottom: 40px;
}
.post-content p {
  margin-bottom: 30px;
}

.post-btn {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .post-btn {
    flex-direction: column;
    gap: 20px;
  }
}
.post-btn__all {
  width: auto;
  padding: 20px 4rem;
  border-radius: 3px;
  display: inline-block;
  font-size: 1.8rem;
}
@media screen and (max-width: 780px) {
  .post-btn__all {
    font-size: 1.6rem;
  }
}
.post-btn__item {
  padding: 20px 2.5rem;
  border-radius: 3px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.post-btn__item--prev {
  background: #EFEFEF;
}
.post-btn__item--prev-icon {
  transform: rotate(180deg);
}
.post-btn__item--next {
  background: #FCFCFC;
}

/* -------------------------------------------------
	about
-------------------------------------------------- */
@media screen and (max-width: 780px) {
  .about-copy {
    margin-bottom: 30px;
  }
}
.about-copy__text {
  margin-bottom: 155px;
}
@media screen and (max-width: 780px) {
  .about-copy__text {
    margin-bottom: 50px;
  }
}

.about-copy-wrap {
  display: flex;
  justify-content: space-between;
  gap: 3.7rem;
}
@media screen and (max-width: 780px) {
  .about-copy-wrap {
    flex-direction: column;
  }
}
.about-copy-wrap__img {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .about-copy-wrap__img {
    width: 50%;
  }
}

@media screen and (min-width: 781px) {
  .about-copy-inner {
    width: 50%;
  }
}
.about-copy-inner__tit {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .about-copy-inner__tit {
    font-size: 2.8rem;
  }
}
.about-copy-inner__text {
  line-height: 2;
}

.about-role {
  padding: 255px 0 155px;
  background: url(../img/page/role-bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 780px) {
  .about-role {
    padding: 150px 0 155px;
    background: url(../img/page/role-bg-sp.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
}
.about-role-wrap {
  margin-bottom: 40px;
  border: 1px solid #ccc;
  padding: 50px 8rem 30px;
  background: #FCFCFC;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 780px) {
  .about-role-wrap {
    padding: 50px 1.5rem 30px;
  }
}
.about-role-wrap::before {
  content: "";
  height: 1px;
  background: #fff;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 781px) {
  .about-role-wrap::before {
    width: 25rem;
  }
}
@media screen and (max-width: 780px) {
  .about-role-wrap::before {
    width: 60%;
  }
}
.about-role__arrow {
  width: 8rem;
  margin: 0 auto 40px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 780px) {
  .about-role__arrow {
    width: 5rem;
  }
}

.about-role-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10rem;
}
@media screen and (max-width: 780px) {
  .about-role-list {
    flex-direction: column;
    gap: 100px;
  }
}

@media screen and (min-width: 781px) {
  .about-role-list-item {
    width: 41.5rem;
  }
}
.about-role-list-item__img {
  width: 20.5rem;
  margin: 0 0 45px 4rem;
  display: block;
}
@media screen and (min-width: 1600px) {
  .about-role-list-item__img {
    margin: 0 0 45px 6rem;
  }
}
@media screen and (max-width: 780px) {
  .about-role-list-item__img {
    width: 16.5rem;
    margin: 0 0 20px 5rem;
  }
}
.about-role-list-item__tit {
  margin-bottom: 15px;
  text-align: center;
}
.about-role-list-item__text {
  line-height: 2;
}

.about-role-list-item-red__tit {
  color: #E33943;
}

.about-role-list-item-green {
  position: relative;
}
.about-role-list-item-green__tit {
  color: #388D44;
}
.about-role-list-item-green::before, .about-role-list-item-green::after {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(../img/page/icon-cross.svg) no-repeat;
  background-size: contain;
  position: absolute;
}
@media screen and (min-width: 781px) {
  .about-role-list-item-green::before, .about-role-list-item-green::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 780px) {
  .about-role-list-item-green::before, .about-role-list-item-green::after {
    width: 3.5rem;
    height: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 781px) {
  .about-role-list-item-green::before {
    right: -7rem;
  }
}
@media screen and (max-width: 780px) {
  .about-role-list-item-green::before {
    top: -5rem;
  }
}
@media screen and (min-width: 781px) {
  .about-role-list-item-green::after {
    left: -7rem;
  }
}
@media screen and (max-width: 780px) {
  .about-role-list-item-green::after {
    bottom: -5rem;
  }
}

.about-role-list-item-blue__tit {
  color: #1E71C3;
}

.about-role-list-cross__img {
  width: 5rem;
}

.about-role-good {
  max-width: 1005px;
  padding: 40px 8rem;
  border: 2px solid #FBB015;
  border-radius: 20px;
  background: #FEFAF2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .about-role-good {
    padding: 40px 1.5rem;
    flex-direction: column;
  }
}
.about-role-good__img {
  width: 17rem;
}
@media screen and (max-width: 780px) {
  .about-role-good__img {
    width: 13rem;
  }
}

.about-role-good-content__tit {
  margin-bottom: 15px;
  color: #FBB015;
}
.about-role-good-content__text {
  line-height: 2;
}

.about-point {
  margin-top: -9rem;
  padding-top: calc(115px + 9rem);
  padding-bottom: 220px;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .about-point {
    padding: 150px 0;
  }
}
.about-point-list {
  margin: 60px 0;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 780px) {
  .about-point-list {
    margin-top: 40px;
    flex-direction: column;
  }
}

.about-point-list-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-point-list-item__img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.about-point-list-item-content {
  padding: 40px 4rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
  flex-grow: 1;
}
@media screen and (max-width: 780px) {
  .about-point-list-item-content {
    padding: 40px 1.5rem;
  }
}
.about-point-list-item-content__tit {
  margin-bottom: 20px;
  text-align: center;
}
.about-point-list-item-content__text {
  line-height: 2;
}

.about-point-info {
  max-width: 1440px;
  padding: 60px 6rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .about-point-info {
    padding: 60px 1.5rem;
    flex-direction: column;
  }
}

@media screen and (min-width: 781px) {
  .about-point-info-content {
    width: calc(100% - 68rem);
  }
}
.about-point-info-content__tit {
  margin-bottom: 20px;
}
.about-point-info-content__text {
  margin-bottom: 40px;
}
.about-point-info-content .btn01 {
  margin: 0;
}

.about-point-info-q {
  padding: 40px 1.5rem;
  border: 2px dashed #FBB015;
}
@media screen and (min-width: 781px) {
  .about-point-info-q {
    width: 64rem;
    padding: 40px 2rem;
  }
}
.about-point-info-q__tit {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .about-point-info-q__tit {
    font-size: 2.6rem;
  }
}

.about-menu {
  padding: 0 1.3rem;
  overflow-x: clip;
  position: relative;
}
.about-menu::before {
  content: "";
  width: 100%;
  height: 10.6rem;
  background: url(../img/deco-triangle.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10.4rem;
}
@media screen and (max-width: 780px) {
  .about-menu::before {
    height: 5.8rem;
    background: url(../img/deco-triangle-sp.svg) no-repeat;
    background-size: 100%;
    background-position: bottom;
    top: -5.6rem;
  }
}
.about-menu::after {
  content: "";
  width: 100%;
  height: 10.6rem;
  background: url(../img/deco-triangle.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  position: absolute;
  left: 50%;
  bottom: -10.4rem;
  transform: translateX(-50%) rotate(180deg);
}
@media screen and (max-width: 780px) {
  .about-menu::after {
    height: 5.8rem;
    background: url(../img/deco-triangle-sp.svg) no-repeat;
    background-size: 100%;
    background-position: bottom;
    bottom: -5.6rem;
  }
}
@media screen and (max-width: 780px) {
  .about-menu {
    padding: 0 1rem;
  }
}
.about-menu-inner {
  height: 100%;
  padding: 28px 6.7rem;
  position: relative;
}
.about-menu-inner::before {
  content: "";
  width: 2px;
  height: 100%;
  background: url(../img/deco-sideline.svg) repeat-y;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 780px) {
  .about-menu-inner::before {
    width: 1px;
    background: url(../img/deco-sideline-sp.svg) repeat-y;
    background-position: center;
  }
}
.about-menu-inner::after {
  content: "";
  width: 2px;
  height: 100%;
  background: url(../img/deco-sideline.svg) repeat-y;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 780px) {
  .about-menu-inner::after {
    width: 1px;
    background: url(../img/deco-sideline-sp.svg) repeat-y;
    background-position: center;
  }
}
@media screen and (max-width: 780px) {
  .about-menu-inner {
    padding: 28px 1.5rem;
  }
}
.about-menu-box {
  margin-bottom: 140px;
}
.about-menu-box__tit {
  margin-bottom: 100px;
}
@media screen and (max-width: 780px) {
  .about-menu-box__tit {
    margin-bottom: 50px;
  }
}
.about-menu__deco02 {
  width: 40rem;
  right: -10rem;
  bottom: -7rem;
}
@media screen and (max-width: 780px) {
  .about-menu__deco02 {
    width: 20rem;
    right: -5rem;
  }
}

.about-paint {
  margin-bottom: 32px;
  padding: 100px 8rem 55px;
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
  border-radius: 10px;
}
@media screen and (max-width: 780px) {
  .about-paint {
    padding: 100px 1.5rem 55px;
  }
}
.about-paint::before {
  content: "";
  height: 1px;
  background: #fff;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 781px) {
  .about-paint::before {
    width: 36rem;
  }
}
@media screen and (max-width: 780px) {
  .about-paint::before {
    width: 80%;
  }
}
.about-paint__tit {
  margin-top: -115px;
}
@media screen and (max-width: 780px) {
  .about-paint__tit {
    margin-top: -130px;
  }
}
.about-paint-list {
  margin-bottom: 55px;
  display: flex;
  justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 780px) {
  .about-paint-list {
    flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 781px) {
  .about-paint-list-item {
    flex: 1;
  }
}
.about-paint-list-item__img {
  width: 100%;
  margin-bottom: 25px;
}
.about-paint-list-item__tit {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .about-paint-list-item__tit {
    margin-bottom: 10px;
    font-size: 2.6rem;
  }
}

.about-paint-other {
  max-width: 1095px;
  padding: 30px 3rem;
  border: 2px dashed #FBB015;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}
@media screen and (max-width: 780px) {
  .about-paint-other {
    padding: 30px 1.5rem;
    flex-direction: column;
    gap: 20px;
  }
}
.about-paint-other__tit {
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (min-width: 781px) {
  .about-paint-other__tit {
    width: 100px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 781px) {
  .about-paint-other__text {
    max-width: 900px;
    width: calc(100% - (100px + 3.5rem));
  }
}

.about-area {
  margin-bottom: 75px;
  padding: 63px 8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5.8rem;
}
@media screen and (max-width: 780px) {
  .about-area {
    margin-bottom: 30px;
    padding: 63px 1.5rem;
    flex-direction: column;
    gap: 40px;
  }
}
.about-area__img {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .about-area__img {
    width: 50rem;
  }
}

@media screen and (min-width: 781px) {
  .about-area-content {
    width: calc(100% - 55.8rem);
  }
}
.about-area-content__tit {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 780px) {
  .about-area-content__tit {
    margin-bottom: 20px;
  }
}

.about-follow {
  padding: 235px 0 160px;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .about-follow {
    padding: 125px 0 60px;
  }
}
.about-follow-inner {
  padding: 80px 6rem;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 780px) {
  .about-follow-inner {
    padding: 60px 1.5rem;
  }
}
.about-follow__tit-part6 {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .about-follow__tit-part6 {
    margin-bottom: 40px;
  }
}
.about-follow-list {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px 4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 780px) {
  .about-follow-list {
    flex-direction: column;
  }
}

.about-follow-list-item {
  border: 1px solid #ccc;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 781px) {
  .about-follow-list-item {
    width: calc((100% - 4rem) / 2);
    display: flex;
    align-items: center;
  }
}
.about-follow-list-item__img {
  width: 26rem;
  height: 100%;
  border-radius: 10px 0 0 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 780px) {
  .about-follow-list-item__img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
.about-follow-list-item__op {
  padding: 15px 2rem;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #2B60AB;
  border-radius: 10px 0 10px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .about-follow-list-item__op {
    padding: 5px 1rem;
    font-size: 1.2rem;
  }
}

.about-follow-list-item-content {
  padding: 20px 2rem;
  background: #fff;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 780px) {
  .about-follow-list-item-content {
    padding: 30px 1.5rem 60px;
    border-radius: 0 0 10px 10px;
  }
}
.about-follow-list-item-content__tit {
  margin-bottom: 15px;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (min-width: 781px) {
  .about-follow-list-item-content__tit {
    letter-spacing: -0.9px;
    font-size: 1.8rem;
  }
}
.about-follow-list-item-content__tit .text-yellow {
  font-size: 2.7rem;
}
@media screen and (min-width: 781px) {
  .about-follow-list-item-content__tit .text-yellow {
    font-size: 2rem;
  }
}

.about-follow-info {
  padding: 30px 3rem;
  border: 2px dashed #FBB015;
}

/* -------------------------------------------------
	service
-------------------------------------------------- */
.service-intro {
  max-width: 1520px;
  margin-bottom: 80px;
}
.service-intro-btn {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media screen and (max-width: 780px) {
  .service-intro-btn {
    flex-direction: column;
    gap: 20px;
  }
}

.service-intro-btn-item {
  padding: 15px 0;
  border: 1px solid;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-radius: 5px;
  transition: 0.3s;
}
@media screen and (min-width: 781px) {
  .service-intro-btn-item {
    padding: 35px 0;
    flex: 1;
    font-size: 3.2rem;
  }
}
.service-intro-btn-item:hover, .service-intro-btn-item:active {
  background: #fff;
}
.service-intro-btn-item__icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-intro-btn-item__icon-arrow {
  transform: rotate(90deg);
}
@media screen and (max-width: 780px) {
  .service-intro-btn-item__icon-arrow {
    width: 15px;
    height: 15px;
  }
}
.service-intro-btn-item:hover .service-intro-btn-item__icon path, .service-intro-btn-item:active .service-intro-btn-item__icon path {
  stroke: #fff;
}

.service-intro-btn-item-blue {
  background: #2B60AB;
}
.service-intro-btn-item-blue:hover, .service-intro-btn-item-blue:active {
  border-color: #2B60AB;
  color: #2B60AB;
}
.service-intro-btn-item-blue__icon-arrow path {
  stroke: #2B60AB;
}
.service-intro-btn-item-blue:hover .service-intro-btn-item-blue__icon, .service-intro-btn-item-blue:active .service-intro-btn-item-blue__icon {
  background: #2B60AB;
}

.service-intro-btn-item-red {
  background: #E33943;
}
.service-intro-btn-item-red:hover, .service-intro-btn-item-red:active {
  border-color: #E33943;
  color: #E33943;
}
.service-intro-btn-item-red__icon-arrow path {
  stroke: #E33943;
}
.service-intro-btn-item-red:hover .service-intro-btn-item-red__icon, .service-intro-btn-item-red:active .service-intro-btn-item-red__icon {
  background: #E33943;
}

.service-intro-btn-item-green {
  background: #388D44;
}
.service-intro-btn-item-green:hover, .service-intro-btn-item-green:active {
  border-color: #388D44;
  color: #388D44;
}
.service-intro-btn-item-green__icon-arrow path {
  stroke: #388D44;
}
.service-intro-btn-item-green:hover .service-intro-btn-item-green__icon, .service-intro-btn-item-green:active .service-intro-btn-item-green__icon {
  background: #388D44;
}

.service-group {
  padding: 160px 0;
  border-top: 2px solid #2B60AB;
  border-radius: 40px 40px 0 0;
  background: #F3F8FC;
}
@media screen and (max-width: 780px) {
  .service-group {
    padding: 80px 0;
  }
}
.service-group__tit {
  margin-bottom: 120px;
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  color: #2B60AB;
}
@media screen and (max-width: 780px) {
  .service-group__tit {
    margin-bottom: 40px;
    font-size: 3rem;
  }
}

.service-catch {
  max-width: 1760px;
  display: flex;
}
@media screen and (min-width: 781px) {
  .service-catch {
    margin: 0 0 160px 0;
    align-items: center;
    gap: 8rem;
  }
}
@media screen and (max-width: 780px) {
  .service-catch {
    margin-bottom: 80px;
    flex-direction: column;
    gap: 40px;
  }
}
.service-catch__img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (min-width: 781px) {
  .service-catch__img {
    width: 96rem;
    border-radius: 0 20px 20px 0;
  }
}
@media screen and (min-width: 781px) {
  .service-catch__text {
    width: calc(100% - 104rem);
  }
}

.service-point {
  margin-bottom: 150px;
  padding: 80px 8rem;
  border: 2px dashed #2B60AB;
  border-radius: 20px;
  background: #FCFCFC;
}
@media screen and (max-width: 780px) {
  .service-point {
    padding: 80px 1.5rem;
  }
}
.service-point__tit-part2 {
  margin-bottom: 40px;
}
.service-point__note {
  width: auto;
  margin-bottom: 70px;
  padding: 30px 8rem;
  border: 3px solid #FBB015;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .service-point__note {
    width: 100%;
    margin-bottom: 40px;
    padding: 10px 2rem;
  }
}
.service-point__tit-part6 {
  margin-bottom: 50px;
}
@media screen and (max-width: 780px) {
  .service-point__tit-part6 {
    margin-bottom: 20px;
  }
}
.service-point-list {
  margin-bottom: 0;
}
.service-point__text {
  margin-bottom: 80px;
  text-align: center;
}
.service-point__highlight {
  max-width: 70rem;
  margin-bottom: 40px;
  padding: 13px 1rem;
  border-radius: 10px;
  background: #2B60AB;
  color: #fff;
  text-align: center;
}
.service-point__ps {
  max-width: 1200px;
  padding: 20px 6rem;
  margin-bottom: 40px;
  border: 2px solid #2B60AB;
  border-radius: 50px;
  background: #F3F8FC;
  color: #2B60AB;
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: -0.9px;
}
@media screen and (max-width: 780px) {
  .service-point__ps {
    width: 100%;
    padding: 20px 2rem;
    font-size: 2.6rem;
  }
}

.service-point02 {
  margin-bottom: 0;
}

.service-point-ex {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 780px) {
  .service-point-ex {
    flex-direction: column;
  }
}

@media screen and (min-width: 781px) {
  .service-point-ex-item {
    flex: 1;
  }
}
.service-point-ex-item-img {
  position: relative;
}
.service-point-ex-item-img__item {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  aspect-ratio: 1/1;
}
.service-point-ex-item-img__num {
  width: 6rem;
  height: 6rem;
  border-radius: 10px 0 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  background: #2B60AB;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-point-bf {
  padding-top: 80px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 780px) {
  .service-point-bf {
    flex-direction: column;
  }
}
.service-point-bf-list {
  display: flex;
  gap: 4rem;
  position: relative;
}
@media screen and (min-width: 781px) {
  .service-point-bf-list {
    width: 94rem;
  }
}
@media screen and (max-width: 780px) {
  .service-point-bf-list {
    flex-direction: column;
  }
}

.service-point-bf-item {
  border-radius: 10px;
}
@media screen and (min-width: 781px) {
  .service-point-bf-item {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
}
.service-point-bf-item-img {
  height: 26.5rem;
  position: relative;
}
@media screen and (max-width: 780px) {
  .service-point-bf-item-img {
    height: 20rem;
  }
}
.service-point-bf-item-img__item {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-point-bf-item-img__label {
  padding: 13px 3.6rem;
  border-radius: 10px 0 10px 0;
  background: #FBB015;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .service-point-bf-item-img__label {
    padding: 10px 1rem;
  }
}
@media screen and (min-width: 781px) {
  .service-point-bf-item-img__label--after {
    right: 0;
    left: auto;
    border-radius: 0 10px 0 10px;
  }
}
.service-point-bf-item-content {
  padding: 40px 4rem;
  border: 1px solid #ccc;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 781px) {
  .service-point-bf-item-content {
    flex-grow: 1;
  }
}
@media screen and (max-width: 780px) {
  .service-point-bf-item-content {
    padding: 20px 1.5rem;
  }
}
.service-point-bf-item-content__tit {
  font-weight: bold;
}

.service-point-bf-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 781px) {
  .service-point-bf-arrow__icon {
    transform: rotate(-90deg);
  }
}
@media screen and (max-width: 780px) {
  .service-point-bf-arrow__icon {
    width: 6rem;
  }
}

.service-point-bf-box {
  padding: 40px 1.5rem;
  border-radius: 10px;
  background: #FBF8F4;
}
@media screen and (min-width: 781px) {
  .service-point-bf-box {
    width: 48rem;
    padding: 40px 4rem;
  }
}
.service-point-bf-box__tit {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .service-point-bf-box__tit {
    font-size: 2.6rem;
  }
}

.service-merit {
  margin-bottom: 160px;
}
@media screen and (max-width: 780px) {
  .service-merit {
    margin-bottom: 80px;
  }
}
.service-merit__tit-part6 {
  margin-bottom: 75px;
  text-align: center;
}
.service-merit__tit-part6-lg {
  font-size: 4rem;
}
@media screen and (max-width: 780px) {
  .service-merit__tit-part6-lg {
    font-size: 2.6rem;
  }
}

.service-merit-box {
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
}
.service-merit-box:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 780px) {
  .service-merit-box:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 781px) {
  .service-merit-box {
    min-height: 60rem;
  }
}
@media screen and (max-width: 780px) {
  .service-merit-box {
    flex-direction: column;
  }
}
.service-merit-box__img {
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 781px) {
  .service-merit-box__img {
    width: 50%;
    border-radius: 10px 0 0 10px;
  }
}
@media screen and (min-width: 781px) {
  .service-merit-box:nth-of-type(2n) .service-merit-box__img {
    order: 2;
    border-radius: 0 10px 10px 0;
  }
  .service-merit-box:nth-of-type(2n) .service-merit-box-content {
    order: 1;
    border-radius: 10px 0 0 10px;
  }
}

.service-merit-box-content {
  padding: 20px 1.5rem;
  background: #fff;
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 781px) {
  .service-merit-box-content {
    width: 50%;
    padding: 5rem 4rem 5rem 8rem;
    border-radius: 0 10px 10px 0;
  }
}
.service-merit-box-content__num {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 7.2rem;
  color: #2B60AB;
}
@media screen and (max-width: 780px) {
  .service-merit-box-content__num {
    margin-bottom: 20px;
    font-size: 5rem;
  }
}
.service-merit-box-content__tit {
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 781px) {
  .service-merit-box-content__tit {
    margin-bottom: 50px;
    letter-spacing: -0.9px;
  }
}
.service-merit-box-content__text {
  line-height: 2;
}

.service-group-roof {
  margin-top: 160px;
  background: #FEF6F4;
  border-color: #E33943;
}
.service-group-roof__tit {
  color: #E33943;
}
.service-group-roof .service-point {
  background: #fff;
  border-color: #E33943;
}
.service-group-roof .service-merit-box-content__num {
  color: #E33943;
}
.service-group-roof .service-point__highlight,
.service-group-roof .service-point-ex-item-img__num {
  background: #E33943;
}
.service-group-roof .service-point__ps {
  border-color: #E33943;
  background: #FEF6F4;
  color: #E33943;
}

.roof-service-point-bf {
  padding-top: 0;
  border-top: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.roof-service-merit {
  margin-bottom: 0;
}

.service-group-other {
  margin-top: 160px;
  border-color: #489856;
  background: #F5F9F6;
}
.service-group-other__tit {
  color: #388D44;
}
.service-group-other__tit-normal {
  color: #404040;
}

.other-service-list {
  margin-bottom: 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 780px) {
  .other-service-list {
    flex-direction: column;
  }
}

@media screen and (min-width: 781px) {
  .other-service-list-slider {
    width: 50%;
    border-radius: 10px 0 0 10px;
  }
}
@media screen and (max-width: 780px) {
  .other-service-list-slider {
    border-radius: 10px 10px 0 0;
  }
}
.other-service-list-slider .slick-list,
.other-service-list-slider .slick-track {
  height: 100%;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 780px) {
  .other-service-list-slider .slick-list,
.other-service-list-slider .slick-track {
    height: 30rem;
    border-radius: 10px 10px 0 0;
  }
}
.other-service-list-slider__img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 780px) {
  .other-service-list-slider__img {
    border-radius: 10px 10px 0 0;
  }
}
.other-service-list-slider .slide-arrow {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 780px) {
  .other-service-list-slider .next-arrow {
    right: -1.5rem;
  }
  .other-service-list-slider .prev-arrow {
    left: -1.5rem;
  }
}

.other-service-list-content {
  padding: 30px 1.5rem;
  background: #fff;
}
@media screen and (min-width: 781px) {
  .other-service-list-content {
    width: 50%;
    padding: 62px 4rem;
    border-radius: 0 10px 10px 0;
  }
}
.other-service-list-content__tit {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 780px) {
  .other-service-list-content__tit {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.other-service-list-content__tit-ps {
  padding: 0 1.5rem;
  margin-left: 2rem;
  background: #388D44;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
}

.other-service-ps {
  padding: 43px 11rem 56px;
  border: 2px dashed #388D44;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15.7rem;
}
@media screen and (max-width: 780px) {
  .other-service-ps {
    padding: 43px 1.5rem 56px;
    flex-direction: column;
    gap: 40px;
  }
}
.other-service-ps__img {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .other-service-ps__img {
    width: 50rem;
  }
}

@media screen and (min-width: 781px) {
  .other-service-ps-content {
    width: 63rem;
  }
}
.other-service-ps-content__tit {
  margin-bottom: 20px;
}

/* -------------------------------------------------
	company
-------------------------------------------------- */
.company-tit {
  margin-bottom: 40px;
}

.company-greeting {
  max-width: 1440px;
  margin-bottom: 80px;
}
.company-greeting-inner {
  padding: 100px 8rem 80px;
  border-radius: 40px;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .company-greeting-inner {
    padding: 80px 1.5rem;
  }
}
.company-greeting-inner__tit {
  margin-bottom: 40px;
  color: #FBB015;
  text-align: center;
}
.company-greeting__text {
  margin-bottom: 40px;
}
@media screen and (min-width: 781px) {
  .company-greeting__text {
    margin-bottom: 80px;
    text-align: center;
  }
}

.company-staff__name {
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
}
.company-staff__name .tit-part6 {
  margin-left: 2rem;
}

.company-staff01 {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.company-staff01__img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 780px) {
  .company-staff01__img {
    height: 20rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.company-staff02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 780px) {
  .company-staff02 {
    flex-direction: column;
  }
}
.company-staff02:not(:last-of-type) {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.company-staff02__img {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .company-staff02__img {
    width: 50rem;
  }
}
@media screen and (min-width: 781px) {
  .company-staff02-content {
    width: 75rem;
  }
}

.company-about {
  padding: 80px 0;
  background: #fff;
}
.company-about-inner {
  max-width: 1440px;
}

.company-history {
  max-width: 1440px;
  padding-top: 80px;
}
.company-history-inner {
  padding: 80px 8rem;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 780px) {
  .company-history-inner {
    padding: 40px 1.5rem;
    border-radius: 20px;
  }
}

/* -------------------------------------------------
	form
-------------------------------------------------- */
.form-wrap {
  max-width: 1440px;
  margin-bottom: 160px;
}
@media screen and (max-width: 780px) {
  .form-wrap {
    margin-bottom: 80px;
  }
}
.form-wrap__text {
  margin-bottom: 75px;
  text-align: center;
}

.form {
  padding: 90px 24rem;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .form {
    padding: 40px 1.5rem;
  }
}
.form__tit {
  margin-bottom: 55px;
}

.form-navi {
  width: 50rem;
  margin: 0 auto 90px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  gap: 10rem;
}
@media screen and (max-width: 780px) {
  .form-navi {
    width: 100%;
    gap: 2rem;
  }
}
.form-navi::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ccc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 780px) {
  .form-navi::after {
    width: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.form-navi__item {
  width: 10rem;
  height: 10rem;
  border: 4px solid #ccc;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.6rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .form-navi__item {
    width: 7rem;
    height: 7rem;
    font-size: 1.2rem;
  }
}
.form-navi__item--current {
  border-color: #FBB015;
  background: #FBB015;
  color: #fff;
}

.form-list {
  width: 100%;
  margin-bottom: 60px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .form-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 780px) {
  .form-list dt {
    width: 100%;
  }
}
.form-list__tit {
  width: 31.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .form-list__tit {
    width: 100%;
  }
}
.form-list__tit-must {
  padding: 2px 2rem;
  border-radius: 2px;
  background: #FBB015;
  color: #fff;
}
@media screen and (max-width: 780px) {
  .form-list__tit-must {
    font-size: 1.8rem;
  }
}
.form-list__tit-any {
  padding: 2px 2rem;
  border-radius: 2px;
  background: #ccc;
}
@media screen and (max-width: 780px) {
  .form-list__tit-any {
    font-size: 1.8rem;
  }
}
.form-list__text {
  width: calc(100% - 31.5rem) !important;
}
@media screen and (max-width: 780px) {
  .form-list__text {
    width: 100% !important;
  }
}
.form-list__text input,
.form-list__text textarea,
.form-list__text select {
  width: 100% !important;
  max-width: 100% !important;
  min-width: auto !important;
  padding: 15px 2.2rem !important;
  border: 1px solid #ccc !important;
  border-radius: 5px !important;
}
.form-list__text textarea {
  min-height: 152px;
}
.form-list__text input[type=checkbox],
.form-list__text input[type=radio i] {
  width: auto !important;
  vertical-align: baseline;
}
.form-list__text .form-check {
  display: inline-block;
}
.form-list__text .form-check:not(:last-of-type) {
  margin-right: 2rem;
}

#item_privacy-policy {
  display: block;
}
#item_privacy-policy .form-list__text {
  width: 100% !important;
}
#item_privacy-policy .justify-content-evenly {
  text-align: center;
}
#item_privacy-policy .form-policy {
  margin-bottom: 20px;
}
#item_privacy-policy .form-policy__link {
  text-decoration: underline;
  color: #2B60AB;
}

.form-check-wrap .form-list {
  justify-content: flex-start;
}
@media screen and (max-width: 780px) {
  .form-check-wrap .form-list {
    margin-bottom: 40px;
    align-items: flex-start;
  }
}
.form-check-wrap #item_privacy-policy {
  display: none;
}

.form-check-btn {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 780px) {
  .form-check-btn {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .form-check-btn li {
    width: 100%;
  }
}

.form-complete-wrap__text {
  margin-bottom: 30px;
}
.form-complete-wrap .btn03 {
  margin: 0 auto;
}

/* -------------------------------------------------
	flow
-------------------------------------------------- */
.flow__tit {
  margin-bottom: 60px;
}

.flow-box {
  padding-bottom: 60px;
  display: flex;
  gap: 4rem;
  position: relative;
}
@media screen and (max-width: 780px) {
  .flow-box {
    flex-direction: column;
    gap: 20px;
  }
}
.flow-box::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #2B60AB;
  position: absolute;
  left: 5rem;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 1700px) {
  .flow-box::before {
    left: 5rem;
  }
}
@media screen and (max-width: 780px) {
  .flow-box::before {
    content: none;
  }
}
.flow-box__step {
  width: 10rem;
  height: 10rem;
  color: #fff;
  background: #2B60AB;
  border-radius: 5px;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
}
@media screen and (max-width: 780px) {
  .flow-box__step {
    width: 7rem;
    height: 7rem;
    font-size: 2.6rem;
  }
}
.flow-box__step-num {
  font-size: 4.8rem;
  display: block;
}
@media screen and (max-width: 780px) {
  .flow-box__step-num {
    font-size: 3rem;
  }
}

.flow-box-outer {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .flow-box-outer {
    max-width: 1000px;
    width: 90%;
    margin-top: 5rem;
  }
}
.flow-box-outer__tit {
  margin-bottom: 20px;
}
.flow-box-outer__sub-tit {
  margin: 40px 0 20px;
  font-weight: bold;
}
.flow-box-outer__text {
  margin-bottom: 40px;
  line-height: 2;
}

.flow-box-inner01 {
  padding: 40px 9.5rem;
  display: flex;
  justify-content: space-between;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .flow-box-inner01 {
    padding: 40px 1.5rem;
    flex-direction: column;
    gap: 40px;
  }
}

.flow-box-inner01-left {
  text-align: center;
}
@media screen and (min-width: 781px) {
  .flow-box-inner01-left {
    width: 50%;
    padding-right: 3rem;
    border-right: 1px solid #ccc;
  }
}
@media screen and (min-width: 1700px) {
  .flow-box-inner01-left {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 780px) {
  .flow-box-inner01-left {
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
  }
}
.flow-box-inner01-left__tit {
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .flow-box-inner01-left__tit {
    margin-bottom: 10px;
  }
}
.flow-box-inner01-left__btn {
  width: 30rem;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  border-radius: 10px;
}
.flow-box-inner01-left .btn03 {
  margin-bottom: 20px;
}

.flow-box-inner01-right {
  text-align: center;
}
@media screen and (min-width: 781px) {
  .flow-box-inner01-right {
    width: 50%;
  }
}
.flow-box-inner01-right__tit {
  margin-bottom: 20px;
}
@media screen and (max-width: 780px) {
  .flow-box-inner01-right__tit {
    margin-bottom: 10px;
  }
}
.flow-box-inner01-right__num {
  color: #2B60AB;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 3.4rem;
}
@media screen and (min-width: 1700px) {
  .flow-box-inner01-right__num {
    font-size: 5.4rem;
  }
}
@media screen and (max-width: 780px) {
  .flow-box-inner01-right__num {
    font-size: 3.8rem;
  }
}

.flow-box-inner02,
.flow-box-inner04 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.flow-box-inner02__img,
.flow-box-inner04__img {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .flow-box-inner02__img,
.flow-box-inner04__img {
    width: 49rem;
    max-width: 48%;
  }
}
.flow-box-inner02__text,
.flow-box-inner04__text {
  line-height: 2;
}
@media screen and (min-width: 781px) {
  .flow-box-inner02__text,
.flow-box-inner04__text {
    width: 39rem;
  }
}
@media screen and (min-width: 1700px) {
  .flow-box-inner02__text,
.flow-box-inner04__text {
    width: 49rem;
  }
}

.flow-box-inner03 {
  padding: 40px 2rem;
  background: #fff;
  border-radius: 10px;
}
.flow-box-inner03-inner {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .flow-box-inner03-inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 781px) {
  .flow-box-inner03-inner-content {
    width: calc(100% - 36rem);
  }
}
.flow-box-inner03__img {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .flow-box-inner03__img {
    width: 32rem;
  }
}
.flow-box-inner03__tit {
  margin-bottom: 20px;
  font-weight: bold;
}
.flow-box-inner03__text {
  line-height: 2;
}

.flow-box-inner04__text {
  width: 100%;
  line-height: 2;
}

#flow02-03::before {
  content: none;
}

.flow-follow {
  max-width: 108.5%;
  width: 100vw;
  margin: 0 0 150px -8.5%;
  padding: 65px 6.5rem;
  background: #2B60AB;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media screen and (min-width: 1700px) {
  .flow-follow {
    margin: 80px 0 150px -9.5%;
  }
}
@media screen and (max-width: 780px) {
  .flow-follow {
    margin: 0 calc(50% - 50vw) 80px;
    padding: 65px 1.5rem;
    flex-direction: column;
    gap: 20px;
  }
}
.flow-follow .btn05 {
  margin: 45px 0 0 0;
}

.flow-follow-content__tit {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .flow-follow-content__tit {
    font-size: 2.6rem;
  }
}

@media screen and (min-width: 781px) {
  .flow-side {
    margin-bottom: 100px;
    position: -webkit-sticky;
    position: sticky;
    top: 23rem;
    right: 0;
  }
}

.paint-flow-side-list {
  margin-bottom: 40px;
}
.paint-flow-side-list-item__box {
  height: 290px;
  overflow: hidden;
  transition: height 0.5s, padding 0.5s;
  position: relative;
}

.flow-side-list {
  position: relative;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
}
.flow-side-list .flow-side-list-item {
  display: block;
  position: relative;
}
.flow-side-list input[type=checkbox].on-off {
  position: absolute;
  bottom: 0;
  opacity: 0;
  z-index: -1;
}
.flow-side-list-item__box-link {
  padding: 10px 1rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 2.4rem;
  background: #FBF8F4;
  transition: 0.3s;
}
.flow-side-list-item__box-link:hover {
  background: #ccc;
  font-weight: bold;
  color: #FBB015;
}
.flow-side-list__btn {
  width: 100%;
  padding: 20px 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.flow-side-list__btn-item {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBB015;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.flow-side-list__btn-item::after {
  content: "";
  background: url(../img/page/arrow-tri.svg) no-repeat;
  background-size: contain;
  width: 1.8rem;
  height: 0.9rem;
  transition: 0.3s;
}
.flow-side-list .on-off:checked ~ .flow-side-list-item__box {
  height: 500px;
  overflow-y: scroll;
}
.flow-side-list .on-off:checked ~ .flow-side-list__btn .flow-side-list__btn-item::after {
  transform: rotate(180deg);
}

/* -------------------------------------------------
	page-works
-------------------------------------------------- */
@media screen and (min-width: 781px) {
  .page-works {
    margin-bottom: 100px;
  }
}
.page-works .works-cat-list-item {
  margin-bottom: 0;
  padding: 45px 4rem 80px;
}
@media screen and (max-width: 780px) {
  .page-works .works-cat-list-item {
    padding: 45px 1.5rem 40px;
  }
}

.page-works-sidebar-list {
  background: #fff;
  border-radius: 18px 18px 10px 10px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
}

.post-pagination {
  margin-bottom: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .post-pagination {
    margin-bottom: 100px;
    gap: 1rem;
  }
}
.post-pagination ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .post-pagination ul.page-numbers {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 780px) {
  .post-pagination ul.page-numbers li a.page-numbers:not(.prev):not(.next),
.post-pagination ul.page-numbers li span.page-numbers.current {
    display: none;
  }
}
.post-pagination__both,
.post-pagination li .page-numbers {
  width: 7rem;
  height: 7rem;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FCFCFC;
}
.post-pagination__both.current,
.post-pagination li .page-numbers.current {
  background: #2B60AB;
  color: #fff;
}
.post-pagination__prev {
  transform: rotate(-180deg);
}

@media screen and (min-width: 781px) {
  .works-post {
    margin-bottom: 20px;
  }
}
.works-post .beer-reveal[data-beer-label]:after,
.works-post .beer-slider[data-beer-label]:after {
  width: 16rem;
  padding: 20px 3.5rem;
  background: #FBB015;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  top: 0;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .works-post .beer-reveal[data-beer-label]:after,
.works-post .beer-slider[data-beer-label]:after {
    width: 8rem;
    padding: 10px 5px;
    font-size: 2.6rem;
  }
}
.works-post .beer-reveal[data-beer-label]:after {
  border-radius: 10px 0 10px 0;
  left: 0;
}
.works-post .beer-slider[data-beer-label]:after {
  border-radius: 0 10px 0 10px;
  right: 0;
}

.works-post-slider {
  width: 100%;
  height: 72.3rem;
  margin-top: 55px;
  border-radius: 10px;
}
@media screen and (max-width: 780px) {
  .works-post-slider {
    height: 40rem;
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
.works-post-slider__img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-post-about {
  margin-bottom: 68px;
}
.works-post-about__tit {
  margin-bottom: 20px;
}
.works-post-about .table01 {
  box-shadow: none;
}
.works-post-about .table01__tit {
  padding: 15px 4rem;
}
@media screen and (max-width: 780px) {
  .works-post-about .table01__tit {
    padding: 15px 2rem;
  }
}
.works-post-about .table01__text {
  padding: 15px 8rem;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .works-post-about .table01__text {
    padding: 15px 2rem;
  }
}

.works-post-state__tit {
  margin-bottom: 20px;
}

.works-post-state-item {
  margin-bottom: 40px;
  padding: 40px 4rem;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 780px) {
  .works-post-state-item {
    padding: 40px 1.5rem;
  }
}

.works-post-state-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .works-post-state-item-inner {
    flex-direction: column;
  }
}
@media screen and (min-width: 781px) {
  .works-post-state-item-inner-left {
    width: 48%;
  }
}
.works-post-state-item-inner-left img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 781px) {
  .works-post-state-item-inner-right {
    width: 48%;
  }
}
.works-post-state-item-inner-right table {
  width: 100%;
  /*width: auto!important;*/
  height: auto !important;
}
.works-post-state-item-inner-right table tr, .works-post-state-item-inner-right table th, .works-post-state-item-inner-right table td {
  width: auto !important;
  height: auto !important;
}
.works-post-state-item-inner-right table tr {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media screen and (min-width: 781px) {
  .works-post-state-item-inner-right table tr {
    gap: 1rem;
  }
}
@media screen and (max-width: 780px) {
  .works-post-state-item-inner-right table tr {
    flex-direction: column;
    gap: 20px;
  }
}
.works-post-state-item-inner-right table td {
  flex: 1;
}
@media screen and (max-width: 780px) {
  .works-post-state-item-inner-right table td {
    width: 100% !important;
  }
}
.works-post-state-item-inner-right img {
  width: 36rem;
  height: 25rem;
  margin-bottom: 10px;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 780px) {
  .works-post-state-item-inner-right img {
    width: 100%;
    height: 15rem;
  }
}

.works-post-comment {
  margin: 80px auto 100px;
  padding: 40px 1.5rem;
  border-radius: 10px;
  background: #fff;
}
@media screen and (min-width: 781px) {
  .works-post-comment {
    width: 80rem;
    margin: 80px auto 160px;
    padding: 40px 8rem;
  }
}
.works-post-comment__tit {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

/* -------------------------------------------------
	faq
-------------------------------------------------- */
.page-faq__tit {
  margin-bottom: 150px;
}
@media screen and (max-width: 780px) {
  .page-faq__tit {
    margin-bottom: 60px;
  }
}
.page-faq-inner {
  padding: 170px 0;
  background: #fff;
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 780px) {
  .page-faq-inner {
    padding: 40px 0;
  }
}

.page-faq-box:not(:last-of-type) {
  margin-bottom: 150px;
}
@media screen and (max-width: 780px) {
  .page-faq-box:not(:last-of-type) {
    margin-bottom: 80px;
  }
}
.page-faq-box__tit {
  margin-bottom: 40px;
}

.page-faq-navi {
  margin-bottom: 140px;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 781px) {
  .page-faq-navi {
    margin-top: -206px;
  }
}
@media screen and (max-width: 780px) {
  .page-faq-navi {
    margin-bottom: 100px;
    flex-direction: column;
    gap: 20px;
  }
}
.page-faq-navi__item {
  padding: 25px 3rem;
  background: #4F473C;
  border-radius: 5px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-weight: bold;
}
.page-faq-navi__item::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/page/arrow-circle.svg) no-repeat;
  background-size: contain;
}

/* -------------------------------------------------
	privacy
-------------------------------------------------- */
.privacy {
  margin-bottom: 150px;
}
@media screen and (max-width: 780px) {
  .privacy {
    margin-bottom: 80px;
  }
}

.privacy-item__tit {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ccc;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .privacy-item__tit {
    font-size: 2.6rem;
  }
}
.privacy-item__text {
  margin-bottom: 40px;
  line-height: 2;
}

/* -------------------------------------------------
	news
-------------------------------------------------- */
.news {
  margin-bottom: 150px;
}
@media screen and (max-width: 780px) {
  .news {
    margin-bottom: 80px;
  }
}

/* -------------------------------------------------
	voice
-------------------------------------------------- */
.voice {
  margin-bottom: 150px;
}
@media screen and (max-width: 780px) {
  .voice {
    margin-bottom: 80px;
  }
}
.voice .page-intro {
  margin-bottom: 90px;
}
@media screen and (max-width: 780px) {
  .voice .page-intro {
    margin-bottom: 45px;
  }
}
.voice-list {
  margin-bottom: 95px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5rem;
}
@media screen and (min-width: 781px) {
  .voice-list::after {
    content: "";
    width: 30%;
    display: block;
  }
}
@media screen and (max-width: 780px) {
  .voice-list {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 20px;
  }
}

.voice-list-item {
  display: block;
  height: 100%;
}
@media screen and (min-width: 781px) {
  .voice-list-item {
    width: 30%;
  }
}
.voice-list-item__img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.voice-list-item__tit {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 780px) {
  .voice-list-item__tit {
    font-size: 2.4rem;
  }
}

.voice-post {
  margin-bottom: 160px;
}
@media screen and (max-width: 780px) {
  .voice-post {
    margin-bottom: 80px;
  }
}

.voice-post-info {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 780px) {
  .voice-post-info {
    padding-bottom: 20px;
    margin-bottom: 40px;
    flex-direction: column;
    gap: 20px;
  }
}
.voice-post-info__tit {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .voice-post-info__tit {
    font-size: 2rem;
  }
}

.voice-post-content {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 780px) {
  .voice-post-content {
    margin-bottom: 80px;
    flex-direction: column;
  }
}

@media screen and (min-width: 781px) {
  .voice-post-content-item {
    width: 50%;
  }
}
@media screen and (max-width: 780px) {
  .voice-post-content-item {
    order: 2;
  }
}
.voice-post-content-item__tit {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
@media screen and (max-width: 780px) {
  .voice-post-content-item__tit {
    margin-bottom: 10px;
  }
}
.voice-post-content-item__tit::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #707070;
  border-radius: 5px;
  background: #000;
}
@media screen and (max-width: 780px) {
  .voice-post-content-item__tit::before {
    width: 3rem;
    border-radius: 3px;
  }
}
.voice-post-content-item__text:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (max-width: 780px) {
  .voice-post-content-item__text:not(:last-of-type) {
    margin-bottom: 50px;
  }
}

.voice-post-content-img {
  max-height: 450px;
  position: relative;
}
@media screen and (min-width: 781px) {
  .voice-post-content-img {
    width: 50%;
  }
}
@media screen and (max-width: 780px) {
  .voice-post-content-img {
    margin-bottom: 40px;
    order: 1;
  }
}
.voice-post-content-img__item {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-post-content-img__icon {
  width: 5.2rem;
  position: absolute;
  right: 1.4rem;
  bottom: 1rem;
}

/* -------------------------------------------------
	member
-------------------------------------------------- */
.member-intro {
  margin-bottom: 80px;
  text-align: center;
}
.member-intro .tit-part6 {
  margin-bottom: 40px;
}

.member-box {
  margin-bottom: 80px;
  padding: 80px 8rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .member-box {
    padding: 40px 2rem;
    flex-direction: column;
    gap: 40px;
  }
}

.member-box-slider {
  width: 100%;
}
@media screen and (min-width: 781px) {
  .member-box-slider {
    width: 50%;
  }
}
.member-box-slider-main {
  margin-bottom: 20px;
}
.member-box-slider-main__item {
  width: 100%;
  border-radius: 10px;
}
.member-box-slider-thumb {
  cursor: pointer;
}
.member-box-slider-thumb__item {
  width: 100%;
  margin-right: 1.2rem;
}

.member-box-prof {
  flex: 1;
}
.member-box-prof__tit {
  margin-bottom: 10px;
  color: #FBB015;
  font-weight: bold;
  display: block;
}
@media screen and (min-width: 781px) {
  .member-box-prof__tit {
    font-size: 1.8rem;
  }
}
.member-box-prof__name {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .member-box-prof__name {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    font-size: 2.6rem;
  }
}
.member-box-prof__name-kana {
  font-size: 2rem;
}
@media screen and (max-width: 780px) {
  .member-box-prof__name-kana {
    font-size: 1.8rem;
  }
}
.member-box-prof__text {
  margin-bottom: 30px;
}
.member-box-prof__license {
  padding: 20px 3.4rem;
  border: 2px solid #FBB015;
  border-radius: 10px;
  position: relative;
}
.member-box-prof__license-tit {
  margin-top: -1rem;
  padding: 0 1rem;
  font-weight: bold;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: 3rem;
  top: -10%;
}

/* -------------------------------------------------
	recruit
-------------------------------------------------- */
.recruit-wish {
  padding: 19rem 0 25rem;
  background: url(../img/page/recruit-wish-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 780px) {
  .recruit-wish {
    padding: 9rem 0 15rem;
    background: url(../img/page/recruit-wish-bg-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.recruit-wish__tit {
  margin-bottom: 80px;
}
.recruit-wish-list {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 780px) {
  .recruit-wish-list {
    flex-direction: column;
    gap: 20px;
  }
}

.recruit-wish-item {
  padding: 40px 2rem;
  background: #FCFCFC;
  border-radius: 5px;
}
@media screen and (min-width: 781px) {
  .recruit-wish-item {
    padding: 40px 3.5rem;
    flex: 1;
  }
}
.recruit-wish-item__tit {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
  color: #FBB015;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .recruit-wish-item__tit {
    font-size: 2.6rem;
  }
}
.recruit-wish-item__text {
  padding-left: 4rem;
  position: relative;
}
.recruit-wish-item__text::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/page/icon-check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.recruit-wish-item__text:not(:last-of-type) {
  margin-bottom: 20px;
}

.recruit-type {
  margin-top: -10rem;
  padding-top: 19rem;
  background: #FCFCFC;
}
@media screen and (max-width: 780px) {
  .recruit-type {
    padding-top: 15rem;
  }
}
.recruit-type-inner {
  max-width: 1440px;
}
.recruit-type__tit {
  margin-bottom: 40px;
}

.recruit-type-navi {
  margin-bottom: 16rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .recruit-type-navi {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 80px;
    flex-direction: column;
    gap: 20px;
  }
}
.recruit-type-navi-item {
  display: inline-block;
  font-weight: bold;
}
.recruit-type-navi-item__link {
  padding: 20px 4rem;
  background: #EFEFEF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 6rem;
  justify-content: space-between;
}
.recruit-type-navi-item__link::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/page/icon-arrow-circle.svg) no-repeat;
  background-size: contain;
}

.recruit-type-box {
  max-width: 1440px;
}
.recruit-type-box__tit {
  margin-bottom: 20px;
  padding: 25px 0;
  border-radius: 5px;
  background: #EFEFEF;
}
.recruit-type-box__img {
  width: 100%;
  margin-bottom: 80px;
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 780px) {
  .recruit-type-box__img {
    height: 20rem;
    margin-bottom: 40px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.recruit-type-box-item:not(:last-of-type) {
  margin-bottom: 80px;
}
.recruit-type-box-item:last-of-type {
  margin-bottom: 10rem;
}
.recruit-type-box-item__tit {
  margin-bottom: 40px;
  padding-left: 4rem;
  border-left: 2px solid #FBB015;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item__tit {
    padding-left: 2rem;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
.recruit-type-box-item__tit-num {
  display: block;
  font-size: 4.8rem;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item__tit-num {
    font-size: 3rem;
  }
}
.recruit-type-box-item-content-wrap {
  padding: 60px 6rem;
  border: 1px solid #CCCCCC;
  background: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content-wrap {
    padding: 40px 2rem;
  }
}

.recruit-type-box-item-content01__item:not(:last-of-type) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #CCCCCC;
}

.recruit-type-box-item-content02 {
  display: flex;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02 {
    flex-direction: column;
  }
}
.recruit-type-box-item-content02__item {
  height: 15rem;
  position: relative;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item {
    flex: 1;
  }
}
.recruit-type-box-item-content02__item::after {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    border-color: rgba(136, 183, 213, 0);
    border-width: 16px;
    margin-top: -16px;
  }
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02__item::after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    border-color: rgba(136, 183, 213, 0);
    border-width: 16px;
    margin-left: -16px;
  }
}
.recruit-type-box-item-content02__item01 {
  background: #FCF3E3;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item01::after {
    border-left-color: #FCF3E3;
  }
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02__item01::after {
    border-top-color: #FCF3E3;
  }
}
.recruit-type-box-item-content02__item02 {
  background: #FBEBCD;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item02::after {
    border-left-color: #FBEBCD;
  }
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02__item02::after {
    border-left: none;
    border-top-color: #FBEBCD;
  }
}
.recruit-type-box-item-content02__item03 {
  background: #FBE4B5;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item03::after {
    border-left-color: #FBE4B5;
  }
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02__item03::after {
    border-top-color: #FBE4B5;
  }
}
.recruit-type-box-item-content02__item04 {
  background: #FBDD9F;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item04::after {
    border-left-color: #FBDD9F;
  }
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02__item04::after {
    border-top-color: #FBDD9F;
  }
}
.recruit-type-box-item-content02__item05 {
  background: #FBCE71;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content02__item05::after {
    border-left-color: #FBCE71;
  }
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content02__item05::after {
    border-top-color: #FBCE71;
  }
}
.recruit-type-box-item-content02__item06 {
  background: #FBC85D;
}
.recruit-type-box-item-content02__item06::after {
  content: none;
}
.recruit-type-box-item-content02__num {
  font-size: 2rem;
}

.recruit-type-box-item-content04__item {
  padding-left: 3.5rem;
  position: relative;
}
.recruit-type-box-item-content04__item::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/page/icon-check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.recruit-type-box-item-content04__item:not(:last-of-type) {
  margin-bottom: 30px;
}

.recruit-type-box-item-content05 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content05 {
    flex-direction: column;
    gap: 20px;
  }
}
.recruit-type-box-item-content05-item {
  padding: 40px 2rem;
  border: 1px solid #CCCCCC;
  background: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content05-item {
    padding: 60px 6rem;
    flex: 1;
  }
}
.recruit-type-box-item-content05-item__tit {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content05-item__tit {
    font-size: 1.8rem;
  }
}

.recruit-type-box-item-content06 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4rem;
}
@media screen and (max-width: 780px) {
  .recruit-type-box-item-content06 {
    flex-direction: column;
    gap: 20px;
  }
}
.recruit-type-box-item-content06-item {
  width: 100%;
  padding: 25px 1rem;
  border-radius: 5px;
  background: #FEFAF2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 781px) {
  .recruit-type-box-item-content06-item {
    width: calc((100% - 8rem) / 3);
  }
}
.recruit-type-box-item-content06-item__icon {
  max-width: 40%;
  margin-bottom: 20px;
  display: block;
}
.recruit-type-box-item-content06-item__text {
  font-weight: bold;
}

.recruit-about {
  padding: 17rem 0;
  background: url(../img/page/recruit-about-bg.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 780px) {
  .recruit-about {
    padding: 10rem 0;
  }
}
.recruit-about-inner {
  max-width: 1083px;
  padding: 80px 10rem;
  background: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 780px) {
  .recruit-about-inner {
    padding: 60px 2rem;
  }
}
.recruit-about__tit {
  margin-bottom: 20px;
  text-align: center;
}
.recruit-about__text {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid #CCCCCC;
  text-align: center;
}
.recruit-about-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 780px) {
  .recruit-about-box {
    flex-direction: column;
    gap: 40px;
  }
}

.recruit-about-box-item {
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 781px) {
  .recruit-about-box-item {
    flex: 1;
  }
}
.recruit-about-box-item:first-of-type {
  position: relative;
}
.recruit-about-box-item:first-of-type::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #CCCCCC;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 780px) {
  .recruit-about-box-item:first-of-type::before {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
  }
}
.recruit-about-box-item__tit {
  margin-bottom: 10px;
}
@media screen and (min-width: 781px) {
  .recruit-about-box-item__tit {
    font-size: 2rem;
  }
}
.recruit-about-box-item__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #2B60AB;
  font-weight: 900;
}
@media screen and (max-width: 780px) {
  .recruit-about-box-item__tel {
    margin-bottom: 10px;
    font-size: 3rem;
  }
}
.recruit-about-box-item__tel-icon {
  width: 4.4rem;
  margin-top: 8px;
  display: block;
}
.recruit-about-box-item__time {
  letter-spacing: 0.1px;
  font-size: 1.6rem;
}
@media screen and (max-width: 780px) {
  .recruit-about-box-item__time {
    margin-bottom: 40px;
  }
}
.recruit-about-box-item__btn {
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 781px) {
  .recruit-about-box-item__btn {
    font-size: 2rem;
  }
  .recruit-about-box-item__btn::after {
    content: "";
    width: 1rem;
    height: 2rem;
    background: url(../img/arrow-white.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
}

.recruit-faq {
  padding: 16rem 0 32rem;
  background: #fff;
}
@media screen and (max-width: 780px) {
  .recruit-faq {
    padding: 10rem 0 13rem;
  }
}
.recruit-faq__tit {
  margin-bottom: 65px;
}
.recruit-faq-inner {
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 780px) {
  .recruit-faq-inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 781px) {
  .recruit-faq-list {
    flex: 1;
  }
}

.recruit-form {
  margin-bottom: 26.5rem;
  position: relative;
}
.recruit-form::before {
  content: "";
  width: 100%;
  height: 18.4rem;
  background: url(../img/deco-wave.svg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 780px) {
  .recruit-form::before {
    height: 5.4rem;
    background: url(../img/deco-wave-sp.svg) no-repeat;
    background-size: 101%;
    background-position: bottom;
  }
}
@media screen and (max-width: 780px) {
  .recruit-form {
    margin-bottom: 10rem;
    padding-top: 50px;
  }
}
.recruit-form::before {
  top: -18rem;
}
@media screen and (max-width: 780px) {
  .recruit-form::before {
    top: -5rem;
  }
}
.recruit-form__tit {
  margin-bottom: 60px;
}
.recruit-form #item_birthYear {
  display: flex !important;
}
.recruit-form #item_birthYear > dd {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 780px) {
  .recruit-form #item_birthYear > dd {
    flex-direction: column;
  }
}
.recruit-form #item_birthYear dd dl {
  flex: 1;
}
@media screen and (max-width: 780px) {
  .recruit-form #item_birthYear dd dl {
    width: 90% !important;
  }
}
.recruit-form #item_birthYear dd dl .form-list__text {
  width: auto !important;
}
.recruit-form #item_birthMonth,
.recruit-form #item_birthDay {
  display: block !important;
  margin-bottom: 0;
}
.recruit-form .item_birthYear_inner,
.recruit-form #item_birthMonth,
.recruit-form #item_birthDay {
  position: relative;
}
.recruit-form .item_birthYear_inner select,
.recruit-form #item_birthMonth select,
.recruit-form #item_birthDay select {
  padding: 15px 1rem !important;
  font-size: 1.6rem;
}
.recruit-form .item_birthYear_inner .input-group-text,
.recruit-form #item_birthMonth .input-group-text,
.recruit-form #item_birthDay .input-group-text {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 780px) {
  .recruit-form .item_birthYear_inner .input-group-text,
.recruit-form #item_birthMonth .input-group-text,
.recruit-form #item_birthDay .input-group-text {
    font-size: 1.6rem;
    right: -3rem;
  }
}

.form-check-wrap #item_birthYear dd {
  display: flex !important;
  align-items: center;
}
.form-check-wrap #item_birthYear dd p,
.form-check-wrap #item_birthYear dd dl {
  flex: 1;
  display: flex;
  align-items: center;
}
.form-check-wrap #item_birthMonth,
.form-check-wrap #item_birthDay {
  margin-bottom: 0;
}
.form-check-wrap #item_birthMonth dt,
.form-check-wrap #item_birthDay dt {
  display: none;
}
/*# sourceMappingURL=page.css.map */