@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

/* 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,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 11px;
}
/* @media (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
} */
/* @media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
} */
/* @media (max-width: 393px) {
  html {
    font-size: 2.5445292621vw;
  }
} */

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: inline-block;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.inner {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.inline-block {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .show-desktop {
    display: none;
  }
}

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

/*-------------------------------
about
-------------------------------*/
.about {
  margin-top: 12.7rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 11.8rem;
  }
}

.about__inner.inner {
  position: relative;
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .about__inner.inner {
    max-width: 50rem;
  }
}

.about__title {
  font-family: "Open Sans", sans-serif;
  font-size: 9.2rem;
  line-height: 1.2391304348;
  letter-spacing: 0.03em;
  font-weight: 800;
  color: #8dbace;
  text-transform: uppercase;
  position: absolute;
  top: -6.8rem;
  left: 20px;
  z-index: -1;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 7rem;
    line-height: 1.1142857143;
  }
}

@media screen and (max-width: 767px) {
  .about__text-wrap {
    padding-inline: 2rem;
  }
}

.about__text {
  margin-inline: auto;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-size: 1.6rem;
  line-height: 3.3125;
  font-weight: 500;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin: initial;
    line-height: 2.75;
  }
}

.about__button-wrapper {
  margin-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .about__button-wrapper {
    margin-top: 9.7rem;
  }
}

.about__button {
  margin: 0 auto;
}

.about__images-loop {
  margin-top: 4rem;
  display: flex;
  gap: 4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about__images-loop {
    margin-top: 9rem;
    gap: 0;
  }
}

.about__images-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex: 0 0 auto;
  animation: aboutLoop 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .about__images-list {
    width: 150%;
    flex-direction: column;
    animation: aboutLoopSp 14s linear infinite;
  }
}

@keyframes aboutLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-103%);
  }
}
@keyframes aboutLoopSp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.about__images-item:nth-child(1) {
  width: 26.7935578331%;
}
@media screen and (max-width: 767px) {
  .about__images-item:nth-child(1) {
    width: 33.2203389831%;
  }
}

.about__images-item:nth-child(2) {
  margin-top: 11.8rem;
  margin-left: 3rem;
  width: 42.2401171303%;
}
@media screen and (max-width: 767px) {
  .about__images-item:nth-child(2) {
    margin: 0 auto;
    margin-top: 2rem;
    width: 52.7118644068%;
  }
}

.about__images-item:nth-child(3) {
  margin-top: 5.9rem;
  margin-left: 4rem;
  width: 25.8418740849%;
}
@media screen and (max-width: 767px) {
  .about__images-item:nth-child(3) {
    margin-top: 2rem;
    margin-left: auto;
    width: 32.2033898305%;
  }
}

/*-------------------------------
contact
-------------------------------*/
.contact {
  padding-top: 10.5rem;
  padding-bottom: 9.6rem;
}
@media screen and (max-width: 1230px) {
  .contact {
    padding-top: 12.2rem;
    padding-bottom: 6rem;
  }
}

.contact__content {
  padding-block: 2.4rem 4rem;
  padding-inline: 5rem 0;
  display: flex;
  justify-content: space-between;
  color: #fff;
  background: #2251d6;
  background: linear-gradient(160deg, rgb(34, 81, 214) 0%, rgb(34, 81, 214) 15%, rgb(16, 40, 139) 55%, rgb(16, 40, 139) 100%);
}
@media screen and (max-width: 1230px) {
  .contact__content {
    padding-block: 2.4rem 5.8rem;
    padding-inline: 0;
    gap: 7.5rem;
    flex-direction: column;
  }
}

@media screen and (max-width: 1230px) {
  .contact__left {
    overflow: hidden;
  }
}

.contact__title {
  font-family: "Open Sans", sans-serif;
  font-size: 6.2rem;
  line-height: 1.2580645161;
  letter-spacing: 0.03em;
  font-weight: 800;
}
@media screen and (max-width: 1230px) {
  .contact__title {
    line-height: 1.1290322581;
    text-align: center;
  }
}

