@charset "UTF-8";
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
Basic
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
* {
  min-width: 0;
  min-height: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 860px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
Base
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #313131;
  position: relative;
}

.main {
  max-width: 1000px;
  margin: 70px auto 145px;
}
@media screen and (max-width: 1000px) {
  .main {
    max-width: none;
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 860px) {
  .main {
    width: 100%;
    margin: 16vw auto 26.6666666667vw;
    padding: 0 4vw;
  }
}
.main__inner {
  width: 80%;
}
@media screen and (min-width: 1700px) {
  .main__inner {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .main__inner {
    width: 70%;
  }
}
@media screen and (max-width: 860px) {
  .main__inner {
    width: 100%;
  }
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 860px) {
  p {
    font-size: 4.2666666667vw;
    line-height: 2;
  }
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: 600;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 600;
}

/* -----------------------------------------------
  ヘッダーパターン
------------------------------------------------*/
.common-headerA {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 860px) {
  .common-headerA {
    margin-bottom: 5.3333333333vw;
  }
}
.common-headerA::before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 0;
  margin: auto;
  width: 47px;
  height: 1px;
  background: #008000;
}
@media screen and (max-width: 860px) {
  .common-headerA::before {
    bottom: -6.1333333333vw;
    width: 12.5333333333vw;
  }
}
.common-headerA-en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 860px) {
  .common-headerA-en {
    font-size: 10.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.common-headerA-txt {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 860px) {
  .common-headerA-txt {
    font-size: 4.2666666667vw;
  }
}

.common-headerB {
  background-color: #EAF8EA;
  padding: 0 50px;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 860px) {
  .common-headerB {
    padding: 0 4vw;
  }
}
.common-headerB-inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  .common-headerB-inner {
    max-width: none;
    width: 100%;
  }
}
.common-headerB-heading {
  font-size: 3.6rem;
  font-weight: 500;
  padding: 70px 0 85px;
}
@media screen and (max-width: 860px) {
  .common-headerB-heading {
    font-size: 6.9333333333vw;
    padding: 6.6666666667vw 0;
    line-height: 1.4;
  }
}
.common-headerB-heading span {
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 860px) {
  .common-headerB-heading span {
    font-size: 5.3333333333vw;
    display: block;
    margin-top: 2.1333333333vw;
  }
}

.common-headerC {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 860px) {
  .common-headerC {
    font-size: 5.8666666667vw;
  }
}

.common-headerD {
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 860px) {
  .common-headerD {
    max-width: none;
    width: 100%;
    margin: 10.6666666667vw auto 0;
  }
}
.common-headerD-box {
  width: 80%;
  margin-bottom: 55px;
}
@media screen and (max-width: 860px) {
  .common-headerD-box {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}

.common-headerE {
  margin-bottom: 35px;
  max-width: 1000px;
  margin: 80px auto 0;
}
@media screen and (max-width: 860px) {
  .common-headerE {
    font-size: 6.9333333333vw;
    margin-bottom: 9.3333333333vw;
  }
}
.common-headerE-inner {
  width: 80%;
}
@media screen and (max-width: 860px) {
  .common-headerE-inner {
    margin-left: 4vw;
  }
}
.common-headerE h3 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.385;
  margin-bottom: 35px;
}

/* -----------------------------------------------
  注釈パターン
------------------------------------------------*/
.common-noteA {
  font-size: 1.3rem;
  line-height: 2.615;
}
@media screen and (max-width: 860px) {
  .common-noteA {
    font-size: 3.4666666667vw;
  }
}

.common-noteB {
  font-size: 1.6rem;
  line-height: 2.615;
}
@media screen and (max-width: 860px) {
  .common-noteB {
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
}
.common-noteB span {
  color: #ff0000;
  font-weight: 600;
}

.common-noteC {
  background-color: #f7f6f5;
  padding: 20px;
}
@media screen and (max-width: 860px) {
  .common-noteC {
    padding: 5.3333333333vw;
  }
}
.common-noteC p {
  font-size: 1.6rem;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 860px) {
  .common-noteC p {
    font-size: 4.2666666667vw;
  }
}
.common-noteC a {
  display: inline;
  text-decoration: underline;
}

/* -----------------------------------------------
  下層FV
------------------------------------------------*/
.fv img {
  height: 159px;
}
@media screen and (max-width: 1040px) {
  .fv img {
    height: 108px;
  }
}
@media screen and (max-width: 860px) {
  .fv img {
    height: 52.2666666667vw;
  }
}

/* -----------------------------------------------
  パンくず
------------------------------------------------*/
.common-breadcrumb {
  color: #6f6f6f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 20px;
}
@media screen and (max-width: 860px) {
  .common-breadcrumb {
    padding-top: 4vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.common-breadcrumb-item {
  font-size: 1.4rem;
  padding-right: 20px;
}
@media screen and (max-width: 860px) {
  .common-breadcrumb-item {
    font-size: 3.2vw;
    padding-right: 4vw;
    line-height: 1.4;
  }
}

.common-breadcrumb-item a {
  position: relative;
}

.common-breadcrumb-item a::after {
  content: ">";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -14px;
}
@media screen and (max-width: 860px) {
  .common-breadcrumb-item a::after {
    right: -2.9333333333vw;
  }
}

/* -----------------------------------------------
  news（新着）
------------------------------------------------*/
.common-news {
  position: relative;
}
.common-news-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 860px) {
  .common-news-inner {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}
.common-news-heading {
  margin-top: -10px;
  margin-bottom: 120px;
}
@media screen and (max-width: 860px) {
  .common-news-heading {
    margin-top: -2.6666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.common-news-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.common-news-list-item {
  width: 100%;
  margin-left: 124px;
  border-top: 1px solid #E0E0E0;
  padding: 36px 0;
}
@media screen and (max-width: 860px) {
  .common-news-list-item {
    margin-left: 0;
    padding: 5.3333333333vw 0;
  }
}
@media screen and (max-width: 860px) {
  .common-news-list-item:first-child {
    border-top: none;
  }
}
.common-news-list-item:last-child {
  border-bottom: 1px solid #E0E0E0;
}
.common-news-list-item-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 860px) {
  .common-news-list-item-inner {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}
.common-news-list-item-inner:hover .common-news-list-item-title {
  color: #008000;
}
.common-news-list-item-info {
  font-size: 1.2rem;
  color: #555;
  width: 20%;
}
@media screen and (max-width: 860px) {
  .common-news-list-item-info {
    width: 100%;
    font-size: 3.2vw;
    margin-bottom: 2.1333333333vw;
  }
}
.common-news-list-item-info-day {
  position: relative;
}
.common-news-list-item-info-day::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -7px;
  width: 1px;
  height: 11px;
  background: #555;
  font-weight: 100;
}
@media screen and (max-width: 860px) {
  .common-news-list-item-info-day::after {
    right: -1.8666666667vw;
    height: 2.9333333333vw;
  }
}
.common-news-list-item-info-category {
  padding-left: 10px;
}
@media screen and (max-width: 860px) {
  .common-news-list-item-info-category {
    padding-left: 2.6666666667vw;
  }
}
.common-news-list-item-title {
  width: 80%;
  font-size: 1.4rem;
  line-height: 1.429;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 860px) {
  .common-news-list-item-title {
    width: 100%;
    font-size: 3.7333333333vw;
  }
}
.common-news-btn {
  position: absolute;
  bottom: 40px;
  left: 0;
}
@media screen and (max-width: 860px) {
  .common-news-btn {
    left: inherit;
    right: 0;
    bottom: inherit;
    top: 14.6666666667vw;
  }
}
.common-news-btn a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08rem;
  padding-right: 35px;
  position: relative;
}
@media screen and (max-width: 860px) {
  .common-news-btn a {
    font-size: 4.2666666667vw;
    padding-right: 9.3333333333vw;
  }
}
.common-news-btn a::after {
  content: "";
  position: absolute;
  top: 26%;
  right: 0;
  background-image: url(../../assets/img/common/common-parts-arrow2.svg);
  background-repeat: no-repeat;
  width: 17.8px;
  height: 16.2px;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 860px) {
  .common-news-btn a::after {
    width: 4.5333333333vw;
    height: 4.2666666667vw;
  }
}
.common-news-btn a:hover {
  color: #008000;
}
.common-news-btn a:hover::after {
  right: -8%;
}

/* -----------------------------------------------
  ボタンパターン
------------------------------------------------*/
.common-btn a {
  border: 1px solid #008000;
  padding: 16px;
  max-width: 206px;
  color: #008000;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
}
.common-btn a:hover {
  background-color: #008000;
  color: #fff;
}
.common-btn a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 5%;
  background-image: url(../../assets/img/common/common-parts-arrow5.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 13px;
}
@media screen and (max-width: 860px) {
  .common-btn a::after {
    width: 3.7333333333vw;
    height: 3.4666666667vw;
  }
}
.common-btn a:hover::after {
  background-image: url(../../assets/img/common/common-parts-arrow6.svg);
}

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

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

@media screen and (max-width: 860px) {
  .mt05 {
    margin-top: 1.3333333333vw;
  }
  .mt10 {
    margin-top: 2.6666666667vw;
  }
  .mt15 {
    margin-top: 4vw;
  }
  .mt20 {
    margin-top: 5.3333333333vw;
  }
  .mt25 {
    margin-top: 6.6666666667vw;
  }
  .mt30 {
    margin-top: 8vw;
  }
  .mt35 {
    margin-top: 9.3333333333vw;
  }
  .mt40 {
    margin-top: 10.6666666667vw;
  }
  .mt45 {
    margin-top: 12vw;
  }
  .mt50 {
    margin-top: 13.3333333333vw;
  }
  .mt55 {
    margin-top: 14.6666666667vw;
  }
  .mt60 {
    margin-top: 16vw;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

@media screen and (max-width: 860px) {
  .mb05 {
    margin-bottom: 1.3333333333vw;
  }
  .mb10 {
    margin-bottom: 2.6666666667vw;
  }
  .mb15 {
    margin-bottom: 4vw;
  }
  .mb20 {
    margin-bottom: 5.3333333333vw;
  }
  .mb25 {
    margin-bottom: 6.6666666667vw;
  }
  .mb30 {
    margin-bottom: 8vw;
  }
  .mb35 {
    margin-bottom: 9.3333333333vw;
  }
  .mb40 {
    margin-bottom: 10.6666666667vw;
  }
  .mb45 {
    margin-bottom: 12vw;
  }
  .mb50 {
    margin-bottom: 13.3333333333vw;
  }
  .mb55 {
    margin-bottom: 14.6666666667vw;
  }
  .mb60 {
    margin-bottom: 16vw;
  }
}
/* -----------------------------------------------
  その他
------------------------------------------------*/
.font-b {
  font-weight: 600;
}

small {
  font-size: 85%;
}

.strikethrough {
  text-decoration: line-through;
}

/* -----------------------------------------------
  You Tube
------------------------------------------------*/
.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------
    header
------------------------------------------------*/
.header {
  width: 100%;
  position: absolute;
  z-index: 1;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 860px) {
  .header__inner {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    background-color: #fff;
    padding: 4vw;
    border-radius: 0 0 5.3333333333vw 5.3333333333vw;
  }
}
.header__logo {
  background-color: #fff;
  width: 250px;
  height: 159px;
  padding: 0 0 30px;
}
@media screen and (max-width: 1040px) {
  .header__logo {
    width: 160px;
    height: auto;
    padding: 0 0 15px;
  }
}
@media screen and (max-width: 860px) {
  .header__logo {
    background-color: inherit;
    width: 100%;
    padding: 0;
  }
}
.header__logo a {
  padding: 30px 21px 0;
}
@media screen and (max-width: 1040px) {
  .header__logo a {
    padding: 15px 15px 0;
  }
}
@media screen and (max-width: 860px) {
  .header__logo a {
    padding: 0;
    display: inline-block;
  }
}
.header__logo a:hover {
  -webkit-transition: opacity 0.2s 0.1s ease-in;
  transition: opacity 0.2s 0.1s ease-in;
  opacity: 0.7;
}
.header__logo__img {
  width: 159.5px;
  margin: 0 auto 18px;
}
@media screen and (max-width: 1040px) {
  .header__logo__img {
    width: 120px;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 860px) {
  .header__logo__img {
    width: 29.8666666667vw;
    margin: 0 auto 2.6666666667vw 0;
  }
}
.header__logo__txt {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  .header__logo__txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 860px) {
  .header__logo__txt {
    font-size: 3.2vw;
    text-align: left;
  }
}
.header__logo__en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  line-height: normal;
  letter-spacing: 0.03rem;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  .header__logo__en {
    font-size: 0.1rem;
    padding: 0 15px;
  }
}
@media screen and (max-width: 860px) {
  .header__logo__en {
    font-size: 2.4vw;
    text-align: left;
    padding: 0;
  }
}
.header .pcnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 860px) {
  .header .pcnav {
    display: none;
  }
}
.header .pcnav__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px 40px 0;
}
@media screen and (max-width: 1040px) {
  .header .pcnav__list {
    padding: 24px 20px 0;
  }
}
.header .pcnav__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 33px;
}
@media screen and (max-width: 1040px) {
  .header .pcnav__list__item {
    margin-right: 20px;
  }
}
.header .pcnav__list__item:last-child {
  margin-right: 0;
}
.header .pcnav__list__item a {
  font-size: 1.4rem;
  font-weight: 400;
  padding-bottom: 25px;
  position: relative;
}
.header .pcnav__list__item a:last-child {
  margin-right: 0;
}
.header .pcnav__list__item a:hover {
  cursor: pointer;
  color: #008000;
}
.header .pcnav__list__item__inner {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #fff;
  border-radius: 10px;
  padding: 32px;
}
.header .pcnav__list__item__inner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../../assets/img/common/common-parts-circle.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .pcnav__list__item:hover .pcnav__list__item__inner {
  top: 70px;
  visibility: visible;
  opacity: 1;
}
.header .pcnav__list__item__second {
  margin-bottom: 20px;
}
.header .pcnav__list__item__second:last-child {
  margin-bottom: 0;
}
.header .pcnav__list__item__second a {
  position: relative;
  padding-right: 20px;
  padding-bottom: 0;
  display: block;
}
.header .pcnav__list__item__second a::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  background-image: url(../../assets/img/common/common-parts-arrow1.svg);
  background-repeat: no-repeat;
  width: 12.9px;
  height: 5.6px;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .pcnav__list__item__second a:hover::after {
  right: -3%;
  -webkit-filter: invert(23%) sepia(92%) saturate(3866%) hue-rotate(108deg) brightness(92%) contrast(103%);
          filter: invert(23%) sepia(92%) saturate(3866%) hue-rotate(108deg) brightness(92%) contrast(103%);
}
.header .pcnav__list__item__second a span {
  width: 100%;
  display: inline;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgb(0, 128, 0)));
  background: linear-gradient(transparent 50%, rgb(0, 128, 0) 50%);
  background-position: left bottom;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 10%;
  /* マーカーが引かれる速度を指定 */
  -webkit-transition: background-size 0.4s;
  transition: background-size 0.4s;
}
.header .pcnav__list__item__second a span .--small {
  font-size: 1rem;
}
.header .pcnav__list__item__second a span:hover {
  background-size: 100% 10%;
}
@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.header .pcnav__list__item.--about .pcnav__list__item__inner {
  width: 32%;
  left: 5%;
}
.header .pcnav__list__item.--our-initiative .pcnav__list__item__inner {
  width: 30%;
  left: 22%;
}
.header .pcnav__list__item.--connection .pcnav__list__item__inner {
  width: 30%;
  left: 40%;
}
.header .spnav {
  display: none;
}
@media screen and (max-width: 860px) {
  .header .spnav {
    display: block;
    position: relative;
    /*アクティブクラスがついたら位置を0に*/
    /*ナビゲーションの縦スクロール*/
    /*ナビゲーション*/
  }
  .header .spnav .spnav__btn {
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    top: 9.3333333333vw;
    right: 4vw;
    width: 21.8666666667vw;
    height: 21.8666666667vw;
  }
  .header .spnav .spnav__btn.change {
    border-radius: 0 0 0 20px;
    background: rgb(27, 149, 64);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(27, 149, 64)), to(rgb(11, 69, 27)));
    background: linear-gradient(180deg, rgb(27, 149, 64) 0%, rgb(11, 69, 27) 100%);
    top: 0;
    right: 0;
  }
  .header .spnav .spnav__btn.change.active {
    border-radius: 0 0 0 20px;
    background: none;
    top: 0;
    right: 0;
  }
  .header .spnav .spnav__btn.active {
    display: none;
  }
  .header .spnav .spnav__btn2.active {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    position: relative;
  }
  .header .spnav .spnav__btn2.active .spnav__btn__inner {
    top: 1.3333333333vw;
  }
  .header .spnav .spnav__btn2.active .spnav__btn__inner span:nth-of-type(1) {
    top: 0;
    left: 0;
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
    width: 100%;
  }
  .header .spnav .spnav__btn2.active .spnav__btn__inner span:nth-of-type(2) {
    top: 12px;
    left: 0;
    -webkit-transform: translateY(-4px) rotate(45deg);
            transform: translateY(-4px) rotate(45deg);
    width: 100%;
  }
  .header .spnav .spnav__btn__inner {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    position: absolute;
    right: 2.6666666667vw;
    top: -1.3333333333vw;
  }
  .header .spnav .spnav__btn.change .spnav__btn__inner {
    right: 6.6666666667vw;
    top: 8vw;
  }
  .header .spnav .spnav__btn__inner span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    height: 1px;
    background-color: #313131;
    width: 100%;
  }
  .header .spnav .spnav__btn.change .spnav__btn__inner span {
    background-color: #fff;
  }
  .header .spnav .spnav__btn__inner span:nth-of-type(1) {
    top: 0;
  }
  .header .spnav .spnav__btn__inner span:nth-of-type(2) {
    top: 2.6666666667vw;
  }
  .header .spnav .spnav__btn__inner span:nth-of-type(3) {
    top: 5.3333333333vw;
  }
  .header .spnav .spnav__btn.active .spnav__btn__inner span:nth-of-type(1) {
    top: 0;
    left: 0;
    -webkit-transform: translateY(8px) rotate(-45deg);
            transform: translateY(8px) rotate(-45deg);
    width: 100%;
  }
  .header .spnav .spnav__btn.active .spnav__btn__inner span:nth-of-type(2) {
    opacity: 0;
  }
  .header .spnav .spnav__btn.active .spnav__btn__inner span:nth-of-type(3) {
    top: 12px;
    left: 0;
    -webkit-transform: translateY(-4px) rotate(45deg);
            transform: translateY(-4px) rotate(45deg);
    width: 100%;
  }
  .header .spnav .spnav__nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    visibility: hidden;
    opacity: 0;
    background: rgb(27, 149, 64);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(27, 149, 64)), to(rgb(11, 69, 27)));
    background: linear-gradient(180deg, rgb(27, 149, 64) 0%, rgb(11, 69, 27) 100%);
  }
  .header .spnav .spnav__nav.panelactive {
    top: 0;
    visibility: visible;
    opacity: 1;
    /*動き*/
    -webkit-animation-name: fadein;
            animation-name: fadein;
    -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
  }
  @-webkit-keyframes fadein {
    from {
      opacity: 0;
      -webkit-transform: translatey(0);
              transform: translatey(0);
    }
    to {
      opacity: 1;
      -webkit-transform: translatey(0);
              transform: translatey(0);
    }
  }
  @keyframes fadein {
    from {
      opacity: 0;
      -webkit-transform: translatey(0);
              transform: translatey(0);
    }
    to {
      opacity: 1;
      -webkit-transform: translatey(0);
              transform: translatey(0);
    }
  }
  .header .spnav .spnav__nav__logo {
    background-color: #fff;
    padding: 3.2vw 4vw 4vw;
    border-radius: 0 0 5.3333333333vw 5.3333333333vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .spnav .spnav__nav__inner {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header .spnav .spnav__nav__list {
    padding: 13.3333333333vw 8vw 26.6666666667vw;
  }
  .header .spnav .spnav__nav__list__item {
    margin-bottom: 10.6666666667vw;
  }
  .header .spnav .spnav__nav__list__item:last-child {
    margin-bottom: 0;
  }
  .header .spnav .spnav__nav__list__item a {
    display: block;
    color: #fff;
    font-size: 4vw;
    line-height: 1.357;
    position: relative;
    padding: 0 5.3333333333vw;
  }
  .header .spnav .spnav__nav__list__item__normal::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4vw;
    background-image: url(../../assets/img/common/common-parts-arrow1.svg);
    background-repeat: no-repeat;
    width: 4.5333333333vw;
    height: 4.2666666667vw;
    -webkit-filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
            filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
  }
  .header .spnav .spnav__nav__list__item__accordion {
    position: relative;
    color: #fff;
    cursor: pointer;
    padding: 0 5.3333333333vw 5.3333333333vw;
    font-size: 4.2666666667vw;
    line-height: 1.357;
  }
  .header .spnav .spnav__nav__list__item__accordion::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 4vw;
    background-image: url(../../assets/img/common/common-hamburger-open.svg);
    background-repeat: no-repeat;
    width: 4.2666666667vw;
    height: 3.2vw;
    -webkit-filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
            filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
  }
  .header .spnav .spnav__nav__list__item__accordion.close::after {
    background-image: url(../../assets/img/common/common-hamburger-close.svg);
  }
  .header .spnav .spnav__nav__list__item span {
    display: block;
    font-size: 2.9333333333vw;
    line-height: 1.4;
  }
  .header .spnav .spnav__nav__list__item__inner {
    display: none;
    padding: 6.6666666667vw 6.6666666667vw 6.6666666667vw;
  }
  .header .spnav .spnav__nav__list__item__second {
    margin-bottom: 8vw;
  }
  .header .spnav .spnav__nav__list__item__second:last-child {
    margin-bottom: 0;
  }
  .header .spnav .spnav__nav__list__item__second a {
    position: relative;
    padding-left: 5.3333333333vw;
  }
  .header .spnav .spnav__nav__list__item__second a::before {
    content: "";
    position: absolute;
    top: 2.1333333333vw;
    bottom: 0;
    left: 0;
    width: 2.1333333333vw;
    height: 1px;
    background: #fff;
    font-weight: 100;
  }
}

