@charset "UTF-8";

/* ▼ グローバル ▼ */
/*!
global > color
------------------------------
*/
:root {
  --color-bg-base: #0f0f0f;
  --color-bg-base-light: #1a1a1a;
  --color-bg-black: #000000;
  --color-bg-white: #ffffff;
  --color-border-white: #ffffff;
  --color-font-attention: #d94747;
  --color-font-base: #d0d0d0;
  --color-font-black: #000000;
  --color-font-white: #fff;
  --color-font-value: #0f0f0f;
}

/*!
  global > content-width
  ------------------------------
  */
:root {
  --width-content-s: 760px;
  --width-content: 1080px;
}

/*!
  global > font
  ------------------------------
  */
:root {
  --font-family-base: "Noto Serif JP", serif;
  --font-family-english: "Lora", serif;
}

/* ▼ ファンデーション ▼ */
/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  display: block;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
  foundation > base
  ------------------------------
  */
body {
  color: var(--color-font-base);
  background-color: var(--color-bg-base);
  font-family: var(--font-family-base);
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* ▼ ユーティリティー ▼ */
/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-linebreak {
  display: block;
  margin-bottom: 2em;
}

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

/* ▼ コンポーネント ▼ */
/*!
component > large-button
------------------------------
*/
.c-button {
  display: block;
  background-color: var(--color-bg-white);
  color: var(--color-font-value);
  width: 250px;
  height: 60px;
  margin-inline: auto;
  cursor: pointer;
  border: solid 1px transparent;
  transition:
    background-color 0.6s,
    border-color 0.6s,
    color 0.6s;
}
@media (any-hover: hover) {
  .c-button:hover {
    background-color: var(--color-bg-base);
    border: solid 1px var(--color-bg-white);
    color: var(--color-font-white);
  }
}

.c-button--large {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  max-width: 280px;
  height: 60px;
  margin-inline: auto;
  border: solid 1px var(--color-border-white);
  transition:
    background-color 0.6s,
    color 0.6s;
}
@media screen and (min-width: 768px) {
  .c-button--large {
    max-width: 685px;
    height: 90px;
  }
}
@media (any-hover: hover) {
  .c-button--large:hover {
    background-color: #fff;
    color: var(--color-font-value);
  }
}

.c-button--large::after {
  content: "";
  background-color: var(--color-border-white);
  width: 40px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -25px;
}
@media screen and (min-width: 768px) {
  .c-button--large::after {
    width: 70px;
  }
}

.c-button--large span {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-button--large span {
    font-size: 32px;
  }
}

/*!
component > title
------------------------------
*/
.c-section-title {
  display: grid;
  place-items: center;
  gap: 16px;
}

.c-section-title-en {
  font-family: var(--font-family-english);
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-left: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-section-title-en {
    font-size: 48px;
  }
}

.c-section-title-ja {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding-left: 0.08em;
}

/* ▼ レイアウト ▼ */
/*!
layout > container
------------------------------
*/
.l-container,
.l-container-s {
  width: 90%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

/*!
  layout > section
  ------------------------------
  */
.l-section {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 104px 0;
  }
}

/*!
  layout > section-body
  ------------------------------
  */
.l-section-body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-section-body {
    margin-top: 56px;
  }
}

/*!
  layout > header
  ------------------------------
  */
.header {
  width: 100%;
  height: 65px;
  padding: 24px 0;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .header {
    height: 100px;
  }
}

.header-logo {
  width: 150px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 220px;
  }
}

.header-logo img {
  display: block;
}

/*!
  layout > footer
  ------------------------------
  */
.footer-wrapper {
  padding: 32px 0;
  text-align: center;
}

.footer-logo img {
  width: 150px;
}

.footer-copyright {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-family: var(--font-family-english);
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    margin-top: 16px;
  }
}