.contact__lead {
  margin-top: 1rem;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}
@media screen and (max-width: 1230px) {
  .contact__lead {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.3333333333;
    text-align: center;
  }
}

.contact__right {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 1230px) {
  .contact__right {
    width: 100%;
    gap: 5.2rem;
  }
}

.contact__tel-block {
  display: flex;
  gap: 8.6rem;
  align-items: flex-end;
}
@media screen and (max-width: 1230px) {
  .contact__tel-block {
    text-align: center;
    flex-direction: column;
    gap: 0.2rem;
  }
}

.contact__tel-text,
.contact__mail-text {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 500;
}

.contact__tel-text {
  padding-bottom: 0.7rem;
}
@media screen and (max-width: 1230px) {
  .contact__tel-text {
    width: 100%;
  }
}

.contact__tel-number {
  font-size: 3.8rem;
  line-height: 1.3684210526;
  font-weight: 700;
}
@media screen and (max-width: 1230px) {
  .contact__tel-number {
    width: 100%;
  }
}

.contact__mail-block {
  display: flex;
  align-items: center;
  gap: 12.5rem;
}
@media screen and (max-width: 1230px) {
  .contact__mail-block {
    flex-direction: column;
    gap: 1.7rem;
  }
}

/*-------------------------------
dummy
-------------------------------*/
/*-------------------------------
footer
-------------------------------*/
.footer {
  padding-block: 4.8rem;
  background-color: #f5f5f5;
}

.footer__content {
  color: #1f1f1f;
}

.footer__company {
  font-size: 3rem;
  line-height: 1.3666666667;
  font-weight: 500;
}

.footer__address {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 2.5625;
}

.footer__copyright {
  margin-top: 6.5rem;
  font-size: 1.2rem;
  line-height: 1;
}

/*-------------------------------
form
-------------------------------*/
.form {
  padding-bottom: 10rem;
  color: #1f1f1f;
}

.form__inner.inner {
  max-width: 80rem;
}

.form__lead {
  font-size: 1.6rem;
  line-height: 2.625;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__lead {
    text-align: left;
  }
}

.form__lead span {
  display: inline-block;
}

.form__body {
  margin-top: 5.4rem;
}

.form__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .form__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

.form__item + .form__item {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 1.6rem;
  }
}

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

.form__label label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form__label label {
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1.6rem;
    font-size: 1.6rem;
  }
}

