@charset "utf-8";
/*--------------------------------------------------------------
reset
--------------------------------------------------------------*/
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #1f1f1f;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------------------
設定
--------------------------------------------------------------*/
/* print */
@media print {
  body {
    width: 1400px;
    zoom: 0.8;
  }
  body .pagetop {
    display: none;
  }
  body .page-header__inner {
    height: 300px;
  }
  body .page-header::after {
    height: 280px;
  }
  body .page-body__wrap, body .footer__col, body .footer__copyright {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  body .page-body__wrap.bgcolor {
    padding-left: 50px;
    padding-right: 50px;
  }
  body .footer__col {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  body .footer__nav {
    width: 700px;
  }
}
/* /print */
/*--------------------------------------------------------------
htmlタグ指定
--------------------------------------------------------------*/
* {
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  color: #5C5C5C;
  font-family: "BIZ UDPGothic", YuGothic, “Yu Gothic Medium”, “Yu Gothic”, Meiryo, sans-serif;
  height: -webkit-fill-available;
}

body {
  color: #5C5C5C;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: inherit;
}

a {
  color: currentColor;
  cursor: pointer;
}

/*--------------------------------------------------------------
共通 class
--------------------------------------------------------------*/
.wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.content {

  position: relative;
  width: 100%;
  margin: 0 auto;
}

.header {
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
.header__nav {
  color: white;
  background-color: #5C5C5C;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav__list {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__nav__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  font-size: 1.4rem;
  cursor: pointer;
}
.header__nav__item .title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  text-align: center;
  background-color: #5C5C5C;
  transition: 0.4s ease background-color;
}
.header__nav__item .title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #5C5C5C;
  transition: 0.4s ease background-color;
}
.header__nav__item .title:hover {
  color: white;
  background-color: #8D8D8D;
  border-color: #68b361;
}
.header__nav__item .title:hover::after {
  background-color: #68b361;
}
.header__nav__item .child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 80px;
  left: 0;
  width: 300px;
  transition: 0.4s ease opacity;
}
@media screen and (max-width: 960px) {
  .header__nav__item .child {
    width: 280px;
  }
}
.header__nav__item .child a {
  display: block;
  padding: 16px 20px;
  color: white;
  background-color: #5C5C5C;
  border-top: 1px solid #8D8D8D;
  transition: 0.4s ease color, 0.4s ease background-color;
}
.header__nav__item .child a:hover {
  background-color: #8D8D8D;
}
.header__nav__item:nth-of-type(7) .child, .header__nav__item:nth-of-type(8) .child {
  left: inherit;
  right: 0;
}
.header__nav__item:hover .child {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header__upper {
  width: min(1280px, 100%);
  min-height: 110px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__upper {
    min-height: 90px;
  }
}
.header__upper__logo {
  width: 304px;
}
@media screen and (max-width: 767px) {
  .header__upper__logo {
    width: 230px;
    padding-left: 10px;
  }
}
.header__upper__aside {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__upper__aside {
    display: none;
  }
}
.header__upper__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  font-size: clamp(14px,1.33vw,16px);
}
.header__upper__link a {
  white-space: nowrap;
  transition: 0.4s ease opacity;
}
.header__upper__link a:not(:first-of-type)::before {
  content: "|";
  margin: 0 10px;
}
.header__upper__link a:hover {
  text-decoration: underline;
}
.header__upper__search {
  position: relative;
  margin-right: 34px;
}
.header__upper__search input[type=text] {
  border: 1px solid #BABABA;
  border-radius: 50vw;
  width: 170px;
  font-size: 1.6rem;
  padding: 5px 10px;
  padding-right: 30px;
  color: #5C5C5C;
}
.header__upper__search input[type=submit] {
  position: absolute;
  top: 0;
  right: 2px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: 200%;
  background: url("../../img/base/icon_search.png") no-repeat center center;
  background-size: 15px 15px;
  cursor: pointer;
  opacity: 0.35;
}
.header__upper__contact {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 110px;
  height: 110px;
  color: white;
  background-color: #42657f;
  font-size: 1.2rem;
  transition: 0.4s ease background-color;
}
.header__upper__contact::before {
  content: "";
  width: 31px;
  height: 31px;
  margin-bottom: 5px;
  background: url("../../img/base/icon_mail.png") no-repeat center center;
  background-size: 100% auto;
}
.header__upper__contact:hover {
  background-color: #587d8f;
}
.header__sp__button {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp__button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 100%;
    background-color: #42657f;
    cursor: pointer;
    outline: 0;
    border: none;
  }
  .header__sp__button span, .header__sp__button span::before, .header__sp__button span::after {
    content: "";
    display: block;
    height: 1px;
    width: 50px;
    border-radius: 1px;
    background-color: white;
    position: absolute;
    transition: all 0.2;
  }
  .header__sp__button span::before {
    bottom: 11px;
  }
  .header__sp__button span::after {
    top: 11px;
  }
  .header__sp__button.close span {
    background-color: rgba(255, 255, 255, 0);
  }
  .header__sp__button.close span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .header__sp__button.close span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
