@charset "UTF-8";
/* ========================================
   _reset.scss (modern & minimal)
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ol,
ul,
li,
table,
th,
td,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100dvh; /* iOSのアドレスバー対策も兼ねる */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*------------------------------------------
  base.scss
------------------------------------------*/
html {
  font-size: 62.5%; /* 1rem = 10px */
  background-color: #fff;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
  background-color: #fff;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

/* ダーク背景内のリンク（必要ならユーティリティ化も可） */
.bgblack a,
.bgblack02 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*---- responsive helpers ----*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

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

/*---------- containers ----------*/
.container {
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .container {
    padding-top: 120px;
  }
}
.container--blue {
  background-color: #1a647d;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .container--blue {
    margin: 120px auto 0;
    padding: 100px 0;
  }
}
.container__l {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.container__l--2col {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.container__l--2colonly {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.container__l--1col {
  display: flex;
  flex-direction: column;
}
.container__l--1col .img {
  width: 80%;
  max-width: 680px;
  margin: -20% auto 0;
}
.container__m {
  max-width: 560px;
  width: 80%;
  margin: 0 auto;
}
.container__m--2col {
  max-width: 640px;
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.container__s {
  max-width: 480px;
  width: 65%;
  margin: 0 auto;
}

.look13 {
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
}

.look14 {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.lookBlock {
  position: relative;
  padding: 60px 0;
}
.lookBlock::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 20%;
  height: 600px;
  background: #2b6f86;
  z-index: 0;
}
.lookBlock__inner {
  position: relative;
  z-index: 1;
  width: min(92%, 900px);
  margin: 0 auto;
}
.lookBlock__top {
  width: min(80%, 780px);
  margin: 0 auto;
}
.lookBlock__top img {
  display: block;
  width: 100%;
  height: auto;
}
.lookBlock__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(86%, 780px);
  margin: 120px auto 0;
}
.lookBlock__bottom img {
  display: block;
  width: 100%;
  height: auto;
}

/*---- page top button (ここに集約) ----*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #72c7ca;
  color: #fff;
  text-decoration: none;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*------footer-----*/
footer {
  margin: 120px auto 0;
}
footer .copyright {
  font-size: 1rem;
  text-align: center;
}
footer .logo {
  max-width: 180px;
  width: 30%;
  margin: 120px auto 16px;
}

.sns {
  max-width: 140px;
  width: 60%;
  margin: 60px auto 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 540px;
  width: 80%;
  margin: 0 auto;
  border: none;
  background-color: #000000;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1em;
  line-height: 3.2;
}

.btn:hover {
  background-color: #000000;
}

.l-header {
  height: 100vh;
}

.l-main {
  position: relative;
  z-index: 2;
  background: #fff;
}

.l-footer {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: 8px;
}

.mv {
  position: fixed;
  inset: 0;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
}
.mv__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  z-index: 2;
}
.mv__logo img {
  display: block;
  width: 60vw;
  max-width: 260px;
}
@media screen and (min-width: 1280px) {
  .mv__logo {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}

.credit {
  margin: 24px auto 0;
  text-align: center;
  font-family: "Roboto", sans-serif;
  color: #1a647d;
  font-size: 1.4rem;
}
.credit a {
  color: #1a647d;
}

.credit--white a {
  color: #fff;
}

.credit--white {
  color: #fff;
}

/*------------------------------------------
  animation.scss
------------------------------------------*/
.fadein,
.fadein--up,
.fadein--down,
.fadein--left,
.fadein--right {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
}

.fadein--up.animated,
.fadein--down.animated,
.fadein--left.animated,
.fadein--right.animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 動きを苦手とするユーザ設定に追従 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */