@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap');

body {
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
}
html.lock {
	overflow-y: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  background: #FFF;
  border-left: 4px solid #ff7ee1;
  border-right: 4px solid #ffbe57;
  z-index: 9999;
}
.header {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  height: 54px;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-size: 0;
}
.menu-inner {
  display: flex;
  align-items: center;
}
.menu-inner ul {
	display: flex;
}
.menu-inner ul li {
	margin-left: 18px;
}

@media screen and (max-width: 767px) {
	header {
		padding: 0 15px;
	}
	.header {
    height: 48px;
	}
	.hamburger-menu {
    position: absolute;
    display: none;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    padding: 40px 24px;
    background: #FFF;
    overflow-y: auto;
	}
	.hamburger-menu ul li a {
    display: block;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #D8D8D8;
	}
	.hamburger-menu ul {
    margin-bottom: 32px;
	}
	.hamburger {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
	}
	.hamburger span {
    position: absolute;
    top: 18px;
    left: 6px;
    width: 28px;
    height: 2px;
    background: #ffbe57;
    transition: 0.3s ease-in-out;
	}
	.hamburger span:first-child {
    top: 10px;
	}
	.hamburger span:last-child {
    top: 26px;
	}
	.hamburger.js-active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.js-active span:first-child {
		top: 18px;
		transform: rotate(45deg);
	}
	.hamburger.js-active span:last-child {
		top: 18px;
		transform: rotate(135deg);
	}
}

.back-pagetop {
  position: fixed;
  right: 40px;
  bottom: 80px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .back-pagetop {
    right: 15px;
    width: 40px;
  }
}

