@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;600&display=swap");
/* breakpoint */
/**
* css変数　:root
*/
:root {
  --break-tab: 768;
  --break-pc: 1025;
  --break-maxtab: 1200;
  --break-maxsp: 767;
}

/* Reset
	 ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

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

/* everything
	 ========================================================================== */
* {
  letter-spacing: 0.06em;
}

/* Box sizing
	 ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif !important;
  color: #111 !important;
  background: #fff !important;
  overflow: scroll;
  overflow-x: hidden;
  font-size: 1.5rem;
}

p {
  color: #111;
  margin: 10px 0;
  line-height: 1.667em;
}

h1,
.h1 {
  color: #111;
  font-size: 24px;
  line-height: 1.4em;
  margin-top: 0;
}

body.page h1,
.h1 {
  font-size: 24px;
}

h2,
.h2 {
  color: #111;
  font-size: 21px;
  line-height: 1.4em;
  margin-top: 0;
}

h3,
.h3 {
  color: #111;
  font-size: 16px;
  line-height: 1.4em;
  margin-top: 0;
}

h4,
.h4 {
  color: #111;
  font-size: 14px;
  line-height: 1.4em;
  margin-top: 0;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 30px;
  }
  body.page h1,
  .h1 {
    font-size: 30px;
  }
  h2,
  .h2 {
    font-size: 26px;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
  h4,
  .h4 {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1025px) {
  h1,
  .h1 {
    font-size: 36px;
    font-weight: bold;
  }
  body.page h1,
  .h1 {
    font-size: 36px;
    font-weight: bold;
  }
  h2,
  .h2 {
    font-size: 30px;
    font-weight: bold;
  }
  h3,
  .h3 {
    font-size: 24px;
    font-weight: bold;
  }
  h4,
  .h4 {
    font-size: 14px;
    font-weight: bold;
  }
}
sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

.bold {
  font-weight: bold;
}

a:hover {
  color: #8990a5 !important;
}

.left {
  float: left;
}

.right {
  float: right;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.title_band {
  padding: 6px 20px;
  color: #111 !important;
  /* background: #111; */
  background: #e3f6ff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px !important;
  border-radius: 3px;
}

.adjust-box {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.box_1x1:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.box_3x2:before {
  content: "";
  display: block;
  padding-top: 66.66666666%;
}

.adjust-box .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 12px;
  color: #8990a5;
}

@media only screen and (min-width: 768px) {
  .breadcrumbs {
    font-size: 12px;
  }
}
.flex_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

::-moz-selection {
  background: #8990a5;
  color: #f9f9f9;
}

::selection {
  background: #8990a5;
  color: #f9f9f9;
}

a.btn_st {
  background: #111;
  color: #fcfcfc !important;
  padding: 0 20px;
  text-align: center;
  line-height: 40px;
  text-decoration: none !important;
  border-radius: 3px;
  display: inline-block;
  font-weight: bold;
  margin-top: 10px;
  margin-right: 6px;
  height: 40px;
}

a.btn_st:hover {
  background: #393f66;
}

a.btn_st span:before {
  font-family: Ionicons;
  content: "\f3d1";
  padding-right: 8px;
}

a.btn_lg {
  background: #111;
  color: #fcfcfc !important;
  padding: 0 80px;
  text-align: center;
  line-height: 60px;
  text-decoration: none !important;
  border-radius: 3px;
  display: inline-block;
  font-weight: bold;
  margin-top: 10px;
  margin-right: 6px;
  height: 60px;
}

a.btn_lg:hover {
  background: #393f66;
}

a.btn_lg span:before {
  font-family: Ionicons;
  content: "\f3d1";
  padding-right: 8px;
}

i.fa-youtube {
  font-size: 22px;
  line-height: 40px;
}

br.newline__in_pc {
  display: block;
}

@media only screen and (min-width: 1025px) {
  br.newline__in_pc {
    display: none;
  }
}
/* table */
.table_box {
  margin-bottom: 50px;
  border: solid 2px #111;
}

.table_box .h4 {
  background: #111;
  color: #fff;
  padding: 4px 10px;
  margin-bottom: 0;
}

.scroll-table {
  overflow: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #111;
  font-size: 0.85em;
  margin-bottom: 0;
}

tr:hover {
  background: #efefef;
}

tr:not(:first-child) th {
  border-top: solid 1px #111;
}

tr:not(:first-child) td {
  border-top: solid 1px #111;
}

th,
td {
  padding: 2px 6px;
  border: solid 1px #111;
  line-height: 2em;
  text-align: center;
}

th {
  background: #dadfea;
  color: #111;
  border-right: 1px solid #111 !important;
  border-left: 1px solid #111;
}

th:first-child {
  border-left: 1px solid #111;
}

th:last-child {
  border-right: 1px solid #111;
}

td {
  background: #fcfcfc;
  border-right: 1px solid #111 !important;
}

td a {
  position: relative;
  padding-left: 1em;
}

td a:before {
  font-family: Ionicons;
  content: "\f3d1";
  position: absolute;
  color: #111;
  left: 0;
}

td.text_left {
  text-align: left;
  padding-left: 14px;
}

.arrow-double {
  display: block;
  width: 14px;
  height: auto;
  float: right;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 0px;
}

.wrapper {
  position: relative;
  padding: 36px 0 100px !important;
  margin: 0 auto;
}

body.page .wrapper,
body.single-seeds .wrapper {
  width: 1100px;
}
@media screen and (max-width: 1200px) {
  body.page .wrapper,
  body.single-seeds .wrapper {
    width: 90%;
  }
}

ul,
ol {
  margin: 0;
  padding: 0;
}

article ul,
article ol {
  margin: 0.5em 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

ol li {
  text-indent: -1em;
  padding-left: 1em;
}

ul li,
ol li {
  line-height: 1.8em;
}
@media screen and (max-width: 1200px) {
  ul li,
  ol li {
    line-height: 1.8em;
  }
}

main section li {
  font-size: 1.4rem;
  margin-bottom: 0.4em;
}

/* list style type variation */
.wrapper section ul:not([class]) > li,
body.single article ul:not([class]) > li {
  position: relative;
  margin-left: 1.2em;
}
.wrapper section ul:not([class]) > li:before,
body.single article ul:not([class]) > li:before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: -1.2em;
  width: 0.8em;
  height: 1px;
  background-color: #2d2e52;
}
.wrapper section ul.list-style-disc > li,
body.single article ul.list-style-disc > li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.wrapper section ul.list-style-disc > li:before,
body.single article ul.list-style-disc > li:before {
  content: "・";
  position: relative;
  left: -0.2em;
  color: #2d2e52;
}
.wrapper section ul.list-style-circle > li,
body.single article ul.list-style-circle > li {
  text-indent: -1em;
  padding-left: 1.2em;
}
.wrapper section ul.list-style-circle > li:before,
body.single article ul.list-style-circle > li:before {
  content: "●";
  position: relative;
  left: -0.2em;
  color: #2d2e52;
}
.wrapper section ul.list-style-asterisk > li,
body.single article ul.list-style-asterisk > li {
  text-indent: -1em;
  padding-left: 1.2em;
  font-size: 1.3rem;
}
.wrapper section ul.list-style-asterisk > li:before,
body.single article ul.list-style-asterisk > li:before {
  content: "※";
  position: relative;
  left: -0.2em;
  color: #2d2e52;
}
.wrapper section ul.no-list-style > li,
body.single article ul.no-list-style > li {
  text-indent: 0;
  padding-left: 0;
  font-size: 1.3rem;
}
.wrapper section ul.no-list-style > li:before,
body.single article ul.no-list-style > li:before {
  display: none;
}
.wrapper section ol,
body.single article ol {
  list-style-type: none;
  counter-reset: count 0;
}
.wrapper section ol > li:before,
body.single article ol > li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  color: #2d2e52;
}
.wrapper section ol.brackets,
body.single article ol.brackets {
  list-style-type: none;
  counter-reset: count 0;
}
.wrapper section ol.brackets > li,
body.single article ol.brackets > li {
  text-indent: -1em;
  padding-left: 1em;
}
.wrapper section ol.brackets > li:before,
body.single article ol.brackets > li:before {
  content: "(" counter(count) ")";
  counter-increment: count 1;
  position: relative;
  left: -0.2em;
  color: #2d2e52;
}

