@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

.u-desktop {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block !important;
  }
}

.u-mobile {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html {
  font-size: 62.5%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 62.5%;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*//////////////////// accordion /////////////////////////*/
.accordion {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}

.accordion-title {
  cursor: pointer;
}

.accordion-content {
  display: none;
}

/* 矢印 */
.accordion-title {
  position: relative;
}

.accordion-title::after {
  border-right: solid 2px #2EA7E0;
  border-top: solid 2px #2EA7E0;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 2rem;
  top: 38%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 10px;
}
@media screen and (min-width: 768px) {
  .accordion-title::after {
    height: 14px;
    right: 4rem;
    width: 14px;
  }
}

.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.sp-nav__list .accordion-title::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 60%;
  right: 0.8rem;
  transform: translateY(-50%);
}

.sp-nav__list .accordion-title::after {
  width: 15px;
  height: 15px;
  top: 25%;
}

.sp-nav__list .accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

/*//////////////////// br /////////////////////////*/
@media screen and (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.pc-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-br {
    display: block;
  }
}

/*//////////////////// common__btn /////////////////////////*/
.common__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.common__btn a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2EA7E0;
  line-height: 1;
  padding: 1.4rem 5rem;
  border: 1px solid #2EA7E0;
  border-radius: 50vh;
  transition: all 0.3s;
  background-color: #fff;
  margin: 20;
}
@media screen and (min-width: 768px) {
  .common__btn a {
    font-size: 1.6rem;
    padding: 1.5rem 5rem 1.7rem;
  }
}

.common__btn a::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2rem;
  background: url(../images/common/icon-arrow-right-white.png) no-repeat center center;
  background-size: 1.6rem;
  margin-left: 0.8rem;
}
@media screen and (min-width: 768px) {
  .common__btn a::after {
    width: 2.6rem;
    height: 3.1rem;
    background: url(../images/common/icon-arrow-right-white.png) no-repeat center center;
    background-size: 2rem;
  }
}

.common__btn a .arrow::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.2rem;
  background-size: contain;
  margin-right: 0.8rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .common__btn a .arrow::before {
    width: 2rem;
    height: 1.5rem;
    margin-right: 1.2rem;
  }
}

.common__btn a:hover {
  background-color: #2EA7E0;
  color: #fff;
}

/*//////////////////// common__sub-btn /////////////////////////*/
.common__sub-btn a {
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .common__sub-btn a {
    font-size: 1.6rem;
  }
}

.common__sub-btn a .arrow::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-left.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
  margin-right: 0.8rem;
}
@media screen and (min-width: 768px) {
  .common__sub-btn a .arrow::before {
    margin-right: 1.6rem;
  }
}

.common__sub-btn a:hover .arrow::before {
  background: url(../images/common/icon-circle-arrow-left-blue.png) no-repeat center center;
  background-size: contain;
}

/*//////////////////// common__sub-ttl /////////////////////////*/
.common__sub-ttl {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .common__sub-ttl {
    font-size: 3.2rem;
  }
}

/*//////////////////// common__ttl /////////////////////////*/
.common__ttl {
  font-size: 2.8rem;
  line-height: 1.3;
  position: relative;
  white-space: nowrap;
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 1rem;
  white-space: inherit;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .common__ttl {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

.common__ttl::after {
  content: attr(data-en);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .common__ttl::after {
    font-size: 2.4rem;
  }
}

.page-head--privacy .common__ttl::after {
  display: block;
  margin-top: 0.8rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .page-head--privacy .common__ttl::after {
    display: inline-block;
    margin-left: 0.8rem;
    margin-top: 0;
  }
}

/*//////////////////// detail-staff-short /////////////////////////*/
.detail-staff-short {
  text-align: left;
  box-shadow: 0 3px 40px rgba(0, 0, 0, 0.08);
  border-radius: 2.4rem;
  padding: 3.2rem 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .detail-staff-short {
    display: flex;
    padding: 4rem;
    border-radius: 4rem;
    margin-bottom: 8rem;
  }
}

.detail-staff-short .staff-img {
  max-width: 12rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .staff-img {
    max-width: 20rem;
    margin: 0;
  }
}

.detail-staff-short .staff-img img {
  border-radius: 50%;
}

.detail-staff-short .detail-text {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .detail-text {
    margin-top: 0;
    margin-left: 4rem;
  }
}

.detail-staff-short .text-sns img {
  width: 4rem;
}

.detail-staff-short .text-job {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-job {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.detail-staff-short .text-name {
  margin-top: 0.8rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4583333333;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-name {
    font-size: 3.2rem;
    line-height: 1.4375;
    margin-top: 1.6rem;
  }
}

.detail-staff-short .alpha {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4166666667;
  display: block;
  text-transform: capitalize;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .alpha {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.detail-staff-short .text-catch {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4583333333;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-catch {
    font-size: 2.4rem;
    margin-top: 3.3rem;
  }
}

.detail-staff-short .text-keireki {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-keireki {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1.7rem;
  }
}

.detail-staff-short .text-comm {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-comm {
    margin-top: 3.2rem;
  }
}

.detail-staff-short .text-comm dt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-comm dt {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.detail-staff-short .text-comm dd {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .detail-staff-short .text-comm dd {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1.6rem;
  }
}

.detail-staff-short .text-sns {
  margin-top: 2.4rem;
}

/*//////////////////// drop-menu /////////////////////////*/
.pc-nav-item.drop-menu {
  position: relative;
}

.pc-nav-item.drop-menu .drop-menu-box {
  display: none;
}

.pc-nav-item.drop-menu:hover .drop-menu-box {
  display: block;
  position: absolute;
  top: 100%;
  left: 1.2rem;
  padding-top: 1.6rem;
}

.drop-menu .drop-menu-lists {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 2rem 2.4rem;
  min-width: 14.4rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.drop-menu .drop-menu-lists li + li {
  margin-top: 1.6rem;
}

.drop-menu .drop-menu-lists li a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
}

/*//////////////////// footer /////////////////////////*/
.footer {
  background-color: #F5F5F5;
  color: #000;
  padding: 4rem 0 7.2rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 4.8rem 0;
  }
}

.l-wrapper {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding: 0 2.5rem;
    max-width: 125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer-contents {
    display: flex;
    justify-content: space-between;
  }
}

.footer-contents .logo {
  width: 9.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .footer-contents .logo {
    width: 15.8rem;
    margin-left: 0;
  }
}

.footer-nav {
  display: flex;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    margin-top: 0;
    font-size: 1.6rem;
  }
}

.footer-nav .footer-nav-center,
.footer-nav .footer-nav-right {
  margin-left: 3.1rem;
}
@media screen and (min-width: 768px) {
  .footer-nav .footer-nav-center,
  .footer-nav .footer-nav-right {
    margin-left: 4.2rem;
  }
}

.footer-nav dl dt {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .footer-nav dl dt {
    white-space: nowrap;
  }
}

.footer-nav dl dt .line {
  padding-left: 1.5em;
  position: relative;
}

.footer-nav dl dt .line::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1px;
  background-color: #999999;
  position: absolute;
  top: 50%;
  left: 0;
}

.footer-link__lists {
  display: flex;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .footer-link__lists {
    margin-top: 0;
  }
}

.footer-link__list {
  width: 5.6rem;
  margin-right: 1.8rem;
}
@media screen and (min-width: 768px) {
  .footer-link__list {
    width: 7.2rem;
    margin-left: 2.4rem;
    margin-right: 0;
  }
}

.footer-link__list:nth-child(2) {
  width: 5.8rem;
}
@media screen and (min-width: 768px) {
  .footer-link__list:nth-child(2) {
    width: 7.5rem;
  }
}

.footer-link__list:nth-child(3),
.footer-link__list:nth-child(4) {
  width: 8rem;
}
@media screen and (min-width: 768px) {
  .footer-link__list:nth-child(3),
  .footer-link__list:nth-child(4) {
    width: 10.5rem;
  }
}

.footer__bottom {
  margin-top: 4rem;
  border-top: 1px solid #E0E0E0;
  padding-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    padding-top: 2.4rem;
  }
}

.copyright {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 400;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .copyright {
    margin-top: 0;
  }
}

/*//////////////////// hamburger /////////////////////////*/
.hamburger {
  display: inline-block;
  width: 2.4rem;
  height: 1.6rem;
  position: relative;
  caret-color: transparent;
  cursor: pointer;
  z-index: 1000;
  transition: ease 0.5s;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background: #2EA7E0;
  transition: ease 0.5s;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.hamburger.active span:nth-of-type(1) {
  top: 0.9rem;
  transform: rotate(45deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  bottom: 0.5rem;
  transform: rotate(-45deg);
}

/*//////////////////// header /////////////////////////*/
.header {
  background: #FFF;
  height: 6.4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header {
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
  }
}

.header__inner {
  padding: 0 2rem 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 3.2rem 0 2.4rem;
  }
}

.header__logo {
  max-width: 5.6rem;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 8.8rem;
  }
}

.header__logo.headerLogoScroll.-before {
  display: none;
}

.header__logo.-after {
  display: none;
}

.header__logo.headerLogoScroll.-after {
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo.headerLogoScroll.-after {
    max-width: 6.7rem;
  }
}

.header.headerColorScroll {
  background-color: #fff;
  transition: all 0.3s ease-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .header.headerColorScroll {
    height: 8rem;
  }
}

/*//////////////////// inner /////////////////////////*/
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1000px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/*//////////////////// logo /////////////////////////*/
.logo {
  width: 100%;
}

/*//////////////////// modal-item /////////////////////////*/
.modal-item {
  cursor: pointer;
}

.modal-open {
  display: block;
}

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 0 1.6rem;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

/*//////////////////// mv /////////////////////////*/
.mv {
  height: 42rem;
  position: relative;
  z-index: 0;
  background: url(../images/common/bg-mv-sp.png) no-repeat center 100%;
  background-size: 100%;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 90rem;
    background: url(../images/common/bg-mv.png) no-repeat center center;
    background-size: cover;
  }
}

.mv__inner {
  height: inherit;
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-top: 11rem;
  }
}

.mv__ttl {
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  line-height: 1;
  position: relative;
  font-size: 6.2rem;
}
@media screen and (min-width: 768px) {
  .mv__ttl {
    display: block;
    font-size: 11.7rem;
  }
}

.mv__ttl::before {
  content: "";
  display: block;
  width: 100%;
  height: 81%;
  background: url(../images/common/bg-img-mv.png) no-repeat left center;
  background-size: 100%;
  position: absolute;
  top: 9%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .mv__ttl::before {
    width: 78rem;
    height: 16.6rem;
    top: 9%;
    left: -10.9rem;
  }
}

.mv__txt {
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.5813953488;
  margin-bottom: 1.2rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .mv__txt {
    font-size: 4.2rem;
    line-height: 1.4523809524;
  }
}

.mv__btn {
  max-width: 20.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .mv__btn {
    margin-top: 4rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.mv__btn a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2EA7E0;
  line-height: 1.4285714286;
  background-color: #fff;
  padding: 1.4rem 2rem;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  width: 100%;
  border: 2px solid #2EA7E0;
}
@media screen and (min-width: 768px) {
  .mv__btn a {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1.5rem 3.2rem 1.7rem;
  }
}

.mv__btn a:hover {
  background-color: #2EA7E0;
  color: #fff;
}

.mv__news {
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .mv__news {
    bottom: 4.3rem;
    left: 4rem;
  }
}

.mv__news-info {
  display: flex;
  align-items: center;
}

.mv__news-ttl {
  font-size: 1.8rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #FF0000;
  line-height: 1.3333333333;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .mv__news-ttl {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.mv__news-date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-left: 0.8rem;
}
@media screen and (min-width: 768px) {
  .mv__news-date {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-left: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .mv__news-content-list a {
    display: flex;
    align-items: center;
  }
}

.mv__news-post-ttl {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-top: 0.7rem;
}
@media screen and (min-width: 768px) {
  .mv__news-post-ttl {
    font-size: 1.6rem;
    margin-top: 0;
    margin-left: 0.8rem;
  }
}

/*//////////////////// page-about /////////////////////////*/
.page-about {
  padding: 3rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .page-about {
    padding: 4rem 0 16rem;
  }
}

.page-about .top-about__sub-ttl {
  margin-top: 0;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-about .top-about__sub-ttl {
    font-size: 3.2rem;
    line-height: 1.4375;
  }
}

.page-about .top-about__list-img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.page-about .top-about__list:nth-child(1)::before {
  background: url(../images/common/img-page-about01.png) no-repeat center center;
  background-size: cover;
}

.page-about .top-about__list:nth-child(2)::before {
  background: url(../images/common/img-page-about02.png) no-repeat center center;
  background-size: cover;
}

.page-about .top-about__list:nth-child(3)::before {
  background: url(../images/common/img-page-about03.png) no-repeat center center;
  background-size: cover;
}

/*//////////////////// page-common__ttl /////////////////////////*/
.page-common__ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4583333333;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-common__ttl {
    font-size: 4rem;
  }
}

/*//////////////////// page-company /////////////////////////*/
.page-company__inner {
  max-width: 54.8rem;
}
@media screen and (min-width: 768px) {
  .page-company__inner {
    max-width: 1000px;
  }
}

.under-access-wrapper {
  margin-bottom: 2.8rem;
}
@media screen and (min-width: 768px) {
  .under-access-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5%;
  }
}

.under-access-wrapper dt {
  margin-bottom: 1.4rem;
}
.under-access-wrapper dt h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.under-access-wrapper dt p {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .under-access-wrapper dt {
    width: 30%;
  }
}

@media screen and (min-width: 768px) {
  .under-access-wrapper dd {
    width: 65%;
  }
}

.under-access-wrapper-map {
  border: 0;
  width: 100%;
}

.page-company__list {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-company__list {
    margin-top: 4.8rem;
  }
}

.page-company__list-wrap {
  padding: 2rem 0;
  border-top: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .page-company__list-wrap {
    display: flex;
    justify-content: left;
    padding: 4rem 0;
  }
}

.page-company__list-wrap:last-child,
.page-company__list-wrap-bottom {
  border-bottom: 1px solid #E0E0E0;
}

.page-company__list dt {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-company__list dt {
    width: 22.5%;
  }
}

.page-company__list dd {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-company__list dd {
    width: 77.5%;
    font-size: 1.4rem;
    margin-top: 0;
  }
}

.page-company__list dd a {
  color: #2EA7E0;
  text-decoration: underline;
}

.page-company-bottom-ttl {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .page-company-bottom-ttl {
    margin-top: 16rem;
  }
}

.page-company__list-map {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-company__list-map {
    margin-top: 0.5rem;
  }
}

.page-company__list-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-company__list-link-btn {
  margin-bottom: 2rem;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-company__list-link-btn {
    margin-bottom: 4rem;
  }
}

.page-company__list-link-btn a {
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-company__list-link-btn a {
    font-size: 1.6rem;
  }
}

.page-company__list-link-btn a .arrow::before {
  content: "";
  display: block;
  width: 3rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-link-blue.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
  margin-right: 0.8rem;
  color: #2EA7E0;
}
@media screen and (min-width: 768px) {
  .page-company__list-link-btn a .arrow::before {
    margin-right: 1.6rem;
  }
}

.page-company__list-link-btn a:hover .arrow::before {
  background: url(../images/common/icon-circle-arrow-link-blue-hover.png) no-repeat center center;
  background-size: contain;
}

/*//////////////////// page-contact /////////////////////////*/
.page-contact__inner {
  max-width: 54.8rem;
}
@media screen and (min-width: 768px) {
  .page-contact__inner {
    max-width: 1000px;
  }
}

.page-contact__txt {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .page-contact__txt {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}

.page-contact__form {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .page-contact__form {
    margin-top: 8.5rem;
  }
}

.page-contact__form label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.45;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-contact__form label {
    font-size: 2rem;
  }
}

.page-contact__form label span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2EA7E0;
  margin-left: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-contact__form label span {
    font-size: 1.6rem;
  }
}

.page-contact__form span.wpcf7-form-control-wrap {
  margin-left: 0;
}

.page-contact__form input,
textarea {
  width: 100%;
  margin-top: 1.6rem;
  margin-bottom: 2rem;
  border-radius: 1.2rem;
  background-color: #F5F5F5;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4444444444;
  padding: 1.5em 1.33em;
}
@media screen and (min-width: 768px) {
  .page-contact__form input,
  textarea {
    border-radius: 2.4rem;
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

.page-contact__form ::-moz-placeholder {
  color: #999999;
}

.page-contact__form ::placeholder {
  color: #999999;
}

.page-contact__sub-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .page-contact__sub-txt {
    font-size: 1.8rem;
  }
}

.page-contact__box {
  border: 1px solid #999999;
  border-radius: 1.2rem;
  margin-top: 2rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .page-contact__box {
    border-radius: 2.4rem;
    margin-top: 4.2rem;
    padding: 2rem;
  }
}

.page-contact__box-content {
  overflow-y: scroll;
  height: 32rem;
  padding: 1rem 0.5rem 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .page-contact__box-content {
    padding: 2rem 1rem 2rem 2rem;
  }
}

.page-contact__box-content h3 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4583333333;
}
@media screen and (min-width: 768px) {
  .page-contact__box-content h3 {
    font-size: 2.4rem;
  }
}

.page-contact__box-content p,
.page-contact__box-content ul li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4444444444;
  margin-top: 1.2em;
}
@media screen and (min-width: 768px) {
  .page-contact__box-content p,
  .page-contact__box-content ul li {
    font-size: 1.8rem;
  }
}

.page-contact__form .page-contact__acceptance {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .page-contact__form .page-contact__acceptance {
    margin-top: 4rem;
  }
}

.page-contact__form .page-contact__acceptance label span {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
@media screen and (min-width: 768px) {
  .page-contact__form .page-contact__acceptance label span {
    font-size: 2rem;
  }
}

.page-contact__acceptance label {
  position: relative;
  padding-left: 3.2rem;
}
@media screen and (min-width: 768px) {
  .page-contact__acceptance label {
    padding-left: 5.6rem;
  }
}

.page-contact__acceptance .wpcf7-list-item {
  margin-left: 0;
}

.page-contact__form .wpcf7-not-valid-tip {
  margin-bottom: 2rem;
}

.page-contact__acceptance label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  transform: translateY(-50%);
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-contact__acceptance label::before {
    width: 4rem;
    height: 4rem;
    border-radius: 0.8rem;
  }
}

.page-contact__acceptance input:checked + span::after {
  border-right: 3px solid #2EA7E0;
  border-bottom: 3px solid #2EA7E0;
  content: "";
  display: block;
  width: 10px;
  height: 17px;
  left: 8px;
  position: absolute;
  bottom: 2px;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .page-contact__acceptance input:checked + span::after {
    width: 14px;
    height: 24px;
    left: 13px;
    bottom: 2px;
  }
}

.page-contact__btn-wrap {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-contact__btn-wrap {
    margin-top: 4rem;
  }
}

.page-contact__btn input {
  background-color: #2EA7E0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4583333333;
  font-weight: 400;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .page-contact__btn input {
    font-size: 2.4rem;
  }
}

.page-contact__btn input:disabled {
  background-color: #F5F5F5;
  color: #999999;
}

/*//////////////////// page-head /////////////////////////*/
.page-head {
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  padding: 3.2rem 0;
  margin-bottom: 3.2rem;
}

.page-head .common__ttl {
  color: #fff;
}

.page-head .common__ttl::after {
  color: #fff;
  background: none;
}

.page-head--aboutus .common__ttl {
  white-space: normal;
}

.page-head--aboutus .common__ttl span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-head--aboutus .common__ttl span {
    display: inline;
  }
}

.page-head--aboutus .common__ttl::after {
  display: block;
  margin-left: 0;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-head--aboutus .common__ttl::after {
    display: inline;
    margin-left: 1.6rem;
    margin-top: 0;
  }
}

.page-head__breadcrumb {
  margin-left: 1.2rem;
  padding-top: 1.6rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4285714286;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .page-head__breadcrumb {
    font-size: 1.4rem;
    margin-left: 1.6rem;
  }
}

.page-head__breadcrumb--black {
  margin-top: 7.9rem;
  color: 900;
}
@media screen and (min-width: 768px) {
  .page-head__breadcrumb--black {
    margin-top: 14.5rem;
  }
}

.page-head__breadcrumb > span {
  margin: 0 0.8rem;
  color: #2EA7E0;
}

.page-head__breadcrumb span.current-item {
  color: 900;
}

.page-head__breadcrumb--black span.current-item {
  color: 900;
}

.page-head--service {
  margin-bottom: 24px;
  background: none;
  padding: 0;
}

.page-head--service .common__ttl {
  color: #000;
}

.page-head--service .common__ttl::after {
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*//////////////////// page-mission /////////////////////////*/
.mission {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .mission {
    padding-top: 8rem;
  }
}

.mission__box__text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mission__box__text {
    width: 63%;
  }
}

.mission__sub__ttl {
  font-size: 3.6rem;
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .mission__sub__ttl {
    font-size: 4.5rem;
    margin-left: auto;
    margin-top: 2.6rem;
  }
}

.mission__txt {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 1.8rem;
  color: #262626;
}
@media screen and (min-width: 768px) {
  .mission__txt {
    font-size: 1.6rem;
    line-height: 1.4375;
    margin-top: 1rem;
  }
}

.mission__img {
  margin-top: 6.4rem;
  margin-left: calc(50% - 50vw);
  width: 82%;
}
@media screen and (min-width: 768px) {
  .mission__img {
    width: 45%;
    margin-top: 0;
  }
}

/*//////////////////// page-mv /////////////////////////*/
.philosophy__bg {
  background: url(../images/common/logo_bg.png) no-repeat center center;
  background-size: 60%;
  height: 70%;
}
@media screen and (min-width: 768px) {
  .philosophy__bg {
    background-size: 44%;
    height: 63%;
    margin-bottom: 70px;
  }
}

.philosophy__inner {
  height: 32%;
}
@media screen and (min-width: 768px) {
  .philosophy__inner {
    height: 57%;
  }
}

.philosophy__wrap {
  text-align: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #2EA7E0;
}
@media screen and (min-width: 768px) {
  .philosophy__wrap {
    padding: 6.4rem 6.2rem 3.2rem 0;
  }
}

.philosophy__sub-ttl {
  font-size: 1.2rem;
  color: #000;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 768px) {
  .philosophy__sub-ttl {
    font-size: 1.76rem;
    line-height: 1.4583333333;
  }
}

