@charset "UTF-8";

*,*::before,*::after{box-sizing:border-box}
html,body,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,dt,dd,p,div,span,img,a,table,tr,th,td,figure{margin:0;padding:0;border:0;font-weight:500;font-size:100%;vertical-align:baseline;line-height:1.6}
header,footer,nav,section,article,main,aside,figure,figcaption{display:block}
ol,ul{list-style:none}
img{max-width:100%;width:100%;height:auto;vertical-align:middle}
a{color:inherit;text-decoration:none;display:block}
span{display:inline-block}
button{margin:0;padding:0;border:none;box-shadow:none;background:transparent;cursor:pointer;font:inherit}
input,select,textarea{font:inherit;color:inherit;vertical-align:top}

@font-face {
  font-family: "anzumoji";
  src: url("../fonts/APJapanesefont.ttf") format("truetype");
}
html {
  font-size: 62.5%;
  scroll-padding-top: 10rem;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 14rem;
  }
}

body {
  font-size: 1.6rem;
  font-family: "M PLUS Rounded 1c", serif;
  background: #fff;
  color: #454545;
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.overflow-hidden {
  overflow-x: hidden;
}

.inner {
  padding: 0 2rem;
  width: 100%;
  position: relative;
  margin: 0 auto;
  max-width: 60rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: none;
    padding: 0 3rem;
  }
}

.title-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.title {
  font-size: 2.6rem;
  color: #249BDD;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 3.8rem;
  }
}

.sub-title {
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #249BDD;
}
@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 1.8rem;
  }
}

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

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

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

.header {
  background: #fff;
  position: fixed;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  z-index: 100;
  padding: 1rem 1.3rem;
  border-radius: 1rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  transition: top .3s ease 0s;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0.9rem 5rem;
    top: 7.5rem;
    width: min(86.66666667%, 130rem);
  }
}
.header.js-position {
  top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .header.js-position {
    top: 2.5rem;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  position: relative;
}

.header__logo-box {
  display: flex;
  gap: 1.4rem;
}
@media screen and (min-width: 768px) {
  .header__logo-box {
    gap: 1.6rem;
    align-items: center;
  }
}

.header__logo {
  width: 7rem;
  flex-shrink: 0;
  display: table;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 12rem;
  }
}

.header__logo-link {
  display: table-cell;
  vertical-align: middle;
}

.header__title-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.header__sub-title {
  font-size: 0.9rem;
  color: #249BDD;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .header__sub-title {
    font-size: 1.2rem;
  }
}

.header__main-title {
  color: #249BDD;
  letter-spacing: 0.07em;
  font-weight: 800;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .header__main-title {
    font-size: 2.6rem;
  }
}

.header__bg {
  position: fixed;
  inset: 0;
  background: #E7F4FB;
  z-index: 5;
  transform: translateX(120%);
  transition: transform 0.5s;
}
.header__bg.active {
  transform: translateX(0%);
}

.header__nav {
  transform: translateX(120%);
  position: fixed;
  top: -4rem;
  left: -3.75rem;
  width: 100vw;
  height: 100vh;
  transition: transform 0.5s;
  z-index: 1;
  background: #E7F4FB;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav.active {
  transform: translateX(0%);
  overflow-y: scroll;
}
@media screen and (min-width: 1350px) {
  .header__nav {
    position: static;
    transform: none;
    height: inherit;
    padding: 0;
    width: auto;
  }
}

@media screen and (min-width: 1350px) {
  .header__list {
    display: flex;
    align-items: center;
    gap: 2.7rem;
    height: inherit;
  }
}