.wrapper section dl:not([class]) {
  display: grid;
  gap: 0;
  row-gap: 16px;
  grid-template-columns: [key] minmax(auto, auto) [value] 1fr;
  margin-bottom: 16px;
}
.wrapper section dl:not([class]) dt {
  grid-column: key;
  padding-right: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .wrapper section dl:not([class]) dt {
    max-width: 8em;
    padding-right: 16px;
  }
}
.wrapper section dl:not([class]) dd {
  grid-column: value;
  margin-left: 0;
  padding-left: 24px;
  border-left: 2px solid #c5e8ff;
}
@media screen and (max-width: 1200px) {
  .wrapper section dl:not([class]) dd {
    padding-left: 16px;
  }
}

ul.flow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
ul.flow > li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #c5e8ff;
  text-align: center;
  height: 48px;
  line-height: 48px;
}
ul.flow > li a {
  pointer-events: none;
  position: relative;
  color: #111;
  width: 100%;
  text-align: center;
  display: block;
  padding-left: 12px;
  border-bottom: 0;
}
ul.flow > li a:after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -4px;
  width: 4px;
  height: 48px;
  background-color: #fff;
}
ul.flow > li:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 4px;
  border-style: solid;
  border-width: 24px 0 24px 18px;
  border-color: transparent transparent transparent #fff;
  z-index: 0;
}
ul.flow > li:not(:last-child):after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: -18px;
  border-style: solid;
  border-width: 24px 0 24px 18px;
  border-color: transparent transparent transparent #c5e8ff;
  z-index: 10;
}
ul.flow > li:first-child:before {
  border-color: transparent;
}
ul.flow > li.active {
  background-color: #2d2e52;
}
ul.flow > li.active:not(:last-child):after {
  border-color: transparent transparent transparent #2d2e52;
}
ul.flow > li.active a {
  color: #fff;
}

@media screen and (max-width: 1200px) {
  ul.flow > li {
    height: 24px;
    line-height: 24px;
  }
  ul.flow > li a {
    padding-left: 6px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  ul.flow > li a {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1200px) {
  ul.flow > li a:after {
    right: -2px;
    width: 2px;
    height: 24px;
  }
  ul.flow > li:before {
    left: 2px;
    border-width: 12px 0 12px 12px;
  }
  ul.flow > li:not(:last-child):after {
    right: -11px;
    border-width: 12px 0 12px 12px;
  }
}
a {
  text-decoration: none;
  color: #2d2e52;
}

/* 共通リセット */
input,
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: #2d2e52;
  line-height: normal;
  text-align: inherit;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

/* input特有のリセット例 */
input {
  border-radius: 0; /* iOS の角丸をリセット */
}

/* button特有のリセット例 */
button {
  cursor: pointer;
  background-color: transparent;
  height: 100%;
  padding: 0 8px;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

/* ------------------------------
   swiper
------------------------------ */
.swiper-container {
  width: 100%;
  height: 100%;
  padding: 38px 0 !important;
}

article.swiper-slide {
  text-align: left;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

article.swiper-slide h2 {
  font-size: 14px;
}

article.swiper-slide p.author {
  font-size: 13px;
}

#mainSwiper {
  padding-top: 8px;
  padding-bottom: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(68, 123, 149, 0.5))), url("https://www.research.oit.ac.jp/oitid/seeds/wp-content/uploads/2024/09/bg_hero_2024.jpg");
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(68, 123, 149, 0.5) 100%), url("https://www.research.oit.ac.jp/oitid/seeds/wp-content/uploads/2024/09/bg_hero_2024.jpg");
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(68, 123, 149, 0.5) 100%), url("https://www.research.oit.ac.jp/oitid/seeds/wp-content/uploads/2024/09/bg_hero_2024.jpg");
  background-size: 160px;
}

.thumbbox {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.thumbbox a {
  display: block;
  width: 100%;
  height: 100%;
}

.thumbbox .seeds-thumbnail {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f9f9f9;
}

.thumbbox .text-box {
  color: #f9f9f9;
  position: absolute;
  display: block;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 109px;
  background: rgba(29, 31, 51, 0.35);
  text-align: left;
  padding: 16px 20px;
  bottom: -33px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.thumbbox .text-box .seeds_title {
  font-size: 15px;
  font-weight: bold;
  color: #f9f9f9;
  line-height: 1.5em;
  margin: 0;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 45px;
}

.thumbbox .text-box .seeds_author {
  font-size: 15px;
  line-height: 15px;
  font-weight: bold;
  color: #f9f9f9;
  margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

@media only screen and (min-width: 960px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  background: rgba(0, 0, 0, 0.8) !important;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
  background: rgba(0, 0, 0, 0.8) !important;
  border-radius: 50%;
  width: 60px !important;
  height: 60px !important;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.swiper-button-next:before,
.swiper-button-prev:before {
  color: #f9f9f9;
  font-size: 24px;
  line-height: 44px;
}

.swiper-button-next:before {
  padding-left: 2px;
}

.swiper-button-prev:before {
  padding-right: 2px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none !important;
}

.swiper-container .partition_left {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 9;
  background: rgba(255, 255, 255, 0.8);
  width: 0; /* jsで出力 */
  height: 0; /* jsで出力 */
  border-radius: 0px 4px 4px 0px;
}

.swiper-container .partition_right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 9;
  background: rgba(249, 249, 249, 0.8);
  width: 0; /* jsで出力 */
  height: 0; /* jsで出力 */
  border-radius: 3px 0px 0px 4px;
}

#historyList .swiper-container .partition_left,
#singleSeedsList .swiper-container .partition_left {
  background: rgba(234, 235, 239, 0.8);
}

#historyList .swiper-container .partition_right,
#singleSeedsList .swiper-container .partition_right {
  background: rgba(234, 235, 239, 0.8);
}

.list_swiper .thumbbox .text-box .seeds_title {
  font-size: 14px;
}

.list_swiper .thumbbox .text-box .seeds_author {
  font-size: 14px;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-slide {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background: no-repeat 50%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E");
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}

.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}

.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
  outline: none;
  background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
  background: #b93d0c;
}

.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-close:before,
.modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 3px;
  height: 22px;
  border-radius: 4px;
  background: #111;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}

.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}

.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}

.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}

.modaal-gallery-item img {
  display: block;
}

.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
  background: #afb7bc;
}

.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}

.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
  left: 22px;
}

.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}

.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
  transform: scale(0.25);
}

.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before,
  .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.addtoany_shortcode {
  display: inline-block;
  float: right;
}

.addtoany_shortcode::before {
  content: "シェアする：";
}

.addtoany_shortcode a {
  height: 32px;
}

.addtoany_list a,
.widget .addtoany_list a {
  margin-bottom: 8px;
}

@media only screen and (min-width: 768px) {
  .addtoany_list a,
  .widget .addtoany_list a {
    margin-bottom: 0;
  }
}
/* 
https://www.research.oit.ac.jp/oitid/seeds/seeds/seeds-13018/
原因不明のsmallタグが入るので、強制的にフォントサイズを変更する
*/
body.elementor-page-13018 .elementor-widget-text-editor small {
  font-size: 14px !important;
}

body.elementor-page-13018 .elementor-inner h2 small {
  font-size: 18px !important;
  text-shadow: none !important;
}

@media screen and (min-width: 768px) {
  body.elementor-page-13018 .elementor-inner h2 small {
    font-size: 18px !important;
  }
}
@media screen and (min-width: 1367px) {
  body.elementor-page-13018 .elementor-inner h2 small {
    font-size: 21px !important;
    text-shadow: none !important;
  }
}
header.elementor-slideshow__header {
  background-color: transparent !important;
}

/* Elemntorの強制CSS */
.elementor-widget-container {
  /* margin: 0 !important; */
  /* padding: 0 !important; */
  -webkit-transition: none !important;
  transition: none !important;
  border-style: none !important;
  border-width: 0 !important;
  border-radius: 0 !important;
}

.elementor a {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif !important;
  color: #333 !important;
  text-decoration: underline !important;
}

.elementor a.btn_st {
  color: #fff !important;
  text-decoration: none !important;
}
.elementor a.btn_lg {
  color: #fff !important;
  text-decoration: none !important;
}

.elementor b {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif !important;
}

