@charset "UTF-8";
:root {
  --font-family: "Zen Maru Gothic", sans-serif;
  --heading-color: #e06666;
  --text-color: #433d26;
}

* {
  font-family: var(--font-family);
  letter-spacing: 2px;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

h3,
p,
li,
a {
  color: var(--text-color);
}

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
}
#header .header-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #header .header-layout {
    width: calc(1200px + 10%);
    padding: 0 5%;
  }
}
#header #logo img {
  width: 64px;
  height: auto;
}
@media screen and (min-width: 768px) {
  #header #logo img {
    width: 106px;
  }
}
#header #global-nav ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  #header #global-nav ul {
    gap: 24px;
  }
}
#header #global-nav ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}
#header #global-nav ul li a:hover {
  text-decoration: underline;
}

#main {
  flex: 1 1 auto;
  padding-top: 24px;
}

#main-visual {
  padding: 60px 5% 0;
}
@media screen and (min-width: 768px) {
  #main-visual {
    padding: 0 5%;
  }
}
#main-visual .main_visual_layout {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  #main-visual .main_visual_layout {
    width: 1200px;
  }
}
@media screen and (min-width: 768px) {
  #main-visual .main_visual_layout::after {
    content: "";
    display: block;
    aspect-ratio: 16/9;
    position: absolute;
    top: 0;
    left: -1px;
    width: 101%;
    background-image: url(./images/mask_pc.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
  }
}
#main-visual .main_visual_layout video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  #main-visual .main_visual_layout video {
    border-radius: 32px;
  }
}

.site_section {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .site_section {
    margin-top: 80px;
  }
}
.site_section .site_section_layout {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .site_section .site_section_layout {
    width: calc(1200px + 10%);
    padding: 0 5%;
  }
}
.site_section .site_section_heading {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .site_section .site_section_heading {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.site_section .site_section_heading h2 {
  color: var(--heading-color);
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .site_section .site_section_heading h2 {
    font-size: 4rem;
  }
}
.site_section .site_section_heading p {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .site_section .site_section_heading p {
    font-size: 1.6rem;
  }
}

#about .about_content {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  #about .about_content {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 40px;
    margin-top: -24px;
  }
}
#about .about_text {
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  #about .about_text {
    font-size: 2rem;
    line-height: 2.8em;
  }
}
#about .about_image {
  width: 240px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #about .about_image {
    width: 320px;
  }
}
#about .about_image img {
  width: 100%;
  height: auto;
}

#services .service_item {
  display: grid;
  grid-template-columns: 1fr;
  background-color: rgba(254, 233, 153, 0.5019607843);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #services .service_item {
    border-radius: 32px;
    grid-template-columns: 35% 65%;
  }
}
#services .service_info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  font-size: 1.6rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  #services .service_info {
    gap: 16px;
    padding: 40px 52px;
    order: 1;
  }
}
#services .service_info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-left: -5px;
}
@media screen and (min-width: 768px) {
  #services .service_info h3 {
    font-size: 2.4rem;
  }
}
#services .service_info .service_description {
  font-size: 1.4rem;
}
#services .service_info .service_genre .strong,
#services .service_info .service_price .strong,
#services .service_info .service_platform .strong,
#services .service_info .service_date .strong {
  font-size: 1.4rem;
  font-weight: 700;
}
#services .service_info .service_genre .text,
#services .service_info .service_price .text,
#services .service_info .service_platform .text,
#services .service_info .service_date .text {
  font-size: 1.4rem;
  font-weight: 400;
}
#services .service_info .service_genre .text span,
#services .service_info .service_price .text span,
#services .service_info .service_platform .text span,
#services .service_info .service_date .text span {
  font-size: 1rem;
}
#services .service_image {
  order: 1;
}
@media screen and (min-width: 768px) {
  #services .service_image {
    order: 2;
  }
}
#services .service_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#company dl {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  #company dl {
    grid-template-columns: max-content 1fr;
  }
}
@media screen and (min-width: 768px) {
  #company dt,
  #company dd {
    padding: 8px 0;
  }
}
#company dt {
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #company dt {
    padding-right: 16px;
    font-size: 1.6rem;
    border-right: 1px solid #000000;
  }
}
#company dd {
  margin-bottom: 16px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #company dd {
    margin-bottom: 0;
    padding-left: 16px;
    font-size: 1.6rem;
  }
}

#sns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  margin-top: 40px;
  background-color: #d0e3b7;
}
@media screen and (min-width: 768px) {
  #sns {
    gap: 24px;
    padding: 24px;
    margin-top: 80px;
  }
}
#sns h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #sns h2 {
    font-size: 3.2rem;
  }
}
#sns ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
#sns ul a img {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  #sns ul a img {
    width: 30px;
    height: 30px;
  }
}

#footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
#footer #footer-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #footer #footer-nav {
    gap: 24px;
  }
}
#footer #footer-nav a {
  font-size: 1.4rem;
}
#footer #copyright {
  font-size: 1.2rem;
  text-align: center;
}

#main.privacy_policy,
#main.terms_of_service,
#main.license {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 90%;
  padding-top: 88px;
  padding-bottom: 40px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  #main.privacy_policy,
  #main.terms_of_service,
  #main.license {
    gap: 32px;
    width: calc(1200px + 10%);
    padding: 160px 5% 80px;
    font-size: 1.6rem;
  }
}
#main.privacy_policy h2,
#main.terms_of_service h2,
#main.license h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #main.privacy_policy h2,
  #main.terms_of_service h2,
  #main.license h2 {
    font-size: 3.2rem;
    margin-bottom: 32px;
  }
}
#main.privacy_policy section,
#main.terms_of_service section,
#main.license section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#main.privacy_policy section h3,
#main.terms_of_service section h3,
#main.license section h3 {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
}
#main.privacy_policy section ul,
#main.terms_of_service section ul,
#main.license section ul {
  font-size: 1.4rem;
  list-style-type: disc;
  list-style-position: inside;
}
#main.privacy_policy section p,
#main.terms_of_service section p,
#main.license section p {
  font-size: 1.4rem;
}
#main.privacy_policy section details summary,
#main.terms_of_service section details summary,
#main.license section details summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  cursor: pointer;
}
#main.privacy_policy section details summary::-webkit-details-marker,
#main.terms_of_service section details summary::-webkit-details-marker,
#main.license section details summary::-webkit-details-marker {
  display: none;
}
#main.privacy_policy section details summary::before,
#main.terms_of_service section details summary::before,
#main.license section details summary::before {
  content: "▶ ";
  padding-top: 2px;
  font-size: 1rem;
}
#main.privacy_policy section details[open] summary::before,
#main.terms_of_service section details[open] summary::before,
#main.license section details[open] summary::before {
  content: "▽ ";
}
#main.privacy_policy section details pre,
#main.terms_of_service section details pre,
#main.license section details pre {
  background-color: #f4f4f4;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#main.privacy_policy section details pre code,
#main.terms_of_service section details pre code,
#main.license section details pre code {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */