@charset "UTF-8";
/*//////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* color */
/* font */
/* trans */
/* margin */
/* box */
/*//////////////////////////////////////////////////////////////////////

	common
	common　header、nav、footer、main、parts

//////////////////////////////////////////////////////////////////////*/
html {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  scroll-padding-top: 140px;
}

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

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden;
}

main,
section,
article {
  overflow: hidden;
}

sup {
  font-size: 0.7rem;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

b {
  font-weight: bolder;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
a:visited {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #b23547;
  cursor: pointer;
}

a[href^="tel:"] {
  pointer-events: none;
  color: #000;
  cursor: default;
}

.overflow_hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

.spBr {
  display: none;
}

.spNoBr {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.column_l {
  float: left;
}

.column_r {
  float: right;
}

.caution_list {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
}
.caution_list li {
  position: relative;
  padding-left: 1rem;
}
.caution_list li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.decimal_list {
  list-style-type: decimal;
  padding-left: 1rem;
}

.dot_list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 5px;
}
.dot_list li::before {
  position: absolute;
  content: "";
  top: 0.8rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #333;
  text-indent: -1.25rem;
}

.decimal {
  text-indent: -3rem;
  padding-left: 3rem;
}

.caution {
  text-indent: -1rem;
  padding-left: 1rem;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/* img_box */
.img_box {
  overflow: hidden;
}
.img_box img {
  width: 100%;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: #fff;
  z-index: 10000001;
}
header * {
  line-height: 1;
}
header h1 {
  padding: 40px 0 0 20px;
}
header h1 * {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: "M PLUS 1p", sans-serif;
}
header h1 a {
  display: flex;
}
header h1 a img {
  margin-right: 30px;
}
header h1 a span {
  color: #b23547;
}

/* 三 */
#spMenuBut {
  display: none;
}

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
nav {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  z-index: 10000002;
}
nav #globalNav {
  display: inline-block;
  background: #fc9b01;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 40px;
  border: 1px solid #fc9b01;
}
nav #globalNav ul {
  display: flex;
  justify-content: center;
}
nav #globalNav ul li a {
  display: block;
  padding: 15px;
  color: #fff;
}
nav #globalNav ul li a:hover {
  color: #fc9b01;
  background: #fff;
  border-radius: 40px;
}
nav #snsNav {
  position: absolute;
  top: -65px;
  right: 20px;
}
nav #snsNav ul {
  display: flex;
  gap: 12px;
}
nav .but_blank {
  position: absolute;
  top: 0;
  right: 0;
}
nav .but_blank a {
  display: block;
  width: 220px;
  color: #fff;
  background: #0078b2;
  padding: 15px;
  border-radius: 40px 0 0 40px;
}
nav .but_blank a span {
  padding: 0 20px;
  background: url(../img/icon_blank.svg) no-repeat center right;
  white-space: nowrap;
}
nav .but_blank a:hover {
  background: #fc9b01;
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
footer {
  margin: 40px auto;
  font-size: 12px;
  color: #666;
}

/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
/*--------------------------------------------------------------
	parts
--------------------------------------------------------------*/
.title_box {
  position: relative;
  line-height: 1;
  padding: 120px 0 60px;
}
.title_box h2 {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 15px;
}
.title_box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b23547;
}

.contents_box {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.contents_box a section {
  padding: 20px 5px 30px 5px;
}
.contents_box a section .row_2 {
  height: 60px;
  display: grid;
  place-items: center;
}
.contents_box a section h4 {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
}

.contents_box:hover a figure img {
  transform: scale(1.15);
}
.contents_box:hover a section .row_2 p {
  color: #000;
}
.contents_box:hover a section h4 {
  color: #b23547 !important;
}

.column_3 {
  display: flex;
  gap: 30px 2.5%;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.column_3 li {
  width: 31.6666666667%;
}

/*--------------------------------------------------------------
	keyvisual
--------------------------------------------------------------*/
#keyvisual {
  padding: 0 20px;
  margin-top: 140px;
}
#keyvisual ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#keyvisual ul li {
  width: calc((100% - 20px) / 3);
  border-radius: 20px;
}
#keyvisual ul li:nth-child(4) {
  width: 100%;
  padding: 20px;
}
#keyvisual ul li:nth-child(4) img {
  max-width: 650px;
}

