@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: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #383838;
}

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

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

input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

.l-inner {
  max-width: 84.375rem;
  padding: 0 25px;
  margin: 0 auto;
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1199px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.p-footer {
  padding: 6.25rem 0 1.25rem;
  background-color: #2B8ACA;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 3.125rem 0 0.625rem;
  }
}

.p-footer__flex {
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__flex {
    flex-direction: column;
    padding: 0;
  }
}

.p-footer__flex-left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-footer__flex-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
}

.p-footer__flex-left-logo {
  max-width: 17.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__flex-left-logo {
    max-width: 8.75rem;
  }
}

.p-footer__flex-left-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__flex-left-sns {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__flex-left-sns {
    margin-top: 0.1875rem;
  }
}

.p-footer__flex-left-sns a {
  display: inline-block;
  max-width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__flex-left-sns a {
    max-width: 1.5625rem;
  }
}

.p-footer__flex-right {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__flex-right {
    margin-top: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__flex-right-ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-footer__flex-right-ul li a {
  display: inline-block;
  padding: 0.625rem 0;
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-footer__flex-right-ul li a {
    font-size: 0.75rem;
    padding: 0.625rem;
  }
}

.p-footer__copy {
  margin-top: 4.375rem;
  text-align: center;
}

.p-footer__copy small {
  display: block;
  font-family: "Montserrat", serif;
  font-size: 0.875rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copy small {
    font-size: 0.625rem;
  }
}

.p-form {
  max-width: 50rem;
  margin: 0 auto;
  padding: 3.125rem 1.875rem;
  background-color: #eef2ff;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    max-width: 20rem;
    padding: 1.5625rem 0.9375rem;
    border-radius: 0.625rem;
  }
}

.p-form__item:not(:first-of-type) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__item:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}

.p-form__label-text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__label-text {
    font-size: 0.875rem;
    gap: 0.4375rem;
  }
}

.p-form__label-text span {
  display: inline-block;
  font-size: 0.875rem;
  color: red;
}
@media screen and (max-width: 767px) {
  .p-form__label-text span {
    font-size: 0.625rem;
  }
}

.p-form__input {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    margin-top: 0.5rem;
  }
}

.p-form__input-text {
  width: 100%;
  padding: 0.5rem 0.625rem;
  border: 1px solid #383838;
  border-radius: 0.5rem;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-form__input-text {
    padding: 0.375rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
  }
}

.is-error-name,
.is-error-tel,
.is-error-email {
  color: red;
}

.p-form__textarea {
  width: 100%;
  height: 12.5rem;
  padding: 0.5rem 0.625rem;
  border: 1px solid #383838;
  border-radius: 0.5rem;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-form__textarea {
    height: 9.375rem;
    padding: 0.375rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
  }
}

.p-form__button {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    margin-top: 1.25rem;
  }
}

.p-form__button-text input {
  display: inline-block;
  width: 11.25rem;
  padding: 0.625rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFF;
  background-color: #2B8ACA;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__button-text input {
    width: 7.5rem;
    padding: 0.4375rem;
    font-size: 0.875rem;
  }
}

.p-header {
  height: 6.25rem;
  background-color: #2B8ACA;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
  }
}

.p-header__inner {
  height: inherit;
  max-width: 120rem;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__logo {
  max-width: 14.0625rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 8.75rem;
  }
}

.p-header__nav-items {
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-weight: 700;
  padding: 0 1.25rem;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.p-header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  height: 3.125rem;
  width: 3.125rem;
}

.p-header__drawer {
  position: absolute;
  z-index: 999;
  background-color: #FFF;
}

.p-hamburger {
  z-index: 9999;
  padding: 1rem 0.875rem;
  align-items: center;
}

.p-hamburger__ber {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.p-hamburger__ber span {
  position: absolute;
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  background-color: #FFF;
  transition: 0.3s ease-in-out;
}

.js-hamburger.is-open span {
  background-color: #FFF;
}

.p-hamburger span:nth-child(1) {
  top: 32%;
}

.p-hamburger__ber span:nth-child(2) {
  top: 48%;
}

.p-hamburger__ber span:nth-child(3) {
  top: 63%;
}

.js-hamburger.is-open span:nth-child(1) {
  top: 48%;
  transform: rotate(-45deg);
}

.js-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-open span:nth-child(3) {
  top: 48%;
  width: 1.375rem;
  transform: rotate(45deg);
}

.p-drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 6.25rem 0;
  overflow-y: scroll;
  background-color: #2B8ACA;
}

.js-drawer.is-open {
  opacity: 100;
}

.p-drawer-menu__inner {
  width: 100%;
  max-width: 37.5rem;
  padding-right: 3.125rem;
  padding-left: 3.125rem;
  margin-right: auto;
  margin-left: auto;
}