.form__required {
  padding-block: 0.2rem;
  width: 5rem;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  letter-spacing: 0.09em;
  font-weight: 500;
  color: #fff;
  background-color: #f4833d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}

.form__item dd {
  width: 72.5%;
}
@media screen and (max-width: 767px) {
  .form__item dd {
    width: 100%;
  }
}

.form__input {
  padding: 1.2rem;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
  color: #1f1f1f;
  border-radius: 3px;
  border: 1px solid #B2B2B2;
}
@media screen and (max-width: 767px) {
  .form__input {
    padding: 1rem;
  }
}

.form__input.-zip {
  width: 16.2rem;
}
@media screen and (max-width: 767px) {
  .form__input.-zip {
    width: 100%;
  }
}

.form__zip {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form__zip-mark {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 500;
}

.form__tel {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form__tel {
    align-items: flex-start;
    flex-direction: column;
  }
}

.form__tel input {
  width: 100%;
  max-width: 29rem;
}
@media screen and (max-width: 767px) {
  .form__tel input {
    max-width: 100%;
  }
}

.form__note {
  padding-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .form__note {
    padding-left: 0;
  }
}

.form__item.-textarea {
  align-items: flex-start;
}

.form__item.-textarea .form__label {
  padding-top: 1.2rem;
}

.form__textarea {
  padding: 1rem;
  width: 100%;
  height: 22rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #1f1f1f;
  border-radius: 3px;
  border: 1px solid #B2B2B2;
}

.form__input:focus,
.form__textarea:focus {
  border: 2px solid #1742ba;
  outline: none;
}

.form__recaptcha {
  margin-top: 6.4rem;
}

.form__recaptcha img {
  margin-inline: auto;
}

.form__submit-wrap {
  margin-top: 7.4rem;
}

.form__submit {
  margin-inline: auto;
  width: 10rem;
}

.form__button {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/*-------------------------------
header
-------------------------------*/
.header {
  height: 8rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 6.2rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
}

.header__inner {
  padding-inline: 2rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-inline: 0;
    padding-left: 2rem;
  }
}

.header__logo {
  max-width: 6rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 4.6rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item--contact {
  margin-left: 1.5rem;
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 2rem;
  height: inherit;
  display: flex;
  align-items: center;
  /* font-size: 1.8rem; */
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3333333333;
  color: #333;
  text-transform: uppercase;
}

.header__nav-item a span {
  position: relative;
}

.header__nav-item a span::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  background-color: #1f1f1f;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.3s ease-out;
}

.header__nav-item--contact a {
  padding: 0.6rem 2.3rem 0.7rem;
  position: relative;
  height: initial;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3333333333;
  color: #fff;
  background-color: #1949ce;
  border-radius: 3rem;
  border: 2px solid #1949ce;
  transition: 0.3s ease-out;
  display: flex;
  align-items: center;
}

.header__nav-item--contact a::after {
  content: "";
  margin-top: 0.2rem;
  margin-left: 1rem;
  width: 2rem;
  height: 1.7rem;
  display: inline-block;
  transition: 0.3s ease-out;
  -webkit-mask-image: url(../images/icon-mail.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/icon-mail.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}

.header__nav-item a:hover {
  opacity: 1;
}

.header__nav-item a:hover span::after {
  transform: scaleX(1);
}

.header__nav-item--contact a:hover {
  opacity: 1;
  color: #1949ce;
  background-color: #fff;
}

.header__nav-item--contact a:hover::after {
  background-color: #1949ce;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 7rem;
  height: inherit;
  background-color: #1949ce;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 3rem;
  height: 3px;
  background-color: #fff;
  transition: 0.5s;
  border-radius: 1rem;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.7rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.7rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0.3rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.3rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  margin-top: 6.2rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 6.2rem);
  background-color: rgba(25, 73, 206, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header__drawer-nav {
  padding-block: 10rem;
}

.header__drawer-item a {
  padding: 1.5rem 1.5rem;
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.5rem;
  margin-left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-bottom {
  padding-block: 5rem;
  background-color: #f5f5f5;
}

.header__drawer-bottom-content {
  color: #1f1f1f;
}

.header__drawer-bottom-company {
  font-size: 3rem;
  line-height: 1.3666666667;
  font-weight: 500;
}

.header__drawer-bottom-address {
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 2.5625;
}

.header__drawer-bottom-copyright {
  margin-top: 7.2rem;
  font-size: 1.2rem;
  line-height: 1;
}

.modal {
  background-color: rgba(65, 65, 65, 0.74);
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .modal {
    padding-top: 6.2rem;
  }
}

.modal__content {
  margin: 0 auto;
  padding-block: 8rem;
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal__content {
    padding-block: 6rem;
  }
}

.modal__close-button {
  padding: 0;
  width: 4rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  margin: 0;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal__close-button {
    width: 3rem;
    top: 1.5rem;
    right: 2rem;
  }
}

.modal__close-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 40/40;
}

.modal__inner {
  margin: auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    max-width: 50rem;
  }
}

.modal__header {
  padding-bottom: 1.6rem;
  border-bottom: 0.8rem solid #f5f5f5;
}

.modal__label {
  font-size: 1.4rem;
  line-height: 1.3571428571;
  color: #666;
}

.modal__title {
  margin-top: 2.1rem;
  font-size: 3.7rem;
  line-height: 1.3243243243;
  font-weight: 700;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .modal__title {
    font-size: 2.7rem;
  }
}

.modal__date {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  color: #666;
}

.modal__body {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .modal__body {
    margin-top: 4rem;
  }
}

.modal__text {
  font-size: 1.6rem;
  line-height: 2.5625;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .modal__text {
    line-height: 2.2;
  }
}

.modal__button-wrapper {
  margin-top: 14.4rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .modal__button-wrapper {
    margin-top: 8rem;
  }
}

/*-------------------------------
mv
-------------------------------*/
.mv {
  position: relative;
}
@media screen and (max-width: 944px) {
  .mv {
    margin-top: 5.3rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 5.3rem;
  }
}

.mv__bg {
  width: 100%;
  height: 100%;
  max-height: 64.8rem;
  overflow: hidden;
  position: relative;
}

.mv__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #414141;
  opacity: 0.05;
}

.mv__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1366/648;
}
@media screen and (max-width: 767px) {
  .mv__bg img {
    aspect-ratio: 393/507;
  }
}

.mv__inner.inner {
  width: 100%;
  max-width: 1200px;
  position: absolute;
  bottom: 20.987654321%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
}
@media screen and (min-width: 1441px) {
  .mv__inner.inner {
    width: -moz-max-content;
    width: max-content;
    left: 12rem;
    transform: initial;
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .mv__inner.inner {
    padding: 0 30px;
    bottom: initial;
    top: 9.1603053435%;
    box-sizing: border-box;
  }
}

.mv__text {
  font-size: 3.7rem;
  line-height: 1.3513513514;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 2.5rem;
    line-height: 1.48;
  }
}
.mv__text_sub {
  font-size: 1.5rem;
  line-height: 1.3513513514;
  font-weight: 500;
  color: #fff;
  margin-top: 40px;
  letter-spacing: 0.1em;
}

/*-------------------------------
news
-------------------------------*/
.news {
  padding: 3.4rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 2.5rem 0 6rem;
  }
}

