@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.is-active {
  overflow: hidden;
}

input[type=text], input[type=password], input[type=checkbox], input[type=email], input[type=radio], input[type=submit], input[type=button],
select, textarea {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  border: none;
  outline: 0;
}

textarea {
  resize: vertical;
}

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

a {
  text-decoration: none;
}

/*----------------------------------------------------------------------------
	only
----------------------------------------------------------------------------*/
.is-sp-only {
  display: none;
}
@media print, screen and (max-width: 767px) {
  .is-sp-only {
    display: block;
  }
}

.is-pc-only {
  display: block;
}
@media print, screen and (max-width: 767px) {
  .is-pc-only {
    display: none;
  }
}

/*----------------------------------------------------------------------------
	common parts
----------------------------------------------------------------------------*/
a.c-opacity {
  transition: opacity 0.3s ease;
}
@media print, screen and (min-width: 768px) {
  a.c-opacity:hover {
    opacity: 0.65;
  }
}

@media print, screen and (min-width: 768px) {
  .is-calling {
    pointer-events: none;
    cursor: auto;
  }
}

/*----------------------------------------------------------------------------
	wrapper
----------------------------------------------------------------------------*/
.wrapper {
  background-color: #efefef;
}
@media print, screen and (max-width: 767px) {
  .wrapper {
    padding-bottom: 16.25vw;
  }
}
.wrapper .inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}
@media print, screen and (max-width: 767px) {
  .wrapper .inner {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}

/*----------------------------------------------------------------------------
	header
----------------------------------------------------------------------------*/
.header {
  background-color: #fff;
}
.header .inner {
  max-width: 1340px;
}
@media print, screen and (max-width: 767px) {
  .header .inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.header .field {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media print, screen and (max-width: 767px) {
  .header .field {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 3.75vw;
  }
}
.header_logo {
  position: relative;
  z-index: 11;
}
.header_logo a {
  display: block;
}
.header_logo a img {
  width: 147px;
}
@media print, screen and (max-width: 767px) {
  .header_logo a img {
    width: 21.375vw;
  }
}
.header_button {
  display: none;
}
@media print, screen and (max-width: 767px) {
  .header_button {
    position: relative;
    z-index: 11;
    display: block;
    width: 16.25vw;
    height: 16.25vw;
    border-left: 1px solid #efefef;
  }
}
@media print, screen and (max-width: 767px) {
  .header_button button {
    position: relative;
    display: grid;
    place-content: center;
    place-items: center;
    width: 100%;
    height: 100%;
  }
}
@media print, screen and (max-width: 767px) {
  .header_button button::after {
    content: "";
    position: absolute;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 6.25vw;
    height: 4.625vw;
    background-image: url(../images/ic_open.svg);
  }
}
.header_button button.is-active::after {
  width: 4.75vw;
  height: 4.75vw;
  background-image: url(../images/ic_close.svg);
}

/*----------------------------------------------------------------------------
	primary
----------------------------------------------------------------------------*/
@media print, screen and (max-width: 767px) {
  .primary {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 16.25vw;
    background-color: #fff;
  }
}
.primary_list {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: center;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media print, screen and (max-width: 767px) {
  .primary_list {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 6.25vw;
    border-top: 1px solid #efefef;
    padding-top: 9.375vw;
    padding-right: 6.25vw;
    padding-bottom: 9.375vw;
    padding-left: 6.25vw;
  }
}
.primary_list-item a {
  display: block;
}
@media print, screen and (max-width: 767px) {
  .primary_list-item a {
    text-align: center;
  }
}
.primary_list-item a span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282828;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 767px) {
  .primary_list-item a span {
    font-size: 3.75vw;
  }
}

/*----------------------------------------------------------------------------
	pagetop
----------------------------------------------------------------------------*/
.pagetop {
  background-color: #efefef;
}
.pagetop .inner {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  max-width: 1260px;
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (max-width: 767px) {
  .pagetop .inner {
    -moz-justify-content: center;
    justify-content: center;
  }
}
.pagetop a {
  display: grid;
  place-items: center;
  place-content: center;
  row-gap: 8px;
  width: 80px;
  height: 70px;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  background-color: #282828;
}
@media print, screen and (max-width: 767px) {
  .pagetop a {
    row-gap: 1.25vw;
    width: 12.5vw;
    height: 10vw;
    border-top-right-radius: 5vw;
    border-top-left-radius: 5vw;
  }
}
.pagetop a img {
  width: 17px;
  filter: brightness(0) invert(1);
}
@media print, screen and (max-width: 767px) {
  .pagetop a img {
    width: 2.125vw;
  }
}
.pagetop a span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media print, screen and (max-width: 767px) {
  .pagetop a span {
    font-size: 2.25vw;
  }
}

/*----------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------*/
.footer {
  background-color: #f7f7f7;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}
@media print, screen and (max-width: 767px) {
  .footer {
    border-top-right-radius: 6.25vw;
    border-top-left-radius: 6.25vw;
  }
}
.footer .inner {
  max-width: 1120px;
}
.footer .field {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 767px) {
  .footer .field {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 3.75vw;
    padding-top: 12.5vw;
    padding-bottom: 8.125vw;
  }
}
.footer_logo {
  margin-bottom: 30px;
}
@media print, screen and (max-width: 767px) {
  .footer_logo {
    text-align: center;
    margin-bottom: 5vw;
  }
}
.footer_logo a {
  display: inline-block;
}
@media print, screen and (max-width: 767px) {
  .footer_logo a {
    margin-right: -2.5vw;
  }
}
.footer_logo a img {
  width: 147px;
}
@media print, screen and (max-width: 767px) {
  .footer_logo a img {
    width: 27.375vw;
  }
}
.footer_box:nth-child(2) {
  -moz-flex: 0 0 auto;
  flex: 0 0 auto;
}
.footer_about {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
}
@media print, screen and (max-width: 767px) {
  .footer_about {
    -moz-flex-direction: column;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 1.875vw;
  }
}
.footer_about span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282828;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 767px) {
  .footer_about span {
    font-size: 2.75vw;
  }
}
.footer_copy p {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #909090;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 767px) {
  .footer_copy p {
    font-size: 2vw;
    text-align: center;
  }
}

/*----------------------------------------------------------------------------
	secondary
----------------------------------------------------------------------------*/
.secondary {
  margin-bottom: 30px;
}
@media print, screen and (max-width: 767px) {
  .secondary {
    margin-bottom: 5vw;
  }
}
.secondary_list {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  -moz-align-items: center;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media print, screen and (max-width: 767px) {
  .secondary_list {
    -moz-justify-content: center;
    justify-content: center;
    -moz-column-gap: 2.75vw;
         column-gap: 2.75vw;
  }
}
.secondary_list-item a {
  display: block;
}
.secondary_list-item a span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282828;
  letter-spacing: 0.06em;
}
@media print, screen and (max-width: 767px) {
  .secondary_list-item a span {
    font-size: 2.75vw;
  }
}
/*# sourceMappingURL=common.css.map */