@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;
  }
}

html {
  height: 100%;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

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;
  }
}

.l-inner {
  width: 100%;
  max-width: 81.25rem;
  padding-inline: 3.125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 37.5rem;
    padding-inline: 1.5625rem;
  }
}

.p-footer {
  padding-top: 3.6875rem;
  padding-bottom: 1.875rem;
  background-color: #333;
}

.p-footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-footer__logo {
  width: 100%;
  max-width: 21.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 18.75rem;
  }
}

.p-footer__logo a {
  display: block;
}

.p-footer__logo a svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1500.96/110.88;
}

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

.p-footer__info-items {
  display: flex;
  gap: 4.75rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__info-items {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-footer__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__info-item {
    gap: 0.75rem;
    flex-direction: column;
  }
}

.p-footer__info-item__title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: #3887f3;
}
@media screen and (max-width: 767px) {
  .p-footer__info-item__title {
    font-size: 0.6875rem;
  }
}

.p-footer__info-item__text {
  font-size: 0.75rem;
  line-height: 1.417;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__info-item__text {
    font-size: 0.6875rem;
  }
}

.p-footer__copy {
  margin-top: 2.75rem;
  font-size: 0.75rem;
  line-height: 1.25;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 2.1875rem;
    font-size: 0.6875rem;
  }
}

.p-contents {
  margin-top: 5rem;
  padding: 7.1875rem 0;
  background-image: url("../images/bg-img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contents {
    padding: 5rem 0;
    background-position: right;
  }
}

.p-contents__head {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-contents__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.p-contents__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.125;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contents__title {
    font-size: 2.5rem;
  }
}

.p-contents__text {
  margin-top: 0.875rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contents__text {
    margin-top: 1.5625rem;
    font-size: 1.125rem;
  }
}

.p-contents__body {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .p-contents__body {
    margin-top: 4.375rem;
  }
}

.p-contents__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contents__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    max-width: 28.125rem;
    margin-inline: auto;
  }
}

.p-contents__link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.p-contents__link-top {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contents__link-top {
    gap: 0;
  }
}

.p-contents__item-img {
  max-width: 10.1875rem;
}
@media screen and (max-width: 767px) {
  .p-contents__item-img {
    max-width: 10rem;
  }
}

.p-contents__item-img img {
  aspect-ratio: 163/128;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-contents__item-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: #333;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contents__item-text {
    font-size: 1.375rem;
    margin-inline: auto;
  }
}

.p-contents__link-bottom {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 2.3125rem;
  background-color: #ed5800;
}

.p-contents__link-bottom::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 2.3125rem;
  height: 2.3125rem;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  content: "";
  background-color: #fff;
  opacity: 0.4;
}

.p-contents__link-bottom-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 4.09375rem;
  margin-left: auto;
}

.p-contents__link-bottom-wrapper span {
  position: absolute;
  left: 1.65625rem;
  display: inline-block;
  width: 2.6875rem;
  height: 0.0625rem;
  background-color: #fff;
  transition: width 0.3s ease;
}

.p-contents__link-bottom-wrapper span::before {
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 0.375rem;
  height: 0.0625rem;
  content: "";
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.p-contents__link-icon {
  display: inline-block;
  width: 1.15625rem;
  height: 1.42125rem;
}

.p-contents__link:hover {
  opacity: 1;
}

.p-contents__link:hover .p-contents__link-top {
  background-color: #ed5800;
}

.p-contents__link:hover .p-contents__item-text {
  color: #fff;
}

.p-contents__link:hover .p-contents__link-bottom-wrapper span {
  width: 3.125rem;
}

.p-header {
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100%;
  height: 5rem;
  background-color: #000;
}

.p-header__inner {
  width: 100%;
  max-width: 90rem;
  height: inherit;
  padding-inline: 3.03125rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1.25rem;
  }
}

.p-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

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

.p-header__logo {
  display: inline-block;
  width: 100%;
  max-width: 21.375rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 15rem;
  }
}

.p-header__logo a {
  display: block;
}

.p-header__logo a svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1500.96/110.88;
}

.p-header__title {
  margin-left: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-header__title {
    margin-top: 0.375rem;
    margin-left: 0;
    font-size: 1.125rem;
    line-height: 1;
  }
}

.p-header__button {
  font-size: 0;
}

.p-header__btn {
  display: inline-block;
  padding: 0.375rem 0.625rem;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.19;
  color: #c2c2c2;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    padding: 0.25rem 0.5rem;
    font-size: 1.125rem;
  }
}

.p-header__btn.active {
  background-color: #fff;
  color: #000;
  pointer-events: none;
}

.p-header__btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #000;
}

.p-header__btn:not(.active):hover ~ .p-header__btn.active {
  background-color: transparent;
  color: #c2c2c2;
}

.cls-1 {
  fill: #fff;
}
/*# sourceMappingURL=style.css.map */