/* -----------------------------------------------
    footer
------------------------------------------------*/
#pagetop {
  position: absolute;
  top: -40px;
  right: 60px;
}
@media screen and (max-width: 900px) {
  #pagetop {
    right: 20px;
  }
}
@media screen and (max-width: 860px) {
  #pagetop {
    top: -10.6666666667vw;
    right: 5.3333333333vw;
  }
}
#pagetop a {
  width: 78px;
  height: 78px;
  background-color: #008000;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#pagetop a:hover img {
  top: -20%;
}
@media screen and (max-width: 1000px) {
  #pagetop a:hover img {
    top: 0;
  }
}
@media screen and (max-width: 860px) {
  #pagetop a {
    width: 20.8vw;
    height: 20.8vw;
  }
}
#pagetop a img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  -webkit-filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
          filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 860px) {
  #pagetop a img {
    width: 2.1333333333vw;
  }
}

.footer {
  background-color: #014B01;
  border-radius: 20px 20px 0 0;
  position: relative;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 88px 16.5% 0 10%;
}
@media screen and (max-width: 1200px) {
  .footer__inner {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
}
@media screen and (max-width: 860px) {
  .footer__inner {
    max-width: none;
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    padding: 16.5333333333vw 4vw 0;
  }
}
.footer__info__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 37px;
}
@media screen and (max-width: 860px) {
  .footer__info__logo {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    margin-bottom: 6.6666666667vw;
    text-align: center;
  }
}
.footer__info__logo img {
  width: 160px;
}
@media screen and (max-width: 860px) {
  .footer__info__logo img {
    width: 42.6666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.footer__info__logo span {
  font-size: 1.5rem;
  color: #fff;
  margin-left: 22px;
}
@media screen and (max-width: 860px) {
  .footer__info__logo span {
    font-size: 4vw;
    margin-left: 0;
    display: block;
  }
}
.footer__info__address {
  font-size: 1.3rem;
  color: #fff;
}
@media screen and (max-width: 860px) {
  .footer__info__address {
    font-size: 3.4666666667vw;
    text-align: center;
    margin-bottom: 10.6666666667vw;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 500px;
}
@media screen and (max-width: 1200px) {
  .footer__list {
    margin-top: 20px;
  }
}
@media screen and (max-width: 860px) {
  .footer__list {
    width: 100%;
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    margin-bottom: 10.6666666667vw;
    margin-top: 0;
  }
}
.footer__list__item {
  width: 240px;
  margin-bottom: 0;
}
@media screen and (max-width: 860px) {
  .footer__list__item {
    width: 100%;
  }
  .footer__list__item:first-child {
    margin-bottom: 2.6666666667vw;
  }
}
.footer .copyright {
  padding: 40px 16.5% 12px 10%;
  text-align: right;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
}
@media screen and (max-width: 860px) {
  .footer .copyright {
    max-width: none;
    width: 100%;
    text-align: center;
    font-size: 3.4666666667vw;
    padding: 0 0 2.6666666667vw;
    letter-spacing: 0.02rem;
    line-height: 1.6;
  }
}

/* -----------------------------------------------
    #top 配下
------------------------------------------------*/
#top {
  /*Scrollテキストの描写*/
  /* 線の描写 */
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
#top .main {
  max-width: 1000px;
}
@media screen and (max-width: 860px) {
  #top .main {
    max-width: none;
    width: 100%;
  }
}
#top .main__inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 860px) {
  #top .main__inner {
    max-width: none;
  }
}
#top .header__logo {
  height: auto;
  border-radius: 0 0 20px 0;
  padding: 0 0 30px;
}
@media screen and (max-width: 1040px) {
  #top .header__logo {
    width: 160px;
    padding: 0 0 15px;
  }
}
@media screen and (max-width: 860px) {
  #top .header__logo {
    border-radius: 0;
    width: 100%;
    padding: 0;
  }
}
#top .header__logo a {
  padding: 29px 21px 0;
}
@media screen and (max-width: 1040px) {
  #top .header__logo a {
    padding: 15px 15px 0;
  }
}
@media screen and (max-width: 860px) {
  #top .header__logo a {
    padding: 0;
  }
}
#top .fv {
  position: relative;
}
#top .fv img {
  height: auto;
}
#top .overview {
  margin-bottom: 65px;
}
@media screen and (max-width: 860px) {
  #top .overview {
    margin-bottom: 21.3333333333vw;
  }
}
#top .overview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 68px auto 0;
}
@media screen and (max-width: 860px) {
  #top .overview__list {
    margin: 18.6666666667vw auto 0;
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}
#top .overview__list__item {
  width: 33.3%;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #top .overview__list__item {
    width: 100%;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 10.6666666667vw;
  }
}
#top .overview__list__item:nth-child(4) {
  border-bottom: none;
}
#top .overview__list__item:nth-child(5) {
  border-bottom: none;
}
#top .overview__list__item__inner {
  width: 94%;
}
@media screen and (max-width: 860px) {
  #top .overview__list__item__inner {
    width: 100%;
  }
}
#top .overview__list__item__title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.556;
  padding-bottom: 20px;
  border-bottom: 1px solid #008000;
  margin-bottom: 15px;
  color: #008000;
}
@media screen and (max-width: 860px) {
  #top .overview__list__item__title {
    font-size: 4.8vw;
    padding-bottom: 5.3333333333vw;
    margin-bottom: 4vw;
  }
}
#top .overview__list__item__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 860px) {
  #top .overview__list__item__txt {
    font-size: 4.2666666667vw;
  }
}
#top .overview__list__item:first-child .overview__list__item__inner {
  margin: 0 auto 0 0;
}
#top .overview__list__item:nth-child(2) .overview__list__item__inner {
  margin: 0 auto;
}
#top .overview__list__item:nth-child(3) .overview__list__item__inner {
  margin: 0 0 0 auto;
}
#top .overview__list__item:nth-child(4) .overview__list__item__inner {
  margin: 0 auto 0 0;
}
#top .overview__list__item:nth-child(5) .overview__list__item__inner {
  margin: 0 auto;
}
#top .scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 10%;
  bottom: 50px;
  /*全体の高さ*/
  height: 50px;
}
@media screen and (max-width: 1000px) {
  #top .scrolldown {
    left: 3%;
  }
}
@media screen and (max-width: 800px) {
  #top .scrolldown {
    left: 5.3333333333vw;
  }
}
#top .scrolldown span {
  display: block;
  /*描画位置*/
  position: absolute;
  right: -15px;
  top: -15px;
}
#top .scrolldown img {
  width: 10px;
  /*描画位置*/
  -webkit-filter: invert(100%) sepia(0%) saturate(7468%) hue-rotate(198deg) brightness(95%) contrast(106%);
          filter: invert(100%) sepia(0%) saturate(7468%) hue-rotate(198deg) brightness(95%) contrast(106%);
}
@media screen and (max-width: 860px) {
  #top .scrolldown img {
    width: 2.6666666667vw;
  }
}
#top .scrolldown::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -3px;
  margin: auto;
  width: 2px;
  height: 115px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: arrow 1.4s ease 0s infinite normal;
          animation: arrow 1.4s ease 0s infinite normal;
}
@media screen and (max-width: 800px) {
  #top .scrolldown::before {
    top: -2.6666666667vw;
    left: -2.6666666667vw;
    height: 30.6666666667vw;
  }
}
@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
    opacity: 0;
  }
}
@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
    opacity: 0;
  }
}