/* テキストエディタ */
.elementor-text-editor {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif !important;
  /* text-align: left !important; */
  color: #111 !important;
  font-size: 14px !important;
  text-shadow: none !important;
  -webkit-columns: auto !important;
     -moz-columns: auto !important;
          columns: auto !important;
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.like_and_share {
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  background: #e3f6ff;
}

.wpulike {
  display: inline-block;
  padding: 0;
  margin-right: 30px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .wpulike {
    margin-bottom: 0;
  }
}
.wpulike-default .wp_ulike_btn {
  color: #e3f6ff;
  background-color: #fff;
  min-height: 32px;
  min-width: 50px;
}

.popup_like_on,
.popup_like_off {
  display: none;
  position: absolute;
  top: -2.5em;
  left: 0;
  z-index: 2;
  background: #fff;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 13px;
  line-height: 1em;
}

/* ------------------------------
  zoom.js
------------------------------ */
img[data-action=zoom] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}

.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 666;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

img.zoom-img {
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}

.zoom-overlay {
  z-index: 420;
  background: #f9f9f9;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 0.75;
}

.zoom-overlay-open,
.zoom-overlay-transitioning {
  cursor: default;
}

.loading {
  position: absolute;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.loading.loaded {
  display: none;
}

/* ヘッダー・ナビ */
.search-filter {
  position: absolute;
  display: block;
  position: relative;
  z-index: 99;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(linear, left top, right top, from(#2d2e52), to(#474d7f));
  background: -webkit-linear-gradient(left, #2d2e52 0%, #474d7f 100%);
  background: linear-gradient(90deg, #2d2e52 0%, #474d7f 100%);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  color: #f9f9f9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 42px;
  border-bottom: 1px solid #8990a5;
}
@media screen and (max-width: 1200px) {
  .search-filter {
    display: none;
  }
}
.search-filter .inner.flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 72px;
  height: 100%;
}
.search-filter .inner.flex .search-box.flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}
.search-filter .inner.flex .search-box.flex .main-title {
  font-size: 1.4rem;
}
.search-filter .inner.flex .search-box.flex form label.flex {
  background-color: #fff;
  height: 36px;
  border-radius: 1000px;
  padding: 0 4px 0 16px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.search-filter .inner.flex .search-box.flex form label.flex input {
  height: 36px;
  font-size: 1.4rem;
}
.search-filter .inner.flex .seeds-cat-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  height: 100%;
}
.search-filter .inner.flex .seeds-cat-box .main-title {
  display: none;
}
.search-filter .inner.flex .seeds-cat-box li.widget {
  list-style: none;
  width: auto;
  border: none;
  height: 100%;
}
.search-filter .inner.flex .seeds-cat-box li.widget h2.widgettitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #fff;
  font-weight: normal;
  height: 100%;
}
.search-filter .inner.flex .seeds-cat-box li.widget h2.widgettitle img.icon-arrow {
  width: 6px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 0.5em;
}
.search-filter .inner.flex .seeds-cat-box li.widget h2.widgettitle.is-open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.search-filter .inner.flex .seeds-cat-box li.widget h2.widgettitle.is-open::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul,
.search-filter .inner.flex .seeds-cat-box li.widget > div {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: #2d2e52;
  padding: 24px;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul li,
.search-filter .inner.flex .seeds-cat-box li.widget > div li {
  line-height: 2em;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul li a,
.search-filter .inner.flex .seeds-cat-box li.widget > div li a {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1.3rem;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul ul.wp-tag-cloud li a,
.search-filter .inner.flex .seeds-cat-box li.widget > div ul.wp-tag-cloud li a {
  color: #2d2e52;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul p.see_all_keyword.flex,
.search-filter .inner.flex .seeds-cat-box li.widget > div p.see_all_keyword.flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul p.see_all_keyword.flex a,
.search-filter .inner.flex .seeds-cat-box li.widget > div p.see_all_keyword.flex a {
  color: #f9f9f9;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul p.see_all_keyword.flex a img.icon-arrow,
.search-filter .inner.flex .seeds-cat-box li.widget > div p.see_all_keyword.flex a img.icon-arrow {
  width: 6px;
  margin-left: 0.3em;
}
.search-filter .inner.flex .seeds-cat-box li.widget > ul.is-open,
.search-filter .inner.flex .seeds-cat-box li.widget > div.is-open {
  max-height: 1000px;
  opacity: 1;
}

aside#sidebar {
  background: #eaebef;
  padding: 20px;
  width: 280px;
  border-radius: 3px;
}
@media screen and (max-width: 1200px) {
  aside#sidebar {
    width: 100%;
    margin-bottom: 60px;
  }
}
aside#sidebar .widget {
  margin-bottom: 30px;
}
aside#sidebar .widget .qodef-widget-title {
  font-size: 16px;
  line-height: 16px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid #2d2e52;
  margin-bottom: 14px;
}
aside#sidebar .widget ul {
  padding: 0 10px !important;
}
aside#sidebar .widget ul li {
  line-height: 1em;
}
aside#sidebar .widget ul a {
  color: #2d2e52;
  font-size: 13px;
  line-height: 17px;
}
aside#sidebar .widget .widget.widget_tag_cloud .tagcloud a {
  color: #02a0e9;
}
aside#sidebar .widget ul.sdgs_icon_box li {
  width: 40px;
  height: 40px;
  margin-right: 4px;
  margin-bottom: 4px;
  float: left;
}
aside#sidebar .widget form ul {
  padding: 0 !important;
}
aside#sidebar .widget li[data-sf-field-name=search] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 3px 10px;
  border-radius: 23px;
  height: 46px;
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  -webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.2) inset;
  padding: 0 20px !important;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text] {
  border: none;
  height: 46px;
  margin-bottom: 0;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text]::-webkit-input-placeholder {
  color: #2d2e52;
  font-weight: normal;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text]::-moz-placeholder {
  color: #2d2e52;
  font-weight: normal;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text]:-ms-input-placeholder {
  color: #2d2e52;
  font-weight: normal;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text]::-ms-input-placeholder {
  color: #2d2e52;
  font-weight: normal;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text]::placeholder {
  color: #2d2e52;
  font-weight: normal;
}
aside#sidebar .widget li[data-sf-field-name=search] input[type=text]:focus {
  outline: 0;
}
aside#sidebar .widget ul.wp-tag-cloud li {
  display: inline-block;
  border: 1px solid #2d2e52;
  line-height: 1.5em;
  padding: 4px 16px;
  margin-right: 4px !important;
  margin-bottom: 8px !important;
  border-radius: 1000px;
  background: #f6f6f6;
}
aside#sidebar .widget ul.wp-tag-cloud li a {
  font-size: 13px !important;
}

li.sf-field-search label {
  width: 100%;
}

.search_box input[name="_sf_search[]"] {
  width: 80%;
}

input[type=text] {
  width: 80%;
}

li[data-sf-field-name=search] input[type=text] {
  float: left;
}

button.qodef-search-form-button {
  width: 18px;
  height: 46px;
  line-height: 46px;
  padding: 0;
  padding-top: 1px;
  float: right;
  background: transparent;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button.qodef-search-form-button:hover {
  background: transparent !important;
  border: none !important;
  color: #8990a5;
}

.fa-search:before {
  content: "\f002";
  font-size: 18px !important;
  color: #999;
}

.breadcrumb_break:before {
  font-family: Ionicons;
  content: "\f3d1";
  padding: 0 8px;
}

/* ------------------------------
   フッター
------------------------------ */
footer p {
  color: #fcfcfc;
}

#qodef-page-footer-top-area {
  display: none;
}

@media only screen and (min-width: 1367px) {
  #qodef-page-footer-top-area {
    display: block;
  }
  #qodef-page-footer-top-area {
    display: block;
    background-color: #333 !important;
    padding: 80px 0 40px;
    height: 600px;
  }
}
#qodef-page-footer-bottom-area {
  background-color: #111 !important;
  padding-top: 60px;
}

#qodef-page-footer-top-area {
  -webkit-box-shadow: 0 5px 8px -4px rgba(0, 0, 0, 0.3) inset;
          box-shadow: 0 5px 8px -4px rgba(0, 0, 0, 0.3) inset;
  padding-left: 40px;
  padding-right: 40px;
}

.qodef-back-to-top--dark #qodef-back-to-top .qodef-back-to-top-icon {
  background: #f9f9f9;
}

