@charset "UTF-8";

/*========================================

 Setting

========================================*/

/* Use Lato for numbers only */
@font-face {
  font-family: "Number";
  font-weight: 400;
  src: url('https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXiWtFCfQ7A.woff2') format('woff2');
  unicode-range: U+0030-0039;
}

@font-face {
  font-family: "Number";
  font-weight: 700;
  src: url('https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPGQ3q5d0N7w.woff2') format('woff2');
  unicode-range: U+0030-0039;
}


/* Liquid layout compatible */
html {
  font-size: 3.5vw;
}

@media (max-width: 375px) {
  html {
    font-size: 4vw;
  }
}

@media screen and (min-width: 1026px) {
  html {
    font-size: 1.4035087719vw;
  }
}

@media (min-width: 1140px) {
  html {
    font-size: 1.6rem;
  }
}

body {
  background-color: #F9F4F4;
  color: #11111B;
  font-family: "Number", "Montserrat", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0.08em;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}


/* Scroll control */
body.is-active {
  height: 100%;
  overflow: hidden;
}

section {
  scroll-margin-top: 80px;
}

@media (max-width: 1025px) {
  section {
    scroll-margin-top: 60px;
  }
}


/* Supports calling phone numbers from PC */
@media screen and (min-width: 1026px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


/* Hover animation */
a,
a img,
li a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover,
a:active {
  opacity: 0.7;
}

a img:hover,
a img:active {
  opacity: 0.7;
}

li a:hover,
li a:active {
  opacity: 0.7;
}


/* Measures to prevent blurry images when scaled on PC version of Chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}


/* How to deal with jagged images on iPhone Safari */
img {
  image-rendering: auto;
}


/* Display the footer at the bottom even on short pages with little content */
.body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}


/* iOS 100vh displays full height even with address bar */
.element-100vh {
  min-height: 100vh;
}


/* YouTube frameborder attribute change (Deprecated in the HTML5 standard) */
iframe {
  border: none;
}


/* Prevent drawer scrolling */
.sp-inner {
  overflow: hidden;
}

/* Loading animation */
.js-lead {
  opacity: 0;
  /* Blur with SVG filter (Note that the CSS filter will be overwritten after this) */
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="13" /></filter></svg>#filter');
  -webkit-filter: blur(13px);
  filter: blur(13px);
}

.js-label {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

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


/* Remove default padding */
ul,
ol {
  padding: 0;
}


/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}


/* Set core root defaults */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}


/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}


/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
}


/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}


/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}


/* Blur images when they have no alt attribute */
img:not([alt]) {
  /* Blur with SVG filter */
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}


/* Reset form */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  
  background: transparent;
  border: none;
  border-radius: 0;
  
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}



/*========================================

 Style

========================================*/

:root {
  --app-height: 100vh;
}

/* Main */
main {
  position: fixed;
  z-index: 0;

  display: flex;
  justify-content: flex-end;

  width: 100vw;
  height: var(--app-height);
}

@media screen and (min-width: 1026px) {
  main {
    background: none;
  }
}


/* PC */
.pc {
  display: flex;
  z-index: 0;
}


/* SP styles */
@media screen and (max-width: 1025px) {
  .pc__left {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9999;

    display: flex;
    flex-direction: column;

    width: 80%;
    max-width: 320px;
    height: 100%;

    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    padding: 24px 16px;

    overflow-y: auto;
    transition: left 0.3s ease;
  }

  .pc__left.is-open {
    left: 0;
  }

  .pc__left .logo--pc {
    margin-bottom: 24px;
    text-align: left;
  }

  .pc__left .gnav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pc__left .gnav a {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 24px;
    color: #11111B;
    text-decoration: none;
  }

  .pc__left .gnav a i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
  }

  .pc__left .gnav a:hover i {
    transform: translateX(4px);
  }

  .pc__left .gnav a:hover {
    opacity: 0.7;
  }
}


/* PC styles */
@media screen and (min-width: 1026px) {
  .pc__left {
    position: static;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 50%;
    height: 100vh;

    background: none;
    box-shadow: none;
  }
}

.pc__right {
  display: none;
  transition: filter 2s ease;
}

@media screen and (min-width: 1026px) {
  .pc__right {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 50%;
    height: 100vh;
    z-index: 0;
  }
}

.pc__right-img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  filter: blur(0) !important;
  transition: filter 2s ease !important;
}

.pc__right-img.is-blur {
  filter: blur(8px) !important;
}


/* SP */
.sp {
  position: relative;
  z-index: 10;

  width: 100%;
  height: -webkit-fill-available;
  min-height: -webkit-fill-available;
  height: var(--app-height);
  min-height: var(--app-height);

  margin: 0 auto;
  background: #fff;

  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

@media screen and (min-width: 1026px) {
  .sp {
    max-width: 490px;
  }
}


/* Inner */
.about__inner,
.company__inner,
.business__inner,
.privacy__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 32px;
  border-bottom: 1px solid #E6E0E0;
}


/* PC Logo */
.logo--pc {
  margin-bottom: 40px;
}


/* PC Gnav */
.gnav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.gnav a {
  display: flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  color: inherit;
}

.gnav a i {
  font-size: 0.6em;
  transition: transform 0.3s ease;
}

.gnav a:hover i {
  transform: translateX(4px);
}

.gnav a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  padding: 16px 24px;
  background-color: #fff;
  border-bottom: 1px solid #E6E0E0;
}

@media screen and (min-width: 1026px) {
  .header {
    max-width: 490px;
  }
}

.header.is-color {
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (min-width: 1026px) {
  .contact li:last-child {
    display: none;
  }
}

.contact {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  text-decoration: none;
  color: #11111B;
  font-size: 24px;
  transition: color 0.3s ease;
}

.contact a i {
  pointer-events: none;
}

.contact a:hover i {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}


/* Main visual */
.mv {
  position: relative;
}


/* Content title */
.about__title,
.company__title,
.business__title,
.privacy__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 64px;
}

.about__title h2,
.company__title h2,
.business__title h2,
.privacy__title h2 {
  margin-left: -1px;
  font-size: 48px;
  line-height: 1;
  font-weight: normal;
}

.about__title p,
.company__title p,
.business__title p,
.privacy__title p {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}


/* Content Paragraph */
.about__content,
.company__content,
.business__content,
.business__item,
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.business__content {
  gap: 64px;
}

.about__content p,
.company__content p,
.business__content p,
.privacy__content p {
  font-size: 20px;
  line-height: 2;
  font-weight: normal;
}


/* Company Item */
.company__item {
  padding-bottom: 24px;
  border-bottom: 1px solid #E6E0E0;
}

.company__item:last-child {
  border: none;
  padding: 0;
}

.company__item h3 {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

.company__item p {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: normal;
}


/* Business Item */
.business__item h3 {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

.business__item h4 {
  margin-bottom: 16px;
  padding: 8px 16px 7px 16px;
  font-size: 20px;
  font-weight: normal;
  background-color: #E6E0E0;
  border-radius: 4px;
}


/* Privacy Item */
.privacy__item h3 {
  margin-bottom: 16px;
  padding: 8px 16px 7px 16px;
  font-size: 20px;
  font-weight: normal;
  background-color: #E6E0E0;
  border-radius: 4px;
}

.privacy__item ul {
  margin-top: 24px;
}

.privacy__item li {
  position: relative;
  padding-left: 1.5em;
  font-size: 20px;
}

.privacy__item li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #11111B;
  font-size: 1em;
  line-height: 1.6;
}


/* Footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.footer address {
  font-size: 12px;
  font-style: normal;
}