/* -----------------------------------------------
  右側スライドメニュー
------------------------------------------------*/
@media screen and (max-width: 860px) {
  .slidemenu {
    display: none;
  }
}

.slidemenu__nav {
  display: none;
}

.slidemenu.fixed {
  position: relative;
  /*アクティブクラスがついたら位置を0に*/
  /*ナビゲーションの縦スクロール*/
  /*ナビゲーション*/
  /*========= ボタンのためのCSS ===============*/
}
.slidemenu.fixed .slidemenu__nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 25%;
  right: -120%;
  width: 240px;
  height: 100%; /*ナビの高さ*/
  /*動き*/
  display: block;
}
.slidemenu.fixed .slidemenu__nav.panelactive {
  right: 0;
}
.slidemenu.fixed .slidemenu__nav.panelactive .slidemenu__nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.slidemenu.fixed .slidemenu__inner {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.slidemenu.fixed .slidemenu__list {
  padding: 24px 0;
  background: rgb(27, 149, 64);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(27, 149, 64)), to(rgb(11, 69, 27)));
  background: linear-gradient(180deg, rgb(27, 149, 64) 0%, rgb(11, 69, 27) 100%);
}
.slidemenu.fixed .slidemenu__list__item {
  margin-top: 20px;
}
.slidemenu.fixed .slidemenu__list__item:first-child {
  margin-top: 0;
}
.slidemenu.fixed .slidemenu__list__item:last-child {
  margin-bottom: 0;
}
.slidemenu.fixed .slidemenu__list__item a {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.357;
  position: relative;
  padding: 0 20px;
}
.slidemenu.fixed .slidemenu__list__item__normal::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 15px;
  background-image: url(../../assets/img/common/common-parts-arrow1.svg);
  background-repeat: no-repeat;
  width: 12.9px;
  height: 5.6px;
  -webkit-filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
          filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slidemenu.fixed .slidemenu__list__item__normal:hover::after {
  right: 5px;
}
.slidemenu.fixed .slidemenu__list__item__accordion {
  position: relative;
  color: #fff;
  cursor: pointer;
  padding: 0 20px 20px;
  font-size: 1.4rem;
  line-height: 1.357;
}
.slidemenu.fixed .slidemenu__list__item__accordion::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 15px;
  background-image: url(../../assets/img/common/common-hamburger-open.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 10px;
  -webkit-filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
          filter: invert(97%) sepia(1%) saturate(268%) hue-rotate(137deg) brightness(117%) contrast(100%);
}
.slidemenu.fixed .slidemenu__list__item__accordion.close::after {
  background-image: url(../../assets/img/common/common-hamburger-close.svg);
}
.slidemenu.fixed .slidemenu__list__item span {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}
.slidemenu.fixed .slidemenu__list__item__inner {
  display: none;
  padding: 16px 25px 20px;
  background: #1B9540;
}
.slidemenu.fixed .slidemenu__list__item__second {
  margin-bottom: 20px;
}
.slidemenu.fixed .slidemenu__list__item__second:last-child {
  margin-bottom: 0;
}
.slidemenu.fixed .slidemenu__list__item__second a {
  position: relative;
  padding-left: 20px;
}
.slidemenu.fixed .slidemenu__list__item__second a::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 1px;
  background: #fff;
  font-weight: 100;
}
.slidemenu.fixed .slidemenu__btn {
  cursor: pointer;
  width: 62px;
  height: 197px;
  background: rgb(27, 149, 64);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(27, 149, 64)), to(rgb(11, 69, 27)));
  background: linear-gradient(180deg, rgb(27, 149, 64) 0%, rgb(11, 69, 27) 100%);
  border-radius: 10px 0 0 10px;
}
.slidemenu.fixed .slidemenu__btn.--open {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 25%;
  right: 0;
}
.slidemenu.fixed .slidemenu__btn.--open span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/common/common-slidemenu-open.svg);
  background-repeat: no-repeat;
  background-position: top 30px center;
  background-size: 12px;
}
.slidemenu.fixed .slidemenu__btn.--open.active {
  display: none;
}
.slidemenu.fixed .slidemenu__btn.--close {
  position: absolute;
  left: -62px;
  top: 0;
}
.slidemenu.fixed .slidemenu__btn.--close span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/common/common-slidemenu-close.svg);
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: top 30px center;
  background-size: 12px contain;
}
@-moz-document url-prefix() {
  .slidemenu.fixed .slidemenu__btn.active {
    top: 0.5px;
  }
}