.header__sp__body {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp__body {
    position: absolute;
    top: 90px;
    width: 100%;
    height: auto;
    background-color: #42657f;
  }
  .header__sp__body.fade {
    display: block;
  }
}
.header__sp__search {
  position: relative;
  padding: 30px 50px;
}
.header__sp__search input[type=text] {
  border-radius: 50vw;
  width: 100%;
  font-size: 1.6rem;
  padding: 5px;
  padding-right: 40px;
  background-color: white;
}
.header__sp__search input[type=submit] {
  position: absolute;
  right: 52px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  text-indent: 200%;
  background: url("../../img/base/icon_search.png") no-repeat center center;
  background-size: 15px 15px;
  cursor: pointer;
}
.header__sp__nav__item {
  position: relative;
  font-size: 1.4rem;
}
.header__sp__nav__item::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 58px;
  height: 58px;
}
.header__sp__nav__item::after {
  position: absolute;
  right: 15px;
  top: 15px;
  content: "";
  background-color: white;
  display: inline-block;
  height: 24px;
  width: 24px;
  -webkit-mask: url("../../img/base/icon_arrow.svg");
  mask: url("../img/base/icon_arrow.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: rotate(90deg);
  z-index: 10;
}
.header__sp__nav__item.open::before {
  background-color: #cdd7e0;
}
.header__sp__nav__item.open::after {
  background-color: #5C5C5C;
  transform: rotate(270deg);
}
.header__sp__nav__item.none {
  display: block;
  width: 100%;
  color: white;
  padding: 22px 60px 22px 25px;
}
.header__sp__nav__item.none::after {
  display: none;
}
.header__sp__nav__item .title {
  display: block;
  width: 100%;
  color: white;
  padding: 22px 60px 22px 25px;
}
.header__sp__nav__item .child {
  display: none;
  background-color: #cdd7e0;
  font-size: 1.2rem;
}
.header__sp__nav__item .child li:not(:last-of-type) {
  border-bottom: 1px solid #42657f;
}
.header__sp__nav__item .child a {
  display: block;
  padding: 22px 25px;
}

.inner {
  position: relative;
  width: min(1100px, 90%);
  margin: 0 auto;
}

/*テキストリンク*/
a.link {
  color: #0082C7;
}
a.link:hover {
  text-decoration: underline;
}
a.link:hover img {
  opacity: 0.8;
}
a.link img {
  transition: 0.4s ease opacity;
}

/*アイコン付きリンク*/
a.link-icon {
  color: #0082C7;
  /* pdf */
  /*外部アイコン付きリンク*/
}

.header__sp__nav a.link-icon,
.footer__nav a.link-icon {
  color:#5C5C5C;
}

a.link-icon::after {
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  -webkit-mask: url("../../img/base/icon_arrow.svg");
  mask: url("../img/base/icon_arrow.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  line-height: inherit;
  vertical-align: middle;
}
a.link-icon[href$=".pdf"]::before {
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 1em;
  width: 1em;
  -webkit-mask: url("../../img/base/icon_pdf.svg");
  mask: url("../img/base/icon_pdf.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  line-height: inherit;
  margin-right: 0.4em;
}
a.link-icon[href^=http]::after {
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 1em;
  width: 1em;
  -webkit-mask: url("../../img/base/icon_blank.svg");
  mask: url("../img/base/icon_blank.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  line-height: inherit;
  margin-left: 0.4em;
}
a.link-icon:hover {
  text-decoration: underline;
}

.header__nav a.link-icon:hover,
.header__sp__nav a.link-icon:hover,
.footer__nav a.link-icon:hover {
  text-decoration:none;
}

.footer {
  font-weight: bold;
  border-top: 2px solid #68b361;
  background-color: #F4F4F4;
}
.footer__inner {
  width: min(1230px, 90%);
  margin: 0 auto;
}
.footer__col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 calc(50% - 50vw);
  padding: clamp(40px,6.6vw,80px) calc(50vw - 50%);
}
@media screen and (max-width: 960px) {
  .footer__col {
    flex-direction: column;
  }
}
.footer__logo {
  width: 265px;
  font-size: 1.2rem;
  margin-right: 20px;
}
@media screen and (max-width: 960px) {
  .footer__logo {
    margin-right: 0;
  }
}
.footer__logo .address {
  margin-top: 15px;
  line-height: 1.8;
  padding-left: 24px;
}
@media screen and (max-width: 960px) {
  .footer__logo .address {
    padding-left: 0;
    text-align: center;
  }
}
.footer__nav {
  width: min(700px, 60vw);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .footer__nav {
    display: none;
    width: 100%;
    margin-top: 30px;
  }
}
.footer .flinks {
  flex-grow: 1;
  width: calc(100% / 3);
  font-size: 1.2rem;
  line-height: 1.3;
  padding-left: 1em;
}
.footer .flinks:nth-of-type(n + 4) {
  margin-top: 46px;
}
.footer .flinks dt {
  font-size: 1.4rem;
}
.footer .flinks dd {
  margin-top: 13px;
}
.footer .flinks dd li {
  margin-top: 12px;
}
.footer__copyright {
  margin: 0 calc(50% - 50vw);
  padding: 30px calc(50vw - 50%);
  text-align: center;
  font-size: 1rem;
  background-color: white;
}

/*------------------------------layout------------------------------*/
.page-header {
  position: relative;
  color: white;
}
.page-header::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -40px;
  height: 380px;
  background-color: #68b361;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-header::after {
    height: 200px;
    bottom: -30px;
  }
}
.page-header__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
  height: 400px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-header__inner {
    height: 200px;
  }
}
.page-header h2 {
  z-index: 2;
}
.page-header__image {
  position: absolute;
  right: 0;
  top: 0;
  width: calc((1280px - 146px) + ((100% - 1280px) / 2));
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .page-header__image {
    width: 88.6375vw;
  }
}
@media screen and (max-width: 767px) {
  .page-header__image {
    height: 200px;
  }
}
.page-header__nav {
  color: white;
  background-color: #68b361;
  font-size: 1.2rem;
  margin-bottom: -40px;
}
@media screen and (max-width: 767px) {
  .page-header__nav {
    margin-top: 0;
  }
}
.page-header__nav__list {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-header__nav__list {
    flex-wrap: wrap;
  }
}
.page-header__nav__item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.page-header__nav__item:not(:first-of-type) {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .page-header__nav__item {
    width: calc(100% / 3);
  }
}
.page-header__nav__item > a {
  display: block;
  width: 100%;
  min-height: 60px;
  padding-top: 19px;
  text-align: center;
  color: currentColor !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .page-header__nav__item > a {
    min-height: 46px;
  }
}
.page-header__nav__item > a::after {
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 1.4em;
  width: 1.4em;
  -webkit-mask: url("../../img/base/icon_arrow.svg");
  mask: url("../img/base/icon_arrow.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: rotate(90deg);
  margin-top: 6px;
  transition: 0.4s ease;
}
@media screen and (max-width: 767px) {
  .page-header__nav__item > a::after {
    margin-top: 3px;
  }
}
@media screen and (max-width: 767px) {
  .page-header__nav__item > a {
    padding: 12px 0 3px;
  }
}
.page-header__nav__item > a:hover::after {
  transform: rotate(90deg) translateX(3px);
}

.topicpath {
  width: min(1280px, 90%);
  margin: 67px auto 0;
  font-size: 1.2rem;
  color: #68b361;
  line-height: 1.3;
}
.topicpath a {
  color: currentColor;
}
.topicpath__item {
  display: inline;
}
.topicpath__item:not(:last-of-type)::after {
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  -webkit-mask: url("../../img/base/icon_arrow.svg");
  mask: url("../img/base/icon_arrow.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  line-height: inherit;
  margin-left: 5px;
}
.topicpath__anchor {
  position: relative;
}

.page-body {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
}
.page-body__wrap {
  margin: 0 calc(50% - 50vw);
  padding: clamp(40px,9vw,100px) calc(50vw - 50%) clamp(60px,14.5vw,160px);
}
.page-body__wrap.bgcolor {
  background-color: #F8F8F8;
  padding-bottom: clamp(60px,10.9vw,120px);
}
.page-body__wrap > *:first-child {
  margin-top: 0;
}
.page-body .page-header__nav {
  margin-bottom: 0;
}
.page-body .lead {
  font-size: 1.6rem;
  line-height: 1.87;
}
.page-body p + p, .page-body p + ul, .page-body ul + p, .page-body ul + ul {
  margin-top: 1em;
}
.page-body .list li {
  margin-bottom: 0.9em;
}
.page-body .list-marker, .page-body .list-number {
  padding-left: 1.5em;
}
.page-body .list-marker li, .page-body .list-number li {
  margin-bottom: 0.9em;
  list-style-type: disc;
}
.page-body .list-marker ul, .page-body .list-number ul {
  padding-left: 1.5em;
  margin-top: 0.4em;
}
.page-body .list-marker ul li, .page-body .list-number ul li {
  list-style-type: circle;
}
.page-body .list-number li {
  list-style-type: decimal;
}

.page-footer {
  padding: 0 0 clamp(100px,19vw,210px);
}
.page-footer__title {
  color: #5C5C5C;
  font-size: 2.6rem;
  text-align: center;
}

/**/
.panel-links {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .panel-links {
    flex-direction: column;
  }
}
.panel-links__item {
  width: calc((100% - 90px) / 4);
  margin-bottom: 30px;
}
.panel-links__item:not(:nth-of-type(4n)) {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .panel-links__item {
    width: 100%;
  }
}
.panel-links__item .button3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  line-height: inherit;
}

.column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .column {
    flex-direction: column;
  }
}
.column__item {
  display: block;
  flex-grow: 1;
  flex-basis: 100%;
}
.column__item:not(:last-of-type) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .column__item {
    width: 100%;
  }
  .column__item:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .column__item img {
    margin: 0 auto;
  }
}
.column__item > * {
  display: block;
  font-size: 1.6rem;
}