.philosophy__ttl {
  font-size: 3.2rem;
  font-weight: 400;
  color: #000;
  position: relative;
  letter-spacing: 0.8rem;
}
@media screen and (min-width: 768px) {
  .philosophy__ttl {
    font-size: 4.8rem;
    line-height: 1.4583333333;
    align-items: end;
  }
}

.philosophy .page-head__breadcrumb {
  position: absolute;
  bottom: 1.6rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .philosophy .page-head__breadcrumb {
    bottom: 2.4rem;
  }
}

/*//////////////////// page-news__post /////////////////////////*/
.page-news__post {
  margin-top: 6.4rem;
  padding-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .page-news__post {
    margin-top: 12rem;
    padding-bottom: 16rem;
  }
}

.page-news__post-inner.inner {
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .page-news__post-inner.inner {
    max-width: 850px;
  }
}

.page-news__content {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .page-news__content {
    margin-top: 12rem;
  }
}

.page-news__content-date {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .page-news__content-date {
    font-size: 1.6rem;
  }
}

.page-news__content-ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 0.8rem;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 2.2rem;
}
@media screen and (min-width: 768px) {
  .page-news__content-ttl {
    font-size: 4rem;
    padding-bottom: 4.4rem;
  }
}

.page-news__content-txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .page-news__content-txt {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}

.page-news__content-txt p {
  margin: 3.2rem auto;
}

.page-news__content-txt a {
  color: #2EA7E0;
  display: inline-block;
  word-break: break-all;
}

.page-news__post-btn {
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .page-news__post-btn {
    margin-top: 9.6rem;
  }
}

/*//////////////////// page-news /////////////////////////*/
.page-news {
  padding: 2rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .page-news {
    padding: 8rem 0 14rem;
  }
}

@media screen and (min-width: 768px) {
  .page-news__inner.inner {
    max-width: 1000px;
  }
}

.page-news__list {
  border-top: 1px solid #E0E0E0;
}

.page-news__list:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.page-news__list a {
  padding: 2rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-news__list a {
    padding: 4rem 0;
  }
}