.header__list-item {
  text-align: center;
  margin-bottom: 5.1rem;
}
@media screen and (min-width: 1350px) {
  .header__list-item {
    text-align: left;
    margin: 0;
  }
}
.header__list-item a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #249BDD;
  transition: opacity 0.5s;
}
@media screen and (min-width: 1350px) {
  .header__list-item a {
    color: #454545;
    padding-right: 1.6rem;
    position: relative;
  }
}
@media screen and (min-width: 1350px) {
  .header__list-item a::after {
    content: "";
    position: absolute;
    right: 1px;
    top: 44%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.9rem;
    height: 0.9rem;
    border-right: 2px solid #454545;
    border-bottom: 2px solid #454545;
    transition: all 0.5s;
  }
}
@media (hover: hover) {
  .header__list-item a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .header__list-item a:active {
    opacity: 0.7;
  }
}
.header__list-item:nth-of-type(5) {
  margin-bottom: 0;
}
.header__list-item:nth-of-type(2) {
  display: block;
}
@media screen and (min-width: 1350px) {
  .header__list-item:nth-of-type(2) {
    display: none;
  }
}
.header__list-item:last-of-type {
  display: none;
}
@media screen and (min-width: 1350px) {
  .header__list-item:last-of-type {
    display: block;
  }
}
.header__list-item:last-of-type a {
  font-size: 3rem;
  font-weight: 800;
  color: #249BDD;
  padding-right: 0;
  letter-spacing: 0;
}
.header__list-item:last-of-type a::after {
  display: none;
}

.header__hamburger {
  width: 4.2rem;
  height: 3.3rem;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  z-index: 10;
  transform: translate(0, 5%);
}
@media screen and (min-width: 1350px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  width: 100%;
  height: 0.2rem;
  background: #249BDD;
  display: block;
  position: absolute;
  transition: all 0.4s;
  border-radius: 99.9rem;
}
.header__hamburger span:first-child {
  top: 0;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(2) {
  top: 0.9rem;
}
.header__hamburger span:nth-child(3) {
  top: 1.8rem;
  opacity: 0;
}
.header__hamburger.active {
  transform: translateX(0);
}
.header__hamburger.active span:first-of-type {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
.header__hamburger.active span:nth-of-type(2) {
  width: 0;
}
.header__hamburger.active span:last-of-type {
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
  opacity: 1;
}
.header__hamburger::after {
  content: "MENU";
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: #249BDD;
  letter-spacing: 0.015em;
  font-weight: 800;
  line-height: 1.3;
}
.header__hamburger.menu::after {
  content: "";
  display: none;
}

.main-view {
  padding: 2rem 2rem 0;
  height: 52rem;
  margin-bottom: 5.6rem;
}
@media screen and (min-width: 768px) {
  .main-view {
    padding: 4.5rem 4.5rem 0;
    height: 81rem;
    margin-bottom: 9.2rem;
  }
}

.main-view__wrap {
  border-radius: 4rem;
  overflow: hidden;
  height: 100%;
}

.main-view__background {
  background: url("../img/sp/mv-sp.png") no-repeat center center;
  background-size: cover;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .main-view__background {
    background: url("../img/pc/mv-pc.png") no-repeat center center;
    background-size: cover;
  }
}

.main-view__contents {
  position: absolute;
  top: 22.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 26rem);
}
@media screen and (min-width: 768px) {
  .main-view__contents {
    top: 34.1rem;
    width: min(100%, 53.5rem);
  }
}

.main-view__title {
  font-family: "anzumoji";
  font-size: 2.2rem;
  line-height: 1.5454;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: -0.4rem;
}
@media screen and (min-width: 768px) {
  .main-view__title {
    line-height: 1.4;
    font-size: 4.5rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .main-view__contents .main-view__title > span {
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) {
  .main-view__contents .main-view__title > span + span {
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) {
  .main-view__contents .main-view__title > span span {
    line-height: 1.4;
  }
}

@media screen and (min-width: 768px) {
  .main-view__contents .main-view__title > span + span span {
    line-height: 1.4;
  }
}

.main-view__lead {
  font-family: "anzumoji";
  font-size: 1.8rem;
  text-align: right;
  letter-spacing: 0.03em;
  font-weight: 400;
  padding-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .main-view__lead {
    font-size: 3.3rem;
    padding-right: 1.3rem;
  }
}

.news {
  margin-bottom: 5.4rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-bottom: 8.7rem;
  }
}

@media screen and (min-width: 768px) {
  .news__inner {
    max-width: 126.2rem;
  }
}

.news__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}
@media screen and (min-width: 1024px) {
  .news__wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .news__title-box {
    text-align: left;
    width: 11.4rem;
    flex-shrink: 0;
    margin: 0;
  }
}

@media screen and (min-width: 1024px) {
  .news__list {
    width: 100%;
    max-width: 85rem;
  }
}

.news__list-item {
  border-bottom: 1px solid #CCCCCC;
}
.news__list-item:first-of-type .news__list-link {
  padding-top: 0;
}

.news__list-link {
  display: flex;
  gap: 2rem;
  padding: 2rem 1.7rem 1.1rem;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .news__list-link {
    gap: 6.3rem;
    padding: 2.6rem 3.4rem 1.6rem;
  }
}
@media (hover: hover) {
  .news__list-link {
    /* hoverが使える端末 PC想定 */
  }
  .news__list-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .news__list-link {
    /* hoverが使えない端末 スマホ想定 */
  }
  .news__list-link:active {
    opacity: 0.7;
  }
}

.news__date {
  font-weight: 800;
  font-size: 1.5rem;
  width: 9.6rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 1.6rem;
  }
}

.news__text {
  font-size: 1.5rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .news__text {
    font-size: 1.8rem;
  }
}

.news__more {
  margin-top: 1.5rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .news__more {
    margin-top: 2.4rem;
  }
}
.news__more a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.2rem;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.5s;
}
@media screen and (min-width: 1350px) {
  .news__more a {
    font-size: 1.8rem;
    padding-right: 1.4rem;
  }
}
.news__more a::after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 46%;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #454545;
  border-bottom: 2px solid #454545;
}
@media (hover: hover) {
  .news__more a {
    /* hoverが使える端末 PC想定 */
  }
  .news__more a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .news__more a {
    /* hoverが使えない端末 スマホ想定 */
  }
  .news__more a:active {
    opacity: 0.7;
  }
}