.related-links {
  width: min(904px, 100%);
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.related-links.col4over {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .related-links {
    flex-direction: column;
    margin-top: 25px;
  }
}
.related-links__item {
  width: calc((100% - 6px) / 3);
  background-color: #EAEDF0;
  margin: 0 1px 2px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .related-links__item {
    width: 100%;
    margin: 2px 0 0;
  }
}
.related-links__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 36px 10px 25px;
  transition: 0.4s ease background-color;
}
@media screen and (max-width: 767px) {
  .related-links__item a {
    position: relative;
    align-items: flex-start;
    padding: 20px;
    padding-right: 60px;
  }
}
.related-links__item a::after {
  margin-top: clamp(14px,2.5vw,28px);
  content: "";
  width: clamp(30px,3.63vw,40px);
  height: clamp(30px,3.63vw,40px);
  border-radius: 100%;
  border: 1px solid #DADEE2;
  background: white url("../../img/base/icon_arrow.svg") no-repeat center center;
  background-size: 50%;
  transition: 0.4s ease;
}
@media screen and (max-width: 767px) {
  .related-links__item a::after {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.related-links__item a:hover {
  background-color: #cdd7e0;
}
.related-links__item a span {
  margin-top: 9px;
  display: block;
  min-height: 36px;
  font-size: 1.2rem;
  text-align: center;
  color: gray;
}
@media screen and (max-width: 767px) {
  .related-links__item a span {
    margin-top: 5px;
    min-height: inherit;
    text-align: left;
  }
}

.more-contents {
  display: none;
}
.more-contents ~ .more-button {
  border: 1px solid #333;
  width: min(200px);
  height: 40px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
}
.more-contents ~ .more-button .icon {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}
.more-contents ~ .more-button .icon::before, .more-contents ~ .more-button .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #333;
}
.more-contents ~ .more-button .icon::after {
  transform-origin: 0 0;
  transform: rotate(90deg) translate(-50%, -50%);
}
.more-contents ~ .more-button .text::before {
  content: "すべてを見る";
}
.more-contents ~ .more-button.open .text::before {
  content: "閉じる";
}
.more-contents ~ .more-button.open .icon::after {
  display: none;
}

.figure-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .figure-column {
    flex-direction: column;
  }
}
.figure-column__item {
  display: block;
  flex-basis: 360px;
}
.figure-column__item:not(:last-of-type) {
  margin-right: 23px;
}
@media screen and (max-width: 767px) {
  .figure-column__item {
    width: 100%;
    flex-basis: auto;
  }
  .figure-column__item:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.figure-column__item img {
  margin: 0 auto;
}
.figure-column__item figcaption {
  display: block;
  margin-top: 0.9em;
}

.accordion + .accordion {
  margin-top: 20px;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.8rem,2vw,2.4rem);
  color: white;
  background-color: #606160;
  padding: 10px 20px;
}
.accordion.none .accordion__body {
  display: block;
}

.teacher {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 20px 20px;
  border-bottom: 1px solid #C7C7C7;
}
@media screen and (max-width: 767px) {
  .teacher {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}
.teacher__name {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  margin-right: 30px;
}
.teacher__name span {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .teacher__name {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.teacher__detail {
  width: min(780px, 90%);
}
@media screen and (max-width: 767px) {
  .teacher__detail {
    width: 100%;
  }
}
.teacher__detail .detail {
  font-size: clamp(1.4rem,1.33vw,1.6rem);
}
.teacher__detail .action {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.teacher__detail .action > *:not(:first-of-type) {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .teacher__detail .action > * {
    width: calc((100% - 50px) / 2);
  }
}
.teacher__detail .action > * a {
  display: block;
  width: 200px;
  text-align: center;
  color: white;
  background-color: #606160;
  padding: 10px;
  transition: 0.4s ease opacity;
}
.teacher__detail .action > * a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .teacher__detail .action > * a {
    width: 100%;
  }
}

.movie-card {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 567px) {
  .movie-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }
}
.movie-card__item {
  width: calc((100% - 80px) / 3);
  margin-top: 40px;
}
.movie-card__item:not(:nth-of-type(3n)) {
  margin-right: 40px;
}
@media screen and (max-width: 960px) {
  .movie-card__item {
    width: calc((100% - 40px) / 2);
  }
  .movie-card__item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .movie-card__item:not(:nth-of-type(2n)) {
    margin-right: 40px;
  }
}
@media screen and (max-width: 567px) {
  .movie-card__item {
    width: min(340px, 100%);
    margin-top: 30px;
  }
  .movie-card__item:not(:nth-of-type(2n)) {
    margin-right: 0;
  }
}
.movie-card__item a {
  display: block;
  position: relative;
}
.movie-card__item a:hover .image img {
  opacity: 0.8;
}
.movie-card__item .image {
  position: relative;
}
.movie-card__item .image img {
  z-index: 1;
  transition: 0.4s ease opacity;
}
@media screen and (max-width: 960px) {
  .movie-card__item .image img {
    width: 100%;
  }
}
.movie-card__item .image::before {
  content: "";
  width: 40px;
  height: 40px;
  background-color: #68b361;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.movie-card__item .image::after {
  content: "";
  margin-left: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.movie-card__item .title {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
}
.movie-card__item .text {
  margin-top: 0;
  font-size: 1.2rem;
  color: #868686;
}
.movie-card__item .icon {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 6px 12px;
  color: white;
  background-color: #587d8f;
  font-size: 1.2rem;
  border-radius: 5px;
}
.movie-card__item .icon.math {
  background-color: #E8B821;
}
.movie-card__item .icon.info {
  background-color: #EA7F26;
}
.movie-card__item .icon.phys {
  background-color: #EA545D;
}
.movie-card__item .icon.chem {
  background-color: #A64A97;
}
.movie-card__item .icon.bio {
  background-color: #3D62AD;
}
.movie-card__item .icon.env {
  background-color: #41B25D;
}

.pagetop {
  display: block;
  position: fixed;
  right: 22px;
  bottom: 42px;
  width: 60px;
  height: 60px;
  color: white;
  background-color: #68b361;
  border-radius: 50vw;
  z-index: 100;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.4s ease background-color;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 95px;
  }
}
.pagetop::before {
  flex-shrink: 0;
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 26px;
  width: 26px;
  -webkit-mask: url("../../img/base/icon_arrow.svg");
  mask: url("../img/base/icon_arrow.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  line-height: inherit;
  transform: rotate(-90deg);
}
.pagetop:hover {
  background-color: #A4C6AC;
}

.sp-foot-nav {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: #68b361;
  z-index: 100;
  padding: 9px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .sp-foot-nav {
    display: block;
  }
}
.sp-foot-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.sp-foot-nav ul li {
  width: calc((100% - 18px) / 3);
  height: 100%;
}
.sp-foot-nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  color: #68b361;
  background-color: white;
}
.sp-foot-nav ul li a::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  background: no-repeat center center/cover;
}
.sp-foot-nav ul li a.link1::before {
  background-image: url("../../img/top/icon_foot1.png");
}
.sp-foot-nav ul li a.link2::before {
  background-image: url("../../img/top/icon_foot2.png");
}
.sp-foot-nav ul li a.link3::before {
  background-image: url("../../img/top/icon_foot3.png");
}

@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
  }
}
/*------------------------------title------------------------------*/
h2 {
  color: currentColor;
  z-index: 2;
  font-weight: 700;
}
h2 .title {
  display: block;
  font-size: clamp(2.2rem,3.2vw,3.2rem);
  line-height: 1.3;
  padding-left: 6px;
}
@media screen and (max-width: 767px) {
  h2 .title span {
    display: block;
  }
}
h2 .sub {
  display: block;
  font-size: clamp(1.4rem,1.6vw,1.6rem);
  line-height: 1.3;
  text-transform: uppercase;
  margin-top: 14px;
}