/*--------------------------------------------------------------
	ものつくり大学について
--------------------------------------------------------------*/
#about {
  position: relative;
}
#about .movie_box {
  position: relative;
  width: 800px;
  margin: 0 auto 20px;
  z-index: 100;
}
#about .movie_box .youtube {
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
}
#about .movie_box .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
#about .movie_box::before {
  position: absolute;
  content: "";
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #429594;
  border-radius: 20px;
  mix-blend-mode: multiply;
  z-index: -1;
}
#about #aboutSlider {
  padding: 120px 0;
  margin-top: -60px;
  background: #00bfbd;
}
#about #aboutSlider .slider_box {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0 50px;
}
#about #aboutSlider .slider_box .swiper .swiper-wrapper .swiper-slide {
  width: 31.6666666667%;
}
#about #aboutSlider .slider_box .swiper-button-prev {
  left: 0;
  color: #fff;
}
#about #aboutSlider .slider_box .swiper-button-next {
  right: 0;
  color: #fff;
}
#about .contents_box h4 {
  color: #255eb5;
}
#about .title_box {
  background: url(../img/ill/about_01.svg) no-repeat top 100px left calc(50% - 400px), url(../img/ill/about_01.svg) no-repeat bottom 80px left calc(50% + 370px);
  background-size: 40px, 30px;
}
#about #aboutIll img {
  position: absolute;
}
#about #aboutIll img:nth-child(1) {
  top: 540px;
  left: calc(50% + 590px);
}
#about #aboutIll img:nth-child(2) {
  top: 270px;
  left: calc(50% - 660px);
}
#about #aboutIll img:nth-child(3) {
  top: 540px;
  left: calc(50% + 480px);
}
#about #aboutIll img:nth-child(4) {
  top: 570px;
  left: calc(50% - 710px);
}
#about #aboutIll img:nth-child(5) {
  top: 440px;
  left: calc(50% - 560px);
}
#about #aboutIll img:nth-child(6) {
  top: 240px;
  left: calc(50% + 570px);
}

/*--------------------------------------------------------------
	学科紹介
--------------------------------------------------------------*/
#department {
  position: relative;
  background: #ebf2f4;
  padding-bottom: 120px;
}
#department #departmentList {
  display: flex;
  gap: 2.5%;
}
#department #departmentList li a section {
  color: #fff;
}
#department #departmentList li a section h4 {
  margin-bottom: 10px;
}
#department #departmentList li a section p span {
  color: #fffc00;
  font-weight: 100;
}
#department #departmentList li:nth-child(1) {
  background: #3d87c4;
}
#department #departmentList li:nth-child(2) {
  background: #2f792e;
}
#department #departmentList li:hover h4 {
  color: #fff !important;
}
#department .title_box {
  background: url(../img/ill/department_01.svg) no-repeat top 30px left calc(50% - 370px), url(../img/ill/department_02.svg) no-repeat bottom 40px left calc(50% + 270px);
}

/*--------------------------------------------------------------
	入試情報
--------------------------------------------------------------*/
#entrance #entranceList li a section {
  color: #fff;
  background: #80c72c;
}
#entrance #entranceList li:hover * {
  color: #fff !important;
}
#entrance #news {
  position: relative;
  border-radius: 10px;
  background: #80c72c;
  padding: 20px;
}
#entrance #news h4 {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
  cursor: pointer;
}
#entrance #news #iconOpen {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}
#entrance #news #newsList {
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  display: none;
}
#entrance #news #newsList li a {
  display: flex;
  gap: 15px;
  padding: 20px 0;
}
#entrance #news #newsList li a time {
  width: 110px;
}
#entrance #news #newsList li a .category {
  width: 180px;
}
#entrance #news #newsList li a .category span {
  display: block;
  border-radius: 5px;
  color: #fff;
}
#entrance #news #newsList li a h5 {
  width: calc(100% - 320px);
  text-align: left;
}
#entrance #news #newsList li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
#entrance #news.active #iconOpen {
  transform: scale(1, -1);
}
#entrance #news.active #newsList {
  opacity: 1;
  visibility: visible;
}
#entrance .title_box {
  background: url(../img/ill/entrance_01.svg) no-repeat top 40px left calc(50% - 300px), url(../img/ill/entrance_02.svg) no-repeat bottom 20px left calc(50% + 280px);
}