.news__inner.inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news__inner.inner {
    max-width: 50rem;
    flex-direction: column;
    gap: 3.4rem;
  }
}

.news__title {
  width: 7.9166666667%;
  min-width: 9.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news__title {
    width: 100%;
  }
}

.news__title-jp {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}

.news__title-en {
  margin-top: 0.8rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #8dbace;
  text-transform: uppercase;
  display: block;
}

.news__content {
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .news__content {
    flex-direction: column;
    gap: 0;
  }
}

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

.news__list-wrap {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #caced9;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .news__list-wrap {
    padding-bottom: 1.5rem;
  }
}

.news__list-wrap + .news__list-wrap {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news__list-wrap + .news__list-wrap {
    margin-top: 2.4rem;
  }
}

.news__list-item {
  padding-bottom: 1px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  transition: 0.3s ease-out;
}

.news__list-item::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #7d929a;
  transition: 0.3s ease-out;
  transform-origin: left;
  transform: scale(0, 1);
}
@media screen and (max-width: 767px) {
  .news__list-item::after {
    display: none;
  }
}

.news__list-wrap:hover .news__list-item::after {
  transform: scale(1, 1);
}

.news__content {
  font-size: 1.8rem;
  line-height: 1.3333333333;
  font-weight: 300;
}

.news__list-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: scroll;
  z-index: 1000;
}

/*-------------------------------
company-history 沿革
-------------------------------*/
.company-history {
  padding-top: 10rem;
  padding-bottom: 10rem;
  color: #1f1f1f;
  position: relative;
}

.company-history.section {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .company-history.section {
    margin-top: 13.6rem;
  }
}

.company-history::before {
  content: "";
  width: 100%;
  max-width: 60rem;
  height: 0.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ccd5e2;
}
@media screen and (max-width: 767px) {
  .company-history::before {
    width: 70%;
    max-width: 40rem;
  }
}

@media screen and (max-width: 767px) {
  .company-history__inner.inner {
    max-width: 50rem;
  }
}