.ion-ios-arrow-up:before {
  font-size: 24px;
  color: #111;
}

#qodef-back-to-top .qodef-back-to-top-icon > svg path {
  stroke-width: 4px;
}

.qodef-back-to-top--dark #qodef-back-to-top .qodef-back-to-top-icon > svg path {
  stroke: #111;
}

#qodef-page-footer-top-area .qodef-content-full-width {
  padding: 0 40px;
}

#qodef-page-footer-top-area {
  padding-left: 0;
  padding-right: 0;
}

#qodef-page-footer-top-area .qodef-content-full-width {
  padding: 0;
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 1367px) {
  #qodef-page-footer-top-area .qodef-content-full-width {
    width: 1200px;
  }
}
.qodef-grid.qodef-layout--columns.qodef-col-num--2 > .qodef-grid-inner > .qodef-grid-item {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .qodef-grid.qodef-layout--columns.qodef-col-num--2 > .qodef-grid-inner > .qodef-grid-item {
    width: 50%;
  }
}
.footer_menu ul.menu {
  display: block;
}

@media only screen and (min-width: 1367px) {
  .footer_menu ul.menu {
    display: block;
    font-size: 11px;
  }
  .footer_menu ul.menu > li {
    display: table;
    width: 200px;
    margin-bottom: 20px !important;
    line-height: 2em;
  }
  .footer_menu ul.menu > li.menu-item-8232 > a {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #8990a5;
  }
  .footer_menu ul.menu > li.menu-item-8008 > a {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #8990a5;
  }
  .footer_menu ul.menu > li.menu-item-8205 > a {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #8990a5;
  }
  .footer_menu ul.menu > li > a {
    font-weight: bold;
  }
  .footer_menu ul.menu > li > ul.sub-menu {
    margin-left: 0px !important;
  }
  /* 学科別教員一覧 */
  .footer_menu ul.menu > li.menu-item-8007 {
    width: 960px;
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0 !important;
  }
  .footer_menu ul.menu > li.menu-item-8007 > ul.sub-menu > li {
    width: 220px;
    float: left;
    margin-right: 20px !important;
  }
  .footer_menu ul.menu > li.menu-item-8007 > ul.sub-menu > li > a {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #8990a5;
  }
  .footer_menu ul.menu > li.menu-item-8007 > ul.sub-menu > li > ul.sub-menu {
    margin-left: 0 !important;
  }
  .footer_menu li.menu-item-4069 > a {
    border-bottom: none !important;
    margin-bottom: 20px;
  }
  /* その他を削除 */
  .footer_menu li.menu-item-4084 > a {
    display: none !important;
  }
  .footer_menu ul.menu > li.menu-item-8007 > ul.sub-menu > li > ul.sub-menu > li.menu-item-4083 > a {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #8990a5;
  }
  .footer_menu ul.menu > li.menu-item-8007 > ul.sub-menu > li > ul.sub-menu > li ul.sub-menu {
    margin-left: 0px !important;
  }
  .footer_menu ul.menu a[href]::before {
    font-family: Ionicons;
    content: "\f3d1";
    padding-right: 6px;
  }
  .footer_menu li.menu-item-4069 {
    margin-top: 14px !important;
  }
  .footer_menu li.menu-item-4069 > a {
    font-weight: normal !important;
  }
  .footer_menu li.menu-item-4074 {
    margin-top: 30px !important;
    border-top: 1px solid #8990a5;
    padding-top: 4px;
  }
  .footer_menu li a:not([href]) {
    pointer-events: none;
  }
  .footer_menu li.menu-item-8051 {
    margin-top: 20px !important;
  }
  .footer_menu li.menu-item-8051 > a {
    display: none !important;
  }
  .footer_menu li.menu-item-8036 > a {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid #8990a5;
  }
  .footer_menu li.menu-item-8040 {
    margin-top: 20px !important;
  }
}
#qodef-page-footer-bottom-area-inner {
  padding: 0;
  width: 90% !important;
  margin: 0 auto;
}

@media only screen and (min-width: 1367px) {
  #qodef-page-footer-bottom-area-inner {
    width: 1200px !important;
  }
}
footer p.desc {
  margin-top: 0;
  margin-bottom: 10px !important;
}

footer a.to_contact {
  background: #dadfea;
  color: #111 !important;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 13px;
  font-weight: bold;
}

footer a.to_contact:hover {
  background: #fcfcfc;
}

#copyrightArea {
  background: #111;
}

#copyrightArea .inner {
  padding: 20px 0px 60px;
  width: 90% !important;
  margin: 0 auto;
}

@media only screen and (min-width: 1367px) {
  #copyrightArea .inner {
    width: 1200px !important;
  }
}
.copyright {
  color: #f9f9f9;
  margin-top: 0px !important;
  margin-bottom: 40px !important;
}

@media only screen and (min-width: 768px) {
  .copyright {
    color: #f9f9f9;
    margin-bottom: 0 !important;
  }
}
.footer_logo_oit {
  width: 140px;
  margin-bottom: 30px;
}

.footer_logo {
  width: 140px;
  margin-bottom: 30px;
}

.footer_logo_crssc {
  width: 200px;
}

@media only screen and (min-width: 768px) {
  .footer_logo_box {
    float: right;
    width: 472px;
  }
  .footer_logo_oit {
    width: 130px;
    float: left;
    margin-top: 5px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .footer_logo {
    width: 130px;
    float: left;
    margin-right: 22px;
    margin-bottom: 0;
  }
  .footer_logo_crssc {
    width: 170px;
    float: left;
    margin-top: 5px;
    margin-bottom: 0;
  }
}
#qodef-back-to-top {
  width: 60px;
  height: 60px;
}

#qodef-back-to-top .qodef-back-to-top-icon > span {
  line-height: 62px;
  width: 60px;
}

footer .to_contact span {
  padding-right: 0;
}

.swiper_box {
  position: relative;
  padding: 0;
}

.swiper_box .title_box {
  position: absolute;
  top: 0;
  left: 24px;
  height: 21px;
  width: 100%;
}

.swiper_box .qodef-grid {
  z-index: 2;
}

.swiper_box .seeds-list-box {
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .swiper_box .title_box {
    left: 40px;
  }
}
@media only screen and (min-width: 960px) {
  .swiper_box .title_box {
    left: 0; /* jsで出力 */
    z-index: 1;
    margin-top: 8px;
  }
}
.swiper_box .title_box h2 {
  position: absolute;
  z-index: 2;
  top: -2px;
  left: 0;
  height: 20px;
  line-height: 20px;
  font-size: 20px;
  background: #fff;
  padding-right: 14px;
  font-weight: bold;
}

.swiper_box .title_box .line {
  position: absolute;
  z-index: 1;
  top: calc(0.5em - 2px);
  left: 0;
  width: 100%;
  height: 2px;
  background: #00a0e9;
}

#historyList .swiper_box .title_box h2 {
  background: #eaebef;
}

.thumb-box {
  width: 400px;
  -webkti-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.post-module {
  position: relative;
  z-index: 1;
  display: block;
  background: #ffffff;
  width: 100%;
  height: auto; /* jsで出力 */
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #dadfea;
}

.post-module:hover,
.hover {
  -webkit-box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.4);
}

.post-module .seeds-thumbnail-box {
  overflow: hidden;
}

.post-module .like {
  position: absolute;
  z-index: 2;
  top: 4px;
  right: 10px;
}

.post-module .like .wpulike {
  margin-right: 0;
}

.post-module .like .wpulike .wp_ulike_general_class {
  background: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  height: 26px;
  line-height: 26px;
}

.post-module .like .wpulike .wp_ulike_btn {
  background: transparent !important;
  padding: 0;
  width: 1em;
  margin-right: 0.4em;
  min-width: unset;
  height: 26px;
  min-height: 26px;
}

.post-module .like .wpulike .count-box {
  margin-left: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  border: none;
  border-radius: none;
  font-weight: bold;
  line-height: 26px;
}

.post-module .like .wpulike .count-box:before {
  display: none;
}

.post-module .like .wpulike-default .wp_ulike_put_image:after {
  width: 13px;
  height: 13px;
}