.p-drawer-menu__items {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.p-drawer-menu__item {
  display: block;
  width: 100%;
}

.p-drawer-menu__item a {
  display: inline-block;
  width: 100%;
  font-family: "Montserrat", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFF;
  padding: 0.9375rem 0;
  transition: 0.3s opacity;
}
.p-drawer-menu__item a:hover {
  opacity: 0.75;
}

.p-mv {
  position: relative;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 3.125rem;
  }
}

.p-mv__img img {
  width: 100%;
  aspect-ratio: 1920/1080;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__text {
  position: absolute;
  z-index: 99;
  top: 8%;
  right: 7%;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    top: 7%;
    right: 6%;
  }
}

.p-mv__text h2 {
  font-weight: 700;
  font-size: 3.375rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #FFF;
  text-align: right;
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) {
  .p-mv__text h2 {
    font-size: 1.125rem;
  }
}

.p-mv__text h2 span {
  position: relative;
}
.p-mv__text h2 span::before {
  content: "";
  position: absolute;
  width: 57vw;
  height: 3px;
  background: #FFF;
  top: 50%;
  transform: translateY(-50%);
  left: -59vw;
}
@media screen and (max-width: 767px) {
  .p-mv__text h2 span::before {
    width: 40vw;
    left: -42vw;
    height: 1px;
  }
}

.p-mv__text p {
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 2.625;
  color: #FFF;
  text-align: right;
  -moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  -ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) {
  .p-mv__text p {
    margin-top: 0.625rem;
    font-size: 0.3125rem;
  }
}

.p-news-list {
  max-width: 50rem;
  margin: 0 auto;
}

.p-news-list__item {
  padding: 1.5625rem;
  display: flex;
  align-items: center;
  border-top: 2px solid #383838;
}

.p-news-list__item:last-of-type {
  border-bottom: 2px solid #383838;
}

.p-news-list__item time {
  display: inline-block;
  width: 25%;
}

.p-news-list__item p {
  width: 75%;
}

.p-section__list.p-production-list {
  margin-top: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-section__list.p-production-list {
    margin-top: 2.5rem;
  }
}

.p-production-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-production-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-production-list__item {
  position: relative;
  background-color: #f3f8ff;
  -moz-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  -ms-filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.p-production-list__item-tag {
  position: absolute;
  top: -1.6875rem;
  left: 0;
  padding: 0.3125rem 0.625rem;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #f3f8ff;
  border-radius: 0.3125rem 0.3125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-production-list__item-tag {
    top: -0.9375rem;
    padding: 0.15625rem 0.3125rem;
    font-size: 0.625rem;
  }
}

.p-production-list__item-img img {
  width: 100%;
  aspect-ratio: 415/233;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-production-list__item-body {
  padding: 0.9375rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-production-list__item-body {
    padding: 0.46875rem 0.3125rem;
  }
}

.p-production-list__item-body h3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3125;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-production-list__item-body h3 {
    font-size: 0.625rem;
  }
}

.p-section {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-section {
    padding: 2.5rem 0;
  }
}

.p-section__title {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-section__title {
    font-size: 1.5rem;
  }
}

.p-section__title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  color: #2B8ACA;
}
@media screen and (max-width: 767px) {
  .p-section__title span {
    font-size: 0.75rem;
  }
}

.p-section__list {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-section__list {
    margin-top: 1.5625rem;
  }
}

.p-section__flex {
  margin-top: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-section__flex {
    margin-top: 1.5625rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-section__flex-map {
  position: relative;
  width: 35%;
  height: 0;
  padding-top: 25%;
}
@media screen and (max-width: 767px) {
  .p-section__flex-map {
    width: 100%;
    padding-top: 45%;
  }
}

.p-section__flex-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-section__flex-dl {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .p-section__flex-dl {
    width: 100%;
  }
}

.p-section__flex-dl dl {
  padding: 0.625rem 0;
  border-bottom: 1px solid #383838;
}

.p-section__flex-dl dt,
.p-section__flex-dl dd {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-section__flex-dl dt,
  .p-section__flex-dl dd {
    font-size: 0.75rem;
  }
}

.p-section__flex-dl dt {
  font-weight: 700;
}

.p-section__flex-dl dd {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-section__flex-dl dd {
    margin-top: 0.25rem;
  }
}

.p-service-list__item {
  position: relative;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eef2ff;
}
@media screen and (max-width: 767px) {
  .p-service-list__item {
    flex-direction: column;
    padding: 1.25rem 0.9375rem;
  }
}

.p-service-list__item:not(:first-of-type) {
  margin-top: 1.25rem;
}

.p-service-list__item-title {
  width: 48%;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service-list__item-title {
    width: 100%;
    font-size: 1.625rem;
  }
}

.p-service-list__item-title span {
  margin-right: 1.5rem;
  color: #2B8ACA;
}
@media screen and (max-width: 767px) {
  .p-service-list__item-title span {
    margin-right: 0.75rem;
  }
}

.p-service-list__item-text {
  width: 47%;
  font-size: 1.25rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-service-list__item-text {
    width: 100%;
    margin-top: 0.75rem;
    font-size: 0.625rem;
  }
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