.company-history__content-inner.inner {
  margin-top: 7.2rem;
  max-width: 80rem;
}

.company-history__item {
  padding-bottom: 1.1rem;
  display: flex;
  border-bottom: 1px solid #7d929a;
}
@media screen and (max-width: 767px) {
  .company-history__item {
    flex-direction: column;
  }
}

.company-history__item + .company-history__item {
  margin-top: 1.9rem;
}

.company-history__item dt {
  width: 31.25%;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company-history__item dt {
    width: 100%;
  }
}

.company-history__item dd {
  width: 68.75%;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .company-history__item dd {
    margin-top: 0.8rem;
    width: 100%;
  }
}

/*-------------------------------
company-profile 会社情報
-------------------------------*/
.company-profile {
  padding-top: 10rem;
  color: #1f1f1f;
  position: relative;
}

.company-profile::before {
  content: "";
  width: 100%;
  max-width: 60rem;
  height: 0.2rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ccd5e2;
}
@media screen and (max-width: 767px) {
  .company-profile::before {
    width: 70%;
    max-width: 40rem;
  }
}

@media screen and (max-width: 767px) {
  .company-profile__inner.inner {
    max-width: 50rem;
  }
}

.company-profile__content-inner.inner {
  margin-top: 6.9rem;
  max-width: 80rem;
}

.company-profile__item {
  padding-bottom: 1.1rem;
  display: flex;
  border-bottom: 1px solid #7d929a;
}
@media screen and (max-width: 767px) {
  .company-profile__item {
    padding-bottom: 1.3rem;
    flex-direction: column;
  }
}

.company-profile__item + .company-profile__item {
  margin-top: 1.9rem;
}

.company-profile__item dt {
  width: 31.25%;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .company-profile__item dt {
    width: 100%;
  }
}

.company-profile__item dd {
  width: 68.75%;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .company-profile__item dd {
    margin-top: 1.2rem;
    width: 100%;
  }
}

.company-profile__map {
  margin-top: 2rem;
  width: 100%;
}

.company-profile__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 550/300;
}
@media screen and (max-width: 767px) {
  .company-profile__map iframe {
    aspect-ratio: 314/400;
  }
}