.post-module .like .wp_ulike_put_image.wp_ulike_btn_is_active:after {
  -webkit-filter: invert(0%) sepia(40%) saturate(1000%) hue-rotate(330deg) brightness(100%) contrast(1000%);
          filter: invert(0%) sepia(40%) saturate(1000%) hue-rotate(330deg) brightness(100%) contrast(1000%);
}

.post-module .seeds-thumbnail {
  background-size: cover;
  opacity: 1;
}

.post-module:hover .seeds-thumbnail,
.hover .seeds-thumbnail {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.6;
}

.post-module .seeds-thumbnail {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-position: center;
  background-size: cover;
}

.post-module .post-content {
  position: absolute;
  bottom: 0;
  background: #fff;
  width: 100%;
  padding: 14px 20px 12px;
  -webkti-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  transition: all 0.3s cubic-bezier(0.37, 0.75, 0.61, 1.05) 0s;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.post-module .post-content .author-name {
  position: absolute;
  top: -18px;
  left: 0;
  background: #2d2e52;
  padding: 6px 20px 6px 20px;
  color: #ffffff;
  font-size: 13px;
  line-height: 13px;
  font-weight: bold;
  /*  border-radius: 0px 4px 4px 0; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.post-module .post-content .seeds_title {
  margin: 0;
  /*   padding: 0 0 10px; */
  color: #2d2e52;
  font-size: 15px;
  /*   line-height: 1.5em; */
  height: 3em;
  font-weight: bold;
}

/* ------- */
.seeds_title .ellipsis {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1.5em;
  max-height: 3em;
  text-align: justify;
}

.seeds_title .ellipsis::before {
  content: "...";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 1em;
}

.seeds_title .ellipsis::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1em;
  height: 1.2em;
  background-color: #fff;
}

/* ------- */
.post-module .post-content .seeds_author {
  margin: 0;
  color: #8990a5;
  font-size: 14px;
  font-weight: 400;
}

.post-module .post-content .description {
  display: none;
  color: #666666;
  font-size: 13px;
  line-height: 4.5em;
}

.post-content p.description {
  overflow: hidden;
}

/* ------- */
.post-module .post-content .description .ellipsis {
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 1.5em;
  max-height: 3em;
  text-align: justify;
}

.post-module .post-content .description .ellipsis::before {
  content: "...";
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 1em;
}

.post-module .post-content .description .ellipsis::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1em;
  height: 1.2em;
  background-color: #fff;
}

