.effect.inview {
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

/*----------------------------------*/
/* STYLE RESET 
/----------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

main {
  display: block;
}

button {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  vertical-align: bottom;
}

h1,
h2,
h3,
h4 {
  font-weight: inherit;
}

a {
  display: block;
  text-decoration: none;
  word-wrap: break-word;
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.5;
}

input,
select,
textarea {
  display: block;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  font-size: inherit;
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: normal;
}

/*----------------------------------*/
/* ANIMATION
/----------------------------------*/
@-webkit-keyframes name {}
@keyframes name {}
/*----------------------------------*/
/* COMMON STYLE
/----------------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
  color: #222;
}

body {
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
  z-index: 0;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.body-bg {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #d4dddc;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body.fixed {
  position: fixed;
  width: 100%;
  z-index: 0;
}

body.fixed .body-bg {
  opacity: 0.74;
  visibility: visible;
}

.ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2;
}
.ja.bold {
  font-weight: 700;
}

.en.overpass {
  font-family: "Overpass", sans-serif;
  font-weight: 600;
}
.en.quicksand {
  font-family: "Quicksand", sans-serif;
}
.en.quicksand.semi-bold {
  font-weight: 600;
}
.en.quicksand.bold {
  font-weight: 700;
}

.bg-light-blue {
  background-color: #f0f6f7;
}

ul.common li::before {
  position: absolute;
  content: "";
  display: block;
}

.sp,
.small-pc {
  display: none;
}

.header {
  width: 100%;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 1.25%;
  padding-right: 1.25%;
  background-color: #fff;
}
.header::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #00b993;
}
.header > .left {
  width: 246px;
  margin-bottom: 8px;
}
.header > .left .site-name .img-wrapper {
  display: block;
}
.header > .left .site-name .img-wrapper img {
  width: 100%;
  height: auto;
}
.header > .right {
  width: 80%;
  max-width: calc(100% - 246px);
}
.header > .right .wrapper .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header > .right .wrapper .inner .header-navi {
  min-width: 500px;
  margin-right: 10%;
}
.header > .right .wrapper .inner .header-navi .item {
  display: inline-block;
  padding-right: 33px;
}
.header > .right .wrapper .inner .header-navi .item:last-of-type {
  padding-right: 0;
}
.header > .right .wrapper .inner .header-navi .item .link {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.header > .right .wrapper .inner .header-navi .item .link.current {
  color: #13ad8e;
}
.header > .right .wrapper .inner .su-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  background-color: #00b993;
  color: #fff;
  letter-spacing: 0.02em;
  padding-right: 19px;
  padding-left: 13px;
}
.header > .right .wrapper .inner .su-link img {
  margin-top: 1px;
  margin-right: 6px;
}

.section .common-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  border-radius: 25px;
  font-size: 1.7rem;
  color: #13ad8e;
  border: 3px solid #00b993;
  background-image: url(/suic-assets/img/common/arrow_green.png);
  background-size: 7px 9px;
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.section .common-button.small {
  width: 210px;
}
.section .common-button.large {
  width: 296px;
}
.section .common-list.blue .item {
  background-color: #f0f6f7;
}
.section .common-list .item {
  background-color: #fff;
  display: block;
  border-radius: 10px;
  margin-bottom: 10px;
}
.section .common-list .item .article-link {
  padding: 21px 50px 25px 30px;
  background-image: url(/suic-assets/img/common/arrow_green.png);
  background-size: 7px 9px;
  background-repeat: no-repeat;
  background-position: right 30px center;
}
.section .common-list .item .article-link .date {
  color: #999;
  display: block;
  line-height: 1.6;
  padding-bottom: 3px;
}
.section .common-list .item .article-link .title {
  font-size: 1.5rem;
  line-height: 1.86;
  display: block;
}
.section .has-thumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section .has-thumb-list .item {
  width: 31%;
  margin-right: 3.5%;
}
.section .has-thumb-list .item:nth-of-type(3) {
  margin-right: 0;
}
.section .has-thumb-list .item .article-link img {
  width: 100%;
  height: auto;
}
.section .link-common {
  text-decoration: underline;
  color: #13ad8e;
  font-size: 1.7rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section .link-common img {
  margin-left: 12px;
}

.footer .wrapper {
  border-top: 1px solid #d4dddc;
  padding-top: 83px;
}
.footer .wrapper .inner {
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
}
.footer .wrapper .inner.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 95px;
}
.footer .wrapper .inner .left {
  width: 220px;
  padding-top: 12px;
}
.footer .wrapper .inner .left .block img {
  display: block;
}
.footer .wrapper .inner .left .block .logo {
  width: 220px;
  height: auto;
  margin-bottom: 34px;
}
.footer .wrapper .inner .left .block .mark {
  display: block;
  margin-left: -9px;
  width: 148px;
  height: auto;
}
.footer .wrapper .inner .right {
  width: calc(100% - 220px);
  padding-left: 8.33%;
}
.footer .wrapper .inner .right .section-title {
  padding-bottom: 27px;
  font-size: 3.5rem;
  line-height: 1.6;
  font-weight: 600;
  color: #13ad8e;
}
.footer .wrapper .inner .right .footer-link-list {
  padding-bottom: 17px;
}
.footer .wrapper .inner .right .footer-link-list .item {
  padding-bottom: 12px;
}
.footer .wrapper .inner .right .footer-link-list .item .link {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 18px;
  background-image: url(/suic-assets/img/common/arrow_green.png);
  background-size: 7px 9px;
  background-repeat: no-repeat;
  background-position: left top 8px;
}
.footer .wrapper .inner .right .mail-address.en {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.footer .wrapper .inner .right .mail-address .en {
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.footer .wrapper .inner .right .mail-address a {
  display: inline-block;
  text-decoration: underline;
}
.footer .wrapper .copyright {
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: #00b993;
  color: #fff;
}

/*----------------------------------*/
/* DIFFERENT STYLES PER PAGE
/----------------------------------*/
.index .section.kv > .wrapper {
  padding-top: 75px;
  padding-bottom: 34px;
}
.index .section.kv > .wrapper .kv-img {
  position: relative;
}
.index .section.kv > .wrapper .kv-img > img {
  width: 100%;
  height: auto;
}
.index .section.kv > .wrapper .kv-img .kv-copy {
  width: 71%;
  position: absolute;
  top: 42%;
  left: 8.8%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.index .section.kv > .wrapper .kv-img .kv-copy img {
  width: 100%;
  height: auto;
}
.index .section.introduction .wrapper {
  padding-bottom: 120px;
}
.index .section.introduction .wrapper .inner {
  width: 86%;
  margin-left: 2.34%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index .section.introduction .wrapper .inner > .left {
  width: 42%;
}
.index .section.introduction .wrapper .inner > .left img {
  width: 100%;
  height: auto;
}
.index .section.introduction .wrapper .inner > .right {
  width: 51%;
}
.index .section.introduction .wrapper .inner > .right h2 .ja {
  padding-top: 8px;
  padding-bottom: 29px;
}
.index .section.introduction .wrapper .inner > .right h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 31px;
  background-color: #d4dddc;
}
.index .section.introduction .wrapper .inner > .right .sentence .en {
  font-size: 1.8rem;
  line-height: 1.77;
  padding-bottom: 19px;
}
.index .section.introduction .wrapper .inner > .right .sentence .ja {
  padding-bottom: 45px;
}
.index .section.archives .wrapper {
  padding-top: 70px;
}
.index .section.archives .wrapper .inner {
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 132px;
}
.index .section.archives .wrapper .inner .section-title {
  padding-bottom: 43px;
}
.index .section.archives .wrapper .inner .section-title .ja {
  margin-top: -3px;
}
.index .section.archives .wrapper .inner .left {
  width: 48.15%;
}
.index .section.archives .wrapper .inner .right {
  width: 48.15%;
}
.index .section.archives .wrapper .inner .common-list {
  padding-bottom: 20px;
}
.index .section.archives .wrapper .img-block img {
  width: 100%;
  height: auto;
}
.index h2 .en {
  font-size: 3.5rem;
  line-height: 1.6;
  font-weight: 600;
  color: #13ad8e;
  font-family: "Quicksand", sans-serif;
}
.index h2 .ja {
  font-weight: 700;
  color: #13ad8e;
  line-height: 1.6;
}
.index h2.pattern1 .en.tape {
  line-height: 1.35;
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 10px;
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#00b892), color-stop(19.3%, #04b897), color-stop(42.2%, #11baa5), color-stop(64.8%, #27bdbd), color-stop(93%, #46c2de), to(#50c4e9));
  background: linear-gradient(to right, #00b892 0%, #04b897 19.3%, #11baa5 42.2%, #27bdbd 64.8%, #46c2de 93%, #50c4e9 100%);
}
.index h2.pattern1 .ja {
  font-size: 2.5rem;
  font-weight: 700;
}
.index h2.pattern2 .ja {
  font-size: 1.7rem;
}

.not-index h1 .en {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 5.5rem;
}
.not-index h1 .en.tape {
  line-height: 1;
  padding-left: 9px;
  padding-right: 9px;
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#00b892), color-stop(19.3%, #04b897), color-stop(42.2%, #11baa5), color-stop(64.8%, #27bdbd), color-stop(93%, #46c2de), to(#50c4e9));
  background: linear-gradient(to right, #00b892 0%, #04b897 19.3%, #11baa5 42.2%, #27bdbd 64.8%, #46c2de 93%, #50c4e9 100%);
}
.not-index.pattern1 h2 {
  padding-bottom: 22px;
}
.not-index.pattern1 h2 .en {
  font-size: 4.2rem;
  line-height: 1.6;
  font-weight: 600;
  color: #13ad8e;
  font-family: "Quicksand", sans-serif;
}
.not-index.pattern1 h2 .ja {
  font-size: 1.9rem;
  font-weight: 700;
  color: #13ad8e;
  line-height: 1.6;
  margin-top: -3px;
  padding-bottom: 43px;
}
.not-index.pattern1 h2::after {
  content: "";
  display: block;
  width: 45px;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 31px;
  background-color: #d4dddc;
}
.not-index.pattern1 h3 .en {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 3.6rem;
}
.not-index.pattern1 h3 .en.tape {
  line-height: 1.3;
  margin-bottom: 10px;
  padding: 2px 7px;
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#00b892), color-stop(19.3%, #04b897), color-stop(42.2%, #11baa5), color-stop(64.8%, #27bdbd), color-stop(93%, #46c2de), to(#50c4e9));
  background: linear-gradient(to right, #00b892 0%, #04b897 19.3%, #11baa5 42.2%, #27bdbd 64.8%, #46c2de 93%, #50c4e9 100%);
}
.not-index.pattern1 h3 .ja {
  font-size: 2.5rem;
  font-weight: 700;
  color: #13ad8e;
  letter-spacing: 0.025em;
}
.not-index.pattern1 .section.kv > .wrapper {
  padding-top: 75px;
}
.not-index.pattern1 .section.kv > .wrapper .inner {
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 320px;
  position: relative;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.not-index.pattern1 .section.kv > .wrapper .inner .kv-img {
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 270px;
}
.not-index.pattern1 .section.kv > .wrapper .inner .kv-img img {
  width: 100%;
  height: auto;
}
.not-index.pattern1 .section.kv > .wrapper .inner .section-title {
  margin-top: 52px;
}
.not-index.pattern2 h2 .en {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #13ad8e;
  font-family: "Quicksand", sans-serif;
  padding-bottom: 3px;
}
.not-index.pattern2 h2 .ja {
  font-size: 1.7rem;
  font-weight: 700;
  color: #13ad8e;
  line-height: 1.6;
  padding-bottom: 45px;
}
.not-index.pattern2 .section.kv > .wrapper {
  padding-top: 75px;
}
.not-index.pattern2 .section.kv > .wrapper .inner .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 400px;
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
}
.not-index.pattern2 .section.kv > .wrapper .inner .title-wrapper .section-title {
  margin-top: 100px;
}
.not-index.pattern2 .section.archive > .wrapper {
  padding-top: 70px;
  padding-bottom: 130px;
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
}
.not-index.pattern2 .section.archive > .wrapper > .inner .link-common.sp {
  display: none;
}
.not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .item:first-of-type {
  padding-right: 10px;
}
.not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .item:nth-of-type(n + 2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .item:nth-of-type(n + 2)::before {
  content: "/";
  padding-right: 10px;
  color: #13ad8e;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Quicksand", sans-serif;
}
.not-index.pattern2 .section.archive > .wrapper > .inner .row {
  position: relative;
}
.not-index.pattern2 .section.archive > .wrapper > .inner .row .archives-list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.not-index.pattern2 .section.archive-events > .wrapper {
  padding-bottom: 138px;
}

.about.pattern1 h3 {
  padding-bottom: 47px;
}
.about .section.message > .wrapper {
  padding-top: 83px;
}
.about .section.message > .wrapper > .inner {
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
  padding-bottom: 140px;
}
.about .section.message > .wrapper > .inner .img1 {
  width: 100%;
  height: auto;
}
.about .section.message > .wrapper > .inner .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 45px;
  padding-bottom: 48px;
}
.about .section.message > .wrapper > .inner .text-block .left {
  width: 48.148%;
}
.about .section.message > .wrapper > .inner .text-block .left .en {
  font-size: 1.6rem;
  line-height: 1.75;
  padding-bottom: 28px;
}
.about .section.message > .wrapper > .inner .text-block .right {
  width: 48.148%;
}
.about .section.message > .wrapper > .inner .text-block .right .ja {
  padding-bottom: 28px;
}
.about .section.message > .wrapper > .inner .profile-block {
  width: 920px;
  margin: 0 auto;
}
.about .section.message > .wrapper > .inner .profile-block .flex {
  padding-top: 70px;
  padding-bottom: 73px;
  width: 84.78%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about .section.message > .wrapper > .inner .profile-block .flex .left {
  width: 63%;
}
.about .section.message > .wrapper > .inner .profile-block .flex .left .en-block {
  padding-bottom: 33px;
}
.about .section.message > .wrapper > .inner .profile-block .flex .left .en-block .position {
  font-size: 1.8rem;
  line-height: 1.72;
  padding-bottom: 16px;
}
.about .section.message > .wrapper > .inner .profile-block .flex .left .en-block .name {
  font-size: 3rem;
  line-height: 1.6;
}
.about .section.message > .wrapper > .inner .profile-block .flex .left .ja-block .position {
  font-size: 1.6rem;
  line-height: 1.875;
  padding-bottom: 15px;
}
.about .section.message > .wrapper > .inner .profile-block .flex .left .ja-block .name {
  font-size: 2.4rem;
  line-height: 1.7;
}
.about .section.message > .wrapper > .inner .profile-block .flex .right {
  width: 30.76%;
}
.about .section.message > .wrapper > .inner .profile-block .flex .right img {
  width: 100%;
  height: auto;
}
.about .section.message > .wrapper > .inner .common-button {
  margin: 80px auto 0;
}

.club h2.add .en {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 3.6rem;
}
.club h2.add .en.tape {
  line-height: 1.3;
  margin-bottom: 10px;
  padding: 2px 7px;
  display: inline-block;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#00b892), color-stop(19.3%, #04b897), color-stop(42.2%, #11baa5), color-stop(64.8%, #27bdbd), color-stop(93%, #46c2de), to(#50c4e9));
  background: linear-gradient(to right, #00b892 0%, #04b897 19.3%, #11baa5 42.2%, #27bdbd 64.8%, #46c2de 93%, #50c4e9 100%);
}
.club h2.add .ja {
  font-size: 2.5rem;
  font-weight: 700;
  color: #13ad8e;
  letter-spacing: 0.025em;
  padding-bottom: 52px;
}
.club .section.kv > .wrapper .inner {
  background-image: url(/suic-assets/img/club/club_kv_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.club .section.report .wrapper {
  padding-top: 80px;
  padding-bottom: 132px;
}
.club .section.report .wrapper .inner {
  width: 84.375%;
  margin: 0 auto;
  max-width: 1600px;
}
.club .section.report .wrapper .inner .text-block .en {
  font-size: 1.6rem;
  line-height: 1.75;
  padding-bottom: 31px;
}
.club .section.report .wrapper .inner .text-block .ja {
  padding-bottom: 65px;
}
.club .section.report .wrapper .inner .img-block.img-block1 {
  padding-bottom: 55px;
}
.club .section.report .wrapper .inner .img-block .caption {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  display: block;
  padding-top: 7px;
}
.club .section.report .wrapper .inner .img-block.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.club .section.report .wrapper .inner .img-block.flex .img-wrapper {
  width: 48.333%;
}
.club .section.report .wrapper .inner .img-block.flex .img-wrapper img {
  width: 100%;
  height: auto;
}
.club .section.report .wrapper .inner .img-block .img-wrapper img {
  width: 100%;
  height: auto;
}
.club .section.archive {
  background-color: #f0f6f7;
}

.news .section.kv > .wrapper .inner {
  background-image: url(/suic-assets/img/news/news_kv_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.events .section.kv > .wrapper .inner {
  background-image: url(/suic-assets/img/events/events_kv_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.events .section.archive .events-list .item .row {
  padding-top: 20px;
}
.events .section.archive .events-list .item .row .date {
  color: #999;
  display: block;
  padding-bottom: 10px;
}
.events .section.archive .events-list .item .row .title {
  font-size: 1.5rem;
  line-height: 1.66;
}

@media screen and (max-width: 1289px) {
  .small-pc {
    display: block;
  }

  .small-pc-cange {
    display: none;
  }
}
@media screen and (max-width: 1149px) {
  .header > .left {
    width: 200px;
    margin-right: 3%;
  }
  .header > .right {
    width: 80%;
    max-width: calc(100% - 200px);
  }
  .header > .right .wrapper .inner .header-navi {
    min-width: 450px;
    margin-right: 5%;
  }
  .header > .right .wrapper .inner .header-navi .item {
    padding-right: 12px;
  }
  .header > .right .wrapper .inner .header-navi .item:last-of-type {
    padding-right: 0;
  }
  .header > .right .wrapper .inner .header-navi .item .link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 999px) {
  .sp {
    display: block;
  }

  .small-pc {
    display: none;
  }

  .pc {
    display: none;
  }

  .header {
    height: 60px;
    padding-left: 10px;
    padding-right: 0;
  }
  .header > .left {
    width: 200px;
  }
  .header > .left #switch {
    width: 52px;
    height: 60px;
    right: 0;
    top: 0;
    position: absolute;
  }
  .header > .left #switch > .inner {
    width: 20px;
    height: 14px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  .header > .left #switch > .inner .line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #222;
    border-radius: 1px;
    position: absolute;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    left: 50%;
  }
  .header > .left #switch > .inner .line.line1 {
    top: 0;
  }
  .header > .left #switch > .inner .line.line2 {
    top: 6px;
  }
  .header > .left #switch > .inner .line.line3 {
    top: 12px;
  }
  .header > .left #switch.open > .inner .line.line1 {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
    top: 6px;
  }
  .header > .left #switch.open > .inner .line.line2 {
    opacity: 0;
  }
  .header > .left #switch.open > .inner .line.line3 {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
    top: 6px;
  }
  .header #menu-back {
    visibility: hidden;
    z-index: -1;
    opacity: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #fff;
  }
  .header #menu-back .wrapper {
    padding-top: 60px;
  }
  .header #menu-back .wrapper .inner {
    display: block;
    width: 68.75%;
    margin: 0 auto;
    padding-top: 34px;
    padding-bottom: 35px;
  }
  .header #menu-back .wrapper .inner .header-navi {
    padding-bottom: 17px;
    margin-right: 0;
  }
  .header #menu-back .wrapper .inner .header-navi .item {
    display: block;
    padding-bottom: 9px;
    padding-right: 0;
  }
  .header #menu-back .wrapper .inner .su-link {
    width: 100%;
  }
  .header #menu-back.open {
    visibility: visible;
    opacity: 1;
  }

  .section .common-button.small {
    width: 100%;
  }
  .section .common-button.large {
    width: 100%;
  }
  .section .has-thumb-list {
    display: block;
  }
  .section .has-thumb-list .item {
    width: 100%;
    margin-right: 0;
    padding-bottom: 34px;
  }
  .section .has-thumb-list .item:last-of-type {
    padding-bottom: 26px;
  }
  .section .has-thumb-list .item .row {
    padding-top: 17px;
  }
  .section .has-thumb-list .item .row .date {
    padding-bottom: 9px;
  }
  .section .common-list .item .article-link {
    background-position: right 14px center;
    padding: 18px 40px 19px 20px;
  }
  .section .common-list .item .article-link .date {
    padding-bottom: 1px;
  }
  .footer .wrapper {
    padding-top: 32px;
  }
  .footer .wrapper .inner {
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  .footer .wrapper .inner.top {
    padding-bottom: 23px;
  }
  .footer .wrapper .inner.top img {
    width: 195px;
    height: auto;
  }
  .footer .wrapper .inner.flex {
    padding-bottom: 45px;
  }
  .footer .wrapper .inner .left {
    padding-top: 0px;
    width: 68px;
  }
  .footer .wrapper .inner .left .block .logo {
    display: none !important;
  }
  .footer .wrapper .inner .left .block .mark {
    margin-left: -4px;
    width: 78px;
  }
  .footer .wrapper .inner .right {
    width: calc(100% - 68px);
  }
  .footer .wrapper .inner .right .section-title {
    padding-bottom: 13px;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
  }
  .footer .wrapper .inner .right .section-title .en {
    font-size: 2.2rem;
    line-height: 1.32;
  }
  .footer .wrapper .inner .right .footer-link-list {
    padding-bottom: 7px;
  }
  .footer .wrapper .inner .right .footer-link-list .item {
    padding-bottom: 0;
  }
  .footer .wrapper .inner .right .footer-link-list .item .link {
    font-size: 1.4rem;
    line-height: 1.85;
    background-position: left top 7px;
  }
  .footer .wrapper .inner .right .mail-address.en {
    font-size: 1.5rem;
  }
  .footer .wrapper .inner .right .mail-address .en {
    font-size: 1.5rem;
  }
  .footer .wrapper .copyright {
    font-size: 1.3rem;
  }

  /*----------------------------------*/
  /* DIFFERENT STYLES PER PAGE
  /----------------------------------*/
  .index .section.kv > .wrapper {
    padding-bottom: 11px;
    padding-top: 60px;
  }
  .index .section.kv > .wrapper .kv-img .kv-copy {
    width: 88.4%;
    left: 5.3%;
    top: 42%;
  }
  .index .section.introduction .wrapper {
    padding-bottom: 60px;
  }
  .index .section.introduction .wrapper .inner {
    display: block;
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  .index .section.introduction .wrapper .inner > .left {
    width: 100%;
    padding-bottom: 27px;
  }
  .index .section.introduction .wrapper .inner > .left img {
    width: 91.42%;
    margin: 0 auto;
    display: block;
  }
  .index .section.introduction .wrapper .inner > .left h2 .ja {
    padding-top: 2px;
    padding-bottom: 26px;
  }
  .index .section.introduction .wrapper .inner > .left h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 24px;
    background-color: #d4dddc;
  }
  .index .section.introduction .wrapper .inner > .right {
    width: 100%;
  }
  .index .section.introduction .wrapper .inner > .right .sentence .en {
    font-size: 1.6rem;
    line-height: 1.75;
    padding-bottom: 11px;
  }
  .index .section.introduction .wrapper .inner > .right .sentence .ja {
    padding-bottom: 35px;
  }
  .index .section.archives .wrapper {
    padding-top: 40px;
    margin-bottom: 0;
  }
  .index .section.archives .wrapper .inner {
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    display: block;
    padding-bottom: 59px;
  }
  .index .section.archives .wrapper .inner .section-title {
    padding-bottom: 28px;
  }
  .index .section.archives .wrapper .inner .section-title .ja {
    margin-top: -3px;
  }
  .index .section.archives .wrapper .inner .left {
    width: 100%;
    padding-bottom: 49px;
    border-bottom: 1px solid #d4dddc;
  }
  .index .section.archives .wrapper .inner .right {
    width: 100%;
    padding-top: 34px;
  }
  .index h2 .en {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .index h2 .ja {
    font-size: 1.7rem;
    line-height: 1.75;
  }
  .index h2.pattern1 .tape {
    line-height: 1.35;
    padding-left: 7px;
    padding-right: 7px;
    margin-bottom: 6px;
    display: inline-block;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#00b892), color-stop(19.3%, #04b897), color-stop(42.2%, #11baa5), color-stop(64.8%, #27bdbd), color-stop(93%, #46c2de), to(#50c4e9));
    background: linear-gradient(to right, #00b892 0%, #04b897 19.3%, #11baa5 42.2%, #27bdbd 64.8%, #46c2de 93%, #50c4e9 100%);
  }
  .index h2.pattern1 .ja {
    font-size: 1.7rem;
  }
  .index h2.pattern2 .ja {
    font-size: 1.5rem;
  }

  .not-index h1 .en.tape {
    font-size: 3.4rem;
    padding: 1px 8px;
  }
  .not-index h1 .en.tape.has-margin {
    margin-top: 8px;
  }
  .not-index.pattern1 h2 {
    padding-bottom: 0;
  }
  .not-index.pattern1 h2 .en {
    font-size: 2.7rem;
    line-height: 1.2;
  }
  .not-index.pattern1 h2 .ja {
    font-size: 1.5rem;
    line-height: 1.76;
    margin-top: 3px;
    padding-bottom: 23px;
  }
  .not-index.pattern1 h2::after {
    height: 4px;
    border-radius: 2px;
  }
  .not-index.pattern1 h3 .en {
    font-size: 2.4rem;
  }
  .not-index.pattern1 h3 .en.tape {
    padding: 0px 6px;
  }
  .not-index.pattern1 h3 .ja {
    padding-top: 10px;
    font-size: 1.7rem;
    line-height: 1.6;
  }
  .not-index.pattern1 .section.kv > .wrapper {
    padding-top: 60px;
  }
  .not-index.pattern1 .section.kv > .wrapper .inner {
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    height: 155px;
  }
  .not-index.pattern1 .section.kv > .wrapper .inner .kv-img {
    width: 130px;
    bottom: -10px;
  }
  .not-index.pattern1 .section.kv > .wrapper .inner .section-title {
    margin-top: 10px;
  }
  .not-index.pattern2 h2 .en {
    font-size: 2.5rem;
    line-height: 1.2;
    padding-bottom: 3px;
  }
  .not-index.pattern2 h2 .ja {
    font-size: 1.5rem;
    padding-bottom: 29px;
  }
  .not-index.pattern2 .section.kv > .wrapper {
    padding-top: 60px;
  }
  .not-index.pattern2 .section.kv > .wrapper .inner .title-wrapper {
    height: 200px;
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  .not-index.pattern2 .section.kv > .wrapper .inner .title-wrapper .section-title {
    margin-top: 58px;
  }
  .not-index.pattern2 .section.archive > .wrapper {
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
    padding-top: 36px;
    padding-bottom: 59px;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .link-common.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .archives-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .archives-list.pc {
    display: none;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .item:first-of-type {
    padding-right: 8px;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .item:nth-of-type(n + 2) {
    padding-right: 8px;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .item:nth-of-type(n + 2)::before {
    padding-right: 8px;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .archives-list .link-common {
    font-size: 1.5rem;
    line-height: 1.86;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .row {
    position: relative;
  }
  .not-index.pattern2 .section.archive > .wrapper > .inner .common-list {
    padding-bottom: 18px;
  }
  .not-index.pattern2 .section.archive-events > .wrapper {
    padding-bottom: 60px;
  }

  .about.pattern1 h3 {
    padding-bottom: 34px;
  }
  .about .section.message > .wrapper {
    padding-top: 36px;
  }
  .about .section.message > .wrapper > .inner {
    padding-bottom: 60px;
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  .about .section.message > .wrapper > .inner .text-block {
    display: block;
    padding-top: 28px;
    padding-bottom: 13px;
  }
  .about .section.message > .wrapper > .inner .text-block .left {
    width: 100%;
  }
  .about .section.message > .wrapper > .inner .text-block .left .en {
    font-size: 1.5rem;
    line-height: 1.73;
    padding-bottom: 24px;
  }
  .about .section.message > .wrapper > .inner .text-block .right {
    width: 100%;
    padding-top: 9px;
  }
  .about .section.message > .wrapper > .inner .profile-block {
    width: 100%;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex {
    width: 85.71%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 40px;
    padding-bottom: 37px;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .left {
    width: 100%;
    padding-top: 17px;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .left .en-block {
    padding-bottom: 13px;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .left .en-block .position {
    font-size: 1.5rem;
    line-height: 1.73;
    padding-bottom: 3px;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .left .en-block .name {
    font-size: 2.6rem;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .left .ja-block .position {
    line-height: 1.85;
    padding-bottom: 5px;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .left .ja-block .name {
    font-size: 2.1rem;
  }
  .about .section.message > .wrapper > .inner .profile-block .flex .right {
    width: 66.66%;
    margin: 0 auto;
  }
  .about .section.message > .wrapper > .inner .common-button {
    margin: 45px auto 0;
  }

  .club h2.add .en {
    font-size: 2.4rem;
  }
  .club h2.add .en.tape {
    padding: 0px 6px;
  }
  .club h2.add .ja {
    padding-top: 10px;
    font-size: 1.7rem;
    line-height: 1.6;
    padding-bottom: 28px;
  }
  .club .section.kv > .wrapper .inner {
    background-image: url(/suic-assets/img/club/club_kv_sp.jpg);
  }
  .club .section.report .wrapper {
    padding-top: 44px;
    padding-bottom: 59px;
  }
  .club .section.report .wrapper .inner {
    width: 87.5%;
    margin: 0 auto;
    max-width: initial;
    max-width: auto;
  }
  .club .section.report .wrapper .inner .text-block .en {
    font-size: 1.5rem;
    line-height: 1.73;
  }
  .club .section.report .wrapper .inner .text-block .ja {
    padding-bottom: 43px;
  }
  .club .section.report .wrapper .inner .img-block.img-block1 {
    padding-bottom: 0;
  }
  .club .section.report .wrapper .inner .img-block .caption {
    padding-top: 10px;
  }
  .club .section.report .wrapper .inner .img-block.flex {
    display: block;
  }
  .club .section.report .wrapper .inner .img-block.flex .img-wrapper {
    width: 100%;
    padding-bottom: 30px;
  }
  .club .section.archive .wrapper {
    padding-top: 40px !important;
  }

  .news .section.kv > .wrapper .inner {
    background-image: url(/suic-assets/img/news/news_kv_sp.jpg);
  }
  .events .section.kv > .wrapper .inner {
    background-image: url(/suic-assets/img/events/events_kv_sp.jpg);
  }
}
/*# sourceMappingURL=common.css.map */