.message {
  margin-bottom: 5.4rem;
}
@media screen and (min-width: 768px) {
  .message {
    margin-bottom: 11.4rem;
  }
}

@media screen and (min-width: 768px) {
  .message__inner {
    max-width: 108.5rem;
  }
}

.message__title-box {
  margin-bottom: 2.3rem;
}
@media screen and (min-width: 768px) {
  .message__title-box {
    margin-bottom: 3.5rem;
  }
}

.message__introduction + .message__introduction {
  margin-top: 3.7rem;
}
@media screen and (min-width: 768px) {
  .message__introduction + .message__introduction {
    margin-top: 6rem;
  }
}

.introduction {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
@media screen and (min-width: 768px) {
  .introduction {
    flex-direction: row;
    gap: 4.5rem;
  }
}

.message__image {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .message__image {
    width: 100%;
    max-width: 36rem;
    flex-shrink: 0;
  }
}

.message__contents {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .message__contents {
    padding-top: 2.7rem;
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .message__contents {
    padding-top: 6.7rem;
  }
}

.message__position {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .message__position {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
}

.message__name {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .message__name {
    font-size: 2.8rem;
    margin-bottom: 2.2rem;
  }
}

.message__text {
  font-size: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .message__text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .message__text + .message__text {
    margin-top: 2.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .message__text + .message__text {
    margin-top: 3.2rem;
  }
}

.products {
  margin-bottom: 5.2rem;
}
@media screen and (min-width: 768px) {
  .products {
    margin-bottom: 8.4rem;
  }
}

@media screen and (min-width: 768px) {
  .products__inner {
    max-width: 126rem;
  }
}

.products_title-box {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .products_title-box {
    margin-bottom: 5.5rem;
  }
}

.products__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-inline: 2.2rem;
}
@media screen and (min-width: 768px) {
  .products__list {
    gap: 1rem;
    margin-bottom: 4.5rem;
    padding-inline: 8.5rem;
  }
}

.products__list-item {
  width: calc(50% - 0.25rem);
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .products__list-item {
    width: calc(25% - 0.75rem);
  }
}

.products__text {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .products__text {
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
    letter-spacing: 0.05em;
  }
}

.products__lead {
  text-align: center;
  font-size: 1.5rem;
  color: #249BDD;
  margin-bottom: 0.9rem;
}
@media screen and (min-width: 768px) {
  .products__lead {
    font-size: 1.8rem;
    margin-bottom: 2.1rem;
  }
}

.products__box-tel {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .products__box-tel {
    gap: 1rem;
  }
}

.products__tel {
  font-size: 1.3rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .products__tel {
    font-size: 2.2rem;
  }
}
.products__tel:last-of-type a {
  font-size: 2.4rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .products__tel:last-of-type a {
    font-size: 3.6rem;
  }
}

.recruit {
  margin-bottom: 5.4rem;
}
@media screen and (min-width: 768px) {
  .recruit {
    margin-bottom: 8.8rem;
  }
}

@media screen and (min-width: 768px) {
  .recruit__inner {
    max-width: 126rem;
  }
}

.recruit__title-box {
  margin-bottom: 2.1rem;
}
@media screen and (min-width: 768px) {
  .recruit__title-box {
    margin-bottom: 3.5rem;
  }
}

.recruit__text {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 768px) {
  .recruit__text {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 4.4rem;
  }
}

.recruit__box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media screen and (min-width: 768px) {
  .recruit__box {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    max-width: 100rem;
    margin: 0 auto 5rem;
  }
}

.recruit__image {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto -0.3rem;
}
@media screen and (min-width: 768px) {
  .recruit__image {
    max-width: 47rem;
    margin: 0;
  }
}

.recruit__list {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .recruit__list {
    width: 100%;
    max-width: 50rem;
    margin-bottom: 0;
  }
}

.recruit__list-item {
  border-top: 1px solid #ccc;
  padding: 1.8rem 4.5rem 1.8rem 4.5rem;
}
@media screen and (min-width: 768px) {
  .recruit__list-item {
    padding: 7.4% 3.5rem 6.2% 9%;
  }
}
.recruit__list-item:last-of-type {
  border-bottom: 1px solid #ccc;
}

.recruit__list-wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .recruit__list-wrap {
    gap: min(8.2vw, 12.3rem);
    margin: 0;
  }
}

.recruit__list-wrap dt {
  font-size: 1.5rem;
  font-weight: 800;
  width: 6.5rem;
}
@media screen and (min-width: 768px) {
  .recruit__list-wrap dt {
    font-size: 1.8rem;
    width: 7.8rem;
  }
}

.recruit__list-wrap dd {
  font-size: 1.5rem;
  width: 15.65rem;
}
@media screen and (min-width: 768px) {
  .recruit__list-wrap dd {
    font-size: 1.8rem;
  }
}

.recruit__contact {
  line-height: 1.4667;
  text-align: center;
  width: min(100%, 27.8rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .recruit__contact {
    width: min(100%, 63.25rem);
  }
}
.recruit__contact a {
  color: #454545;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .recruit__contact a {
    font-size: 2.2rem;
    letter-spacing: 0.047em;
  }
}

.company {
  margin-bottom: 6.9rem;
}
@media screen and (min-width: 768px) {
  .company {
    margin-bottom: 9.6rem;
  }
}

@media screen and (min-width: 768px) {
  .company__inner {
    max-width: 126rem;
  }
}

.company_title-box {
  margin-bottom: 2.1rem;
}
@media screen and (min-width: 768px) {
  .company_title-box {
    margin-bottom: 3.2rem;
  }
}

.company__box {
  background: #E7F4FB;
  border-radius: 2.5rem;
  padding-block: 2.4rem 3.5rem;
  text-align: center;
  margin: 0 auto 3rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company__box {
    width: min(100%, 70rem);
    padding-block: 4.6rem 4.8rem;
    margin-bottom: 5rem;
  }
}

.company__creed {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #249BDD;
}
@media screen and (min-width: 768px) {
  .company__creed {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
  }
}

.company__creed-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.5556;
  color: #249BDD;
}
@media screen and (min-width: 768px) {
  .company__creed-text {
    font-size: 2.2rem;
  }
}

.company__text {
  font-size: 1.5rem;
}
.company__text + .company__text {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .company__text + .company__text {
    margin-top: 3.2rem;
    letter-spacing: 0.05em;
  }
}
.company__text:nth-of-type(4) {
  margin-bottom: 3.8rem;
}
@media screen and (min-width: 768px) {
  .company__text:nth-of-type(4) {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 1350px) {
  .company__text {
    font-size: 1.8rem;
  }
}

.company__image-box {
  overflow-x: scroll;
  width: 100%;
  margin-bottom: 2.6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company__image-box {
    margin-bottom: 3.2rem;
  }
}
.company__image-box:last-of-type {
  margin-bottom: 3.7rem;
}
@media screen and (min-width: 768px) {
  .company__image-box:last-of-type {
    margin-bottom: 5.3rem;
  }
}

.ps__rail-x {
  opacity: 1 !important;
  background: #fff;
}

.ps__thumb-x {
  background: #249BDD !important;
  height: 6px;
  border-radius: 999px;
}

.ps__rail-y {
  display: none !important;
}

.ps__thumb-y {
  display: none !important;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background: #249BDD;
  height: 6px;
  border-radius: 999px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  display: none !important;
}

.ps__rail-x:hover {
  background: #fff !important;
  opacity: 1 !important;
}

.ps__rail-x:focus {
  background: #fff !important;
  opacity: 1 !important;
}

.company__image {
  width: 100rem;
  margin-bottom: 2.3rem;
}
@media screen and (min-width: 768px) {
  .company__image {
    width: 120rem;
    margin-bottom: 1.6rem;
  }
}

.company__middle-title {
  font-size: 2rem;
  font-weight: 700;
  color: #249BDD;
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .company__middle-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
  }
}
.company__middle-title + .company__text {
  margin-bottom: 1.7rem;
}
@media screen and (min-width: 768px) {
  .company__middle-title + .company__text {
    margin-bottom: 3.1rem;
    letter-spacing: 0.05em;
    line-height: 1.65;
  }
}

.company__list {
  margin-bottom: 6.9rem;
}
@media screen and (min-width: 768px) {
  .company__list {
    margin-bottom: 7.1rem;
  }
}

.company__list-item + .company__list-item {
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .company__list-item + .company__list-item {
    margin-top: 2.8rem;
  }
}

.company__list-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .company__list-title {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
}

.company__list-text {
  letter-spacing: -0.02em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .company__list-text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .company__info-list {
    width: min(100%, 100rem);
    margin: 0 auto;
  }
}

.company__info-list-item {
  padding: 2.4rem 1.5rem 2.4rem 2.5rem;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .company__info-list-item {
    padding: 3.7rem 1.5rem 3.1rem 4.45rem;
  }
}
@media screen and (min-width: 768px) {
  .company__info-list-item dl {
    display: flex;
    gap: 6.8rem;
  }
}
.company__info-list-item dt {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: -0.1rem;
}
@media screen and (min-width: 768px) {
  .company__info-list-item dt {
    font-size: 1.8rem;
    width: 13.3rem;
  }
}
.company__info-list-item dd {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .company__info-list-item dd {
    font-size: 1.8rem;
  }
}
.company__info-list-item:last-of-type {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .company__inner-list {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .company__inner-ListItem {
    letter-spacing: 0.058em;
  }
}
@media screen and (min-width: 768px) {
  .company__inner-ListItem + .company__inner-ListItem {
    margin-top: 0.2rem;
  }
}

.footer {
  text-align: center;
  position: relative;
  aspect-ratio: 1950/360;
}
@media screen and (min-width: 768px) {
  .footer {
    aspect-ratio: 1500/276.47;
  }
}
.footer::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  aspect-ratio: 1950/360;
  left: 0;
  bottom: 0;
  background: url(../img/sp/wave-sp.png) bottom center/100% auto no-repeat #fff;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .footer::after {
    background: url(../img/pc/wave-pc.png) bottom center/100% auto no-repeat #fff;
    aspect-ratio: 1500/276.47;
  }
}
.footer small {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.2rem;
  font-size: 1rem;
  font-family: "Hiragino Sans", "MS Gothic";
  color: #fff;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer small {
    font-size: 1.4rem;
    bottom: 3.6rem;
  }
}

.news-archive,
.news-single {
  padding-block: 11rem 6rem;
}
@media screen and (min-width: 768px) {
  .news-archive,
.news-single {
    padding-block: 19.4rem 10rem;
  }
}

@media screen and (min-width: 768px) {
  .news-archive__inner {
    max-width: 91rem;
  }
}

.news-archive__title-box {
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .news-archive__title-box {
    margin-bottom: 6.3rem;
  }
}

.news-archive__list-item {
  border-bottom: 1px solid #ccc;
}
.news-archive__list-item:first-of-type .news-archive__list-link {
  padding-top: 0;
}

.news-archive__list-link {
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s;
  padding: 2rem 1.6rem 1rem;
}
@media screen and (min-width: 768px) {
  .news-archive__list-link {
    flex-direction: row;
    align-items: center;
    gap: 5.7rem;
    padding: 3rem 3.4rem 1.4rem;
  }
}
@media (hover: hover) {
  .news-archive__list-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .news-archive__list-link:active {
    opacity: 0.7;
  }
}





.news-archive__date {
  font-size: 1.5rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .news-archive__date {
    font-size: 1.6rem;
  }
}

.news-archive__text {
  font-size: 1.5rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .news-archive__text {
    font-size: 1.8rem;
    line-height: 1.6667;
  }
}