/* ------- */
.swiper-button-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-button-prev img {
  width: 9px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-button-next img {
  width: 9px;
  height: auto;
}

/* 参考: https://shibajuku.net/olex/ */
.grid-system {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.gs-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

/*
  Grid
*/
@media screen and (min-width: 320px) {
  .gs-item[data-grid~=sp0] {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .gs-item[data-grid~=sp0] {
    display: block;
  }
}

.gs-item[data-grid~=sp1] {
  width: 8.33333%;
}

.gs-item[data-grid~=sp2] {
  width: 16.66667%;
}

.gs-item[data-grid~=sp3] {
  width: 25%;
}

.gs-item[data-grid~=sp4] {
  width: 33.33333%;
}

.gs-item[data-grid~=sp5] {
  width: 41.66667%;
}

.gs-item[data-grid~=sp6] {
  width: 50%;
}

.gs-item[data-grid~=sp7] {
  width: 58.33333%;
}

.gs-item[data-grid~=sp8] {
  width: 66.66667%;
}

.gs-item[data-grid~=sp9] {
  width: 75%;
}

.gs-item[data-grid~=sp10] {
  width: 83.33333%;
}

.gs-item[data-grid~=sp11] {
  width: 91.66667%;
}

.gs-item[data-grid~=sp12] {
  width: 100%;
}

.gs-item[data-grid~=spFive] {
  width: 20%;
}

.gs-item[data-grid~=spAuto] {
  width: auto;
}

@media screen and (min-width: 768px) {
  .gs-item[data-grid~=tab0] {
    display: none;
  }
  .gs-item[data-grid~=tab1] {
    width: 8.33333%;
  }
  .gs-item[data-grid~=tab2] {
    width: 16.66667%;
  }
  .gs-item[data-grid~=tab3] {
    width: 25%;
  }
  .gs-item[data-grid~=tab4] {
    width: 33.33333%;
  }
  .gs-item[data-grid~=tab5] {
    width: 41.66667%;
  }
  .gs-item[data-grid~=tab6] {
    width: 50%;
  }
  .gs-item[data-grid~=tab7] {
    width: 58.33333%;
  }
  .gs-item[data-grid~=tab8] {
    width: 66.66667%;
  }
  .gs-item[data-grid~=tab9] {
    width: 75%;
  }
  .gs-item[data-grid~=tab10] {
    width: 83.33333%;
  }
  .gs-item[data-grid~=tab11] {
    width: 91.66667%;
  }
  .gs-item[data-grid~=tab12] {
    width: 100%;
  }
  .gs-item[data-grid~=tabFive] {
    width: 20%;
  }
  .gs-item[data-grid~=tabAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1025px) {
  .gs-item[data-grid~=pc0] {
    display: none;
  }
  .gs-item[data-grid~=pc1] {
    width: 8.33333%;
  }
  .gs-item[data-grid~=pc2] {
    width: 16.66667%;
  }
  .gs-item[data-grid~=pc3] {
    width: 25%;
  }
  .gs-item[data-grid~=pc4] {
    width: 33.33333%;
  }
  .gs-item[data-grid~=pc5] {
    width: 41.66667%;
  }
  .gs-item[data-grid~=pc6] {
    width: 50%;
  }
  .gs-item[data-grid~=pc7] {
    width: 58.33333%;
  }
  .gs-item[data-grid~=pc8] {
    width: 66.66667%;
  }
  .gs-item[data-grid~=pc9] {
    width: 75%;
  }
  .gs-item[data-grid~=pc10] {
    width: 83.33333%;
  }
  .gs-item[data-grid~=pc11] {
    width: 91.66667%;
  }
  .gs-item[data-grid~=pc12] {
    width: 100%;
  }
  .gs-item[data-grid~=pcFive] {
    width: 20%;
  }
  .gs-item[data-grid~=pcAuto] {
    width: auto;
  }
}
@media screen and (min-width: 1920px) {
  .gs-item[data-grid~=pcxl1] {
    width: 8.33333%;
  }
  .gs-item[data-grid~=pcxl2] {
    width: 16.66667%;
  }
  .gs-item[data-grid~=pcxl3] {
    width: 25%;
  }
  .gs-item[data-grid~=pcxl4] {
    width: 33.33333%;
  }
  .gs-item[data-grid~=pcxl5] {
    width: 41.66667%;
  }
  .gs-item[data-grid~=pcxl6] {
    width: 50%;
  }
  .gs-item[data-grid~=pcxl7] {
    width: 58.33333%;
  }
  .gs-item[data-grid~=pcxl8] {
    width: 66.66667%;
  }
  .gs-item[data-grid~=pcxl9] {
    width: 75%;
  }
  .gs-item[data-grid~=pcxl10] {
    width: 83.33333%;
  }
  .gs-item[data-grid~=pcxl11] {
    width: 91.66667%;
  }
  .gs-item[data-grid~=pcxl12] {
    width: 100%;
  }
  .gs-item[data-grid~=pcxlFive] {
    width: 20%;
  }
  .gs-item[data-grid~=pcxlAuto] {
    width: auto;
  }
}
/* Gutter */
.grid-system[data-gutter] {
  width: auto;
}

.grid-system[data-gutter] > .gs-item {
  border: solid transparent;
  background-clip: padding-box;
}

.grid-system[data-gutter=none] {
  margin: 0;
}

.grid-system[data-gutter=none] > .gs-item {
  border-width: 0;
}

.grid-system[data-gutter=small] {
  margin: -4px;
}

.grid-system[data-gutter=small] > .gs-item {
  border-width: 4px;
}

.grid-system[data-gutter=normal] {
  margin: -8px;
}

.grid-system[data-gutter=normal] > .gs-item {
  border-width: 8px;
}

.grid-system[data-gutter=large] {
  margin: -16px;
}

.grid-system[data-gutter=large] > .gs-item {
  border-width: 16px;
}

@media screen and (min-width: 1025px) {
  .grid-system[data-gutter=none] {
    margin: 0;
  }
  .grid-system[data-gutter=none] > .gs-item {
    border-width: 0;
  }
  .grid-system[data-gutter=small] {
    margin: -8px;
  }
  .grid-system[data-gutter=small] > .gs-item {
    border-width: 8px;
  }
  .grid-system[data-gutter=normal] {
    margin: -16px;
  }
  .grid-system[data-gutter=normal] > .gs-item {
    border-width: 16px;
  }
  .grid-system[data-gutter=large] {
    margin: -32px;
  }
  .grid-system[data-gutter=large] > .gs-item {
    border-width: 32px;
  }
}
/*
  Align 
*/
.grid-system[data-align~=start] {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.grid-system[data-align~=center] {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid-system[data-align~=end] {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.grid-system[data-align~=justify] {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grid-system[data-align~=top] {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.grid-system[data-align~=middle] {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.grid-system[data-align~=bottom] {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.gs-item[data-align~=start] {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.gs-item[data-align~=center] {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.gs-item[data-align~=end] {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.gs-item[data-align~=top] {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.gs-item[data-align~=middle] {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gs-item[data-align~=bottom] {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* 
  Order 
*/
.grid-system[data-dir=normal] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.grid-system[data-dir=reverse] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1200px) {
  .flex > .item {
    width: 100%;
  }
}
.flex > .half-box {
  width: 48.5%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .flex > .half-box {
    width: 100%;
    margin-bottom: 20px;
  }
}

.inline-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .inline-flex > .item {
    width: 100%;
  }
}
.inline-flex > .half-box {
  width: 48.5%;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .inline-flex > .half-box {
    width: 100%;
    margin-bottom: 20px;
  }
}

.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 1025px) {
  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1025px) {
  .reverse__pc-only {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (max-width: 1200px) {
  .reverse__maxtab-only {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.grid {
  display: grid;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .maxtab-only {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .maxtab-only {
    display: block;
  }
}

.pc-only-inline-block {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc-only-inline-block {
    display: inline-block;
  }
}

@media screen and (min-width: 1025px) {
  .maxtab-only-inline-block {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .maxtab-only-inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 1200px) {
  header.site-header nav.global-nav .hide-only-glnav {
    display: none;
  }
}

/* 印刷用CSS */
@media print {
  html,
  body {
    overflow: visible !important;
  }
  img {
    display: inline-block !important;
  }
  header {
    display: none !important;
  }
  .search_filter {
    display: none !important;
  }
  #qodef-page-sidebar {
    display: none !important;
  }
  #singleSeedsList {
    display: none !important;
  }
  footer {
    display: none !important;
  }
}
/* ------------------------------
   トップページ
------------------------------ */
body.home {
  background: #fff !important;
}
body.home .breadcrumbs {
  display: none;
}

#mv .mv_mobile {
  display: block;
  width: 100%;
}

#mv .mv_pc {
  display: none;
}

@media only screen and (min-width: 1200px) {
  #mv .mv_mobile {
    display: none;
  }
  #mv .mv_pc {
    display: block;
    width: 100%;
  }
}
#historyList {
  background: #eaebef;
  padding: 36px 0 8px;
}

#newsheading {
  padding: 10px 0;
  /* background: #2d2e52; */
  background: rgb(45, 46, 82);
  background: -webkit-gradient(linear, left top, right top, from(#2d2e52), to(#474d7f));
  background: -webkit-linear-gradient(left, #2d2e52 0%, #474d7f 100%);
  background: linear-gradient(90deg, #2d2e52 0%, #474d7f 100%);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

#newsheading .inner {
  width: 90%;
  margin: 0 auto;
  padding: 10px 14px;
  height: auto;
}

#newsheading .inner .news_list_box {
  display: block !important;
}

#newsheading .inner p.h4 {
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1em;
  color: #f9f9f9;
}

#newsheading .inner a {
  color: #f9f9f9;
}

#newsheading .inner p.to_all {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0px;
  float: right;
  font-size: 13px;
}

#newsheading .inner p.to_all a {
  font-size: 14px;
  display: inline-block;
  line-height: 1em;
}

#newsheading .inner p.to_all a::after {
  font-family: Ionicons;
  content: "\f3d1";
  padding-left: 6px;
}

#newsheading .inner article {
  display: block;
  width: 100%;
  border-top: 1px solid #8990a5;
  border-bottom: 1px solid #8990a5;
  margin-bottom: -1px;
  padding: 4px;
}

#newsheading .inner article a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#newsheading .inner article span.date::before {
  font-family: Ionicons;
  content: "\f3d1";
  padding-right: 10px;
}

#newsheading .inner article span.date {
  font-size: 13px;
  display: inline-block;
  margin-right: 0.5em;
}

#newsheading .inner article span.title {
  font-size: 13px;
  display: inline;
  margin: 0;
}

#newsheading p.none_post {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  #newsheading {
    padding: 36px 0;
  }
  #newsheading .inner {
    width: 90%;
    height: auto;
    padding: 0 20px;
    border-radius: 25px;
  }
  #newsheading .inner p.h4 {
    margin-bottom: 16px;
  }
  #newsheading .inner .news_list_box article {
    line-height: 40px;
  }
}
@media only screen and (min-width: 960px) {
  #newsheading .inner {
    width: 70%;
  }
}
@media only screen and (min-width: 1367px) {
  #newsheading {
    padding: 10px 0;
  }
  #newsheading .inner {
    width: 100%;
    padding: 0 46px;
  }
  #newsheading .inner .news_list_box {
    width: 80%;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    /*     justify-content: space-between; */
  }
  #newsheading .inner p.h4 {
    float: left;
    margin-bottom: 10px;
    width: 10%;
    line-height: 46px;
    margin-bottom: 0;
    font-size: 15px;
    text-align: right;
    padding-right: 36px;
  }
  #newsheading .inner p.to_all {
    width: 10%;
    line-height: 46px;
    text-align: left;
    padding-left: 36px;
  }
  #newsheading .inner p.to_all a {
    font-size: 14px;
  }
  #newsheading .inner .news_list_box article {
    line-height: 36px;
    width: 33.3333333333%;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #8990a5;
    padding: 4px 20px;
  }
  #newsheading .inner .news_list_box article a {
    text-align: center;
  }
  #newsheading .inner .news_list_box article:last-child {
    border-right: 1px solid #8990a5;
  }
}
#topSeedsList {
  margin-top: 36px;
  margin-bottom: 80px;
}

#about {
  margin-top: 60px;
  padding: 72px 5%;
  background: #8990a5;
}

#about h2 {
  text-align: center;
  color: #fcfcfc;
  font-weight: normal;
}

#about p {
  text-align: center;
  color: #fcfcfc;
  font-weight: normal;
  line-height: 1.5;
}

