/* common.css
========================================*/
/* module */
/* ==========================
	default style
============================= */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

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

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

th {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

ul, ol, li {
  list-style-type: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

a img {
  vertical-align: middle;
}

a {
  display: inline-block;
  text-decoration: none;
}

strong {
  font-size: 100%;
  font-style: normal;
  font-weight: bold;
}

button, input[type=submit] {
  background: none;
  border: 0;
  padding: 0;
}

input[type=text], input[type=email], input[type=tel], textarea {
  border-radius: 0;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

details {
  cursor: pointer;
  display: block;
  interpolate-size: allow-keywords;
}

summary {
  display: block;
  list-style: none;
}
summary:-webkit-details-marker {
  display: none;
}
summary:marker {
  display: none;
}

* {
  box-sizing: border-box;
}

/* font reset */
body {
  font-family: sans-serif;
  line-height: 1;
}

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

/* HTML5 */
article, aside, figure, figcaption, footer, header, nav, section, main, picture, small {
  display: block;
  margin: 0;
  padding: 0;
}

/* ==========================
	base style
============================= */
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    font-size: min(3.7333333333vw, 16px);
    overflow: auto;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
    width: 100vw;
  }
}

a {
  color: #333;
}

#main {
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 767px) {
  #main {
    line-height: 1.7;
  }
}
@media print, screen and (min-width: 768px) {
  #main {
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}
/* ==========================
	header style
============================= */
#header {
  display: flex;
  flex-wrap: wrap;
}
#header .-logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 40px;
  width: 20%;
}
@media screen and (max-width: 1280px) {
  #header .-logo {
    margin-bottom: -30px;
    padding: 30px 20px 0;
  }
  #header .-logo img {
    height: 75px;
  }
}
@media screen and (max-width: 1023px) {
  #header .-logo {
    padding: 30px 15px 0;
  }
  #header .-logo img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #header {
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    position: relative;
  }
  #header .-logo {
    margin-bottom: 0;
    padding: 0;
    width: min(35%, 150px);
  }
  #header .-logo img {
    height: auto;
  }
}
#header .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 0;
  width: 60%;
}
@media screen and (max-width: 1280px) {
  #header .menu {
    padding: 40px 0;
    width: 65%;
  }
}
@media screen and (max-width: 1023px) {
  #header .menu {
    padding: 40px 0;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  #header .menu {
    padding: 0;
    width: auto;
  }
}
#header .menu-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  height: 40px;
  width: 40px;
}
#header .menu-button:before, #header .menu-button:after {
  content: "";
}
#header .menu-button > span, #header .menu-button:before, #header .menu-button:after {
  background-color: #064FBC;
  display: inline-block;
  height: 3px;
  width: 30px;
  transition: 0.3s ease;
}
#header .menu-button.is-active > span {
  opacity: 0;
}
#header .menu-button.is-active:before {
  transform: translateY(10px) rotate(45deg);
}
#header .menu-button.is-active:after {
  transform: translateY(-10px) rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  #header .menu-button {
    display: none;
  }
}
#header .menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
}
@media screen and (max-width: 1280px) {
  #header .menu-list {
    gap: 100px;
  }
}
@media screen and (max-width: 1023px) {
  #header .menu-list {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  #header .menu-list {
    background-color: #064FBC;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    position: absolute;
    top: 100%;
    right: -90%;
    width: 90%;
    z-index: 1000;
    transition: 0.3s ease;
  }
  #header .menu-list.is-show {
    right: 0;
  }
}
#header .menu-list-item {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
#header .menu-list-item > a {
  transition: 0.2s ease;
}
#header .menu-list-item > a:hover {
  color: #064FBC;
}
@media screen and (max-width: 1280px) {
  #header .menu-list-item {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  #header .menu-list-item {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  #header .menu-list-item {
    font-size: min(4.2666666667vw, 18px);
  }
  #header .menu-list-item > a {
    color: #fff;
  }
}

/* ==========================
	footer style
============================= */
#footer {
  background-color: rgba(51, 51, 51, 0.8);
  padding: 60px 0 40px;
}
#footer .-copyright {
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
}

/* ==========================
	layout style
============================= */
.l-section-inr {
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 20px;
  width: calc(100% - 40px);
  max-width: 920px;
}
@media screen and (max-width: 767px) {
  .l-section-inr {
    padding: 60px 15px;
  }
}

/* ==========================
	component style
============================= */
.c-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 60px;
  padding-left: 20px;
}
.c-title .-jpn {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.c-title .-eng {
  color: #064FBC;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1280px) {
  .c-title {
    gap: 15px;
    margin-bottom: 50px;
    padding-left: 15px;
  }
  .c-title .-jpn {
    font-size: 2rem;
  }
  .c-title .-eng {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    align-items: center;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 40px;
    padding-left: 0;
  }
  .c-title .-jpn {
    font-size: min(7.4666666667vw, 34px);
  }
  .c-title .-eng {
    font-size: min(4vw, 18px);
  }
}

.c-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #064FBC;
  color: #064FBC;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 58px;
  width: 320px;
  transition: 0.2s ease;
}
.c-button:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNy4xNDIiIHZpZXdCb3g9IjAgMCAxMCAxNy4xNDIiPiAgIDxwYXRoIGlkPSJhcnJvdyIgZD0iTTYxMy04MTEuMjg2bDcuMTQyLTcuMTQyTDYxMy04MjUuNTcyLDYxNC40MjgtODI3LDYyMy04MTguNDI5LDYyMS41NzEtODE3aDBsLTcuMTQzLDcuMTQyWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTYxMyA4MjcpIiBmaWxsPSIjMDY0ZmJjIi8+IDwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  height: 18px;
  width: 10px;
  translate: 0 -50%;
  transition: 0.2s ease;
}
.c-button:hover {
  background-color: #064FBC;
  color: #fff;
}
.c-button:hover:after {
  right: 11px;
  filter: brightness(0) invert(1);
}
.c-button:has(input[type=submit]) {
  padding: 0;
}
.c-button:has(input[type=submit]) input[type=submit] {
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  height: 100%;
  width: 100%;
}
.c-button._back {
  border-color: rgba(51, 51, 51, 0.8);
  color: #333;
  height: 58px;
  width: 240px;
}
.c-button._back:after {
  right: auto;
  left: 15px;
  scale: -1 1;
  filter: brightness(0.5);
}
.c-button._back:hover {
  background-color: rgba(51, 51, 51, 0.8);
  color: #fff;
}
.c-button._back:hover:after {
  left: 11px;
  scale: -1 1;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: min(4.2666666667vw, 18px);
    height: 56px;
    width: min(80vw, 320px);
  }
  .c-button:after {
    right: 13px;
    height: 16px;
    width: 9px;
  }
}

input[type=submit].c-button {
  border: 1px solid #064FBC;
}
input[type=submit].c-button._back {
  border-color: rgba(51, 51, 51, 0.8);
}/*# sourceMappingURL=common.css.map */