h4 {
  font-size: clamp(1.8rem,2vw,2rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 27px 0 9px;
  padding-left: 25px;
  position: relative;
}

h5 {
  font-size: clamp(1.6rem,1.8vw,1.8rem);
  font-weight: 700;
  line-height: 1.6;
  margin: 17px 0 12px;
}

h6 {
  font-size: clamp(2rem,2.6vw,2.6rem);
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 15px;
  margin: clamp(40px,10.9vw,80px) 0 12px;
  color: #68b361;
}

/*------------------------------talbe------------------------------*/
.table-scroll {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table-scroll {
    overflow: scroll;
    white-space: nowrap;
  }
}

.table {
  margin: 20px 0 30px;
  line-height: 1.57;
  font-size: 1.4rem;
  border: 2px solid white;
}
h4 + .table {
  margin-top: 12px;
}

.table th, .table td {
  text-align: center;
  vertical-align: middle;
  padding: 15px 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .table th, .table td {
    padding: 10px;
    vertical-align: top;
  }
}
.table th {
  font-size: 1.5rem;
  color: white;
  background-color: #68b361;
  border: 2px solid white;
}
.table th.none {
  background-color: white;
}
.table td {
  background-color: #EBEBEB;
  border: 2px solid white;
}

/*------------------------------button------------------------------*/
.button1 {
  position: relative;
  display: block;
  width: min(400px, 100%);
  padding: 20px 10px;
  font-size: clamp(1.4rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #5C5C5C;
  background-color: white;
  border-radius: 50vw;
  transition: 0.4s ease background-color;
}
@media screen and (max-width: 767px) {
  .button1 {
    margin: 0 auto;
    padding: 16px;
  }
}
.button1::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: clamp(20px,7.5vw,30px);
  height: clamp(20px,7.5vw,30px);
  border-radius: 100%;
  border: 1px solid #DADEE2;
  background: white url(../../img/base/icon_arrow.svg) no-repeat center center;
  background-size: 50%;
  transition: 0.4s ease;
}
.button1:hover {
  background-color: #cdd7e0;
}

.button2 {
  position: relative;
  display: block;
  width: min(300px, 100%);
  padding: 20px 10px;
  font-size: clamp(1.4rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: white;
  background-color: #68b361;
  border-radius: 50vw;
  transition: 0.4s ease background-color;
}
@media screen and (max-width: 767px) {
  .button2 {
    margin: 0 auto;
    padding: 16px;
  }
}
.button2::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: clamp(20px,7.5vw,30px);
  height: clamp(20px,7.5vw,30px);
  border-radius: 100%;
  border: 1px solid #DADEE2;
  background: white url(../../img/base/icon_arrow.svg) no-repeat center center;
  background-size: 50%;
  transition: 0.4s ease;
}
.button2:hover {
  background-color: #587d8f;
}

.button3 {
  position: relative;
  display: block;
  width: min(300px, 100%);
  padding: 20px 25px;
  padding-right: 60px;
  font-size: clamp(1.4rem,1.6vw,1.6rem);
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #5C5C5C;
  background-color: #EAEDF0;
  transition: 0.4s ease background-color;
}
.button3::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: clamp(20px,7.5vw,30px);
  height: clamp(20px,7.5vw,30px);
  border-radius: 100%;
  border: 1px solid #DADEE2;
  background: white url(../../img/base/icon_arrow.svg) no-repeat center center;
  background-size: 50%;
  transition: 0.4s ease;
}
.button3[href$=".pdf"]::before {
  flex-shrink: 0;
  content: "";
  background-color: currentColor;
  display: inline-block;
  height: 1em;
  width: 1em;
  -webkit-mask: url("../../img/base/icon_pdf.svg");
  mask: url("../img/base/icon_pdf.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  line-height: inherit;
  margin-right: 0.4em;
}
.button3:hover {
  background-color: #cdd7e0;
}

.button4 {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #68b361;
  text-transform: uppercase;
}
.button4::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #68b361;
  margin-left: 10px;
}
.button4::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 3.5px;
  border-color: transparent transparent transparent white;
}

.button-center > * {
  margin: 0 auto;
}

