@charset "UTF-8";
/*
----------
_common.scss
----------
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,700;1,700&display=swap");
/*
----------
header
----------
*/
header .inner {
  padding: 0.5em 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .inner figure {
  width: 80px;
}
@media screen and (max-width: 767px) {
  header .inner figure {
    width: 60px;
  }
}
header .inner figure img {
  width: 100%;
}
header .inner .text {
  width: calc(100% - 80px);
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  header .inner .text {
    width: calc(100% - 60px);
  }
}
header .inner .text h1 {
  padding: 0 0 5px 0;
  margin: 0 auto;
  font-size: 14px;
  display: block;
}
@media screen and (max-width: 767px) {
  header .inner .text h1 {
    font-size: 0.8rem;
  }
}
header .inner .text h2 {
  padding: 0;
  margin: 0 auto;
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  header .inner .text h2 {
    font-size: 1rem;
  }
}

header a:link,
header a:visited {
  color: #333;
  text-decoration: none;
}

/*
----------
footer
----------
*/
footer {
  background-color: #333;
  color: #fff;
}
footer p {
  text-align: center;
  font-size: 70%;
  padding: 1rem 1rem;
  margin: 0;
}

.english {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.english.italic {
  font-style: italic;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

*,
:before,
:after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table,
table th,
table td {
  border-spacing: 0;
  word-wrap: break-word;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
}

h1 {
  font-size: 1.9em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.4em;
  }
}

h2 {
  font-size: 1.6em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.4em;
  }
}

h3 {
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.1em;
  }
}

p {
  font-size: 1em;
  line-height: 1.7;
  text-align: justify;
  word-wrap: break-word;
  margin-bottom: 1rem;
}

a {
  color: #666;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: underline;
}

a:hover {
  color: #999;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* LAYOUT 両サイドにスペース*/
.l-content {
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 999px) {
  .l-content {
    width: 92%;
  }
}

/* LAYOUT full width */
.l-content_wide {
  margin: 0 auto;
  width: 100%;
}

/* LAYOUT inner */
.l-content_inner {
  margin: 0 auto;
  padding: 4em 4%;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .l-content_inner {
    padding: 2em 4%;
  }
}

.l-content_inner__narrow {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
}

.l-col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l-col2.center {
  justify-content: center;
}

.l-col2.v-center {
  align-items: center;
}

.l-col2__item {
  flex-basis: 48%;
}

@media screen and (max-width: 767px) {
  .l-col2.sp_column {
    flex-direction: column-reverse;
  }

  .sp_column .l-col2__item {
    flex-basis: 100%;
  }
}
/* text */
.u-white {
  color: #fff;
}

.u-black {
  color: #333;
}

.u-blue {
  color: #6aa4d9;
}

.u-blue_2 {
  color: #86a7d2;
}

.u-green {
  color: #dadd44;
}

.u-green_2 {
  color: #cac871;
}

.u-ppl {
  color: #552f7f;
}

.u-ppl_2 {
  color: #544784;
}

.tx-bold {
  font-weight: bold !important;
}

.center {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.tx-center {
  text-align: center !important;
}

.tx-left {
  text-align: left !important;
}

.tx-right {
  text-align: right !important;
}

.tx-xl {
  font-size: 1.3em !important;
}

.tx-l {
  font-size: 1.1em !important;
}

.tx-s {
  font-size: 0.9em !important;
}

.tx-xs {
  font-size: 0.7em !important;
}

.u-break {
  display: inline-block;
}

.u-block {
  display: block;
}

/* WIDTH SPACE */
.u-w60 {
  width: 60%;
}

.u-w100 {
  width: 100%;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 1em !important;
}

.u-mt20 {
  margin-top: 2em !important;
}

.u-mt30 {
  margin-top: 3em !important;
}

.u-mr10 {
  margin-right: 1em !important;
}

.u-mb10 {
  margin-bottom: 1em !important;
}

.u-mb20 {
  margin-bottom: 2em !important;
}

.u-mb30 {
  margin-bottom: 3em !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pd10 {
  padding: 1em;
}

@media screen and (min-width: 1000px) {
  .none_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .none_tb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .none_sp {
    display: none;
  }
}