.kv {
  position: relative;
  overflow: hidden;
}
.kv img {
  display: block;
  margin-left: auto;
}
.kv-catch {
  position: absolute;
  top: 50%;
  left: 40px;
  width: 48%;
  font-size: 40px;
  transform: translateY(-50%);
}
.kv-catch span {
  position: relative;
  display: inline-block;
  padding: 5px 8px;
  background: url(../images/dot_yellow.png) 0 0 / 60px auto repeat;
}
.kv-catch span::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  order: 1;
  animation: kvCatch 0.4s ease-in 0.2s normal 1 forwards running;
}
.kv-catch span::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFEAFA;
  order: 2;
  animation: kvCatch 0.5s ease-out 0s normal 1 forwards running;
}
@keyframes kvCatch {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.sec-wrap {
  padding: 0 40px;
}
.sec-inner {
  max-width: 800px;
  margin: 0 auto;
}
.sec-message {
  padding: 80px 40px;
  background: linear-gradient(-225deg, #EAEEFF 0%, #FFEAFA 56%, #FFEAFA 100%);
}
.title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 32px;
}
.title .en {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 500;
  color: #ffbe57;
}
.sec-news {
  padding: 80px 40px;
}
.news-content a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid #f3f3f3;
  transition: 0.3s ease-in-out;
}
.news-content a time {
  display: block;
  margin-bottom: 5px;
  color: #678aff;
}
.news-content a:hover {
  padding-left: 32px;
}
.btns {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.btns a {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 240px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.btns a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ff7ee1;
  border-width: 1px 0 0 1px;
  transition: 0.3s;
}
.btns a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ffbe57;
  border-width: 0 1px 1px 0;
  transition: 0.3s;
}
.btns a:hover {
  opacity: 1;
}
.btns a:hover::before,
.btns a:hover::after {
  width: 100%;
  height: 100%;
}
.sec-service {
  padding: 80px 40px;
  background: url(../images/dot_yellow.png) 0 0 / 30px auto repeat;
}
.column-title {
  margin-bottom: 12px;
  font-size: 18px;
}
.column-txt {
  position: relative;
  display: block;
  padding: 32px 40px;
  margin-bottom: 20px;
  background: #FFF;
  transition: 0.3s;
  overflow: hidden;
}
.column-case .column-txt:nth-child(2n-1) {
  border-right: 120px solid #ff7ee1;
}
.column-case .column-txt:nth-child(2n) {
  border-left: 120px solid #ffbe57;
}
.column-case .column-txt:nth-child(2n-1)::after {
  content: "▶︎";
  position: absolute;
  top: 50%;
  right: -110px;
  font-size: 20px;
  color: #FFF;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 1;
}
.column-case .column-txt:nth-child(2n)::after {
  content: "◀︎";
  position: absolute;
  top: 50%;
  left: -110px;
  font-size: 20px;
  color: #FFF;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 1;
}
a.column-txt:hover {
  border-radius: 20px;
}
.sec-links {
  padding: 80px 40px;
  background: url(../images/links_bg.png) 50% 50% / cover no-repeat;
}
.links-content {
  display: flex;
  justify-content: space-between;
}
.link-box {
  position: relative;
  display: flex;
  width: 48%;
  max-width: 340px;
  height: 120px;
  border: 1px solid #FFF;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.link-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: linear-gradient(-225deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 56%, rgba(255,255,255,0.8) 100%);
  transform: translate(-50%,-50%);
  transition: 0.3s ease-in-out;
  z-index: -1;
}
.box-title {
  font-size: 25px;
  text-align: center;
}
.box-title span {
  display: block;
  font-size: 14px;
}
.link-box:hover::after {
  background: linear-gradient(-225deg, #EAEEFF 0%, #FFEAFA 56%, #FFEAFA 100%);
}

@media screen and (max-width: 767px) {
  .kv {
    display: flex;
    height: 480px;
    padding-bottom: 20px;
    align-items: flex-end;
  }
  .kv-catch {
    top: 80px;
    left: 15px;
    width: calc(100% - 30px);
    font-size: 22px;
    transform: none;
  }
  .page {
    display: block;
    padding-top: 54px;
  }
  .sec-message,
  .sec-news,
  .sec-service {
    padding: 64px 15px;
  }
  .sec-links {
    padding: 54px 15px;
  }
  .title {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .column-case .column-txt:nth-child(2n-1),
  .column-case .column-txt:nth-child(2n) {
    border-width: 20px;
  }
  .column-txt {
    padding: 20px 12px;
  }
  .column-title {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .links-content {
    flex-wrap: wrap;
  }
  .link-box {
    width: 100%;
    height: 100px;
    margin: 10px 0;
  }
  .box-title {
    font-size: 22px;
  }
}

.footer {
  padding: 80px 40px 0;
  border-top: 3px solid #FFDEBE;
}
.footer-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 80px;
  justify-content: space-between;
  align-items: center;
}
.footer-menu ul {
  display: flex;
  font-size: 13px;
}
.footer-menu ul li {
  margin-left: 14px;
}
.copyright {
  padding: 0 0 10px;
  font-size: 11px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 15px 0;
  }
  .footer-content {
    display: block;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 16px;
  }
  .footer-menu ul {
    justify-content: space-between;
  }
  .footer-menu ul li {
    margin-left: 8px;
    font-size: 11px;
  }
  .footer-menu ul li:first-child {
    margin-left: 0;
  }
  .copyright {
    font-size: 10px;
    text-align: center;
  }
}

main.page {
  display: block;
  padding-top: 54px;
}
.page-kv {
  display: flex;
  padding: 60px 80px;
  background: linear-gradient(-225deg, #EAEEFF 0%, #FFEAFA 56%, #FFEAFA 100%);
}
.pagetitle {
  display: flex;
  width: 100%;
  font-size: 34px;
  justify-content: flex-end;
}
.pagetitle .en {
  display: block;
  margin-right: 8px;
  font-size: 24px;
  font-weight: 400;
  color: #ff7ee1;
}
.news-detail-title {
  padding-bottom: 6px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  border-bottom: 2px solid #ffbe57;
}
.news-detail time {
  display: block;
  width: 100px;
  padding: 4px 12px;
  margin-left: auto;
  margin-bottom: 32px;
  line-height: 1.2;
  text-align: center;
  color: #666;
  background: #EAEEFF;
}
.news-detail-txt {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  main.page {
    padding-top: 48px;
  }
  .page-kv {
    padding: 32px 15px;
  }
  .pagetitle {
    font-size: 24px;
  }
  .pagetitle .en {
    font-size: 16px;
  }
  .news-detail-title {
    font-size: 18px;
    border-width: 1px;
  }
}

.sec-about,
.sec-company {
  padding: 80px 40px;
}
table.table {
  width: 100%;
  font-size: 16px;
  text-align: left;
}
table.table th {
  width: 120px;
  padding: 10px;
  border: 1px solid #eee;
}
table.table td {
  padding: 10px;
  border: 1px solid #eee;
}
table.table td a {
  display: inline-block;
  margin-left: 6px;
  font-size: 80%;
  color: #547bef;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .sec-about,
  .sec-company {
    padding: 64px 15px;
  }
  table.table th,
  table.table td {
    display: block;
    width: 100%;
    font-size: 13px;
    border-bottom: none;
  }
  table.table td {
    padding-left: 20px;
  }
  table.table tr:last-child td {
    border-bottom: 1px solid #eee;
  }
}

.recruit-txt {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  font-family: "Klee One", cursive;
}
.sec-recruit {
  padding: 80px 40px;
  background: url(../images/dot_blue.png) 50% 50% / 30px auto repeat;
}
.sec-recruit-news {
  background-image: url(../images/dot_pink.png);
}
.recruit-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruit-box {
  position: relative;
  width: 32%;
  padding: 24px 12px;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 4px;
}
.recruit-content::before,
.recruit-content::after {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}
.recruit-img {
  display: block;
  margin-bottom: 16px;
  font-size: 0;
}
.recruit-title {
  margin-bottom: 12px;
  font-size: 17px;
  color: #62b1ff;
}
.recruit-detail dl:not(:last-child) {
  margin-bottom: 14px;
}
.recruit-detail dt {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
}
.recruit-detail dd {
  display: block;
  font-size: 12px;
}
.recruit-box::before,
.recruit-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: #ff7ee1;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.recruit-box::after {
  left: auto;
  right: 4px;
}

@media screen and (max-width: 767px) {
  .recruit-txt {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .sec-recruit {
    padding: 64px 15px;
  }
  .recruit-box {
    width: 100%;
  }
  .recruit-box:last-child {
    margin-bottom: 0;
  }
}

.sec-contact {
  padding: 80px 40px;
}
.contact-content > p {
  margin-bottom: 40px;
}
.contact-type {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  justify-content: space-between;
}
.contact-box {
  width: 48%;
}
.links-content.center {
  justify-content: center;
}
.contact-link big {
  margin-right: 4px;
  font-weight: 600;
  color: #ffbe57;
}
.contact-box:first-child .contact-link big {
  color: #ff7ee1;
}