/* -----------------------------------------------
  aboutフォルダ内専用
------------------------------------------------*/
#about .outline {
  margin-bottom: 400px;
}
@media screen and (max-width: 860px) {
  #about .outline {
    margin-bottom: 0;
  }
}
#about .greeting p {
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #about .greeting p {
    margin-bottom: 10.6666666667vw;
  }
}
#about .greeting__signature {
  margin-top: 10px;
  text-align: right;
}
@media screen and (max-width: 860px) {
  #about .greeting__signature {
    margin-top: 2.6666666667vw;
    text-align: left;
  }
}
#about .greeting__signature p {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.125;
  text-align: left;
}
@media screen and (max-width: 860px) {
  #about .greeting__signature p {
    font-size: 4.2666666667vw;
    margin-bottom: 0;
  }
}
#about .greeting__signature span {
  font-weight: 600;
}

/* -----------------------------------------------
  our-initiativeフォルダ内専用
------------------------------------------------*/
#our-initiative .selection__heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 860px) {
  #our-initiative .selection__heading {
    margin-bottom: 9.3333333333vw;
  }
}
#our-initiative .selection p {
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #our-initiative .selection p {
    margin-bottom: 10.6666666667vw;
  }
}
#our-initiative .selection__inner {
  margin-bottom: 65px;
}
@media screen and (max-width: 860px) {
  #our-initiative .selection__inner {
    margin-bottom: 16vw;
  }
}
#our-initiative .baccalaureate {
  margin-bottom: 400px;
}
@media screen and (max-width: 860px) {
  #our-initiative .baccalaureate {
    margin-bottom: 0;
  }
}
#our-initiative .examination__heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 860px) {
  #our-initiative .examination__heading {
    margin-bottom: 9.3333333333vw;
  }
}
#our-initiative .examination p {
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #our-initiative .examination p {
    margin-bottom: 10.6666666667vw;
  }
}
#our-initiative .examination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 70px;
}
@media screen and (max-width: 860px) {
  #our-initiative .examination__list {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    margin-top: 10.6666666667vw;
  }
}
#our-initiative .examination__list__item {
  text-align: center;
  -webkit-box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 6px 18px -10px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.571;
  border-radius: 10px;
  margin-right: 60px;
  width: 155px;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 860px) {
  #our-initiative .examination__list__item {
    width: 100%;
    height: 24vw;
    margin-right: 0;
    font-size: 4.2666666667vw;
    margin-bottom: 16vw;
  }
}
#our-initiative .examination__list__item::after {
  content: "";
  background-image: url(/linkage/assets/img/common/common-parts-arrow4.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: -25%;
  top: 45%;
  width: 13px;
  height: 23px;
}
@media screen and (max-width: 960px) {
  #our-initiative .examination__list__item::after {
    right: -30%;
  }
}
@media screen and (max-width: 860px) {
  #our-initiative .examination__list__item::after {
    top: inherit;
    left: 0;
    right: 0;
    bottom: -10.6666666667vw;
    margin: auto;
    width: 3.4666666667vw;
    height: 6.1333333333vw;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
#our-initiative .examination__list__item:first-child {
  color: #fff;
  background-color: #008000;
}
#our-initiative .examination__list__item:last-child {
  margin-right: 0;
}
#our-initiative .examination__list__item:last-child::after {
  background-image: none;
  right: inherit;
  top: inherit;
  width: auto;
  height: auto;
}

