@charset "UTF-8";

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-main: #004098;
  --color-accent: #004ea2;
  --border-main: #ccc;
}

@font-face {
  font-family: "Google Sans";
  src: url("../fonts/Google_Sans/GoogleSans-VariableFont_GRAD,opsz,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "All-Round-Gothic";
  src: url("../fonts/All-Round-Gothic/All-Round-Gothic-W01-Book.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Roboto", "Noto Sans JP", sans-serif, monospace !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin-top: 90px;
}
@media (max-width: 599px) {
  body {
    font-size: 14px;
  }
}

/* */
html:root {
  --font-base: "Roboto", "Noto Sans JP", sans-serif !important;
  --font-headings: "Roboto", "Noto Sans JP", sans-serif !important;
  --font-input: "Roboto", "Noto Sans JP", sans-serif !important;
}

html body,
html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6,
footer,
.footer {
  font-family: "Roboto", "Noto Sans JP", sans-serif !important;
}

* {
  box-sizing: border-box;
}
a {
  cursor: pointer;
}
img {
  width: 100%;
  height: auto;
}

/* ------------------------------
  sp
------------------------------ */
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}

@media (max-width: 599px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

/* ------------------------------
  animation
------------------------------ */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.fade-in.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* ------------------------------
  common
------------------------------ */
.container {
  width: 1140px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.container.--sm {
  width: 1040px;
}

/* TODO: */
section {
  padding: 60px 0;
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  padding-left: 48px;
  background-color: #004ea2;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.c-btn::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/icon-arrow-circle-default.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ------------------------------
  utility
------------------------------ */
.u-border-top {
  border-top: 1px solid #ccc;
}

/* ------------------------------
  page: page-
  section: common
------------------------------ */
.page-title {
  position: relative;
  width: 100%;
  height: auto;
  padding: 100px 0;
}

.page-title h1 {
  position: relative;
  font-size: 70px;
  line-height: 1;
  text-transform: capitalize;
  display: block;
  color: var(--color-main);
}

@media (max-width: 599px) {
  .page-title {
    padding: 40px 0 0px;
  }
  .page-title h1 {
    font-size: 40px;
  }
}

/* ------------------------------
  page: 
  section: voice
------------------------------ */
.c-voice {
  position: relative;
}
.c-voice-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.c-heading {
  position: relative;
  font-size: 18px;
  margin-bottom: 3rem;
  text-align: center;
}

.c-heading::before {
  position: relative;
  content: attr(data-en);
  color: var(--color-main);
  font-size: 42px;
  line-height: 1;
  text-transform: capitalize;
  display: block;
  margin-bottom: 1rem;
}