.btn {
  text-align: center;
  max-width: 16rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .btn {
    max-width: 24rem;
  }
}
.btn a {
  color: #fff;
  transition: opacity 0.5s;
  background: #249BDD;
  border-radius: 999px;
  text-align: center;
  font-size: 1.5rem;
  padding-block: 1.3rem;
}
@media screen and (min-width: 768px) {
  .btn a {
    padding-block: 1.6rem;
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .btn a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .btn a:active {
    opacity: 0.7;
  }
}

.news-archive__btn {
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .news-single__inner {
    max-width: 91rem;
  }
}

.news-single__title-box {
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .news-single__title-box {
    margin-bottom: 6.1rem;
  }
}

.news-single__wrap {
  border-bottom: 1px solid #249BDD;
  padding-inline: 1.7rem;
  padding-bottom: 1.4rem;
}
@media screen and (min-width: 768px) {
  .news-single__wrap {
    padding-inline: 3.5rem;
    padding-bottom: 1.8rem;
  }
}

.news-single__title {
  font-weight: 800;
  margin-bottom: 0.4rem;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .news-single__title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
}

.news-single__time {
  color: #249BDD;
  font-weight: 800;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .news-single__time {
    font-size: 1.6rem;
  }
}

.news-single__texts {
  padding-top: 2.8rem;
  padding-inline: 1.7rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .news-single__texts {
    padding-top: 3.6rem;
    padding-inline: 3.5rem;
    font-size: 1.8rem;
    line-height: 1.6667;
    letter-spacing: 0.05em;
  }
}

.news-single__btn {
  margin-top: 7.2rem;
}
@media screen and (min-width: 768px) {
  .news-single__btn {
    margin-top: 11.6rem;
  }
}


.news-archive__pager {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .news-archive__pager {
    gap: 1.5rem;
  }
}
.news-archive__pager a {
  width: 4rem;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #249BDD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .news-archive__pager a {
    width: 5rem;
  font-size: 1.5rem;
  }
}
.news-archive__pager a[href] {
  background-color: #E7F4FB;
  color: #249BDD;
  transition: background-color 0.5s, color 0.25s;
}
@media (hover: hover) {
  .news-archive__pager a[href]:hover {
    background-color: #249BDD;
    color: #fff;
  }
}