.page-news__list-date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .page-news__list-date {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.page-news__list-ttl {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-news__list-ttl {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

/*//////////////////// page-privacy /////////////////////////*/
.page-privacy__inner {
  max-width: 54.8rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .page-privacy__inner {
    max-width: 1000px;
  }
}

.page-privacy h3 {
  font-size: 1.8rem;
  margin: 4rem 0 1rem;
}

.page-privacy h4,
.page-privacy h5 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}

.page-privacy .text p,
.page-privacy .text ul li {
  font-size: 1.6rem;
  line-height: 1.4444444444;
  font-weight: 400;
}

.page-privacy .text p {
  margin-bottom: 1.4em;
}

.page-privacy .text .ttl {
  font-size: 2.4rem;
  line-height: 1.45;
  font-weight: 400;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .page-privacy .text .ttl {
    font-size: 4rem;
    margin-top: 8.2rem;
    margin-bottom: 4rem;
  }
}

.page-privacy .text .sub-ttl {
  font-size: 2rem;
  line-height: 1.4375;
  font-weight: 400;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .page-privacy .text .sub-ttl {
    font-size: 3.2rem;
    margin-top: 8.2rem;
    margin-bottom: 4rem;
  }
}

.page-privacy .text .txt-ttl {
  font-weight: 400;
  margin-top: 1.4em;
}

/*//////////////////// page-qa /////////////////////////*/
.page-qa__inner.inner {
  max-width: 54rem;
}
@media screen and (min-width: 768px) {
  .page-qa__inner.inner {
    max-width: 125rem;
  }
}

.page-qa__number-ttl {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number-ttl {
    margin-top: 8.2rem;
  }
}

.page-qa__number-ttl.common__ttl::after {
  display: block;
  margin-left: 0;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number-ttl.common__ttl::after {
    display: inline-block;
    margin-top: 0;
    margin-left: 0.8rem;
  }
}

.page-qa__number .number-lists {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-lists {
    margin-top: 4.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.page-qa__number .number-list {
  background-color: #F5F5F5;
  border-radius: 2rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list {
    width: 32.4%;
    border-radius: 4rem;
    padding: 2.4rem;
  }
}

.page-qa__number .number-list:nth-child(1),
.page-qa__number .number-list:nth-child(5) {
  background-color: transparent;
  padding: 0;
}

.page-qa__number .number-list + .number-list {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list + .number-list {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-qa__number .number-list:nth-child(n+4) {
    margin-top: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .page-qa__number .number-list:nth-child(1),
  .page-qa__number .number-list:nth-child(5) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.page-qa__number .number-list h4 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list h4 {
    font-size: 2rem;
  }
}

.page-qa__number .number-list:nth-child(2) img {
  max-width: 30.6rem;
  margin: 3.2rem auto 0;
}

.page-qa__number .number-list:nth-child(3) img {
  max-width: 29.5rem;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list:nth-child(3) img {
    margin: 5.3rem auto 0;
  }
}

.page-qa__number .number-list:nth-child(4) img {
  max-width: 35.1rem;
  margin: 1.8rem auto 0;
}

.page-qa__number .number-list:nth-child(6) img {
  max-width: 26.3rem;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list:nth-child(6) img {
    margin: 3.7rem auto 0;
  }
}

.page-qa__number .number-list .two {
  background-color: #F5F5F5;
  border-radius: 2rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list .two {
    border-radius: 4rem;
    padding: 2.4rem;
    height: auto;
  }
}

.page-qa__number .number-list .two p {
  font-size: 3.2rem;
  font-weight: 400;
  color: #2EA7E0;
  text-align: center;
}

.page-qa__number .number-list .two p > span {
  font-size: 8.5rem;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list .two p > span {
    font-size: 11.2rem;
  }
}

.page-qa__number .number-list .two p > img {
  max-width: 30.9rem;
  margin: 2.5rem auto 0;
}

.page-qa__number .number-list .two + .two {
  margin-top: 1.6rem;
}

.page-qa__number .number-list .three {
  background-color: #F5F5F5;
  border-radius: 2rem;
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list .three {
    border-radius: 4rem;
    padding: 1.6rem 2.4rem 0.8rem;
    height: auto;
  }
}

.page-qa__number .number-list .three + .three {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list .three + .three {
    margin-top: 0;
  }
}

.page-qa__number .number-list .three p {
  font-size: 2.4rem;
  font-weight: 400;
  color: #2EA7E0;
  text-align: center;
}

.page-qa__number .number-list .three:nth-of-type(2) p {
  font-size: 2rem;
}

.page-qa__number .number-list .three p > span {
  font-size: 6.2rem;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (min-width: 768px) {
  .page-qa__number .number-list .three p > span {
    font-size: 7.2rem;
  }
}

.page-qa__bottom {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .page-qa__bottom {
    margin-top: 16rem;
  }
}

.qa-list__accordion {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion {
    margin-top: 6.5rem;
  }
}

@media screen and (min-width: 768px) {
  .qa-list__accordion + .qa-list__accordion {
    margin-top: 8rem;
  }
}

.qa-list__accordion .title-sub {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .title-sub {
    font-size: 3.2rem;
  }
}

.qa-list__accordion .accordion-container {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .accordion-container {
    margin-top: 4rem;
  }
}

.qa-list__accordion .accordion-item {
  border-radius: 1.2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .accordion-item {
    border-radius: 2.4rem;
  }
}

.qa-list__accordion .accordion-item + .accordion-item {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .accordion-item + .accordion-item {
    margin-top: 2.4rem;
  }
}

.qa-list__accordion .accordion-title {
  padding: 2rem 4rem 2rem 1.8rem;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .accordion-title {
    padding: 3.7rem 8.9rem 3.7rem 4rem;
  }
}

.qa-list__accordion .accordion-content {
  padding: 0 4rem 2rem 1.8rem;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .accordion-content {
    padding: 0 8.9rem 3.7rem 4rem;
  }
}

.qa-list__accordion .item-text {
  display: flex;
  align-items: flex-start;
}

.qa-list__accordion .icon-q,
.qa-list__accordion .icon-a {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  min-width: 2.5rem;
  display: flex;
  justify-content: center;
  margin-right: 1.2rem;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .icon-q,
  .qa-list__accordion .icon-a {
    font-size: 3.2rem;
    margin-right: 2.4rem;
  }
}

.qa-list__accordion .icon-q {
  color: #2EA7E0;
}

.qa-list__accordion .content {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4583333333;
}
@media screen and (min-width: 768px) {
  .qa-list__accordion .content {
    font-size: 2.4rem;
  }
}

.qa-list__accordion .content--a {
  font-weight: 400;
}

/*//////////////////// page-recruit__about /////////////////////////*/
.page-recruit__about {
  padding: 3.2rem 0 6.4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__about {
    padding: 6rem 0 13rem;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__about-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__about-content {
    width: 56.6%;
  }
}

.page-recruit__about-content .common__ttl::after {
  margin-left: 0;
}

.page-recruit__about-ttl {
  margin-top: 1.5rem;
}

.page-recruit__about-link {
  margin-top: 2.7rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__about-link {
    row-gap: 2.4rem;
    margin-top: 4rem;
    max-width: 42rem;
  }
}

.page-recruit__about-link .page-recruit-link-item {
  width: 42.6%;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .page-recruit__about-link .page-recruit-link-item {
    width: auto;
    margin-right: 4.2rem;
  }
}

.page-recruit__about-link .page-recruit-link-item:nth-child(2),
.page-recruit__about-link .page-recruit-link-item:nth-child(4) {
  width: 50.2%;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .page-recruit__about-link .page-recruit-link-item:nth-child(2),
  .page-recruit__about-link .page-recruit-link-item:nth-child(4) {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__about-link .page-recruit-link-item:nth-child(1),
  .page-recruit__about-link .page-recruit-link-item:nth-child(3) {
    width: 40.3%;
    margin-right: 0;
  }
}

.page-recruit__about-img {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__about-img {
    margin-top: 0;
    width: 53.3%;
  }
}

/*//////////////////// page-recruit__blog /////////////////////////*/
.page-recruit__blog {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .page-recruit__blog {
    padding: 6rem 0;
  }
}

.page-recruit__blog-lists {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  margin-top: 5rem;
}

.page-recruit__blog-list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-recruit__blog-list {
    width: 31%;
    margin-left: 3.33%;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__blog-list:first-child {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__blog-list:nth-child(n+4) {
    margin-top: 6.7rem;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__blog-list:nth-child(3n+1) {
    margin-left: 0;
  }
}

.page-recruit__blog-list .top-blog__list-img img {
  width: 100%;
  height: auto;
}

/*//////////////////// page-recruit__culture /////////////////////////*/
.page-recruit__culture {
  padding: 3.4rem 0 3.2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__culture {
    padding: 6rem 0;
  }
}

/*//////////////////// page-recruit__head /////////////////////////*/
.bg-page-recruit-head {
  background: url(../images/common/bg-page-recruit.png) no-repeat 177% 8%;
  background-size: 88%;
}

.page-recruit__head {
  padding: 4rem 0 3.4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__head {
    padding: 12rem 0 6rem;
  }
}

.page-recruit__head-ttl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .page-recruit__head-ttl {
    font-size: 4.8rem;
  }
}

.page-recruit__head-ttl .blue {
  color: #2EA7E0;
}

.page-recruit__head-txt {
  margin-top: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__head-txt {
    font-size: 2rem;
  }
}

.page-recruit__head-link {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__head-link {
    margin-top: 4rem;
    display: flex;
  }
}

.page-recruit__head-link-item {
  margin-right: 2.4rem;
}

.page-recruit__head-link-item + .page-recruit__head-link-item {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__head-link-item + .page-recruit__head-link-item {
    margin-top: 0;
  }
}

.page-recruit__head-link-item a {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .page-recruit__head-link-item a {
    font-size: 1.8rem;
  }
}

.page-recruit__head-link-item .arrow::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-right.png) no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
  transition: all 0.3s;
  margin-right: 0.8rem;
}

.page-recruit__head-link-item a:hover .arrow::before {
  background: url(../images/common/icon-circle-arrow-right-blue.png) no-repeat center center;
  background-size: contain;
  transform: rotate(90deg);
}

.page-recruit__head-img {
  margin-top: 6.4rem;
  border-radius: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__head-img {
    margin-top: 9rem;
    border-radius: 4rem;
  }
}

/*//////////////////// page-recruit__interview /////////////////////////*/
.page-recruit__interview {
  padding: 6.4rem 0 3rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview {
    padding: 12rem 0 6rem;
  }
}

.page-recruit__interview__lists-wrap {
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__lists-wrap {
    overflow-x: auto;
  }
}

.page-recruit__interview__lists {
  margin-top: 2.4rem;
  display: flex;
  overflow: hidden;
  width: 75.5rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__lists {
    margin-top: 5rem;
    width: 100%;
  }
}

.page-recruit__interview__list {
  margin-left: 1.6rem;
  width: 24.1rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__list {
    width: 31%;
    margin-left: 3.33%;
  }
}

.page-recruit__interview__list:first-child {
  margin-left: 0;
}

.page-recruit__interview__list-img img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__list-img img {
    border-radius: 4rem;
  }
}

.page-recruit__interview__list-text {
  margin-top: 1.6rem;
}

.page-recruit__interview__list-text-job {
  line-height: 1.4166666667;
  color: #666666;
  font-weight: 400;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__list-text-job {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.page-recruit__interview__list-text-job-detail {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.45;
  color: #000;
  padding: 0.42em 0.85em;
  background-color: #F5F5F5;
  border-radius: 50vh;
  margin-left: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__list-text-job-detail {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.page-recruit__interview__list-text-ttl {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__list-text-ttl {
    margin-top: 1.6rem;
    font-size: 2rem;
    line-height: 1.45;
  }
}

.page-recruit__interview__list-text-jp {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .page-recruit__interview__list-text-jp {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

/*//////////////////// page-recruit__lead /////////////////////////*/
.page-recruit__lead {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead {
    padding: 6rem 0;
  }
}

.page-recruit__lead-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

.page-recruit__lead-img {
  order: 3;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-img {
    width: 53.3%;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50% - 50vw);
    order: unset;
    margin-top: 0;
  }
}

.page-recruit__lead-content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-content {
    display: block;
    width: 46.6%;
    margin-left: 8rem;
  }
}

.page-recruit__lead-ttl {
  order: 1;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-ttl {
    order: unset;
  }
}

.page-recruit-ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .page-recruit-ttl {
    font-size: 4rem;
  }
}

.page-recruit-ttl .blue {
  color: #2EA7E0;
}

.page-recruit__lead-txt--01 {
  margin-top: 2.6rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-txt--01 {
    margin-top: 4.2rem;
    order: unset;
  }
}

.page-recruit__lead-txt--02 {
  order: 4;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-txt--02 {
    margin-top: 1em;
    order: unset;
  }
}

.page-recruit-txt {
  font-weight: 400;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .page-recruit-txt {
    font-size: 1.8rem;
  }
}

.page-recruit__lead-link {
  margin-top: 4rem;
  order: 5;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-link {
    margin-top: 6rem;
    order: unset;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit-link {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2.4rem;
  }
}

.page-recruit-link-item {
  margin-right: 4.2rem;
}

.page-recruit-link-item a {
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-recruit-link-item a {
    font-size: 1.8rem;
  }
}

.page-recruit-link-item a .arrow::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-right.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
  margin-right: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-recruit-link-item a .arrow::before {
    margin-right: 1.6rem;
  }
}

.page-recruit-link-item a:hover .arrow::before {
  background: url(../images/common/icon-circle-arrow-right-blue.png) no-repeat center center;
  background-size: contain;
}

.page-recruit__lead-link {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-link {
    row-gap: 2.4rem;
  }
}

.page-recruit__lead-link .page-recruit-link-item {
  width: 42.6%;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-link .page-recruit-link-item {
    width: auto;
    margin-right: 4.2rem;
  }
}

.page-recruit__lead-link .page-recruit-link-item:nth-child(2) {
  width: 57.3%;
}
@media screen and (min-width: 768px) {
  .page-recruit__lead-link .page-recruit-link-item:nth-child(2) {
    width: auto;
  }
}

/*//////////////////// page-recruit__position /////////////////////////*/
.page-recruit__position-wrap {
  padding: 3rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-wrap {
    padding: 6rem 0 12rem;
  }
}

.page-recruit__position-lists {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-lists {
    margin-top: 4.1rem;
  }
}

.page-recruit__position-list {
  width: 100%;
  border-radius: 2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list {
    border-radius: 4rem;
  }
}

.page-recruit__position-list + .page-recruit__position-list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list + .page-recruit__position-list {
    margin-top: 2.4rem;
  }
}

.page-recruit__position-list a {
  padding: 2.4rem;
  position: relative;
  border-radius: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list a {
    padding: 3.6rem 4rem;
    border-radius: 2.4rem;
  }
}

.page-recruit__position-list a .content {
  width: 80.9%;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list a .content {
    display: flex;
    align-items: center;
    width: 90%;
  }
}

.page-recruit__position-wrap .page-recruit__position-list a {
  background-color: #F5F5F5;
  box-shadow: none;
}

.page-recruit__position-list .ttl {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 400;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list .ttl {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    width: 15%;
    margin-right: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__post-position .page-recruit__position-list .ttl {
    width: 30%;
  }
}

.page-recruit__position-list .text {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
  margin-top: 0.9rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list .text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 0;
  }
}

.page-recruit__position-list .btn-arrow::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../images/common/icon-circle-arrow-right.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .page-recruit__position-list .btn-arrow::before {
    width: 4rem;
    height: 4rem;
  }
}

.page-recruit__position-list a:hover .btn-arrow::before {
  background: url(../images/common/icon-circle-arrow-right-blue.png) no-repeat center center;
  background-size: contain;
}

.page-recruit__position-wrap .page-recruit__position-list .btn-arrow::before {
  background-color: #fff;
  border-radius: 50vh;
}

/*//////////////////// page-recruit__post /////////////////////////*/
.page-recruit__post {
  padding-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__post {
    padding-bottom: 16rem;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__post-inner.inner {
    max-width: 850px;
  }
}

.page-recruit__post-content {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__post-content {
    margin-top: 12rem;
  }
}

.page-recruit__post-content .text {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-recruit__post-content .text {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.position-list {
  margin-top: 3.2rem;
  border-top: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .position-list {
    margin-top: 4.8rem;
  }
}

.list-wrapper {
  padding: 3.2rem 0;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .list-wrapper {
    display: flex;
    justify-content: left;
    padding: 4rem 0;
  }
}

.position-list dt {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .position-list dt {
    width: 22%;
    font-size: 2rem;
  }
}

.position-list dd {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .position-list dd {
    width: 78%;
    margin-top: 0;
    font-size: 1.8rem;
  }
}

.list-inner + .list-inner {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .list-inner + .list-inner {
    margin-top: 4.3rem;
  }
}

.list-inner .ttl {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4444444444;
  padding: 0.6em;
  background-color: #F5F5F5;
  margin-bottom: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .list-inner .ttl {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
}

.list-inner small {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  margin-top: 0.8rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .list-inner small {
    font-size: 1.6rem;
  }
}

.list-inner .column {
  line-height: 2;
}

.page-recruit__post-btn {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__post-btn {
    margin-top: 8rem;
  }
}

.page-recruit__post-position {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__post-position {
    margin-top: 12rem;
  }
}

/*//////////////////// page-recruit__system /////////////////////////*/
.page-recruit__system {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .page-recruit__system {
    padding: 6rem 0;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__system-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__system-content {
    width: 46.6%;
  }
}

.page-recruit__system-content .common__ttl::after {
  margin-left: 0;
}

.page-recruit__system-ttl {
  margin-top: 1.5rem;
}

.page-recruit__system-txt {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__system-txt {
    margin-top: 4.3rem;
  }
}

.page-recruit__system-lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__system-lists {
    margin-top: 0;
    width: 46.6%;
  }
}

.page-recruit__system-list {
  width: 47.8%;
  margin-left: 4.2%;
}

.page-recruit__system-list:nth-child(2n+1) {
  margin-left: 0;
}

.page-recruit__system-list:nth-child(n+3) {
  margin-top: 2.4rem;
}

.page-recruit__system-list-btn {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-recruit__system-list-btn {
    font-size: 1.8rem;
  }
}

.page-recruit__system-list-btn .arrow::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-right.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
  margin-right: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__system-list-btn .arrow::before {
    margin-right: 1.6rem;
  }
}

.page-recruit__system-list a:hover .arrow::before {
  background: url(../images/common/icon-circle-arrow-right-blue.png) no-repeat center center;
  background-size: contain;
}

/*//////////////////// page-recruit /////////////////////////*/
.page-recruit__statue {
  padding: 4rem 0 6.4rem;
  background-color: #F5F5F5;
}
@media screen and (min-width: 768px) {
  .page-recruit__statue {
    padding: 8rem 0 12rem;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__statue-inner.inner {
    max-width: 125rem;
  }
}

.page-recruit__statue-lists {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4%;
       column-gap: 4%;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__statue-lists {
    margin-top: 5rem;
    row-gap: 2.6rem;
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
  }
}

.page-recruit__statue-list {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 16rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__statue-list {
    width: 282;
    height: 24rem;
  }
}

.page-recruit__statue-list:nth-child(1) {
  background: url(../images/common/img-statue01.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list:nth-child(2) {
  background: url(../images/common/img-statue02.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list:nth-child(3) {
  background: url(../images/common/img-statue03.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list:nth-child(4) {
  background: url(../images/common/img-statue04.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list:nth-child(5) {
  background: url(../images/common/img-statue05.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list:nth-child(6) {
  background: url(../images/common/img-statue06.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list:nth-child(7) {
  background: url(../images/common/img-statue07.png) no-repeat center center;
  background-size: cover;
}

.page-recruit__statue-list .list-number {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3125;
}
@media screen and (min-width: 768px) {
  .page-recruit__statue-list .list-number {
    font-size: 4.8rem;
  }
}

.page-recruit__statue-list .list-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  white-space: nowrap;
  margin-top: 0.3rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__statue-list .list-text {
    font-size: 2.2rem;
  }
}

.page-recruit__qa {
  padding: 8rem 0;
  background: url(../images/common/bg-q&a.png) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .page-recruit__qa {
    padding: 16rem 0;
  }
}

@media screen and (min-width: 768px) {
  .page-recruit__qa-inner.inner {
    max-width: 125rem;
  }
}

.page-recruit__qa .middle {
  margin-top: 2.3rem;
  font-size: 1.6rem;
  line-height: 1.7222222222;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-recruit__qa .middle {
    font-size: 1.8rem;
  }
}

.page-recruit__qa-btn {
  margin-top: 1.4rem;
}
@media screen and (min-width: 768px) {
  .page-recruit__qa-btn {
    margin-top: 4rem;
  }
}

/*//////////////////// page-service /////////////////////////*/
.service {
  padding: 2rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .service {
    padding: 8rem 0 14rem;
  }
}

.service__inner {
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  height: 22.7rem;
  position: relative;
  margin-bottom: 13rem;
}
@media screen and (min-width: 768px) {
  .service__inner {
    height: 27.5rem;
    margin-bottom: 25.6rem;
  }
}

.service__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .service__bg {
    width: 58%;
  }
}

.service__bg01 {
  background: url(../images/service/service_01.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .service__bg01 {
    background: url(../images/service/service_01.png) no-repeat right center/cover;
  }
}

.service__bg02 {
  background: url(../images/service/service_02.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .service__bg02 {
    background: url(../images/service/service_02.png) no-repeat right center/cover;
  }
}

.service__bg03 {
  background: url(../images/service/service_03.png) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .service__bg03 {
    background: url(../images/service/service_03.png) no-repeat right center/cover;
  }
}

.service__bg04 {
  background: url(../images/service/service_04.png) no-repeat right center/cover;
}
@media screen and (min-width: 768px) {
  .service__bg04 {
    background: url(../images/service/service_04.png) no-repeat right center/cover;
  }
}

.service__box {
  position: absolute;
  bottom: -6.4rem;
  left: 0;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .service__box {
    bottom: -16rem;
    max-width: 1000px;
    padding-right: 25px;
    padding-left: 25px;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.service__box-list-num {
  color: #FFFFFF;
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service__box-list-num {
    font-size: 4rem;
  }
}

.service__box-txt {
  background-color: #FFFFFF;
  padding: 1.9rem;
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .service__box-txt {
    padding: 4.8rem;
    margin-top: 0;
    width: 68%;
  }
}

.service__box-txt h3 {
  color: #2EA7E0;
  height: 4rem;
  font-size: 1.9rem;
  border-bottom: 1px solid #e0e0e0;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 768px) {
  .service__box-txt h3 {
    height: 7.6rem;
    font-size: 3rem;
  }
}

.service__box-txt p {
  color: #666666;
  margin-top: 1.2rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .service__box-txt p {
    margin-top: 2.2rem;
    font-size: 1.6rem;
  }
}

/*//////////////////// page-staff__post /////////////////////////*/
.page-staff__post {
  margin-top: 6.4rem;
  padding-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .page-staff__post {
    margin-top: 12rem;
    padding-bottom: 16rem;
  }
}

@media screen and (min-width: 768px) {
  .page-staff__post-inner.inner {
    max-width: 1010px;
  }
}

.page-staff__post-content {
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .page-staff__post-content {
    margin-top: 18.4rem;
  }
}

.page-staff__content-txt h1 {
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt h1 {
    font-size: 4rem;
    line-height: 1.45;
    margin-bottom: 4.3rem;
  }
}

.page-staff__content-txt h2 {
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 400;
  margin-bottom: 3rem;
  border-bottom: 1px solid #2EA7E0;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt h2 {
    font-size: 4rem;
    line-height: 1.45;
    margin-bottom: 4.3rem;
    padding-bottom: 1.7rem;
  }
}

.page-staff__content-txt h3 {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt h3 {
    font-size: 3.2rem;
    line-height: 1.4375;
    margin-bottom: 4rem;
  }
}

.page-staff__content-txt h4 {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #2EA7E0;
  padding-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt h4 {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    margin-bottom: 4rem;
    padding-bottom: 1.7rem;
  }
}

.page-staff__content-txt h5 {
  font-size: 1.9rem;
  line-height: 1.3684210526;
  font-weight: 400;
  margin-bottom: 1.7rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt h5 {
    font-size: 2.4rem;
    line-height: 1.4583333333;
    margin-bottom: 4rem;
  }
}

.page-staff__content-txt p {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 400;
  margin-bottom: 5.6rem;
}

.page-staff__content-txt ul {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt ul {
    margin-bottom: 8rem;
  }
}

.page-staff__content-txt ul li {
  padding-left: 2.8rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
  position: relative;
}

.page-staff__content-txt ul li::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #2EA7E0;
  border-radius: 50%;
  position: absolute;
  top: 1.3rem;
  left: 0;
}

.page-staff__content-txt .img-box {
  max-width: 640px;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 768px) {
  .page-staff__content-txt .img-box {
    margin: 0 auto 8rem;
  }
}

.page-staff__content-txt .img-box span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.page-staff__post-btn {
  margin-top: 9rem;
}

.page-staff__post-btn a {
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-staff__post-btn a {
    font-size: 1.6rem;
  }
}

.page-staff__post-btn a .arrow::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-left.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
  margin-right: 1.2rem;
}

.page-staff__post-btn a:hover .arrow::before {
  background: url(../images/common/icon-circle-arrow-left-blue.png) no-repeat center center;
  background-size: contain;
}

/*//////////////////// page-staff /////////////////////////*/
.page-staff {
  padding: 7.5rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .page-staff {
    padding: 12rem 0 16rem;
  }
}

.page-staff__inner {
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .page-staff__inner {
    max-width: 1250px;
  }
}

.page-staff__content {
  position: relative;
}

.page-staff__ttl--column::after {
  display: block;
  margin-left: 0;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .page-staff__ttl--column::after {
    display: inline-block;
    margin-left: 1.6rem;
    margin-top: 0;
  }
}

.page-staff__ttl:nth-of-type(n+2) {
  margin-top: 6.4rem;
}
@media screen and (min-width: 768px) {
  .page-staff__ttl:nth-of-type(n+2) {
    margin-top: 16rem;
  }
}

.page-staff__lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3rem;
}
@media screen and (min-width: 768px) {
  .page-staff__lists {
    margin-top: 4.7rem;
  }
}

.page-staff__list {
  width: 47.6%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2.4rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-left: 4.6%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page-staff__list {
    width: 22.5%;
    border-radius: 4rem;
    padding: 2.4rem;
    margin-left: 3.3%;
  }
}

.page-staff__list:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .page-staff__list:nth-child(2n+1) {
    margin-left: 3.3%;
  }
}

@media screen and (min-width: 768px) {
  .page-staff__list:nth-child(4n+1) {
    margin-left: 0;
  }
}

.page-staff__list:nth-child(n+3) {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-staff__list:nth-child(n+3) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-staff__list:nth-child(n+5) {
    margin-top: 4rem;
  }
}

#taniyama-a img {
  border-radius: 50%;
}

.page-staff__list-text {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-staff__list-text {
    margin-top: 2.4rem;
  }
}

.page-staff__list-text-jp {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-staff__list-text-jp {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.page-staff__list-text-en {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 0.4rem;
  text-transform: capitalize;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .page-staff__list-text-en {
    margin-top: 0.2rem;
  }
}

.page-staff__list-text-job {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) {
  .page-staff__list-text-job {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }
}

.page-staff__modal .modal-container {
  background-color: #fff;
  max-width: 358px;
  padding: 3.2rem 2.4rem;
  width: 95.4%;
  border-radius: 2.4rem;
  box-shadow: 0 3px 40px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .page-staff__modal .modal-container {
    max-width: 720px;
    padding: 4rem;
  }
}

.page-staff__modal .modal-close {
  max-width: 2rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .modal-close {
    max-width: 2.4rem;
    top: 3.2rem;
    right: 3.2rem;
  }
}

.page-staff__modal .modal-close img {
  width: 100%;
}

.page-staff__modal .detail-staff {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .detail-staff {
    display: flex;
  }
}

.page-staff__modal .staff-img {
  max-width: 12rem;
  margin: 0 auto;
  width: 100%;
  padding-top: 38.7096774194%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .staff-img {
    max-width: 20rem;
    padding-top: 31.25%;
    height: 100%;
    margin: 0;
  }
}

.page-staff__modal .staff-img img {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-staff__modal .detail-text {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .detail-text {
    margin-top: 0;
    margin-left: 4rem;
  }
}

.page-staff__modal .text-sns img {
  width: 4rem;
}

.page-staff__modal .text-job {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-job {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.page-staff__modal .text-name {
  margin-top: 0.8rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4583333333;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-name {
    font-size: 3.2rem;
    line-height: 1.4375;
    margin-top: 1.6rem;
  }
}

.page-staff__modal .alpha {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4166666667;
  display: block;
  text-transform: capitalize;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .alpha {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.page-staff__modal .text-catch {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4583333333;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-catch {
    font-size: 2.4rem;
    margin-top: 3.3rem;
  }
}

.page-staff__modal .text-keireki {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-keireki {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1.7rem;
  }
}

.page-staff__modal .text-comm {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-comm {
    margin-top: 3.2rem;
  }
}

.page-staff__modal .text-comm dt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-comm dt {
    font-size: 2rem;
    line-height: 1.45;
  }
}

.page-staff__modal .text-comm dd {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-staff__modal .text-comm dd {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1.6rem;
  }
}

.page-staff__modal .text-sns {
  margin-top: 2.4rem;
}

@media screen and (min-width: 768px) {
  .page-staff__list:hover .modal-open {
    opacity: 0.8;
  }
}

/*//////////////////// page-tips__post /////////////////////////*/
.page-tips__post-inner {
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .page-tips__post-inner {
    max-width: 850px;
  }
}

.page-tips__content-ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 0.8rem;
  margin-bottom: 2.2rem;
}
@media screen and (min-width: 768px) {
  .page-tips__content-ttl {
    font-size: 4rem;
    margin-bottom: 4.4rem;
  }
}

.page-tips__content-img {
  width: 100%;
  padding-top: 62.625%;
  position: relative;
}

.page-tips__content-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-tips__content-txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4444444444;
}
@media screen and (min-width: 768px) {
  .page-tips__content-txt {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}

.page-tips__content-txt p {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 3.2rem;
}

.page-tips__content-txt h2 {
  font-size: 2.8rem;
  line-height: 1.4285714286;
  font-weight: 400;
  margin-bottom: 3rem;
  border-bottom: 1px solid #2EA7E0;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .page-tips__content-txt h2 {
    font-size: 4rem;
    line-height: 1.45;
    margin-bottom: 4.3rem;
    padding-bottom: 1.7rem;
  }
}

.page-tips__content-txt a {
  color: #2EA7E0;
  display: inline-block;
  word-break: break-all;
}

.page-tips__content-txt .txt-marker {
  background-image: linear-gradient(transparent 50%, #f4f597);
}

.page-tips__content-txt dl {
  margin: 8rem 0;
}

.page-tips__content-txt dt {
  font-weight: 400;
  margin-bottom: 1.6rem;
}

.page-tips__content-txt dd {
  background: #f9f9f9;
  padding: 2.4rem;
  margin-bottom: 3.2rem;
  line-height: 2.1;
}

.page-tips__content-txt table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-word;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  background: #FFF;
}

.page-tips__content-txt ol {
  margin: 8rem 0;
  padding: 0;
}

.page-tips__content-txt ol li {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  counter-increment: number;
  line-height: 2.1;
}

.page-tips__content-txt ol li::before {
  content: counter(number) ".";
  margin-right: 0.5rem;
  color: #2EA7E0;
}

.page-tips__post-btn {
  margin-top: 5.6rem;
}
@media screen and (min-width: 768px) {
  .page-tips__post-btn {
    margin-top: 9.6rem;
  }
}

.page-tips__content #toc_container {
  background: #F5F5F5;
  border: none;
  margin: 3.2rem 0;
  padding: 1.6rem;
  width: 100% !important;
  border-radius: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-tips__content #toc_container {
    margin: 8rem 0;
    padding: 4rem;
    border-radius: 4rem;
  }
}

.page-tips__content #toc_container .toc_title {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .page-tips__content #toc_container .toc_title {
    font-size: 2rem;
  }
}

.page-tips__content #toc_container a {
  color: #2EA7E0 !important;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-tips__content #toc_container a {
    font-size: 1.8rem;
  }
}

.page-tips__content #toc_container .toc_list {
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .page-tips__content #toc_container .toc_list {
    padding-left: 1.6rem;
  }
}

.page-tips__content #toc_container .toc_list ul {
  margin-left: 1em;
  margin-top: 1.1rem;
}

.page-tips__content #toc_container .toc_list li {
  padding-left: 2.2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-tips__content #toc_container .toc_list li {
    padding-left: 2.8rem;
  }
}

.page-tips__content #toc_container .toc_list li::before {
  content: "●";
  display: inline-block;
  font-size: 1.2rem;
  color: #2EA7E0;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.page-tips__content #toc_container .toc_list li + li {
  margin-top: 1.1rem;
}

.page-tips__content #toc_container .toc_list .toc_number {
  display: none;
}

.page-tips__cat-list .ttl {
  font-size: 2rem;
  line-height: 1.4583333333;
  font-weight: 400;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2EA7E0;
}
@media screen and (min-width: 768px) {
  .page-tips__cat-list .ttl {
    font-size: 1.8rem;
    padding-bottom: 1.7rem;
  }
}

.page-tips__cat-list .list .item {
  border-bottom: 1px solid #E0E0E0;
}

.page-tips__cat-list .list .item a {
  color: #2EA7E0;
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 0.8rem 0;
}
@media screen and (min-width: 768px) {
  .page-tips__cat-list .list .item a {
    font-size: 1.8rem;
    padding: 1.6rem 0;
  }
}

.page-tips__pikup-list {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .page-tips__pikup-list {
    margin-top: 8rem;
  }
}

.page-tips__pikup-list .ttl {
  font-size: 2rem;
  line-height: 1.4583333333;
  font-weight: 400;
  padding: 1rem;
  border-bottom: 1px solid #2EA7E0;
}
@media screen and (min-width: 768px) {
  .page-tips__pikup-list .ttl {
    font-size: 1.8rem;
    padding-bottom: 1.7rem;
  }
}

.sidebar-post__item {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item {
    margin-top: 0;
  }
}

.sidebar-post__item a {
  padding: 1.6rem 0;
  border-bottom: 1px solid #E0E0E0;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item a {
    display: flex;
    justify-content: space-between;
  }
}

.sidebar-post__item-img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item-img {
    width: 37.5%;
  }
}

.sidebar-post__item-img img {
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.sidebar-post__item-text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item-text {
    width: 58%;
    margin-top: 0;
  }
}

.sidebar-post__item-info {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item-info {
    display: block;
  }
}

.sidebar-post__item-date {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item-date {
    font-size: 1.2rem;
  }
}

.sidebar-post__item-cat {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.42em 0.75em;
  background-color: #F5F5F5;
  border-radius: 50vh;
  margin-left: 0.4rem;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item-cat {
    font-size: 1rem;
    margin-left: 0;
  }
}

.sidebar-post__item-ttl {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4583333333;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .sidebar-post__item-ttl {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
  }
}

pre.lang\:default.decode\:true {
  background-color: #F5F5F5;
  padding: 2rem 2.4rem 2.4rem;
  white-space: normal;
}

.page-tips__content-txt p > img {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

/*//////////////////// page-tips /////////////////////////*/
@media screen and (min-width: 768px) {
  .page-tips__wrapper {
    display: flex;
    justify-content: space-between;
  }
}

.page-tips__inner {
  padding: 4rem 2rem 8rem;
}
@media screen and (min-width: 768px) {
  .page-tips__inner {
    padding: 2rem 0 16rem;
    max-width: 1000px;
    margin-bottom: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .page-tips__main {
    width: 66.66%;
  }
}

.page-tips__sidebar {
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .page-tips__sidebar {
    width: 27%;
    margin-top: 0;
  }
}

.page-tips__list {
  border-top: 1px solid #E0E0E0;
}

.page-tips__list:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.page-tips__list a {
  padding: 2rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-tips__list a {
    padding: 4rem 0;
    display: flex;
  }
}

.page-tips__list-img {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-top: 56%;
}
@media screen and (min-width: 768px) {
  .page-tips__list-img {
    width: 30%;
    padding-top: 19.625%;
  }
}

.page-tips__list-img img {
  border-radius: 2.4rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.page-tips__list-text {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-tips__list-text {
    margin-top: 0;
    margin-left: 2.4rem;
    width: 67%;
  }
}

.page-tips__list-info {
  display: flex;
  align-items: center;
}

.page-tips__list-date {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #999999;
}
@media screen and (min-width: 768px) {
  .page-tips__list-date {
    font-size: 1.6rem;
  }
}

.page-tips__list-cat {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.42em 0.75em;
  background-color: #F5F5F5;
  border-radius: 50vh;
  margin-left: 0.6rem;
}
@media screen and (min-width: 768px) {
  .page-tips__list-cat {
    font-size: 1.4rem;
    margin-left: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
}

.page-tips__list-ttl {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4583333333;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .page-tips__list-ttl {
    font-size: 2rem;
  }
}

.page-tips__tax-name {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-tips__tax-name {
    font-size: 4.8rem;
    margin-bottom: 5rem;
  }
}

/*//////////////////// page-value /////////////////////////*/
.value {
  background: #f4fcff;
}

.value__inner {
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .value__inner {
    padding-top: 13rem;
  }
}

.value__ttl.common__ttl::after {
  display: block;
  margin-left: 0;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .value__ttl.common__ttl::after {
    display: inline-block;
    margin-top: 0;
  }
}

.value__lists {
  margin-top: 3.2rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .value__lists {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8rem;
    padding-bottom: 13rem;
    justify-content: space-between;
  }
}

.value__list {
  width: 100%;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 1.6rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .value__list {
    width: 48%;
    margin-left: 3.33%;
    padding: 4.4rem 4rem;
    height: 28rem;
    margin-left: 3.33%;
  }
}

@media screen and (min-width: 768px) {
  .value__list:nth-child(2n+1) {
    margin-left: 0;
  }
}

.value__list-text-num {
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .value__list-text-num {
    width: 4rem;
    height: 4rem;
    font-size: 2.8rem;
  }
}

.value__list-text-num::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
}

.value__list-text-ttl {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
  text-align: center;
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .value__list-text-ttl {
    font-size: 2.8rem;
    margin: 1.5rem 0 1rem;
    text-align: left;
    line-height: 1.3;
  }
}

.value__list-text-sbttl {
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .value__list-text-sbttl {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*//////////////////// page-vision /////////////////////////*/
.page-vision {
  padding: 0 0 6.4rem;
}

.page-vision__inner {
  max-width: 54rem;
}
@media screen and (min-width: 768px) {
  .page-vision__inner {
    max-width: 125rem;
  }
}

.page-vision__ttl.common__ttl::after {
  display: block;
  margin-top: 0.6rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .page-vision__ttl.common__ttl::after {
    display: inline-block;
    margin-top: 0;
    margin-left: 1.6rem;
  }
}

.page-vision__img {
  margin-top: 4rem;
}

.page-vision__img {
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

/*//////////////////// page-works /////////////////////////*/
.page-works {
  padding: 1.6rem 0;
}
@media screen and (min-width: 768px) {
  .page-works {
    padding: 2.5rem 0 16rem;
  }
}

.page-works__inner {
  margin-bottom: 8rem;
}

.page-works__txt {
  font-weight: 400;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .page-works__txt {
    font-size: 1.8rem;
    height: 76px;
  }
}

.page-works__ttl {
  padding-top: 4rem;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .page-works__ttl {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 6.4rem;
    padding-top: 8.1rem;
  }
}

.page-works__ttl::after {
  text-transform: none;
}

.page-works__ttl:nth-of-type(2) {
  padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  .page-works__ttl:nth-of-type(2) {
    padding-top: 12rem;
  }
}

.page-works__lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-works__lists {
    margin-top: 3rem;
  }
}

.page-works__list {
  min-height: 28.7rem;
}
@media screen and (min-width: 768px) {
  .page-works__list {
    width: 40%;
    min-width: initial;
    margin-left: 3.3%;
  }
}

.page-works__list + .page-works__list {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-works__list + .page-works__list {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-works__list:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .page-works__list:nth-child(n+4) {
    margin-top: 4rem;
  }
}

.page-works__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.2rem 1rem 2.5rem;
  width: 100%;
  height: 100%;
  min-height: 28.7rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 2.4rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .page-works__list a {
    padding: 6.4rem 4rem 4rem;
    border-radius: 4rem;
  }
}

.page-works__list-img {
  width: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-works__list-img {
    margin-bottom: 2.4rem;
  }
}

.page-works__list-img img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .page-works__list-img img {
    height: auto;
  }
}

.page-works__list-img .page-works__list-txt-box {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .page-works__list-img .page-works__list-txt-box {
    margin-top: 2.6rem;
  }
}

.page-works__list-ttl {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-works__list-ttl {
    font-size: 1.9rem;
  }
}

.page-works__list-txt {
  max-width: 90%;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 1.6rem;
  white-space: normal;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .page-works__list-txt {
    font-size: 1.6rem;
    margin-top: 2.4rem;
    line-height: 1.75;
    max-width: 29.3rem;
    margin-bottom: 2.4rem;
  }
}

.page-works__list-btn {
  max-width: 80%;
  display: flex;
  align-items: center;
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .page-works__list-btn {
    max-width: 100%;
    margin-top: auto;
    align-self: flex-start;
  }
}

.page-works__list-btn .btn-arrow::before {
  content: "";
  display: block;
  width: 3rem;
  height: 4rem;
  background: url(../images/common/icon-circle-arrow-link-blue.png) no-repeat center center;
  background-size: contain;
  margin-right: 0.8rem;
  transition: all 0.3s;
  color: #2EA7E0;
}

.page-works__list a:hover .page-works__list-btn .btn-arrow::before {
  background: url(../images/common/icon-circle-arrow-link-blue-hover.png) no-repeat center center;
  background-size: contain;
}

.page-works__list-btn p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

/*//////////////////// pagetop /////////////////////////*/
.pagetop {
  display: none;
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 3.2rem;
    bottom: 3.2rem;
  }
}

.pagetop a {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background: url(../images/common/icon-page-top.png) no-repeat center center;
  background-size: cover;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  transition: all 0.3s;
}

.pagetop a:hover {
  background: url(../images/common/icon-page-top-blue.png) no-repeat center center;
  background-size: cover;
}

/*//////////////////// pagination /////////////////////////*/
.pagination {
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  transition: all 0.4s;
  margin: 0 0.8rem;
}

.pagination .page-numbers.current {
  background: #2EA7E0;
  font-weight: 900;
  color: #fff;
}

.pagination .prev:hover {
  background-color: #2EA7E0;
}

.pagination .next {
  background-color: #2EA7E0;
}

.pagination .prev img,
.pagination .next img {
  max-width: 1.4rem;
  display: block;
  position: relative;
  z-index: 10;
}

/* 投稿ナビゲーションを非表示 */
.screen-reader-text {
  display: none;
}

/*//////////////////// pc-nav /////////////////////////*/
.pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-nav {
    display: block;
  }
}

.pc-nav-items {
  display: flex;
  align-items: center;
}

.pc-nav-item {
  padding: 0 clamp(5px, 0.75vw, 12px);
}

.pc-nav-item a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.pc-nav-item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.8rem;
  background-color: transparent;
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  pointer-events: none;
}

.pc-nav-item:not(.drop-menu) a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #2EA7E0;
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.pc-nav-item a:hover::after,
.pc-nav-item a.current::after {
  width: 100%;
}

.pc-nav-item:last-child a::after {
  content: none;
}

.pc-nav-item.drop-menu {
  padding-right: 3.2rem;
  position: relative;
}

.pc-nav-item.drop-menu::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/common/arrow-black.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
}

.pc-nav-item.contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  background-color: #2EA7E0;
  border-radius: 50%;
  margin-left: 1.2rem;
}

.pc-nav-item .icon-contact {
  display: block;
  max-width: 2.4rem;
}

.header.headerColorScroll .pc-nav-item:not(.pc-nav-item:last-child) a {
  color: 900;
}

/*//////////////////// scroll-padding /////////////////////////*/
#corporateData,
#q_a {
  scroll-padding-top: 8.4rem;
}
@media screen and (min-width: 768px) {
  #corporateData,
  #q_a {
    scroll-padding-top: 10rem;
  }
}

/*//////////////////// sp-nav /////////////////////////*/
.sp-nav {
  display: block;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translateY(-100%);
  overflow-y: scroll;
  transition: ease 0.5s;
  padding: 10.4rem 4rem 0;
}

.sp-nav.active {
  display: block;
  visibility: visible;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: translateY(0%);
  visibility: visible;
  z-index: 10;
}

.sp-nav__lists {
  width: 100%;
  height: 100%;
}

.sp-nav__list,
.sp-nav__list-in li {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.sp-nav__list:first-child {
  margin-top: 0;
}

.sp-nav__list a,
.sp-nav__list-in a {
  display: block;
  width: 100%;
}

.sp-nav__list-in li {
  padding-left: 3.2rem;
  position: relative;
}

.sp-nav__list-in li::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  background-color: #999999;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sp-nav__list.contact a {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
  background-color: #2EA7E0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 1.4rem 1rem;
  border-radius: 50vh;
  margin-top: 4rem;
}

.sp-nav__list .icon-contact {
  display: block;
  width: 2rem;
  margin-right: 0.8rem;
}

/*//////////////////// sub-common__btn /////////////////////////*/
.sub-common__btn a {
  display: flex;
  align-items: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .sub-common__btn a {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-common__btn a .arrow {
    width: 4rem;
    margin-right: 1.6rem;
  }
}

/*//////////////////// swiper-controller /////////////////////////*/
.swiper-controller {
  position: relative;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0;
  height: 40px;
  width: auto;
}

/* 前へ次への矢印カスタマイズ */
.swiper-controller .swiper-button-prev,
.swiper-controller .swiper-button-next {
  height: 32px;
  width: 32px;
  position: static;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .swiper-controller .swiper-button-prev,
  .swiper-controller .swiper-button-next {
    height: 40px;
    width: 40px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-controller .swiper-button-prev:after,
.swiper-controller .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 32px;
  margin: auto;
  width: 32px;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .swiper-controller .swiper-button-prev:after,
  .swiper-controller .swiper-button-next:after {
    height: 40px;
    width: 40px;
  }
}

/* 前への矢印カスタマイズ */
.swiper-controller .swiper-button-prev:after {
  background-image: url(../images/common/icon-circle-arrow-left.png);
}

.swiper-controller .swiper-button-prev:hover::after {
  background-image: url(../images/common/icon-circle-arrow-left-blue.png);
}

/* 次への矢印カスタマイズ */
.swiper-controller .swiper-button-next:after {
  background-image: url(../images/common/icon-circle-arrow-right.png);
}

.swiper-controller .swiper-button-next:hover::after {
  background-image: url(../images/common/icon-circle-arrow-right-blue.png);
}

/*//////////////////// top-about /////////////////////////*/
.top-about {
  margin: 3rem 0 4.4rem;
  padding: 3rem 0 4.4rem;
}
@media screen and (min-width: 768px) {
  .top-about {
    margin: 0;
    padding: 10rem 0 10rem;
  }
}

.top-about__block-ttl {
  margin-bottom: 0.8rem;
}

.top-about__block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .top-about__block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3.2rem;
  }
}

.top-about__block-sub-ttl {
  font-weight: 400;
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .top-about__block-sub-ttl {
    order: unset;
    font-size: 1.8rem;
  }
}

.top-about__block-btn {
  display: flex;
  font-size: 2.6rem;
  color: #2EA7E0;
}
@media screen and (min-width: 768px) {
  .top-about__block-btn {
    margin-top: 4.4rem;
  }
}

.top-about__block-btn a {
  width: 45%;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.top-about__block-btn a::after {
  content: "";
  display: inline-block;
  width: 2.88rem;
  height: 2.24rem;
  background: url(../images/common/icon-arrow-right-white.png) no-repeat center;
  background-size: 16px;
}
@media screen and (min-width: 768px) {
  .top-about__block-btn a::after {
    width: 4rem;
    height: 2.4rem;
    background-size: 24px;
  }
}

@media screen and (min-width: 768px) {
  .top-about__block-right {
    margin-top: 4.4rem;
  }
}

/*//////////////////// top-blog-swiper /////////////////////////*/
.top-blog-swiper-container {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .top-blog-swiper-container-inner {
    margin: 0 auto;
  }
}

.top-blog-swiper-container .swiper {
  overflow: visible;
}

.top-blog-swiper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-blog-swiper {
    margin-top: 3rem;
  }
}

.top-blog-swiper .swiper-wrapper {
  height: auto;
  width: 100%;
}

.top-blog-swiper .swiper-slide {
  width: 100%;
}

.top-blog-swiper .swiper-slide {
  width: 24rem;
}
@media screen and (min-width: 768px) {
  .top-blog-swiper .swiper-slide {
    width: 30rem;
  }
}

.top-blog-swiper .swiper-slide a {
  height: 100%;
  width: 100%;
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/*//////////////////// top-blog /////////////////////////*/
.top-blog {
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .top-blog {
    padding: 6rem 0;
  }
}

.top-blog__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .top-blog__head {
    align-items: center;
  }
}

.top-blog__ttl {
  margin-bottom: 3.2rem;
}

.top-blog__ttl.common__ttl::after {
  display: block;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .top-blog__ttl.common__ttl::after {
    display: inline-block;
    margin-top: 0;
  }
}

.top-blog__btn {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-blog__btn {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-blog__btn.common__btn .btn-arrow {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 50vh;
  }
}

.top-blog-content {
  margin-top: 3.2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-blog-content {
    margin-top: 5rem;
  }
}

.top-blog__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top-blog__list-img {
  width: 100%;
}

.top-blog__list-img img {
  width: 100%;
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-blog__list-img img {
    border-radius: 1.6rem;
  }
}

.top-blog__list-body {
  margin-top: 0.8rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-blog__list-body {
    margin-top: 1.6rem;
  }
}

.top-blog__list-info {
  display: flex;
  align-items: center;
}

.top-blog__list-date {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .top-blog__list-date {
    font-size: 1.6rem;
  }
}

.top-blog__list-category {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 0.8rem;
  border-radius: 50vh;
  background-color: #F5F5F5;
  padding: 0.42em 0.85em;
}
@media screen and (min-width: 768px) {
  .top-blog__list-category {
    font-size: 1.4rem;
  }
}

.top-blog__list-ttl {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .top-blog__list-ttl {
    font-size: 1.6rem;
  }
}

.top-blog__list-txt {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4615384615;
  margin-top: 1.6rem;
  white-space: normal;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-blog__list-txt {
    font-size: 1.6rem;
    margin-top: 2.4rem;
    line-height: 1.75;
    max-width: 29.3rem;
    margin-bottom: 2.4rem;
  }
}

.top-blog__list-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.top-blog__list-btn .btn-arrow {
  display: inline-block;
  width: 4rem;
  margin-right: 0.8rem;
}

.top-blog__list-btn p {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

/*//////////////////// top-culture /////////////////////////*/
.top-culture {
  padding: 3rem 0 5.6rem;
}
@media screen and (min-width: 768px) {
  .top-culture {
    padding: 6rem 0;
  }
}

.top-culture__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*//////////////////// top-link /////////////////////////*/
.top-link {
  background: linear-gradient(0deg, rgb(46, 167, 224) 0%, rgb(78, 139, 228) 100%);
  padding: 3.2rem 0;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .top-link {
    padding: 6.4rem 0;
  }
}

@media screen and (min-width: 768px) {
  .top-link__content-lists {
    display: flex;
    justify-content: space-between;
  }
}

.top-link__content-list {
  height: 12.2rem;
}
@media screen and (min-width: 768px) {
  .top-link__content-list {
    height: 24rem;
    width: 48.3%;
  }
}

.top-link__content-list + .top-link__content-list {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-link__content-list + .top-link__content-list {
    margin-top: 0;
  }
}

.top-link__content-list > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3.2rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .top-link__content-list > a {
    border-radius: 4rem;
  }
}

.top-link__content-list > a:hover {
  background-color: #fff;
  color: #2EA7E0;
  opacity: 1;
}

.top-link__content-list-ttl {
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  transition: font-size 0.3s ease, line-height 0.3s ease;
  font-size: 3.2rem;
  line-height: 1.34375;
}
@media screen and (min-width: 768px) {
  .top-link__content-list-ttl {
    font-size: 4.8rem;
    line-height: 1.3125;
  }
}

@media screen and (min-width: 768px) {
  .top-link__content-list > a:hover .top-link__content-list-ttl {
    font-size: 5.6rem;
    line-height: 1.2857142857;
  }
}

.top-link__content-list-txt {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .top-link__content-list-txt {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}

.top-link__content-list-btn {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-link__content-list-btn {
    margin-top: 3.4rem;
    font-size: 1.6rem;
  }
}

.top-link__content-list-btn .btn-arrow {
  max-width: 4rem;
  margin-right: 0.8rem;
}
@media screen and (min-width: 768px) {
  .top-link__content-list-btn .btn-arrow {
    max-width: 4.8rem;
    margin-right: 1.6rem;
  }
}

.top-link__inner a:hover {
  color: #2EA7E0;
  opacity: 1;
}

.top-link__btn:hover {
  background-color: #fff;
  opacity: 1;
}

.top-link__btn {
  display: block;
  justify-content: space-between;
  padding: 1.6rem;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  .top-link__btn {
    display: flex;
    padding: 5rem;
  }
}

.top-link__list-ttl {
  width: 80%;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .top-link__list-ttl {
    width: 30%;
    font-size: 3rem;
  }
}

.top-link__list-ttl::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/icon-arrow-right-white.png) no-repeat center;
  background-size: 17px;
}
@media screen and (min-width: 768px) {
  .top-link__list-ttl::after {
    display: none;
  }
}

.top-link__list-ttl span {
  display: block;
  font-size: 1.3rem;
}

.top-link__box-txt {
  width: 100%;
  line-height: 1.5;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .top-link__box-txt {
    width: 66%;
    line-height: 1.8;
    font-size: 1.6rem;
  }
}

.top-link__btn::after {
  content: "";
  width: 4rem;
  background: url(../images/common/icon-arrow-right-white.png) no-repeat center;
}

/*//////////////////// top-message /////////////////////////*/
.top-message {
  padding: 6.4rem 0;
  background: url(../images/common/sp-bg-message.png) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .top-message {
    background: url(../images/common/pc-bg-message.png) no-repeat center center;
    background-size: cover;
    padding: 15.7rem 0 19rem;
  }
}

.top-message__ttl {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .top-message__ttl {
    font-size: 4.8rem;
  }
}

.top-message__txt {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.45;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-message__txt {
    font-size: 3.2rem;
    margin-top: 5.7rem;
    line-height: 1.4375;
  }
}

/*//////////////////// top-news /////////////////////////*/
.top-news {
  padding: 5rem 2rem;
  background: linear-gradient(to left, #e0f4fd 0%, #f2fbff 100%);
}
@media screen and (min-width: 768px) {
  .top-news {
    padding: 6rem 0;
  }
}

.top-news__inner {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top-news__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 25px;
  }
}

.top-news__wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .top-news__wrap {
    display: block;
    width: 27.75%;
  }
}

.top-news__ttl {
  order: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .top-news__ttl {
    order: unset;
  }
}

.top-news__btn {
  margin: 0 auto;
  order: 3;
}
@media screen and (min-width: 768px) {
  .top-news__btn {
    order: unset;
    margin: 0;
  }
}

.top-news__btn a {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .top-news__btn--single {
    margin-top: 9.6rem;
  }
}

.top-news__content {
  margin: 2.4rem 0;
  order: 2;
}
@media screen and (min-width: 768px) {
  .top-news__content {
    width: 66.66%;
    max-width: 80rem;
    margin-top: 0;
    order: unset;
  }
}

.top-news__list {
  padding: 1.6rem 0;
  border-top: 1px solid #FFF;
}
@media screen and (min-width: 768px) {
  .top-news__list {
    padding: 2.4rem 0;
  }
}

.top-news__list:last-child {
  border-bottom: 1px solid #FFF;
}

.top-news__list-date {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  font-weight: 400;
  line-height: 1;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .top-news__list-date {
    font-size: 1.6rem;
  }
}

.top-news__list-ttl {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
  margin-top: 0.8rem;
  text-decoration: underline;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .top-news__list-ttl {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.top-news__list a:hover {
  opacity: 1;
}

.top-news__list a:hover .top-news__list-ttl {
  color: #666666;
  opacity: 1;
}

/*//////////////////// top-services /////////////////////////*/
.top-services {
  padding: 0 0 3rem;
}
@media screen and (min-width: 768px) {
  .top-services {
    padding: 0 0 6rem;
  }
}

.top-services__ttl {
  font-weight: 500;
  align-items: center;
}

.top-link__list-en {
  font-family: "Roboto Condensed", sans-serif;
}

.top-services__lists {
  margin-top: 2.4rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .top-services__lists {
    margin-top: 4.9rem;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 3.33%;
         column-gap: 3.33%;
    row-gap: 4rem;
    max-width: 100%;
  }
}

.top-services__list {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-services__list {
    height: 560px;
    width: 48%;
  }
}

.top-services__list + .top-services__list {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-services__list + .top-services__list {
    margin-top: 0;
  }
}

.top-services__list a {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: block;
  height: 38.8rem;
  padding: 2.4rem;
  border-radius: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-services__list a {
    padding: 4rem 4rem 5.4rem;
    border-radius: 4rem;
    height: 100%;
  }
}

.top-services__list:nth-child(1) a {
  background: url(../images/common/img-top-services01.png) no-repeat right 10%;
  background-size: cover;
}

.top-services__list:nth-child(2) a {
  background: #fff url(../images/common/img-top-services02.png) no-repeat right 16%;
  background-size: cover;
}

.top-services__list:nth-child(3) a {
  background: #fff url(../images/common/img-top-services03.png) no-repeat right 10%;
  background-size: cover;
}

.top-services__list:nth-child(4) a {
  background: #fff url(../images/common/img-top-services04.png) no-repeat right 4%;
  background-size: cover;
}

.top-services__list-inner {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  position: absolute;
  bottom: 3.8rem;
  width: 83%;
}
@media screen and (min-width: 768px) {
  .top-services__list-inner {
    font-size: 2.4rem;
    bottom: 5.4rem;
  }
}

.top-services__list-ttl {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4444444444;
  color: #2EA7E0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .top-services__list-ttl {
    font-size: 2.4rem;
  }
}

.top-services__list-num {
  display: block;
  font-size: 1.4rem;
  font-family: "Roboto Condensed", sans-serif;
}

.top-services__list-title-wrap {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.top-services__list-title {
  font-weight: 500;
  font-size: 2.4rem;
  width: 90%;
}

.top-services__arrow {
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-services__arrow {
    width: 2rem;
  }
}

.top-services__list-txt {
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-top: 1rem;
  max-width: 26rem;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  color: #666666;
}
@media screen and (min-width: 768px) {
  .top-services__list-txt {
    margin-top: 2.1rem;
    font-size: 1.6rem;
    line-height: 1.5;
    display: block;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .top-services__list:nth-child(2) .top-services__list-txt {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.top-services__list:nth-child(3) .top-services__list-txt {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .top-services__list:nth-child(3) .top-services__list-txt {
    margin-top: 2.1rem;
  }
}

.top-services__list-txt span {
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .top-services__list-txt span {
    margin-bottom: 0;
  }
}

.top-services__list:nth-child(3) .top-services__list-txt span {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .top-services__list:nth-child(3) .top-services__list-txt span {
    margin-bottom: 0;
  }
}

.top-services__list-btn {
  display: flex;
  align-items: center;
  font-weight: 400;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .top-services__list-btn {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}

.top-services__list:nth-child(2) .top-services__list-btn {
  margin-top: 1.3rem;
}
@media screen and (min-width: 768px) {
  .top-services__list:nth-child(2) .top-services__list-btn {
    margin-top: 2rem;
  }
}

.top-services__list-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #2EA7E0;
  border-radius: 50%;
  margin-right: 0.8rem;
}
@media screen and (min-width: 768px) {
  .top-services__list-btn .arrow {
    width: 4rem;
    height: 4rem;
    margin-right: 1.2rem;
    transition: all 0.3s;
  }
}

.top-services__list-btn .arrow::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.2rem;
  background: url(../images/common/icon-arrow-right.png) no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
}

.top-services__list a:hover .top-services__list-btn .arrow {
  background-color: #2EA7E0;
}

.top-services__list a:hover .top-services__list-btn .arrow::before {
  background: url(../images/common/icon-arrow-right-white.png) no-repeat center center;
  background-size: contain;
}

.top-services__btn {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-services__btn {
    margin-top: 4.8rem;
  }
}

/*//////////////////// top-vision /////////////////////////*/
.top-vision {
  padding: 12rem 0;
  background: #000 url(../images/common/sp-bg-vision.png);
  background-position: right center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-vision {
    padding: 16rem 0;
    background: #000 url(../images/common/bg-vision.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.top-vision__ttl.common__ttl {
  color: #fff;
}

.top-vision__txt-box {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-vision__txt-box {
    max-width: 59.5rem;
    margin-top: 2.5rem;
  }
}

.top-vision__txt {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .top-vision__txt {
    margin-top: 2.6rem;
    font-size: 1.6rem;
  }
}

.top-vision__btn {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-vision__btn {
    margin-top: 4rem;
  }
}

/*//////////////////// top-works-swiper /////////////////////////*/
.top-works-swiper-container {
  overflow: hidden;
}

.top-works-swiper-container-inner {
  padding: 0 5rem;
}
@media screen and (min-width: 768px) {
  .top-works-swiper-container-inner {
    max-width: 1440px;
    padding: 0 12rem;
    margin: 0 auto;
  }
}

.top-works-swiper-container .swiper {
  overflow: visible;
}

.top-works-swiper {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .top-works-swiper {
    margin-top: 5rem;
  }
}

.top-works-swiper .swiper-wrapper {
  height: auto;
  width: 100%;
}

.top-works-swiper .swiper-slide {
  width: 100%;
  height: auto;
  min-height: 28.7rem;
  padding: 6px 0;
}

.top-works-swiper .swiper-slide:not(.swiper-slide-visible) {
  pointer-events: none;
  opacity: 0.3;
}

.top-works-swiper .swiper-slide a {
  height: 100%;
  width: 100%;
}

/* 前へ次への矢印カスタマイズ */
.top-works-swiper .swiper-button-prev,
.top-works-swiper .swiper-button-next {
  height: 32px;
  width: 32px;
}
@media screen and (min-width: 768px) {
  .top-works-swiper .swiper-button-prev,
  .top-works-swiper .swiper-button-next {
    height: 48px;
    width: 48px;
  }
}

/* 前へ次への矢印カスタマイズ */
.top-works-swiper .swiper-button-prev:after,
.top-works-swiper .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 32px;
  margin: auto;
  width: 32px;
}
@media screen and (min-width: 768px) {
  .top-works-swiper .swiper-button-prev:after,
  .top-works-swiper .swiper-button-next:after {
    height: 48px;
    width: 48px;
  }
}

/* 前への矢印カスタマイズ */
.top-works-swiper .swiper-button-prev:after {
  background-image: url(../images/common/icon-back-arrow.png);
}

/* 次への矢印カスタマイズ */
.top-works-swiper .swiper-button-next:after {
  background-image: url(../images/common/icon-arrow-right.png);
}

/* 画像サイズ調整 */
.top-works-swiper .swiper-slide img {
  height: auto;
  width: 100%;
}

.top-works-swiper .swiper-button-prev {
  left: initial;
  right: calc(100% + 0.8rem);
}
@media screen and (min-width: 768px) {
  .top-works-swiper .swiper-button-prev {
    right: calc(100% + 4rem);
  }
}

.top-works-swiper .swiper-button-next {
  left: calc(100% + 0.8rem);
}
@media screen and (min-width: 768px) {
  .top-works-swiper .swiper-button-next {
    left: calc(100% + 4rem);
  }
}

/*//////////////////// top-works /////////////////////////*/
.top-works {
  padding: 3.2rem 0 3.4rem;
  background: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .top-works {
    padding: 6rem 0;
  }
}

.top-works__ttl.common__ttl {
  align-items: center;
}

.top-works__ttl.common__ttl::after {
  display: block;
}

.top-works__box {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin: 3rem auto;
}
@media screen and (min-width: 768px) {
  .top-works__box {
    display: flex;
    margin: 2.2rem auto;
  }
}

.top-works__box a {
  width: 40%;
}

.top-works__box-logo {
  background: #FFFFFF;
  border-radius: 1.6rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 7rem;
}

.top-works__box-txt {
  color: #666666;
  width: 100%;
  font-size: 1.4rem;
  padding: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .top-works__box-txt {
    width: 55%;
    font-size: 1.6rem;
  }
}

.top-works__btn {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .top-works__btn {
    margin-top: 4.8rem;
  }
}/*# sourceMappingURL=styles.css.map */