/* ▼ 固有ページ ▼ */
/*!
page > top > kv
------------------------------
*/
.top-kv {
  width: 100%;
  height: 500px;
  background-image: url(../img/bg-top-kv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-kv {
    height: 650px;
  }
}

.top-kv-text {
  display: grid;
  gap: 20px;
  place-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
}
@media screen and (min-width: 768px) {
  .top-kv-text {
    gap: 32px;
    bottom: 40px;
  }
}

.top-kv-role,
.top-kv-name,
.top-kv-copy {
  color: var(--color-font-white);
  font-family: var(--font-family-english);
  line-height: 1;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}

.top-kv-role {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .top-kv-role {
    font-size: 32px;
  }
}

.top-kv-name {
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .top-kv-name {
    font-size: 46px;
  }
}
@media screen and (min-width: 900px) {
  .top-kv-name {
    font-size: 72px;
  }
}

.top-kv-copy {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .top-kv-copy {
    font-size: 24px;
  }
}

/*!
page > top > profile
------------------------------
*/
.top-profile-contents-wrapper {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .top-profile-contents-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .top-profile-contents-wrapper img {
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .top-profile-contents {
    background-color: var(--color-bg-base-light);
    padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-profile-contents {
    padding: 40px;
  }
}

.top-profile-name {
  display: flex;
  gap: 8px;
  align-items: end;
}
@media screen and (min-width: 768px) {
  .top-profile-name {
    gap: 16px;
  }
}

.top-profile-name-ja,
.top-profile-name-en {
  line-height: 1;
  letter-spacing: 0.2em;
}

.top-profile-name-ja {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .top-profile-name-ja {
    font-size: 24px;
  }
}

.top-profile-name-en {
  font-family: var(--font-family-english);
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .top-profile-name-en {
    font-size: 14px;
  }
}

.top-profile-text {
  margin-top: 16px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top-profile-text {
    margin-top: 24px;
  }
}

/*!
page > top > products
------------------------------
*/
.top-products-flexbox {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .top-products-flexbox {
    gap: 56px;
  }
}

.top-products-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 600px) {
  .top-products-item {
    flex-direction: initial;
    gap: 64px;
  }
}

@media screen and (min-width: 600px) {
  .top-products-item--reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1024px) {
  .top-products-img {
    aspect-ratio: 1;
    height: 400px;
  }
}

.top-products-text h3 {
  font-size: 16px;
  font-family: var(--font-family-english);
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1024px) {
  .top-products-text h3 {
    display: inline-block;
    font-size: 24px;
  }
}

.top-products-text h3::after {
  content: "";
  display: block;
  background-color: var(--color-border-white);
  height: 1px;
  width: 100%;
  margin: 11px 0;
}
@media screen and (min-width: 1024px) {
  .top-products-text h3::after {
    height: 1px;
    margin: 23px 0;
    width: calc(100% + 6%);
  }
}

.top-products-text p {
  line-height: 2;
}

/*!
page > top > works
------------------------------
*/
.top-works-main-item img {
  aspect-ratio: 324 / 182;
  object-fit: cover;
}

.top-works-other-lists {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .top-works-other-lists {
    margin-top: 16px;
  }
}

.top-works-other-lists::-webkit-scrollbar {
  display: none;
}

.top-works-other-lists li img {
  width: 88px;
  height: auto;
}

.top-works-instagram p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .top-works-instagram p {
    font-size: 24px;
    margin-top: 56px;
  }
}
/*!
page > top > awards
------------------------------
*/
.top-awards {
  background-color: var(--color-bg-base-light);
}

.top-awards-list {
  display: grid;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .top-awards-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.top-awards-list-item {
  display: grid;
  gap: 16px;
  text-align: center;
}

.top-awards-list-item p {
  font-size: 16px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-awards-list-item p {
    font-size: 18px;
  }
}

/*!
page > top > photo-school
------------------------------
*/
.top-photo-school-information {
  display: grid;
  gap: 20px;
}

.top-photo-school-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 19px;
  border-bottom: solid 1px var(--color-border-white);
}
@media screen and (min-width: 768px) {
  .top-photo-school-details {
    display: grid;
    grid-template-columns: 20% auto;
    gap: 85px;
  }
}

.top-photo-school-details dt,
.top-photo-school-details dd {
  line-height: 2;
}

.top-photo-school-target-lists li::before {
  content: "・";
}

.top-photo-school-registration p {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .top-photo-school-registration p {
    font-size: 24px;
    margin-top: 55px;
  }
}
/*!
page > top > contact
------------------------------
*/
.top-contact {
  background-color: var(--color-bg-base-light);
}

.top-contact-form {
  display: grid;
  gap: 32px;
}

.top-contact-form-box span:first-child {
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.top-contact-form-box span:first-child::after {
  content: "必須";
  color: var(--color-font-attention);
  line-height: 1;
  margin-left: 16px;
}

.top-contact-form-box input,
.top-contact-form-box textarea {
  color: var(--color-bg-base);
  background-color: var(--color-bg-white);
  width: 100%;
  padding: 10px;
}

.top-contact-form-box input {
  height: 60px;
}

.top-contact-form-box textarea {
  height: 200px;
}
@media screen and (min-width: 768px) {
  .top-contact-form-box textarea {
    height: 250px;
  }
}