/* -----------------------------------------------
  connectionフォルダ内専用
------------------------------------------------*/
#connection .pre-education {
  margin-bottom: 400px;
}
@media screen and (max-width: 860px) {
  #connection .pre-education {
    margin-bottom: 0;
  }
}
#connection .advanced-placement {
  margin-bottom: 400px;
}
@media screen and (max-width: 860px) {
  #connection .advanced-placement {
    margin-bottom: 0;
  }
}
#connection .visit__heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 860px) {
  #connection .visit__heading {
    margin-bottom: 9.3333333333vw;
  }
}
#connection .visit p {
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #connection .visit p {
    margin-bottom: 10.6666666667vw;
  }
}
#connection .visit__inner {
  margin-bottom: 60px;
}
@media screen and (max-width: 860px) {
  #connection .visit__inner {
    margin-bottom: 16vw;
  }
}
#connection .demae__heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 860px) {
  #connection .demae__heading {
    margin-bottom: 9.3333333333vw;
  }
}
#connection .demae p {
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #connection .demae p {
    margin-bottom: 10.6666666667vw;
  }
}
#connection .demae__inner {
  margin-bottom: 60px;
}
@media screen and (max-width: 860px) {
  #connection .demae__inner {
    margin-bottom: 16vw;
  }
}