/*-------------------------------
contact-mail メールでのお問い合わせ
-------------------------------*/
.contact-mail.section {
  margin-top: 19.2rem;
}
@media screen and (max-width: 767px) {
  .contact-mail.section {
    margin-top: 12rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-mail__inner.inner {
    max-width: 50rem;
  }
}

.contact-mail__form {
  margin-top: 6.5rem;
}

/*-------------------------------
contact-tel 電話でのお問い合わせ
-------------------------------*/
@media screen and (max-width: 767px) {
  .contact-tel__inner.inner {
    max-width: 50rem;
  }
}

.contact-tel__content {
  margin-top: 7.6rem;
  margin-inline: auto;
  padding-block: 3.6rem;
  width: 100%;
  max-width: 80rem;
  color: #1f1f1f;
  text-align: center;
  background-color: #f5f5f5;
}

.contact-tel__number {
  font-size: 4.1rem;
  line-height: 1.3658536585;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact-tel__number {
    font-size: 3.2rem;
    line-height: 1.75;
  }
}

.contact-tel__time {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 500;
}

/*-------------------------------
message 代表メッセージ
-------------------------------*/
.message {
  color: #1f1f1f;
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .message__inner.inner {
    max-width: 50rem;
  }
}

.message__main {
  margin-inline: auto;
  max-width: 1000px;
}

.message__content {
  margin-top: 4.2rem;
}

.message__content h3 {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}

.message__content p {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 2.5625;
  font-weight: 500;
}

.message__content strong {
  margin-top: 4rem;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .message__content strong {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.message__name {
  margin-top: 4.8rem;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .message__name {
    font-size: 2rem;
    line-height: 1.5;
  }
}

/*-------------------------------
message__philosophy 経営理念
-------------------------------*/
.message__philosophy {
  margin-inline: auto;
  max-width: 1000px;
}

.message__philosophy-lead {
  padding-block: 4.6rem 8.4rem;
  padding-inline: 2rem;
  background-color: #f5f5f5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message__philosophy-lead {
    padding-block: 4.6rem 6rem;
  }
}

.message__philosophy-title {
  font-size: 3.1rem;
  line-height: 1.3548387097;
  font-weight: 700;
}

.message__philosophy-subtitle {
  margin-top: 4.3rem;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .message__philosophy-subtitle {
    font-size: 1.6rem;
    line-height: 2.5625;
  }
}

.message__philosophy-content {
  margin-top: 9.5rem;
}
@media screen and (max-width: 767px) {
  .message__philosophy-content {
    margin-top: 7rem;
  }
}

.message__philosophy-heading {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 700;
}

.message__philosophy-text {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 2.5;
  font-weight: 500;
}

/*-------------------------------
tech-equipment 保有設備
-------------------------------*/
.tech-equipment__table {
  margin-top: 4rem;
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  color: #1f1f1f;
  text-align: center;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .tech-equipment__table {
    margin-top: 3rem;
    max-width: 50rem;
    text-align: left;
  }
}

.tech-equipment__thead th {
  padding-block: 1.8rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .tech-equipment__thead th {
    display: none;
  }
}

.tech-equipment__thead th:not(:last-child) {
  border-right: 8px solid #fff;
}

.tech-equipment__thead th:nth-child(1),
.tech-equipment__tbody td:nth-child(1) {
  padding-left: 0.4rem;
  width: 46.75%;
}
@media screen and (max-width: 767px) {
  .tech-equipment__thead th:nth-child(1),
  .tech-equipment__tbody td:nth-child(1) {
    width: 100%;
  }
}

.tech-equipment__thead th:nth-child(2),
.tech-equipment__tbody td:nth-child(2) {
  padding-left: 0.4rem;
  width: 41.625%;
}
@media screen and (max-width: 767px) {
  .tech-equipment__thead th:nth-child(2),
  .tech-equipment__tbody td:nth-child(2) {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.6rem;
  }
}

.tech-equipment__thead th:nth-child(3),
.tech-equipment__tbody td:nth-child(3) {
  width: 11.625%;
}
@media screen and (max-width: 767px) {
  .tech-equipment__thead th:nth-child(3),
  .tech-equipment__tbody td:nth-child(3) {
    margin-top: 2.5rem;
    width: 100%;
    font-size: 1.6rem;
  }
}

.tech-equipment__tbody tr {
  border-bottom: 1px solid #7d929a;
}
@media screen and (max-width: 767px) {
  .tech-equipment__tbody tr {
    padding-block: 2rem 1rem;
    display: block;
  }
}

.tech-equipment__tbody td {
  padding-block: 1.9rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .tech-equipment__tbody td {
    padding-block: 0;
    display: block;
  }
}

/*-------------------------------
tech-qualifications 資格保有者
-------------------------------*/
@media screen and (max-width: 767px) {
  .tech-qualifications.section {
    margin-top: 12rem;
  }
}

.tech-qualifications__list {
  margin-top: 3rem;
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tech-qualifications__list {
    max-width: 50rem;
    text-align: left;
  }
}

.tech-qualifications__item {
  padding-block: 1.8rem 1.3rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #7d929a;
}
@media screen and (max-width: 767px) {
  .tech-qualifications__item {
    padding-block: 2.4rem 1rem;
    flex-direction: column;
  }
}

.tech-qualifications__item span {
  display: inline-block;
}

.tech-qualifications__item-head {
  display: flex;
  flex-grow: 1;
}

.tech-qualifications__item-head span {
  width: 46.4788732394%;
}

@media screen and (max-width: 767px) {
  .tech-qualifications__item-head span:nth-child(1) {
    width: 45%;
    max-width: 18rem;
  }
}

@media screen and (max-width: 767px) {
  .tech-qualifications__item-head span:nth-child(2) {
    width: 55%;
  }
}

.tech-qualifications__member {
  width: 11.25%;
}
@media screen and (max-width: 767px) {
  .tech-qualifications__member {
    margin-top: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.375;
  }
}

.tech-qualifications__texts {
  margin-top: 16rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .tech-qualifications__texts {
    margin-top: 10rem;
  }
}

.tech-qualifications__texts-inner.inner {
  max-width: 100rem;
}
@media screen and (max-width: 767px) {
  .tech-qualifications__texts-inner.inner {
    max-width: 50rem;
  }
}

.tech-qualifications__text-wrap + .tech-qualifications__text-wrap {
  margin-top: 10rem;
}
.tech-qualifications__text-wrap h3 {
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: 500;
}

.tech-qualifications__text-wrap p {
  margin-top: 4rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .tech-qualifications__text-wrap p {
    margin-top: 3rem;
  }
}

/*-------------------------------
breadcrumb パンくずリスト
-------------------------------*/
.breadcrumb {
  padding-block: 0.7rem;
  background-color: #f5f5f5;
}

.breadcrumb__text {
  font-size: 1.4rem;
  line-height: 1.2142857143;
  font-weight: 500;
  color: #1f1f1f;
  text-transform: uppercase;
}

.breadcrumb__text a {
  position: relative;
}

.breadcrumb__text a::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  background-color: #1f1f1f;
  transition: 0.3s ease-out;
  transform-origin: left;
  transform: scaleX(0);
}

.breadcrumb__text a:hover {
  opacity: 1;
}

.breadcrumb__text a:hover::after {
  transform: scaleX(1);
}

/*-------------------------------
common-btn 
-------------------------------*/
.common-btn {
  width: -moz-max-content;
  width: max-content;
}

.common-btn a,
.common-btn.-close,
.common-btn.-submit {
  padding: 0.9rem 2rem;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.07em;
  font-weight: 600;
  color: #1949ce;
  cursor: pointer;
  border: 1px solid #1742ba;
  background-color: #fff;
  border-radius: 4rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: 0.2s ease-out;
}

.common-btn a::after,
.common-btn.-close::after,
.common-btn.-submit::after {
  content: "";
  width: 1.4rem;
  height: 2rem;
  -webkit-mask-image: url(../images/arrow-right-solid.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/arrow-right-solid.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #1949ce;
  transition: 0.2s ease-out;
}

.common-btn.-close::after {
  -webkit-mask-image: url(../images/xmark-solid.svg);
  mask-image: url(../images/xmark-solid.svg);
}

.common-btn a:hover,
.common-btn.-close:hover,
.common-btn.-submit:hover {
  color: #fff;
  background-color: #1949ce;
  opacity: 1;
}

.common-btn a:hover::after,
.common-btn.-close:hover::after,
.common-btn.-submit:hover::after {
  background-color: #fff;
}

/*-------------------------------
fadeIn-bottom 要素が下から出現
-------------------------------*/
.js-fadeIn.fadeIn-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.2s ease, transform 0.7s ease;
}
@media screen and (max-width: 767px) {
  .js-fadeIn.fadeIn-bottom {
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.7s ease;
  }
}

.js-fadeIn.fadeIn-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------
kv
-------------------------------*/
.kv {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .kv {
    margin-top: 6.2rem;
  }
}

.kv__bg {
  padding-block: 9rem;
  background-image: url(../images/kv-img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .kv__bg {
    padding-block: 5.8rem;
    background-image: url(../images/kv-img_sp.webp);
  }
}

.kv__title {
  padding: 0.8rem 2.8rem;
  width: -moz-max-content;
  width: max-content;
  font-size: 3.7rem;
  line-height: 1.3243243243;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #1f1f1f;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .kv__title {
    padding: 0.4rem 1.8rem;
    font-size: 2.7rem;
    line-height: 1.3333333333;
  }
}

/*-------------------------------
section-title 青線セクションタイトル
-------------------------------*/
.section-title {
  padding-top: 3.2rem;
  position: relative;
}

.section-title::before {
  content: "";
  width: 6rem;
  height: 0.8rem;
  position: absolute;
  top: 0;
  left: 0;
  background: #2251d6;
  background: linear-gradient(160deg, rgb(34, 81, 214) 0%, rgb(34, 81, 214) 15%, rgb(16, 40, 139) 55%, rgb(16, 40, 139) 100%);
}

.section-title h2 {
  font-size: 3.1rem;
  line-height: 1.3225806452;
  font-weight: 700;
  color: #1f1f1f;
}

/*-------------------------------
section セクション余白
-------------------------------*/
.section {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 6rem;
  }
}