#banner {
  position: relative;
  padding: 40px 0 120px;
}
#banner div {
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-bottom: 20px;
}
#banner div a:hover {
  transform: scale(1.15);
}

#banner::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  background: #ebf2f4;
  z-index: -1;
}

/*--------------------------------------------------------------
	もの大キャンパスライフ
--------------------------------------------------------------*/
#campuslife {
  background: url(../img/campuslife_bg.jpg) no-repeat top center;
  background-size: cover;
  padding-bottom: 320px;
}
#campuslife .title_box h2 {
  color: #fee337;
}
/*--------------------------------------------------------------
	もの大VOICE
--------------------------------------------------------------*/
#voice .title_box p {
  margin-bottom: 5px;
}
#voice .title_box h2 {
  color: #b23547;
}
#voice .title_box h2 span {
  font-size: 4.5rem;
  font-weight: 900;
  color: #2598ad;
  line-height: 3.75rem;
}
#voice #voiceSlider .swiper .swiper-wrapper .swiper-slide {
  width: 260px;
}
#voice #voiceSlider .swiper .swiper-wrapper .swiper-slide a:hover figure img {
  transform: scale(1.15);
}
#voice #voiceBut {
  display: flex;
  gap: 2.5%;
  margin-top: 60px;
}
#voice #voiceBut li {
  position: relative;
  width: 48.75%;
  border: 1px solid #2598ad;
  border-radius: 10px;
  padding: 20px 10px;
}
#voice #voiceBut li a {
  display: block;
}
#voice #voiceBut li a h4 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
  background: #2598ad;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  left: 20px;
  padding: 5px 20px;
}
#voice #voiceBut li a h3 {
  font-size: 1.875rem;
  font-weight: 900;
  font-family: "M PLUS 1p", sans-serif;
  color: #2598ad;
}
#voice #voiceBut li a:hover h3 {
  color: #b23547;
}
#voice #voiceBut li a:hover p {
  color: #000;
}