/* modal over wright */
/*モーダルのボタンの色を変更したい場合*/
/*動画表示のモーダルの余白を変更したい場合*/
@media screen and (max-width: 767px) {
  .modaal-video .modaal-inner-wrapper {
    padding: 0;
  }

  .modaal-video-wrap {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #333;
}

/**/
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* text-align */
body .tac {
  text-align: center;
}
body .tal {
  text-align: left;
}
body .tar {
  text-align: right;
}

/* nowrap */
.nowrap {
  white-space: nowrap;
}

/* width % */
.w10 {
  width: 10%;
}

.table.w10 {
  max-width: 110px;
  width: 100%;
}

.w20 {
  width: 20%;
}

.table.w20 {
  max-width: 220px;
  width: 100%;
}

.w30 {
  width: 30%;
}

.table.w30 {
  max-width: 330px;
  width: 100%;
}

.w40 {
  width: 40%;
}

.table.w40 {
  max-width: 440px;
  width: 100%;
}

.w50 {
  width: 50%;
}

.table.w50 {
  max-width: 550px;
  width: 100%;
}

.w60 {
  width: 60%;
}

.table.w60 {
  max-width: 660px;
  width: 100%;
}

.w70 {
  width: 70%;
}

.table.w70 {
  max-width: 770px;
  width: 100%;
}

.w80 {
  width: 80%;
}

.table.w80 {
  max-width: 880px;
  width: 100%;
}

.w90 {
  width: 90%;
}

.table.w90 {
  max-width: 990px;
  width: 100%;
}

.w100 {
  width: 100%;
}

.table.w100 {
  max-width: 1100px;
  width: 100%;
}

/* spacer xs,sm,md,lg,xl */
body .mt-xs {
  margin-top: 10px;
}
body .mb-xs {
  margin-bottom: 10px;
}
body .mr-xs {
  margin-right: 10px;
}
body .ml-xs {
  margin-left: 10px;
}
body .mt-0 {
  margin-top: 0 !important;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body .mr-0 {
  margin-right: 0 !important;
}
body .ml-0 {
  margin-left: 0 !important;
}

body .mt-sm {
  margin-top: clamp(20px,2.7vw,30px);
}
body .mb-sm {
  margin-bottom: clamp(20px,2.7vw,30px);
}
body .mr-sm {
  margin-right: clamp(20px,2.7vw,30px);
}
body .ml-sm {
  margin-left: clamp(20px,2.7vw,30px);
}
body .mt-0 {
  margin-top: 0 !important;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body .mr-0 {
  margin-right: 0 !important;
}
body .ml-0 {
  margin-left: 0 !important;
}

body .mt-md {
  margin-top: clamp(30px,5.45vw,60px);
}
body .mb-md {
  margin-bottom: clamp(30px,5.45vw,60px);
}
body .mr-md {
  margin-right: clamp(30px,5.45vw,60px);
}
body .ml-md {
  margin-left: clamp(30px,5.45vw,60px);
}
body .mt-0 {
  margin-top: 0 !important;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body .mr-0 {
  margin-right: 0 !important;
}
body .ml-0 {
  margin-left: 0 !important;
}

body .mt-lg {
  margin-top: clamp(40px,7.27vw,80px);
}
body .mb-lg {
  margin-bottom: clamp(40px,7.27vw,80px);
}
body .mr-lg {
  margin-right: clamp(40px,7.27vw,80px);
}
body .ml-lg {
  margin-left: clamp(40px,7.27vw,80px);
}
body .mt-0 {
  margin-top: 0 !important;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body .mr-0 {
  margin-right: 0 !important;
}
body .ml-0 {
  margin-left: 0 !important;
}

body .mt-xl {
  margin-top: clamp(60px,10.9vw,120px);
}
body .mb-xl {
  margin-bottom: clamp(60px,10.9vw,120px);
}
body .mr-xl {
  margin-right: clamp(60px,10.9vw,120px);
}
body .ml-xl {
  margin-left: clamp(60px,10.9vw,120px);
}
body .mt-0 {
  margin-top: 0 !important;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body .mr-0 {
  margin-right: 0 !important;
}
body .ml-0 {
  margin-left: 0 !important;
}

/* over wright */
.header__nav__item.program .title {
  color: white;
  background-color: #8D8D8D;
  border-color: #68b361;
}
.header__nav__item.program .title::after {
  background-color: #68b361;
}

.program-research .page-body__wrap:nth-child(odd) {
  background-color: inherit;
}

/*--------------------------------------------------------------
program配下
--------------------------------------------------------------*/


/*# sourceMappingURL=program.css.map */

/*---------------------------------------
富山大学 理学部Default
--------------------------------------*/
html {
	font-size: 62.5%;
}
/* リセット */
*, body, h1, h2, h3, h4, p, ul {
	padding: 0;
	margin: 0;
}
body {
	font-family: "BIZ UDPGothic", YuGothic, “Yu Gothic Medium”, “Yu Gothic”, Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
}


/*---------------------------------------
共通設定
--------------------------------------*/
.sci-bg-bgray {
	/*background-color: #f5f5f5;*/
}

/* Padding */
.sci-pdt3p {
	padding-top: 3%;
}
.sci-pdt5p {
	padding-top: 5%;
}
.sci-pdb5p {
	padding-bottom: 5%;
}
.sci-pdtb5p, .sci-head-pdtb5p {
	padding-top: 5%;
	padding-bottom: 5%;
}

/* Margin */
.sci-mlr40pmb4r {
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 4rem;
}
.sci-mb4r {
	margin-bottom: 4rem;
}
.sci-mb40-sm20 {
	/*margin-bottom: 40px;*/
}

/* テキスト寄せ */
.sci-txt-c {
	text-align: center;
}

/* 表示・非表示class */
.sci-lg-none {	/* 991px以下非表示 */
	display: none;
}


@media (max-width: 1199px) {
	.sci-pdtb5p {
		padding-top: 4%;
		padding-bottom: 4%;
	}
	.sci-head-pdtb5p {
		padding-top: 6%;
		padding-bottom: 10%;
	}
	/* Margin */
	.sci-mlr40pmb4r {
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 3rem;
	}
}

@media (max-width: 991px) {
	.sci-mlr40pmb4r {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 3rem;
	}
}

@media (max-width: 767px) {
	/* Margin */
	.sci-mlr40pmb4r {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 2rem;
	}
	.sci-mb4r {
		margin-bottom: 2rem;
	}
}

/* ページTOP */
.pagetop {
  /*display: block;*/
  position: fixed;
  right: 22px;
  bottom: 42px;
  width: 60px;
  height: 60px;
  color: white;
  background-color: #68b361;
  border-radius: 50vw;
  z-index: 100;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition: 0.4s ease background-color;
}
.pagetop::before {
  flex-shrink: 0;
  content: '';
  background-color: currentColor;
  display: inline-block;
  height: 26px;
  width: 26px;
  -webkit-mask: url("../images/sci_arrow_top.svg");
  mask: url("../images/sci_arrow_top.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  line-height: inherit;
  transform: rotate(-90deg);
  box-sizing: border-box;
}


/*---------------------------------------
カラー設定
class: sci-col～／sci-bg～
--------------------------------------*/

/* テキストカラー設定 */
.sci-col-orage {
	color: #f47e2f;
}
.sci-col-lgblue {
	color: #26a9d8;
}
.sci-col-red {
	color: #ea545d;
}
.sci-col-purple {
	color: #a64a97;
}
.sci-col-dkblue {
	color: #3d62ad;
}
.sci-col-green {
	color: #41b25d;
}

/* 背景カラー設定 */
.sci-bg-orage {
	background-color: #f47e2f;
}
.sci-bg-lgblue {
	background-color: #26a9d8;
}
.sci-bg-red {
	background-color: #ea545d;
}
.sci-bg-purple {
	background-color: #a64a97;
}
.sci-bg-dkblue {
	background-color: #3d62ad;
}
.sci-bg-green {
	background-color: #41b25d;
}


/*---------------------------------------
タイトル
class: sci-ttl～
--------------------------------------*/
.sci-ttl-basic, .sci-ttl-whiteln, .sci-ttl-basicln {
	position: relative;
	text-align: center;
	letter-spacing: .5rem;
	margin-bottom: 3rem;
}

/* 基本タイトル */
.sci-ttl-basic {
	color: #108277;
}
/* タイトル白下線付 */
.sci-ttl-whiteln {
	color: #ffffff;
	padding-bottom: 15px;
}
/* タイトル青緑下線付 */
.sci-ttl-basicln {
	color: #108277;
	padding-bottom: 15px;
}

.sci-ttl-whiteln::after, .sci-ttl-basicln::after {
	display: block;
	content: '';
	width: 100px;
	height: 5px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.sci-ttl-whiteln::after {	/* 白下線 */
	background-color: #ffffff;
	position: absolute;
}
.sci-ttl-basicln::after {	/* 青緑下線 */
	background-color: #108277;
}

@media (max-width: 1199px) {
	.sci-ttl-basic {
		margin-bottom: 2rem;
	}
	/* タイトル白下線付 */
	.sci-ttl-whiteln {
		padding-bottom: 10px;
	}
	/* タイトル青緑下線付 */
	.sci-ttl-whiteln::after, .sci-ttl-basicln::after {
		width: 70px;
		height: 3px;
	}
}

@media (max-width: 991px) {
	/* タイトル青緑下線付 */
	.sci-ttl-whiteln::after, .sci-ttl-basicln::after {
		width: 60px;
		/*height: 2px;*/
	}
}

@media (max-width: 767px) {
	.sci-ttl-basic, .sci-ttl-whiteln, .sci-ttl-basicln {
		letter-spacing: 0;
		margin-bottom: 1.5rem;
	}
	.sci-ttl-whiteln, .sci-ttl-basicln {
		padding-bottom: 10px;
	}
	/* タイトル青緑下線付 */
	.sci-ttl-whiteln::after, .sci-ttl-basicln::after {
		width: 50px;
		height: 2px;
	}
}

@media (max-width: 576px) {
	.sci-ttl-basic, .sci-ttl-whiteln, .sci-ttl-basicln {
		margin-bottom: 1.2rem;
		letter-spacing: .2rem;
	}

}


/*---------------------------------------
リスト
class: sci-list～
--------------------------------------*/
/* リスト */
.sci-list-basic {
	list-style: none;
}
.sci-list-basic li {
	background: url("../images/sci_check.svg") no-repeat left top 4px;
	background-size: 22px auto;
	padding-left: 30px;
	margin-bottom: 2rem;
	line-height: 1.6;
}
.sci-list-marker {
	color: #108277;
	font-weight: 600;
	background-color: #f8fcca;
	padding: 5px;
}

/* 定義リスト */
.sci-dflist {
	list-style: none;
}
.sci-dflist dt, .sci-dflist dd {
	margin-bottom: 2rem;
	line-height: 1.6;
	display: inline-block;
}
.sci-dflist dt {
	margin-right: 15px;
}

@media (max-width: 1199px) {
	/* 定義リスト */
	.sci-dflist dt, .sci-dflist dd {
		margin-bottom: 1rem;
	}
}

@media (max-width: 767px) {
	/* リスト */
	.sci-list-basic li {
		background-size: 20px auto;
		padding-left: 25px;
		margin-bottom: 1rem;
	}
	.sci-list-marker {
		padding: 3px;
	}
	/* 定義リスト */
	.sci-dflist dt, .sci-dflist dd {
		margin-bottom: .5rem;
	}
}

@media (max-width: 576px) {
	/* 定義リスト */
	.sci-dflist dt, .sci-dflist dd {
		width: 100%;
	}

}


/*---------------------------------------
ボタン
class: sci-btn～
--------------------------------------*/
/* 基本ボタン */
.sci-btn-basic {
	position: relative;
	display: inline-block;
	min-width: 300px;
	padding: 20px 35px 20px 10px;
	font-size: clamp(1.4rem,1.6vw,1.6rem);
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: white;
	background-color: #52a8a3;
	border-radius: 50vw;
	transition: 0.4s ease background-color;
	box-sizing: border-box;
}
.sci-btn-basic:hover {
  background-color: #68b361;
}

/* 入学試験とカリキュラムの特色ボタン */
.sci-btn-ltgray {
    position: relative;
    display: inline-block;
    width: min(340px, 100%);
    padding: 30px 25px;
    font-size: clamp(1.4rem,1.6vw,1.6rem);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #5C5C5C;
	background: #EAEDF0 url("../images/sci_cur_btn.svg") no-repeat left 25px center;
	background-size: 28px auto;
    transition: 0.4s ease background-color;
	text-indent: 3rem;
	text-align: center;
	box-sizing: border-box;
}
.sci-btn-ltgray:hover {
    background-color: #cdd7e0;
}

/* 国際ボタン */
.sci-btn-red {
	position: relative;
	display: inline-block;
	width: 500px;
	max-width: 100%;
	padding: 20px 10px;
	font-size: clamp(1.4rem,1.6vw,1.6rem);
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 1rem;
	color: white;
	background-color: #ea545d;
	transition: 0.4s ease background-color;
	box-sizing: border-box;
}
.sci-btn-red:hover {
  background-color: #f47e2f;
}

/* 基本ボタン・国際ボタン矢印 */
.sci-btn-basic::after, .sci-btn-red::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: clamp(20px,7.5vw,30px);
	height: clamp(20px,7.5vw,30px);
	border-radius: 100%;
  /*border: 1px solid #DADEE2;*/
	background: white url(../images/sci_arrow.svg) no-repeat center center;
	background-size: 10px auto;
	transition: 0.4s ease;
}

@media (max-width: 1199px) {
	/* 基本ボタン */
	.sci-btn-basic {
		min-width: 260px;
		padding: 15px 25px 15px 10px;
	}
	/* 入学試験とカリキュラムの特色ボタン */
	.sci-btn-ltgray {
    	width: min(300px, 100%);
    	padding: 20px 25px;
	}
	/* 国際ボタン */
	.sci-btn-red {
		width: 360px;
		padding: 15px 10px;
		letter-spacing: 1rem;
	}
	/* 基本ボタン・国際ボタン矢印 */
	.sci-btn-basic::after, .sci-btn-red::after {
		top: 0px;
		right: 18px;
		width: clamp(18px,6vw,24px);
		height: clamp(18px,6vw,24px);
		background-size: 8px auto;
	}
}

@media (max-width: 767px) {
	/* 基本ボタン */
	.sci-btn-basic {
    	min-width: 220px;
    	font-size: 1.4rem;
    	font-weight: 500;
	}
}


/*---------------------------------------
コンテナ
--------------------------------------*/
.container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}


@media (max-width: 1240px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 576px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}


/*---------------------------------------
Header
class: fsh-head～
--------------------------------------*/
/* +++++++++++++++++++++++++++++++++++++++++++++++++ ヘッダ */
.sci-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding-left: 30px;
	
}
.sci-head-logo {
	margin: 0;
	height: 50px;
	box-sizing: border-box;
}
.sci-head-logo img {
	width: 260px;
	height: auto;
}
.sci-head-hplink {
	height: 100%;
	margin-bottom: 0;
}
.sci-head-hplink a {
	background-color: #42657f;
	font-size: 1.4rem;
	/*display: block;*/
	width: 120px;
	height: 100%;
	color: #ffffff;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

@media (max-width: 1199px) {
	.sci-head {
    	height: 60px;
    	padding-left: 20px;
	}
	.sci-head-logo {
    	height: 40px;
	}
	.sci-head-logo img {
    	width: 200px;
	}
	.sci-head-hplink {
    	line-height: 1.4;
	}
}

@media (max-width: 576px) {
	.sci-head {
		height: 50px;
    	padding-left: 10px;
	}
	.sci-head-logo {
    	height: 30px;
	}
	.sci-head-logo img {
    	width: 160px;
	}
	.sci-head-hplink a {
    	font-size: 1.2rem;
    	width: 90px;
    	padding: 10px;
	}
}

/*---------------------------------------
キャッチ
class: sci-catch～
--------------------------------------*/
.sci-catch-bg {
	background: url("../images/sci_catch_bg.png") no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 50vh;
}
.sci-catch-copy {
	font-family: 'Zen Maru Gothic', YuGothic, “Yu Gothic Medium”, “Yu Gothic”, Meiryo, sans-serif;
	font-size: 2.4rem;
	color: #ffffff;
	margin-top: 5%;
	margin-left: 15%;
	letter-spacing: .5rem;
	position: relative;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
}
.sci-catch-copy::after {
	content: '';
	display: inline-block;
	background-color: #ffffff;
	width: 40px;
	height: 2px;
	margin-left: 15px;
	vertical-align: middle;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.3);
}
.sci-catch-ttl {
	color: #ffffff;
	margin-left: 15%;
	text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.3);
}
.sci-catch-unit {
	font-size: 3rem;
	margin-left: 5px;
	margin-right: 10px;
}
.sci-catch-maintxt {
	letter-spacing: 1rem;
}

/* フェードUP */
.fade-up {
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
	from {
    	opacity: 0;
		transform: translateY(100px);
  }

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* フェードDOWN */
.fade-down {
	animation-name:fadeDownAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeDownAnime{
	from {
    	opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1199px) {
	.sci-catch-bg {
		height: auto;
	}
	.sci-catch-copy {
		font-size: 2rem;
		margin-top: 0;
		margin-left: 30px;
		letter-spacing: 0;
	}
	.sci-catch-copy::after {
		width: 20px;
		margin-left: 10px;
	}
	.sci-catch-ttl {
		margin-left: 30px;
	}
	.sci-catch-unit {
		font-size: 2rem;
	}
	.sci-catch-maintxt {
		letter-spacing: .5rem;
	}
}

@media (max-width: 991px) {
	.sci-catch-copy {
		font-size: 1.6rem;
		margin-left: 20px;
		margin-bottom: .5rem;
	}
	.sci-catch-ttl {
		margin-left: 20px;
	}
	.sci-catch-unit {
		font-size: 1.6rem;
	}
}
@media (max-width: 576px) {
	.sci-catch-copy {
		font-size: 1.5rem;
	}
	.sci-catch-copy::after {
		width: 15px;
		height: 1px;
		margin-left: 5px;
	}
	.sci-catch-maintxt {
		letter-spacing: .3rem;
	}
}


/*---------------------------------------
１学科６プログラム
class: sci-intr～ 
--------------------------------------*/
.sci-intr-listbox {
	border: 2px solid #108277;
	border-radius: 8px;
	padding: 30px 30px 10px;
}
.sci-intr-btn {
	width: 100%;
	text-align: center;
	margin-top: 4rem;
}

@media (max-width: 1199px) {
	.sci-intr-listbox {
		padding: 25px 20px 10px;
	}
}
@media (max-width: 991px) {
	.sci-intr-btn {
		margin-top: 3rem;
	}
}
@media (max-width: 767px) {
	.sci-intr-listbox {
		padding: 20px 15px 10px;
	}
	.sci-intr-btn {
		margin-top: 2rem;
	}
}

@media (max-width: 576px) {
	.sci-intr-listbox {
    	padding: 15px 10px 5px;
	}
	.sci-intr-movie{
		width: 70%;
	}
}



/*---------------------------------------
再編前・再編後
class: sci-rest～ 
--------------------------------------*/
.sci-rest-bg {
	background-color: #e5efe4;
}
/* 再編前・再編後タイトル */
.sci-rest-ttlbox {
	text-align: center;
}
.sci-rest-ttl {
	display: inline-block;
	color: #108277;
	text-align: center;
	position: relative;
	vertical-align: middle;
	letter-spacing: 1rem;
	margin-bottom: 3rem;
}
.sci-rest-ttl::before {
	content: '';
	display: inline-block;
	background-color: #108277;
	width: 40px;
	height: 2px;
	margin-right: 20px;
	vertical-align: middle;
}
.sci-rest-ttl::after {
	content: '';
	display: inline-block;
	background-color: #108277;
	width: 40px;
	height: 2px;
	margin-left: 20px;
	vertical-align: middle;
}

/* 再編前 */
.sci-rest-before {
	text-align: center;
	margin-bottom: 3rem;
}
.sci-rest-before li {
	display: inline-block;
	min-width: 100px;
	background-color: #ffffff;
	margin: 0 15px 15px;
	padding: 15px 20px;
	text-align: center;
	border-right: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
}
.sci-rest-arrow {	/* 下矢印 */
	background: url("../images/sci_downya.svg") no-repeat center top;
	background-size: contain;
	width: 220px;
	height: 54px;
	margin-left: auto;
	margin-right: auto;
}

/* 再編後 */
.sci-rest-aftwrap {
	background-color: #fbfcd6;
	margin-top: -20px;
	margin-left: auto;
	margin-right: auto;
	padding: 4% 20px;
	max-width: 1200px;
	box-sizing: border-box;
}
.sci-rest-aftdepart {
	width: 90%;
	background-color: #ffffff;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 20px 30px;
	border-right: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	box-sizing: border-box;
	text-align: center;
}
.sci-rest-aftttl {
	letter-spacing: 1rem;
	margin-bottom: 3rem;
}
.sci-rest-after {
	text-align: center;
}
.sci-rest-after li {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 3rem;
}
.sci-rest-plus {
	text-align: center;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1;
	color: #108277;
}

@media (max-width: 1199px) {
	/* 再編前 */
	.sci-rest-before li {
		min-width: 80px;
		margin: 0 10px 10px;
	}
	.sci-rest-arrow {	/* 下矢印 */
		width: 160px;
		height: 40px;
	}
	/* 再編後 */
	.sci-rest-aftdepart {
		padding: 30px 15px 20px;
	}
	.sci-rest-after li {
		margin-left: 7px;
		margin-right: 7px;
		margin-bottom: 2rem;
	}
}

@media (max-width: 991px) {
	.sci-rest-plus {
		font-size: 4rem;
		margin-bottom: 1rem;
	}
}

@media (max-width: 767px) {
	/* 再編前・再編後タイトル */
	.sci-rest-ttl {
		margin-bottom: 2rem;
	}
	/* 再編前 */
	.sci-rest-before {
    	margin-bottom: 2rem;
	}
	.sci-rest-before li {
    	min-width: 50px;
    	margin: 0 3px 10px;
		padding: 15px 15px;
	}
	.sci-rest-arrow {	/* 下矢印 */
    	width: 140px;
	}
	/* 再編後 */
	.sci-rest-aftdepart {
		width: 100%;
		padding: 20px 10px 10px;
	}
	.sci-rest-aftttl {
		margin-bottom: 2rem;
	}
	.sci-rest-after li {
    	margin-left: 5px;
    	margin-right: 5px;
    	margin-bottom: 2rem;
	}
}

@media (max-width: 576px) {
	/* 再編前・再編後タイトル */
	.sci-rest-ttl {
		margin-bottom: 1.5rem;
	}
	.sci-rest-ttl::before {
    	width: 20px;
    	height: 1px;
    	margin-right: 10px;   
	}
	.sci-rest-ttl::after { 
    	width: 20px;
    	height: 1px;
    	margin-left: 0;
	}
	/* 再編前 */
	.sci-rest-before {
    	margin-bottom: 1rem;
	}
	.sci-rest-before li {
    	padding: 12px;
	}
	.sci-rest-arrow {	/* 下矢印 */
    	width: 120px;
	}
	/* 再編後 */
	.sci-rest-aftttl {
		font-size: 2rem;
	}
	.sci-rest-aftwrap {
		margin-top: -25px;
		padding: 25px 10px 20px;
	}
	.sci-rest-after li {
    	margin-bottom: 1rem;
	}
	.sci-rest-plus {
    	font-size: 4rem;
    	margin-bottom: 0;
	}
}


/*---------------------------------------
入学試験とカリキュラムの特色
class: sci-car～ 
--------------------------------------*/
.sci-car-wrap {
	position: relative;
}
.sci-car-bg {
	background: url("../images/sci_cur_bg.png") no-repeat left top;
	background-size: cover;
	z-index: -1;
	position: sticky;
	top: 0;
  left: 0;
	height: 100vh;
}
.sci-car-cardwrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 5rem;
	margin-left: -20px;
	margin-right: -20px;
}
.sci-car-card {
	width: 50%;
	width: calc(50% - 40px);
	margin: 0 20px 40px;
	padding: 40px 40px;
	background-color: #ffffff;
	box-sizing: border-box;	
}
.sci-car-card h3 {
	text-align: center;
	color: #108277;
}
.sci-car-btn {
	/*display: inline-block;*/

	text-align: center;
}
.sci-car-btn .sci-btn-basic {
	width: 330px;
	max-width: 100%;
	text-align: center;
	margin-top: 1rem;
}


@media (max-width: 1199px) {
	.sci-car-bg {
		display: none;
	}
	.sci-car-bg-xl {
		background: url("../images/sci_cur_bg.png") no-repeat left top;
		background-size: cover;
	}
	.sci-car-cardwrap {
		margin-top: 4rem;
		margin-left: -10px;
		margin-right: -10px;
	}
	.sci-car-card {
		width: calc(50% - 20px);
		margin: 0 10px 20px;
		padding: 30px 30px 20px;
	}
}

@media (max-width: 991px) {
	.sci-car-cardwrap {
		margin-top: 3rem;
		margin-left: -7px;
		margin-right: -7px;
	}
	.sci-car-card {
		width: calc(50% - 14px);
		margin: 0 7px 14px;
		padding: 20px 20px 10px;
	}
}

@media (max-width: 767px) {
	.sci-car-card {
   		width: 100%;
    	padding: 15px 15px 5px;
	}
}


@media (max-width: 576px) {
	.sci-car-cardwrap {
		margin-top: 2.5rem;
	}
	.sci-car-btn .sci-btn-basic {
		width: auto;
		padding: 15px 20px;
		margin-top: .5rem;
	}
	.sci-car-btn .sci-btn-basic::after {
		display: none;
	}
}





/*---------------------------------------
プログラムの概要
class: sci-over～
--------------------------------------*/
.sci-over-box1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 6rem;
	padding-bottom: 5rem;
	/*border-bottom: 1px solid #cccccc;*/
}
.sci-over-box1:last-of-type {
	margin-bottom: 3rem;
	padding-bottom: 0;
	border-bottom: none;
}
.sci-over-txtbox1 {
	/*width: calc(100% - 500px - 50px);*/
	width: 60%;
	margin-bottom: 1.5rem;
	/*order: 1;*/
}
.sci-over-figure1 {
	max-width: 500px;
	width: calc(40% - 50px);
	margin-bottom: 1.5rem;
	/*order: 2;*/
}
.sci-over-figure1 img {
	width: 100%;
}
.sci-over-subttl {
	background-color: #f5f5f5;
	/*margin-bottom: 1rem;*/
	padding: 10px 15px;
	letter-spacing: .5rem;
	line-height: 1.4;
}
.sci-over-ttl {
	letter-spacing: .5rem;
	padding-left: 15px;
	padding-right: 15px;
}
.sci-over-explan {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 3rem;
}
.sci-over-coursebox {
	display: flex;
	flex-wrap: wrap;
}
.sci-over-course {
	width: 50px;
	height: 80px;
	color: #ffffff;
	z-index: 1;
	/*position: absolute;*/
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	letter-spacing: .5rem;
}
.sci-over-course span {
	writing-mode: vertical-rl;
	display: inline-block;
}
.sci-over-courselist {
	width: calc(100% - 50px);
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #cccccc;
	margin-left: -10px;
	margin-top: 10px;
	padding-left: 40px;
	padding-top: 12px;
	padding-bottom: 10px;
	box-sizing: border-box;
	z-index: 0;
	/*position: absolute;*/
}
.sci-over-courselist li {
	list-style: disc;
	width: 44%;
	margin-right: 20px;
	margin-bottom: .5rem;
	box-sizing: border-box;
	/*display: inline-block;*/
	display:list-item;	
	line-height: 1.4;
}

/* プログラムリンク */
.sci-over-link {
	text-align: right;
	position: relative;
	width: 100%;
	margin-top: 1rem;
}
.sci-over-link a {
	padding-right: 30px;
	color: #000;
}
.sci-over-link a:hover {
	opacity: .7;
}
.sci-over-link a::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin-left: 50px;
	width: clamp(20px,7.5vw,30px);
	height: clamp(20px,7.5vw,30px);
	background: url(../images/sci_arrow.svg) no-repeat center center;
	background-size: 10px auto;
	transform:rotate(180deg);
	transition: 0.4s ease;
}

/* 新規開設アイコン */
.sci-over-ico {
	width: 100px !important;
	height: auto;
	position: relative;
	margin-top: -30px;
	margin-left: 10px;
	margin-bottom: -80px;
	z-index: 1;
}

@media (max-width: 1199px) {
	.sci-over-box1 {
		margin-bottom: 3rem;
		padding-bottom: 3rem;
	}
	.sci-over-box1:last-of-type {
		margin-bottom: 1rem;
		padding-bottom: 0;
	}
	.sci-over-txtbox1 {
		width: 50%;
	}
	.sci-over-figure1 {
		width: calc(50% - 30px);
	}
	.sci-over-subttl {
		padding: 8px 15px;
		letter-spacing: .3rem;
	}
	.sci-over-explan {
		margin-bottom: 2rem;
	}
	.sci-over-course {
		width: 40px;
		height: 60px;
		font-size: 1.5rem;
	}
	.sci-over-courselist {
		width: calc(100% - 30px);
	}
	.sci-over-courselist li {
		font-size: 1.5rem;
	}
}

@media (max-width: 991px) {
	.sci-over-courselist li {
		width: 95%;
		margin-right: 0;
		/*margin-bottom: .5rem;*/
	}
	/* 新規開設アイコン */
	.sci-over-ico {
		width: 80px !important;
		margin-top: -20px;
		margin-bottom: -60px;
	}
}

@media (max-width: 767px) {
	.sci-over-box1 {
		/*margin-bottom: 2rem;*/
	}
	.sci-over-box1:last-of-type {
		margin-bottom: 2rem;
	}
	.sci-over-subttl {
		padding: 4px 15px;
		letter-spacing: .1rem;
	}
	.sci-over-txtbox1 {
		width: 100%;
		order: 1;
	}
	.sci-over-figure1 {
		width: 100%;
		order: 2;
		margin-left: auto;
		margin-right: auto;
		margin-top: 1rem;
		margin-bottom: 0;
	}
	/* プログラムリンク */
	.sci-over-link {
		order: 3;
	}
}

@media (max-width: 576px) {
	.sci-over-box1 {
		margin-bottom: 3rem;
		padding-bottom: 1rem;
	}
	.sci-over-box1:last-of-type {
		margin-bottom: 2rem;
		padding-bottom: 0;
	}
	.sci-over-subttl {
		margin-bottom: 1rem;
    	padding: 3px 10px;
		font-size: 1.2rem;
    	letter-spacing: 0;
	}
	.sci-over-ttl {
		letter-spacing: .2rem;
    	padding-left: 10px;
    	padding-right: 10px;
	}
	.sci-over-explan {
    	padding-left: 0;
    	padding-right: 0;
    	margin-bottom: 1.5rem;
	}
	.sci-over-course {
		font-size: 1.4rem;
	}
	.sci-over-courselist {
    	width: calc(100% - 10px);
    	margin-left: -30px;
    	padding-left: 50px;
	}
}

/*---------------------------------------
国際コース
class: sci_inter～
--------------------------------------*/
.sci_inter-bg {
	background-image: url("../images/sci_inter_bgtxt.svg"), url("../images/sci_inter_bg.png")	;
	background-repeat: no-repeat;
	background-position: right bottom, center center;
	background-size: 30% auto, cover;
}
.sci_inter-ttlbox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.sci_inter-ttlbox h2 {
	margin-left: auto;
	margin-right: auto;
}

/* 新規開設アイコン */
.sci_inter-ico {
	margin-left: 0;
}
.sci_inter-ico img {
	width: 120px;
	height: auto;
}

/* リストBOX */
.sci_inter-listbox {
	background-color: #ffffff;
	border-radius: 8px;
	padding: 30px 40px 10px;
	margin-bottom: 5%;
}

@media (max-width: 1199px) {
	/* 新規開設アイコン */
	.sci_inter-ico img {
		width: 100px;
	}
	
	/* リストBOX */
	.sci_inter-listbox {
		padding: 25px 20px 10px;
		/*margin-bottom: 5%;*/
	}
}

@media (max-width: 991px) {
	.sci_inter-bg {
		background-size: 300px auto, cover;
	}
	/* 新規開設アイコン */
	.sci_inter-ico {
		margin-bottom: 0;
	}
	.sci_inter-ico img {
		width: 80px;
	}
}

@media (max-width: 767px) {
	/* リストBOX */
	.sci_inter-listbox {
		padding: 20px 15px 10px;
	}
	.sci_inter-bg {
		background-size: 260px auto, cover;
	}
}
@media (max-width: 576px) {
	.sci-intr-subttl {
		font-size: 1.5rem;
		line-height: 1.6;
		display: inline-block;
	}
}


/*---------------------------------------
Footer
class: fsh-foot～
--------------------------------------*/
.fsh-foot {
}
.sci-foot-contact {	/* 理学部本体からコピペ */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 110px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  color: white;
  background-color: #42657f;
  font-size: 1.2rem;
  transition: 0.4s ease background-color;
}
.sci-foot-contact::before {
  content: '';
  width: 31px;
  height: 31px;
  margin-bottom: 5px;
  background: url("../images/icon_mail.png") no-repeat center center;
  background-size: auto;
  background-size: 100% auto;
}

/* 富大ロゴ */
.sci-foot-tohd {
	margin-bottom: 1.5rem;
	text-align: center;
}
.sci-foot-tohd img {
	width: 260px;
	height: auto;
}

/* コピーライト */
.sci-foot-copy {
	text-align: center;
	line-height: 1.4;
	margin-left: 10px;
	margin-right: 10px;
}


@media (max-width: 1199px) {
	.sci-foot-contact {	/* 理学部本体からコピペ */
  		width: 90px;
  		height: 90px;
  		margin-bottom: 2rem;
	}
	.sci-foot-tohd {
		margin-bottom: 1rem;
	}
	.sci-foot-tohd img {
		width: 200px;
	}
	/* コピーライト */
	.sci-foot-copy {
		font-size: 1.4rem;
	}
}

@media (max-width: 767px) {
	.sci-foot-tohd {
		margin-bottom: .5rem;
	}
}

@media (max-width: 576px) {
	.sci-foot-tohd img {
		width: 160px;
	}
	.sci-foot-copy {
		font-size: 1.3rem;
	}
}



/*@media (max-width: 1199px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}
@media (max-width: 576px) {
}*/