@media only screen and (min-width: 768px) {
  #about p {
    font-size: 15px;
  }
}
body.single-seeds main > .flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  body.single-seeds main > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
body.single-seeds .seeds-box {
  width: 760px;
}
@media screen and (max-width: 1200px) {
  body.single-seeds .seeds-box {
    width: 100%;
  }
}
body.single-seeds .seeds-box .seeds-title-box {
  border: 4px solid #dadfea;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 3px;
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box {
  width: calc(79% - 15px);
}
@media screen and (max-width: 1200px) {
  body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box {
    width: 100%;
  }
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms dl.flex {
  padding: 0 !important;
  margin-bottom: 4px;
  color: #111;
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms dl.flex dt {
  background: #eaebef;
  margin-bottom: 6px;
  padding: 1px 10px;
  font-size: 1.4rem;
  border-radius: 3px;
  font-weight: bold;
  height: 2.6rem;
  line-height: 2.6rem;
  width: 8em;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms dl.flex dt {
    width: 100%;
    text-align: left;
  }
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms dl.flex dd {
  padding: 0 10px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5em;
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms dl.flex dd .sdgs-icon {
  height: 26px;
  width: auto;
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms .term-theme dd a,
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .seeds-term-box .terms .term-department dd a {
  display: inline-block;
  border: 1px solid #ccd4ed;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 6px;
  margin-bottom: 6px;
  background: #fcfcfc;
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .thumbnail {
  position: relative;
  display: block;
  width: 21%;
  float: right;
  margin-left: 15px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1200px) {
  body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .thumbnail {
    display: none;
  }
}
body.single-seeds .seeds-box .seeds-title-box .term-and-thumbnail-box.flex .thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-seeds .seeds-box .seeds-title-box h1 {
  margin: 10px 0 20px;
}
body.single-seeds .seeds-box .seeds-title-box h1 .seeds_title {
  font-size: 2.4rem;
  line-height: 1.4em;
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}
body.single-seeds .seeds-box .seeds-title-box h1 .seeds_subtitle {
  font-size: 2rem;
  line-height: 1.4em;
  display: block;
  margin-bottom: 20px;
}

/* ここから未調整!!!!!!!!!!!!!!!!!!!!! */
.elementor-inner h1,
.elementor-inner h2,
.elementor-inner h3,
.elementor-inner h4,
.elementor-inner h5,
.elementor-inner h6 {
  line-height: 1.4em;
}

.elementor-inner h1 {
  font-size: 21px !important;
  text-shadow: none !important;
}

@media screen and (min-width: 768px) {
  .elementor-inner h1 {
    font-size: 21px !important;
  }
}
@media screen and (min-width: 1367px) {
  .elementor-inner h1 {
    font-size: 24px !important;
  }
}
.elementor-inner h2 {
  font-size: 18px !important;
  text-shadow: none !important;
}

@media screen and (min-width: 768px) {
  .elementor-inner h2 {
    font-size: 18px !important;
  }
}
@media screen and (min-width: 1367px) {
  .elementor-inner h2 {
    font-size: 21px !important;
    text-shadow: none !important;
  }
}
.elementor-inner h3 {
  font-size: 16px !important;
  text-shadow: none !important;
}

@media screen and (min-width: 768px) {
  .elementor-inner h3 {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 1367px) {
  .elementor-inner h3 {
    font-size: 18px !important;
  }
}
.elementor-inner h4 {
  font-size: 15px !important;
  text-shadow: none !important;
}

@media screen and (min-width: 768px) {
  .elementor-inner h4 {
    font-size: 15px !important;
  }
}
@media screen and (min-width: 1367px) {
  .elementor-inner h4 {
    font-size: 16px !important;
  }
}
.elementor-inner h5 {
  font-size: 14px !important;
  text-shadow: none !important;
}

@media screen and (min-width: 768px) {
  .elementor-inner h5 {
    font-size: 14px !important;
  }
}
@media screen and (min-width: 1367px) {
  .elementor-inner h5 {
    font-size: 14px !important;
  }
}
.elementor-inner h6 {
  font-size: 13px !important;
}

@media screen and (min-width: 768px) {
  .elementor-inner h6 {
    font-size: 13px !important;
  }
}
@media screen and (min-width: 1367px) {
  .elementor-inner h6 {
    font-size: 13px !important;
  }
}
.elementor-heading-title {
  line-height: 1.4em !important;
}

.elementor-text-editor p {
  margin-top: 0;
}

.elementor-widget-container figcaption {
  margin: 0 !important;
}

.elementor-widget:not(:last-child) {
  margin-bottom: 15px !important;
}

.elementor-inner table td {
  border-color: #111 !important;
}

.elementor-inner ul li::marker {
  margin-right: 0;
}

.elementor-inner ul li p {
  display: inline;
}

.author-coauthor-box p {
  margin-top: 0;
  /* margin-bottom: 4px; */
  color: #111;
  border-radius: 3px;
}

.author-coauthor-box .text-box p {
  margin-bottom: 0;
}

/* .author-info {
  margin-bottom: 20px;
} */
@media only screen and (min-width: 1367px) {
  .author-coauthor-box {
    margin-bottom: 10px;
  }
  .author-info {
    float: left;
    width: 60%;
    margin-bottom: 0;
  }
}
.author-info .avatar-box {
  width: 34%;
  max-width: 104px;
  height: auto;
  float: left;
  margin-right: 4%;
}

.author-info .avatar-box .author-thumbnail {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .author-info .avatar-box {
    margin-right: 12px;
  }
}
.author-info .text-box {
  width: 62%;
  float: left;
  font-weight: bold;
}

.users_fac,
.users_dep,
.users-labo {
  font-size: 14px;
  line-height: 1.5em;
}

@media only screen and (min-width: 1367px) {
  .users_fac,
  .users_dep,
  .users-labo {
    font-size: 14px;
  }
}
.author-info .text-box .users-name-box {
  margin-top: 8px;
}

.author-info .text-box .users-name {
  font-size: 16px;
}

.users-position {
  display: inline-block;
  font-size: 12px;
}

.seeds-description {
  margin-bottom: 20px;
}

.seeds-content {
  /* border-bottom: 2px solid #eaebef; */
  /* padding-bottom: 30px; */
  margin-bottom: 30px;
}

.seeds-content img.centered {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.seeds-content img.alignright {
  width: 50%;
  padding: 4px;
  margin: 0 0 2px 10px;
  display: inline;
}

.seeds-content img.alignleft {
  width: 50%;
  padding: 4px;
  margin: 0 10px 2px 0;
  display: inline;
}

.seeds-content .alignright {
  float: right;
}

.seeds-content .alignleft {
  float: left;
}

.seeds-content ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
  margin-bottom: 10px;
}

.seeds-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 1.5em;
  margin-bottom: 10px;
}

.seeds-description .inner {
  padding: 10px;
}

.seeds-paper .inner {
  padding: 0 10px;
}

.seeds-patent .inner {
  padding: 0 10px;
}

.seeds-paper .paper {
  position: relative;
  padding-left: 1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 13px;
}

.seeds-paper .paper:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.seeds-paper span {
  display: inline;
  margin-right: 10px;
}

.seeds-paper span.seeds-paper_kakko {
  margin-right: 10px;
}

.seeds-paper span.seeds-paper_author_last {
  margin-right: 0.2em;
}

.seeds-paper span.seeds-paper_author_first {
  margin-right: 10px;
}

.seeds_profile {
  margin-bottom: 20px;
}

.label {
  background: #e3f6ff;
  padding: 3px 10px;
  display: block;
  font-weight: bold;
  color: #111;
  border-radius: 3px;
}

.seeds-paper {
  margin-bottom: 20px;
}

.seeds-patent .patent {
  position: relative;
  padding-left: 1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 13px;
}

.seeds-patent .patent:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.seeds-patent span {
  display: inline-block;
  margin-right: 10px;
}

.bottom-author-info {
  padding: 10px;
  border-top: 4px solid #eaebef;
  border-bottom: 4px solid #eaebef;
  margin-top: 40px;
}

.seeds-contact {
  padding: 20px 10px;
  border-bottom: 4px solid #eaebef;
}

.seeds-contact p.title {
  margin-top: 0;
  line-height: 1em;
}

.seeds-contact a.btn {
  margin-top: 0;
  margin-bottom: 0;
}

.sidebar-dammy {
  background: #eee;
  height: 600px;
  width: 100%;
  float: right;
}

.sidebar-dammy p {
  text-align: center;
  margin-top: 40px;
}

.users-last-name {
  display: inline-block;
  margin-right: 0.2em;
}

.users-first-name {
  display: inline-block;
}

.coauthor {
  margin-bottom: 6px;
  margin-top: 20px;
}

.coauthor .inner {
  padding: 0 10px;
}

@media only screen and (min-width: 1367px) {
  .coauthor {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1367px) {
  .coauthor {
    float: left;
    width: 40%;
  }
}
.coauthor-name {
  display: inline-block;
  margin-right: 5px;
}

.coauthor-name:after {
  content: ",";
}

.coauthor-name:last-child:after {
  content: "";
}

.coauthors-last-name {
  display: inline-block;
  margin-right: 0.2em;
}

.coauthors-first-name {
  display: inline-block;
}

.seeds-title-box .tag {
  margin-top: 10px;
}

.seeds-title-box .tag a {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid #111;
  border-radius: 100px;
  margin-top: 10px;
  margin-right: 14px;
  margin-left: -4px;
  background: #fcfcfc;
  font-size: 13px;
}

@media only screen and (min-width: 1367px) {
  .seeds-title-box .tag .inner {
    padding: 0;
  }
}
/* 画像 */
.elementor-image .wp-caption {
  background: transparent !important;
  border: none !important;
  max-width: 100% !important;
  padding: 0 !important;
  text-align: left !important;
}

.elementor-image .wp-caption img {
  margin-bottom: 6px !important;
}

.elementor-image .wp-caption figcaption {
  font-size: 13px !important;
  text-align: left;
  line-height: 1.4em;
}

@media only screen and (min-width: 768px) {
  .seeds-title-box h1 {
    padding-left: 15px;
    border-left: 4px solid;
  }
}
#singleSeedsList {
  padding: 36px 0 0;
  background: #e3f6ff;
}

#singleSeedsList .swiper_box .title_box h2 {
  background: #e3f6ff;
}

/* ------------------------------
   アーカイブ
------------------------------ */
body.seeds-all main,
body.archive main {
  float: left;
  width: 100%;
}

.seeds_list {
  width: 23%;
  float: left;
  margin-right: 2%;
}

.seeds_list img {
  margin-bottom: 5px;
}

.seeds_list h2 {
  font-size: 14px;
}

.seeds_list .author {
  font-size: 13px;
}

.archive-box article {
  width: 100%;
}

.archive_title_box {
  padding-bottom: 10px;
  border-bottom: 1px solid #111;
  margin-bottom: 30px;
}

#main-sf-box > form > ul > li:not(:last-child) {
  background: #e3f6ff;
  padding: 20px 20px 10px;
  margin-bottom: 20px;
  border-radius: 3px;
  border: 1px solid #999;
}
#main-sf-box > form > ul > li:not(:last-child) ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  #main-sf-box > form > ul > li:not(:last-child) ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#main-sf-box > form > ul > li:not(:last-child) ul li {
  position: relative;
  padding: 0;
}

#main_sf_box ul li {
  display: inline-block;
  font-size: 13px;
  margin-right: 0;
  padding-right: 24px;
  padding-top: 0;
  padding-bottom: 10px;
}
#main_sf_box input[type=submit] {
  background: #111;
  color: #f9f9f9;
  height: 56px;
  line-height: 56px;
  border: none;
  padding: 0 100px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 28px;
}
#main_sf_box li[data-sf-field-type=taxonomy] {
  background: #e3f6ff;
  padding: 20px 20px 10px;
  margin-bottom: 20px;
  border-radius: 3px;
  border: 1px solid #999;
}
#main_sf_box .searchandfilter h4 {
  padding: 0 0 10px;
}