/*--------------------------------------------------------------
	国際交流
--------------------------------------------------------------*/
#international {
  position: relative;
  background: #ebf2f4;
  margin-top: 120px;
  padding-bottom: 120px;
}
#international #internationalList li a section {
  color: #fff;
  background: #ff890a;
}
#international #internationalList li:hover * {
  color: #fff !important;
}
#international .title_box {
  background: url(../img/ill/international_02.svg) no-repeat top 50px left calc(50% - 300px), url(../img/ill/international_03.svg) no-repeat bottom 30px left calc(50% + 360px);
}
#international #internationalIll {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .container {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  /*//////////////////////////////////////////////////////////////////////

  	common　

  //////////////////////////////////////////////////////////////////////*/
  html {
    font-size: 14px;
    line-height: 1.6;
    scroll-padding-top: 60px;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
  .spBr {
    display: block;
  }
  .spNoBr {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .column_l {
    float: none;
  }
  .column_r {
    float: none;
  }
  .container {
    width: 90%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /*--------------------------------------------------------------
  	header
  --------------------------------------------------------------*/
  header {
    height: 60px; /* z-index:10000001; */
  }
  header h1 {
    padding: 20px 0 0 10px;
  }
  header h1 * {
    font-size: 1.5rem;
  }
  header h1 a img {
    margin-right: 10px;
    width: 120px;
  }
  /* 三 */
  #spMenuBut {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10000004;
  }
  #spMenuBut span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 25px;
    height: 2px;
    background: #999;
    transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
  }
  #spMenuBut span:nth-child(1) {
    top: 24px;
  }
  #spMenuBut span:nth-child(2) {
    top: 30px;
  }
  #spMenuBut span:nth-child(3) {
    top: 36px;
  }
  .openNav #spMenuBut span:nth-child(1) {
    top: 30px;
    transform: rotate(-45deg);
  }
  .openNav #spMenuBut span:nth-child(2),
  .openNav #spMenuBut span:nth-child(3) {
    top: 30px;
    transform: rotate(45deg);
  }
  /*--------------------------------------------------------------
  	nav
  --------------------------------------------------------------*/
  nav {
    position: fixed;
    top: 60px;
    height: 100vh;
    background: #fc9b01;
    visibility: hidden;
    opacity: 0;
    padding-bottom: 40px;
  }
  nav #globalNav {
    display: block;
    padding: 20px 0;
    border-radius: 0;
    border: none;
  }
  nav #globalNav ul {
    display: block;
  }
  nav #globalNav ul li a:hover {
    border-radius: 0;
  }
  nav #snsNav {
    position: static;
    margin: 40px auto;
  }
  nav #snsNav ul {
    justify-content: center;
    gap: 15px;
  }
  nav .but_blank {
    position: static;
  }
  nav .but_blank a {
    width: 80%;
    border-radius: 40px;
    margin: 40px auto;
  }
  nav .but_blank a:hover {
    color: #0078b2;
    background: #fff;
  }
  nav .but_blank a:hover span {
    background-image: url(../img/icon_blank_b.svg);
  }
  .openNav nav {
    visibility: visible;
    opacity: 1;
    overflow: auto;
  }
  /*--------------------------------------------------------------
  	footer
  --------------------------------------------------------------*/
  footer {
    margin: 20px auto;
    font-size: 10px;
  }
  /*--------------------------------------------------------------
  	main
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  	parts
  --------------------------------------------------------------*/
  .title_box {
    padding: 60px 0 30px;
  }
  .title_box h2 {
    font-size: 1.75rem;
  }
  .title_box h3 {
    font-size: 1rem;
  }
  .contents_box {
    border-radius: 5px;
  }
  .contents_box a section {
    padding: 15px 5px;
  }
  .contents_box a section .row_2 {
    height: auto;
    margin-bottom: 5px;
  }
  .contents_box a section h4 {
    font-size: 1.25rem;
  }
  .column_3 {
    display: block;
  }
  .column_3 li {
    width: 100%;
  }
  .column_3 li:not(:last-child) {
    margin-bottom: 20px;
  }
  /*--------------------------------------------------------------
  	keyvisual
  --------------------------------------------------------------*/
  #keyvisual {
    padding: 0 10px;
    margin-top: 60px;
  }
  #keyvisual ul {
    gap: 5px;
  }
  #keyvisual ul li {
    width: calc((100% - 10px) / 3);
    border-radius: 10px;
  }
  #keyvisual ul li:nth-child(4) {
    width: 100%;
    padding: 10px;
  }
  #keyvisual ul li:nth-child(4) img {
    max-width: 320px;
  }
  /*--------------------------------------------------------------
  	ものつくり大学について
  --------------------------------------------------------------*/
  #about {
    position: relative;
  }
  #about .movie_box {
    position: relative;
    width: 80%;
    margin: 0 auto 20px;
    z-index: 100;
  }
  #about .movie_box .youtube {
    border-radius: 10px;
    overflow: hidden;
  }
  #about .movie_box .youtube iframe {
    border-radius: 10px;
    overflow: hidden;
  }
  #about .movie_box::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 10px;
    border-radius: 10px;
  }
  #about #aboutSlider {
    padding: 60px 0;
    margin-top: -40px;
  }
  #about #aboutSlider .slider_box { /*padding:0 50px; */ }
  #about #aboutSlider .slider_box .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
  }
  #about #aboutSlider .slider_box .swiper-button-prev {
    left: 10px;
  }
  #about #aboutSlider .slider_box .swiper-button-next {
    right: 10px;
  }
  #about #aboutSlider .slider_box .swiper-button-prev::after,
  #about #aboutSlider .slider_box .swiper-button-next::after {
    font-size: 1.5rem;
  }
  #about .title_box {
    background-size: 20px, 15px;
    background-position: top 30px left calc(50% - 150px), bottom 40px left calc(50% + 150px);
  }
  #about {
    /*
    #aboutIll {
    	img { position:absolute; }
    	img:nth-child(1) { top:540px; left:calc(50% + 590px); }
    	img:nth-child(2) { top:270px; left:calc(50% - 660px); }
    	img:nth-child(3) { top:540px; left:calc(50% + 480px); }
    	img:nth-child(4) { top:570px; left:calc(50% - 710px); }
    	img:nth-child(5) { top:440px; left:calc(50% - 560px); }
    	img:nth-child(6) { top:240px; left:calc(50% + 570px); }
    }
    */
  }
  /*--------------------------------------------------------------
  	学科紹介
  --------------------------------------------------------------*/
  #department {
    padding-bottom: 60px;
  }
  #department #departmentList {
    display: block;
  }
  #department #departmentList li a section h4 {
    margin: 10px auto;
  }
  #department #departmentList li a section p {
    padding: 0 10px;
    text-align: left;
  }
  #department #departmentList li:nth-child(1) {
    margin-bottom: 20px;
  }
  #department .title_box {
    background-size: 60px, 50px;
    background-position: top 20px left calc(50% - 110px), bottom 20px left calc(50% + 100px);
  }
  /*--------------------------------------------------------------
  	入試情報
  --------------------------------------------------------------*/
  #entrance #news {
    border-radius: 5px;
    padding: 10px;
  }
  #entrance #news h4 {
    font-size: 1.25rem;
  }
  #entrance #news #iconOpen {
    top: 12px;
    right: 20px;
    width: 24px;
  }
  #entrance #news #newsList {
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
  }
  #entrance #news #newsList li a {
    padding: 20px 5px;
    flex-wrap: wrap;
  }
  #entrance #news #newsList li a time {
    width: 110px;
    text-align: left;
  }
  #entrance #news #newsList li a .category {
    width: 180px;
  }
  #entrance #news #newsList li a .category span {
    font-size: 0.85rem;
    padding: 2px;
  }
  #entrance #news #newsList li a h5 {
    width: 100%;
  }
  #entrance .title_box {
    background-size: 80px, 50px;
    background-position: top 10px left calc(50% - 110px), bottom 10px left calc(50% + 110px);
  }
  #banner {
    padding: 20px 0 60px;
  }
  #banner div {
    display: block;
    width: 80%;
  }
  #banner div a img {
    width: 100%;
  }
  #banner div a:not(:last-child) img {
    margin-bottom: 20px;
  }
  /*--------------------------------------------------------------
  	もの大キャンパスライフ
  --------------------------------------------------------------*/
  #campuslife {
    padding-bottom: 160px;
  }
  /*--------------------------------------------------------------
  	もの大VOICE
  --------------------------------------------------------------*/
  #voice .title_box p img {
    width: 300px;
  }
  #voice .title_box h2 span {
    font-size: 2.5rem;
    line-height: 1.5rem;
  }
  #voice #voiceSlider .swiper .swiper-wrapper .swiper-slide {
    width: 50%;
  }
  #voice #voiceBut {
    display: block;
  }
  #voice #voiceBut li {
    width: 100%;
    border-radius: 5px;
    padding: 20px 5px 10px 5px;
  }
  #voice #voiceBut li a {
    display: block;
  }
  #voice #voiceBut li a h4 {
    font-size: 1rem;
    top: -15px;
  }
  #voice #voiceBut li a h3 {
    font-size: 1.25rem;
  }
  #voice #voiceBut li:not(:last-child) {
    margin-bottom: 40px;
  }
  /*--------------------------------------------------------------
  	国際交流
  --------------------------------------------------------------*/
  #international {
    padding-bottom: 30px;
  }
  #international .title_box {
    background-size: 30px, 60px;
    background-position: top 10px left calc(50% - 110px), bottom 10px left calc(50% + 140px);
  }
  #international #internationalIll {
    top: -70px;
  }
  #international #internationalIll img {
    width: 60px;
  }
}/*# sourceMappingURL=style.css.map */