/* -----------------------------------------------
  newsページ専用
------------------------------------------------*/
@media screen and (max-width: 1000px) {
  #news .main__inner {
    width: 90%;
  }
}
@media screen and (max-width: 860px) {
  #news .main__inner {
    width: 100%;
  }
}
#news .common-news-list-item {
  margin-left: 0;
}
#news .common-news-heading {
  margin-bottom: 80px;
}
@media screen and (max-width: 860px) {
  #news .common-news-heading {
    margin-bottom: 10.6666666667vw;
  }
}
#news .common-news-list-item-info {
  margin-bottom: 0;
}
#news .article__heading {
  margin-bottom: 35px;
}
@media screen and (max-width: 860px) {
  #news .article__heading {
    margin-bottom: 9.3333333333vw;
  }
}
#news .article p {
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #news .article p {
    margin-bottom: 10.6666666667vw;
  }
}
#news .article__inner {
  margin-bottom: 65px;
}
@media screen and (max-width: 860px) {
  #news .article__inner {
    margin-bottom: 16vw;
  }
}
#news .article__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 860px) {
  #news .article__list {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
}
#news .article__list__item {
  width: 46%;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 860px) {
  #news .article__list__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5.3333333333vw;
  }
}
#news .article__list__item:nth-of-type(2n) {
  margin-right: 0;
}
#news .article__box {
  margin-top: 30px;
}
@media screen and (max-width: 860px) {
  #news .article__box {
    margin-top: 8vw;
  }
}
#news .article__box__tab {
  font-size: 1.6rem;
  display: inline-block;
  border-radius: 3px;
  line-height: normal;
  border: 1px solid #000;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 860px) {
  #news .article__box__tab {
    font-size: 4.2666666667vw;
    padding: 0 2.6666666667vw;
  }
}
#news .article__box__tab.--red {
  border: 1px solid #bb5535;
  color: #bb5535;
}
#news .article__box__tab.--green {
  border: 1px solid #387d39;
  color: #387d39;
}
#news .article__box__tab.--blue {
  border: 1px solid #0075c2;
  color: #0075c2;
}
#news .article__box__list {
  font-size: 1.6rem;
}
@media screen and (max-width: 860px) {
  #news .article__box__list {
    font-size: 4.2666666667vw;
  }
}
#news .article__box__list__item {
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  #news .article__box__list__item {
    margin-bottom: 4vw;
  }
}
#news .article__box__list__item span {
  font-weight: 600;
  margin-right: 15px;
}
@media screen and (max-width: 860px) {
  #news .article__box__list__item span {
    margin-right: 4vw;
  }
}
#news .pagination__btn {
  color: #696969;
  text-align: center;
}
#news .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  position: relative;
  font-size: 1.4rem;
  line-height: 0;
}
@media screen and (max-width: 860px) {
  #news .pagination {
    font-size: 3.7333333333vw;
  }
}
#news .pagination__pos {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 860px) {
  #news .pagination__pos {
    font-size: 4.8vw;
  }
}
#news .pagination__btn--prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border: 1px solid #696969;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 55px;
}
@media screen and (max-width: 860px) {
  #news .pagination__btn--prev {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    margin-right: 6.6666666667vw;
  }
}
#news .pagination__btn--next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  border: 1px solid #696969;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 55px;
}
@media screen and (max-width: 860px) {
  #news .pagination__btn--next {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
    margin-left: 6.6666666667vw;
  }
}
#news .pagination__btn--first {
  position: absolute;
  left: 0;
}
#news .pagination__btn--last {
  position: absolute;
  right: 0;
}

/* -----------------------------------------------
    staffページ専用
------------------------------------------------*/
@media screen and (max-width: 1000px) {
  #staff .main__inner {
    width: 90%;
  }
}
@media screen and (max-width: 860px) {
  #staff .main__inner {
    width: 100%;
  }
}
#staff .position__list__item {
  border-top: 1px solid #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  padding: 25px 0;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    padding: 6.6666666667vw 0;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item:first-child {
    border-top: none;
    padding: 0 0 6.6666666667vw;
  }
}
#staff .position__list__item:last-child {
  border-bottom: 1px solid #E0E0E0;
}
#staff .position__list__item__txt.--top {
  width: 58%;
  font-weight: 500;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}
#staff .position__list__item__txt.--top span {
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--top span {
    display: inline-block;
    padding-left: 8vw;
  }
}
#staff .position__list__item__txt.--top span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 20px;
  height: 2px;
  background: #008000;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--top span::before {
    top: 0;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--top span.adjustment::before {
    top: -8vw;
  }
}
#staff .position__list__item__txt.--middle {
  width: 19%;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--middle {
    width: auto;
    margin-left: 8vw;
    display: inline;
  }
}
#staff .position__list__item__txt.--bottom {
  width: 23%;
  line-height: 1.4;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom {
    width: auto;
    margin-left: 8vw;
    display: inline;
  }
}
#staff .position__list__item__txt.--bottom span {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.3rem;
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span.date1 {
    margin-left: 25.3333333333vw;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span.date2 {
    margin-left: 29.3333333333vw;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span.date3 {
    margin-left: 25.3333333333vw;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span.date4 {
    margin-left: 29.3333333333vw;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span.date5 {
    margin-left: 42.6666666667vw;
  }
}
@media screen and (max-width: 860px) {
  #staff .position__list__item__txt.--bottom span.date6 {
    margin-left: 38.6666666667vw;
  }
}

/* -----------------------------------------------
    #researchページ専用
------------------------------------------------*/
#research .year__heading {
  color: #008000;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
  #research .year__heading {
    margin-bottom: 8vw;
    font-size: 8vw;
  }
}
#research .year__box {
  margin-bottom: 65px;
}
@media screen and (max-width: 860px) {
  #research .year__box {
    margin-bottom: 16vw;
  }
}
#research .year__box__inner {
  border-top: 1px solid #EBEBEB;
  padding: 25px 0;
}
@media screen and (max-width: 860px) {
  #research .year__box__inner {
    padding: 6.6666666667vw 0 0;
    margin-top: 8vw;
  }
}
#research .year__box__inner:last-child {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 6.4vw;
}
#research .year__box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 860px) {
  #research .year__box__list {
    display: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    margin-bottom: 5.3333333333vw;
    margin-bottom: 0;
  }
}
#research .year__box__list__item span {
  font-size: 1.3rem;
  font-weight: 600;
  margin-right: 12px;
  border: 1px solid #707070;
  color: #707070;
  width: 68px;
  height: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item span {
    font-size: 3.4666666667vw;
    width: 18.1333333333vw;
    height: 7.7333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}