input[type=checkbox] {
  display: none;
}

label.sf-label-checkbox {
  padding-left: 22px !important;
  position: relative;
  line-height: 18px;
}

label.sf-label-checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 4px;
  background: #fcfcfc;
}

input[type=checkbox]:checked + label.sf-label-checkbox {
  font-weight: bold;
  color: #111;
}

input[type=checkbox]:checked + label.sf-label-checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid #111;
  border-right: 3px solid #111;
}

input[type=submit] {
  background: #111;
  color: #f9f9f9;
  height: 56px;
  line-height: 56px;
  border: none;
  padding: 0 100px;
  font-weight: bold;
  font-size: 15px;
  border-radius: 28px;
}

body.page-seeds-all .seeds-list-box.grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  body.page-seeds-all .seeds-list-box.grid {
    grid-template-columns: 1fr;
  }
}

body.page-seeds-keyword-all ul.wp-tag-cloud li {
  display: inline-block;
  border: 1px solid #2d2e52;
  line-height: 1.5em;
  padding: 8px 16px;
  margin-right: 8px !important;
  margin-bottom: 16px !important;
  border-radius: 1000px;
  background: #f6f6f6;
}
body.page-seeds-keyword-all ul.wp-tag-cloud li a {
  color: #2d2e52;
}

/* ------------------------------
   author.php
------------------------------ */
body.author .author_profile {
  margin-bottom: 30px;
}

body.author .avatar-box {
  width: 60%;
}

.author .text-box p {
  margin-top: 0;
  margin-bottom: 4px;
  font-weight: bold;
}

body.author .author-info {
  width: 100%;
}

body.author .author-info .text-box {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  body.author .avatar-box {
    width: 30%;
    float: left;
  }
  body.author .author-info {
    float: left;
    margin-left: 20px;
    width: 50%;
  }
  body.author .author-info .text-box {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  body.author .avatar-box {
    width: 160px;
  }
  body.author .author-info {
    width: 600px;
  }
  body.author .archive-box {
    width: 100%;
  }
  body.author .archive-box article {
    width: 32.1333333%;
    margin-right: 0.6%;
    margin-left: 0.6%;
  }
}
/* ------------------------------
   学科別教員一覧
------------------------------ */
.dep_name_en {
  color: #2d2e52;
  font-size: 14px;
  font-weight: bold;
}

@media only screen and (min-width: 1025px) {
  .dep_name_en {
    font-size: 16px;
  }
}
#author ul.flex_container li.author_list {
  list-style-type: none;
  width: 46%;
  margin-right: 2%;
  margin-left: 2%;
}

@media only screen and (min-width: 681px) {
  #author ul.flex_container li.author_list {
    list-style-type: none;
    width: 30.3333333333%;
    margin-right: 1.5%;
    margin-left: 1.5%;
  }
}
@media only screen and (min-width: 1025px) {
  #author ul.flex_container li.author_list {
    width: 14.66666666%;
    margin-right: 1%;
    margin-left: 1%;
  }
}
.author-thumbnail {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
}

.author_labo {
  font-size: 13px;
  line-height: 1.5em;
  margin-bottom: 5px;
}

.author-name_box {
  margin-top: 0;
  margin-bottom: 0;
}

.author-name {
  font-size: 15px;
}

.dep_name_box {
  margin-bottom: 20px;
}

.dep_name_box .dep_name_en {
  margin-top: 0px;
}

@media only screen and (min-width: 768px) {
  .dep_name_box {
    margin-bottom: 30px;
  }
}
.dep_name_box h1 {
  margin-bottom: 10px;
}

.dep_desc_box {
  margin-bottom: 30px;
}

.widget_categories .children {
  margin-left: 20px;
}

@media only screen and (min-width: 768px) {
  body.page-template-page-tag-all .tag_all_box {
    margin: 30px auto 100px;
    padding-top: 30px;
    border-top: 2px solid #2d2e52;
  }
}
h1.search_title {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

#main_sf_box li[data-sf-field-name=search] {
  background: #fcfcfc;
}

/* ------------------------------
   協力機関コーナー
------------------------------ */
body.page-template-page-cooperation .elementor-inner {
  width: calc(100% + 20px);
  margin-left: -10px;
}

@media only screen and (min-width: 1025px) {
  body.page-template-page-cooperation .qodef-content-grid {
    width: 960px;
  }
}
@media only screen and (min-width: 1367px) {
  body.page-template-page-cooperation .qodef-content-grid {
    width: 1000px;
  }
}
.logo_orist {
  max-width: 160px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .logo_orist {
    margin: auto;
    float: right;
  }
}
.modaal-content-container img {
  height: calc(100vh - 60px);
  width: auto;
  max-height: none;
  max-width: none;
  margin: 0 auto;
  display: block;
}

.case_study .box {
  padding: 20px;
  border: 2px solid #2d2e52;
}

.case_study .box h3 {
  font-size: 16px;
}

@media only screen and (min-width: 768px) {
  .case_study .box h3 {
    height: 4em;
  }
}
@media only screen and (min-width: 1025px) {
  .case_study .box h3 {
    height: 3em;
  }
}
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none !important;
}

body.page-id-181 .modaal-inner-wrapper {
  height: 100%;
  width: 100%;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 20px;
}

@media only screen and (min-width: 1025px) {
  body.page-id-181 .modaal-inner-wrapper {
    padding-top: 0;
    padding-right: 200px;
    padding-bottom: 0;
    padding-left: 200px;
  }
}
@media only screen and (min-width: 1367px) {
  body.page-id-181 .modaal-inner-wrapper {
    padding-top: 0;
    padding-right: 260px;
    padding-bottom: 0;
    padding-left: 260px;
  }
}
/* ------------------------------
   404.php
------------------------------ */
body.error404 #qodef-page-inner {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  body.error404 #qodef-page-inner {
    width: 90%;
  }
}
@media only screen and (min-width: 1025px) {
  body.error404 #qodef-page-inner {
    width: 960px;
  }
}
@media only screen and (min-width: 1367px) {
  body.error404 #qodef-page-inner {
    width: 1160px;
  }
}
@media only screen and (min-width: 1441px) {
  body.error404 #qodef-page-inner {
    width: 1160px !important;
  }
}/*# sourceMappingURL=original.css.map */