/*-------------------------------
tel-number SP時のみ電話へリンク
-------------------------------*/
.tel-number a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .tel-number a {
    pointer-events: auto;
  }
}

/*-------------------------------
text-fadeIn-wrap テキスト左から右へ
-------------------------------*/
.text-fadeIn-wrap {
  transition: 0.7s ease-out;
  position: relative;
}
@media screen and (max-width: 767px) {
  .text-fadeIn-wrap {
    opacity: 1 !important;
  }
}

.text-fadeIn1,
.text-fadeIn2 {
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.text-fadeIn1.active,
.text-fadeIn2.active {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.text-fadeIn1 {
  position: relative;
  font-weight: 300;
  color: #666;
  transition: 0.5s ease-in;
}

.text-fadeIn2 {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.8s ease-in;
}

.text-fadeIn1.active {
  animation: text-fadeIn1 0.4s 0.7s forwards;
}

@keyframes text-fadeIn1 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------
work
-------------------------------*/
.work {
  padding-top: 14rem;
  padding-bottom: 13rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .work {
    padding-top: 15rem;
    padding-bottom: 0;
  }
}

.work__inner.inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .work__inner.inner {
    max-width: 50rem;
  }
}

.work__title {
  font-family: "Open Sans", sans-serif;
  font-size: 9.2rem;
  line-height: 1.2391304348;
  letter-spacing: 0.03em;
  font-weight: 800;
  color: #8dbace;
  text-transform: uppercase;
  position: absolute;
  top: -7.5rem;
  right: -1rem;
  z-index: 1;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .work__title {
    font-size: 6.2rem;
    line-height: 1.2580645161;
    top: -6rem;
    right: -0.5rem;
  }
}

.work__content {
  display: flex;
  justify-content: space-between;
}

.work__image {
  width: 36.5%;
}
@media screen and (max-width: 767px) {
  .work__image {
    margin-top: 3.5rem;
    width: 100%;
  }
}

.work__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 438/563;
}