#research .year__box__list__item .--document {
  border: 1px solid #1A9A90;
  background-color: #1A9A90;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item .--document {
    margin-bottom: 2.1333333333vw;
  }
}
#research .year__box__list__item .--paper {
  border: 1px solid #9A1A86;
  background-color: #9A1A86;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item .--paper {
    margin-bottom: 2.1333333333vw;
  }
}
#research .year__box__list__item .--references {
  border: none;
  color: #313131;
  font-size: 1.4rem;
  margin-bottom: 8px;
  width: auto;
  padding: 0 10px;
  font-weight: normal;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item .--references {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw 0 0;
    display: block;
  }
}
#research .year__box__list__item .--literary {
  border: 1px solid #1A469A;
  background-color: #1A469A;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item .--literary {
    margin-bottom: 2.1333333333vw;
  }
}
#research .year__box__list__item .--report {
  border: 1px solid #8B9A1A;
  background-color: #8B9A1A;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item .--report {
    margin-bottom: 2.1333333333vw;
  }
}
#research .year__box__list__item .--others {
  border: 1px solid #815C54;
  background-color: #815C54;
  color: #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__item .--others {
    margin-bottom: 2.1333333333vw;
  }
}
#research .year__box__list__description.--bold {
  font-weight: 600;
}
#research .year__box__list__description .typeA {
  font-weight: 600;
}
#research .year__box__list__description .typeB {
  font-size: 1.4rem;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__description .typeB {
    font-size: 3.7333333333vw;
  }
}
#research .year__box__list__description .typeC {
  margin-bottom: 12px;
}
#research .year__box__list__description .typeC-item {
  padding-left: 10px;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__description .typeC-item {
    font-size: 4.2666666667vw;
    padding-left: 2.6666666667vw;
  }
}
#research .year__box__list__description .typeC-item.--bold {
  font-weight: 600;
}
#research .year__box__list__description .typeC-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 5px;
  height: 2px;
  background: #313131;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__description .typeC-item::before {
    width: 1.3333333333vw;
    height: 0.5333333333vw;
  }
}
#research .year__box__list__description .typeD {
  font-weight: 600;
  margin-bottom: 12px;
}
@media screen and (max-width: 860px) {
  #research .year__box__list__description .typeD {
    margin-bottom: 3.2vw;
  }
}
#research .year__box__list__description .typeD span {
  font-weight: normal;
}/*# sourceMappingURL=style.css.map */