.work__texts {
  width: 54.75%;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .work__texts {
    padding-inline: 2rem;
    width: 100%;
  }
}

.work__texts-title {
  font-size: 3.7rem;
  line-height: 1.3783783784;
  font-weight: 700;
  color: #1f1f1f;
}
@media screen and (max-width: 767px) {
  .work__texts-title {
    font-size: 3rem;
    line-height: 1.3666666667;
  }
}

.work__text {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 2.5625;
  font-weight: 500;
  color: #1f1f1f;
}

.work__button {
  margin-left: auto;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .work__button {
    margin-top: 13.5rem;
  }
}
/*# sourceMappingURL=style.css.map */


.footer_inst{
  width: 200px;
  margin-top: 20px;
}
.footer_inst img{
  width: 100%;
  height: auto;
}

/* 製品例　写真 */
.gallery_photo{
  max-width: 100rem;
  margin: 60px auto 120px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  gap: 40px 2%;
}

.parts_photo{
  width: 49%;
}

.parts_photo img{
  width: 100%;
  height: auto;
}

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

}


/* スライドショー */
.slider{
  width: 100%;
}
.items{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
}
.item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .6s ease-in-out;
}
.current{
  opacity: 1;
}
img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
.items{

  padding-bottom: 125.25%;
}

}