@charset "UTF-8";
/************************************************************************************
RESET
*************************************************************************************/
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
*:where(:not(iframe, canvas, img, svg, video, input, path):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* html{
  scroll-behavior: smooth;
  scroll-padding: 72px;
}
@media screen and (min-width: 768px){
  html{
    scroll-padding: 180px;
  }
} */
img {
  width: 100%;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

a {
  cursor: pointer;
  text-decoration: underline;
  color: var(--color1);
}
a:hover{
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic ProN", Meiryo, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 18px;
}


h2, p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h2{
  font-weight: 800;

}
p {
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 18px;
}


/*************************************************************************************
COMMON
*************************************************************************************/
:root{
  --color1: #4472C4;
  --color2: #D81E00;
  --color3: #A8B3B8;
  --color4: #EFF6F9;
  --color5: #E67300;
  --color6: #FDEFE6;
  --color7: #999;
}

#container a[href^="http"][target="_blank"]::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-image: url(../images/icon-link.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px auto;
}

/*#container a[href*=".pdf"]::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 24px;
  margin-left: 6px;
  background-image: url(../images/icon-pdf.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px auto;
}*/

.bold{
  font-weight: bold;
}
.red{
  color: red;
}
.blue{
  color: var(--color1);
}
.orange{
  color: var(--color5);
}
.small{
  font-size: 80%;
}
.large{
  font-size: 120%;
}
.lh_n{/*行間を狭くしたいとき*/
  line-height: 1.4;
  display: inline-block;
}
.center{
  text-align: center;
}
.pc_br {
  display: none;
}
.sp_br {
  display: block;
}
.mt-20 {
  margin-top: 20px!important;
}
.mt-50 {
  margin-top: 50px!important;
}


@media screen and (min-width: 768px) {
  .pc_br {
    display: block;
  }
  .sp_br {
    display: none;
  }
}
/************************************************************************************
header
*************************************************************************************/
header h1{
  font-size: 5vw;
  font-weight: bold;
  padding: 0 0 0 16px;
}
.header-box{
  z-index: 200;
}
.header-box .right a{
  text-decoration: none;
  font-weight: 600;
  display: none;
}
header h1::before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 31px;
  background: url(../images/pc_hochouki.png) no-repeat;
  background-size: contain;
  margin-right: 3px;
  vertical-align: middle;
}
header h2{
  display: none;
  padding: 0 16px 0 0;
  font-weight: bold;
}
header h1 a,
header h2 a{
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 460px) {
  header h1{
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header-box{
    width: min(100%, 960px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
  }
  header h2{
    display: block;
  }
  header h1 a:hover,
  header h2 a:hover{
    opacity: 0.7;
  }
.header-box .right a{
    display: block;
}
}



/******************************
nav
******************************/
#navArea{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0;
  background: #fff;
  box-shadow: 0 5px 5px #CFCECE;
}

/*nav固定*/
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
}

.btn {
  position: relative;
  z-index: 999;
  width: 72px;
  height: 72px;
  padding: 12px;
  background: var(--color1);
}

.btn .label{
  color: #fff;
  display: block;
  position: absolute;
  width: 100%;
  bottom: 4px;
  left: 0;
  margin: 0 auto;
  text-align: center;
}
.btn:has(.open) .label{
  display: none;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.2s;
  margin: 0 0 20px;
}

/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.5s;
}

.btn-line::before {
  /* 上の線の位置 */
  transform: translateY(-10px);
}

.btn-line::after {
  /* 下の線の位置 */
  transform: translateY(10px);
}

/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent; /* 真ん中の線を透明に */
  margin: 0;
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  transition: 0.2s;
}

.btn-line.open::before {
  transform: rotate(45deg);
}

.btn-line.open::after {
  transform: rotate(-45deg);
}

.menu {
  visibility: visible;
  display: none;
  transition: none;
  opacity: 1;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 5px rgba(0,0,0,.15);
  margin: 0;
  padding: 0;
  z-index: 100;
  padding: 0;
  list-style: none;
}
.menu li {
  margin: 0;
  padding: 0;
}
.menu-list {
  width: 100%;
  font-size: 20px;
  text-align: center;
}
/*グレーアウト*/
.menu li.listgrey{
  color: var(--color7);
  padding: 16px;
}
.menu-list a {
  display: block;
  padding: 16px;
  width: 100%;
  text-align: center;
  color: var(--color1);
  text-decoration: underline;
}

.border{
  border-top: solid 1px #D4E2E8;
  border-bottom: solid 1px #D4E2E8;
}
.border + .border{
  border-top: none;
}
.menu-list  a.detail{
  padding: 8px;
  font-size: 18px;
  color:#000;
  text-decoration: none;
}
.menu-list  a.detail:last-child{
  padding-bottom: 24px;
}

.menu.pc{
  display: none;
}

@media screen and (min-width: 768px) {
  #navArea{
    display: block;
    height: auto;
  }
  nav {
    width: 100%;
    height: 72px;
    margin: 0;
    padding: 0;
    z-index: 100;
    background: var(--color1);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .15);
  }
  .btn {
    display: none;
  }
  .menu.sp{
    display: none;
  }
  .menu.pc{
    display: flex;
  }
  .menu {
    width: min(100%, 960px);
    height: inherit;
    color: #fff;
    background: var(--color1);
    padding: 8px 0;
    margin: 0 auto;
    position: relative;
    top: 0;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .menu .menu-list {
    width: calc(100% / 5);
    height: 100%;
    font-size: 15px;
    padding: 0 12px;
    border-left: solid 1px #fff;
  }
  .border{
    border: none;
  }
  .menu .menu-list:last-child{
    border-right: solid 1px #fff;
  }
  .menu .menu-list a {
    transition: all 0.3s ease;
    padding: 0;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .menu .menu-list a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/*sliderArea*/
#sliderArea{
  position: relative;
  padding: 72px 0 16px;
  overflow: hidden;
}
.dotArea{
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}
.row_btns{
  width: 64px;
  padding-top: 4px;
}
.row_btns button + button{
  margin-left: 4px;
}
.row_btns button img{
  width: 24px;
  border: solid 2px #fff;
  border-radius: 50px;
}
.row_btns button img:hover{
  opacity: 0.7;
  border: solid 2px red;
  border-radius: 50px;
}
.row_btns button.active img{
  border: solid 2px red;
  border-radius: 50px;
}


/* banner */
.banner {
  background: var(--color4);
  padding: 16px;
}

.banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px; }

.banner li {
  width: calc((100% - 20px) / 3); 
}

.banner li img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  #sliderArea {
    padding: 140px 0 16px;
  }
  
  .banner ul {
    flex-wrap: nowrap;
    gap: 16px;
  }

  .banner li {
    width: 180px;
  }
}

/************************************************************************************
main
*************************************************************************************/
main{
  background: #FEFBF3;
}
#container{
  width: 92%;
  margin: 0 auto;
  padding: 40px 0;
}
section{
  margin: 0 auto 64px;
  line-height: 1.5;
}
@media screen and (min-width: 768px){
  #container{
    width: 960px;
  }
  section{
    margin: 0 auto 160px;
  }
}

h3{
  color: var(--color1);
  font-weight: bold;
  font-size: 26px;
  margin: 32px auto 48px;
  position: relative;
  text-align: center;
}
h3::after{
  content: "";
  width: 64px;
  height: 1px;
  display: inline-block;
  background: var(--color2);
  position: absolute;
  bottom: -16px;
  left: calc(50% - 32px);
}



/************************************************************************************
news
*************************************************************************************/
#news dl{
  border-top: dotted 1px var(--color3);
  padding: 8px 4px;
  margin: 0;
  font-size: 17px;
}
#news dl:last-child{
  border-bottom: dotted 1px var(--color3);
}
#news dt{
  margin-bottom: 4px;
  font-size: 15px;
}
#news dd{
  margin: 0;
  padding-left: 0.5em;
}

/* 最初は5件目以降を隠すための準備（JS実行前のチラつき防止） */
#news dl:nth-of-type(n+6) {
    display: none;
}

/* JSで生成する包み込み要素のスタイル */
.news-append-inner {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease-in-out; /* ここでアニメーションの速度を調整 */
}

/* 表示状態の時 */
.news-append-inner.is-open {
    height: auto;
}

/* ボタンのデザイン（サイトに合わせて調整してください） */
.news-btn-area {
    text-align: center;
    margin-top: 20px;
}

#news-more-btn {
    padding: 10px 40px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

#news-more-btn:hover {
    background-color: #555;
}

/* 閉じる時のボタン表記用（任意） */
#news-more-btn.is-active {
    background-color: #999;
}


/************************************************************************************
program
*************************************************************************************/
#program table{
  background: #fff;
  margin-bottom: 1rem;
  width: 100%;
  font-size: 18px;
}
#program table tr{
  border-top: solid 1px var(--color3);
}
#program table tr:last-child{
  border-bottom: solid 1px var(--color3);
}
#program table th,
#program table td{
  padding: 12px;
  vertical-align: middle;
}
#program table th{
  text-align: center;
  background: #FFE2CD;
  font-weight: bold;
  width: 30%;
  border-bottom: solid 1px #fff;
}
#program table tr:last-child th{
  border-bottom: solid 1px var(--color3);
}
#program h5{
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}
.box{
  border: solid 1px var(--color1);
  background: #fff;
  margin: 0 auto 16px;
}
.box h4{
  color: #fff;
  background: var(--color1);
  font-size: 26px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  padding: 4px 0 6px;
}
.box h4 span{
  font-size: 70%;
  padding: 0 4px 0 0;
}
.box_inner{
  padding: 16px 16px 20px;
}

.box_inner_list{
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 1rem;
}

#program .grid{
  display: grid;
  grid-template-columns: 1fr 100px;
}
#program .grid .left{
  text-indent: 0;
}
/*******
.button - topで使用
.button2 - courseで使用
.button_apply - topの申し込みで使用
********/
.button a,
.button2 a,
.button_apply a,
.grey{
  margin: 0 auto 16px;
  padding: 12px;
  border-radius: 5px;
  position: relative;
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  text-decoration: none;
  line-height: 1.6;
}
.button a,
.button2 a,
.button_apply a{
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  border: solid 1px var(--color1);
  color: var(--color1);
  background: #fff;
}
.grey{
  border: solid 1px var(--color7);
  color: var(--color7);
  background: #fff;
}
.button2 a{
  width: 62%;
}
.button_apply a{
  background: #fe8c45;
  color: #fff;
  border: none;
}
#container .button_apply a[href^="http"][target="_blank"]::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-top: -5px;
  background-image: url(../images/icon-link_white.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 24px auto;
}
.button a::after,
.grey::after,
#container .pdficon_non a[href*=".pdf"]::after{
  content: "▲";
  position: absolute;
  transform: rotate(90deg);
  top: 50%;
  right: 24px;
  margin-top: -13px;
  font-size: 20px;
  background: none;
}
.button2 a::before{
  content: "▲";
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 18px;
  margin-right: 8px;
}
.shimekiri{
  color: #E67300;
}
hr{
  border-top: dotted 1px var(--color1);
  margin: 2rem auto;
}

.right{
  text-align: right;
}

@media screen and (min-width: 470px){
  #container .button_apply a[href^="http"][target="_blank"]::after{
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    right: 14px;
    margin-top: -13px;
    background-image: url(../images/icon-link_white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px auto;
  }
}

@media screen and (min-width: 768px){
  #program table th,
  #program table td{
    padding: 16px;
  }
  .box_inner{
    padding: 24px 40px 40px;
  }
  #program h5{
    margin-bottom: 1.8rem;
  }
  #program .grid{
    grid-template-columns: 1fr 180px;
  }
  .button a,
  .button2 a,
  .grey,
  .button_apply a{
    font-size: 20px;
    transition: all  0.2s ease;
  }
  .button a,
  .grey,
  .button_apply a{
    width: 530px;
  }
  .button2 a{
    width: 300px;
  }
  .button a:hover,
  .button2 a:hover,
  .button_apply a:hover{
    opacity: 0.7;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  .shimekiri{
    text-align: center;
  }
}



/************************************************************************************
outline
*************************************************************************************/
#outline table{
  background: #fff;
  margin-bottom: 1rem;
  width: 100%;
}
#outline table tr{
  border-top: solid 1px var(--color3);
}
#outline table tr:last-child{
  border-bottom: solid 1px var(--color3);
}
#outline table th,
#outline table td{
  padding: 12px;
  vertical-align: middle;
}
#outline table th{
  text-align: right;
  width: 26%;
}
.time{
  text-align: center;
}

.taisyou{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.taisyou dt{
  border: solid 1px var(--color5);
  background: var(--color6);
  color: var(--color5);
  padding: 4px 6px;
  text-align: center;
  font-weight: normal;
  font-size: 15px;
}
.taisyou dd{
  margin: 0 0 0 12px;
}
.text{
  width: 100%;
  margin: 0 auto 15px;
}

.syusai{
  text-align: center;
}
.syusai h5{
  font-weight: bold;
  font-size: 20px;
  margin: 3em 0 1em;
}
.syusai p{
  font-size: 18px;
}

@media screen and (min-width: 768px){
  #outline table th,
  #outline table td{
    padding: 16px;
  }
  #outline table th{
    width: 30%;
  }
  .time,
  .taisyou{
    margin-bottom: 1.3rem;
  }
  .text{
    width: 620px;
  }
}



/************************************************************************************
authorizedpeople
*************************************************************************************/
.atp_box{
  border: solid 1px var(--color3);
  background: #fff;
  padding: 20px;
  margin: 32px auto 0;
  font-size: 18px;
}



/************************************************************************************
access
*************************************************************************************/
#container #access h6,
#access p{
  text-align: center;
  font-size: 18px;
  color:#000;
}
#container #access h6{
  font-weight: bold;
  margin-bottom: 8px;
}
#container #access h6::before,
#container #access h6::after{
  all:unset;
}
#access iframe{
  width: 100%;
  height: 320px;
  margin: 0 auto 16px;
  display: block;
}
@media screen and (min-width: 768px) {
  #access iframe{
    width: 640px;
    height: 500px;
  }
}



/************************************************************************************
link
*************************************************************************************/
#link ul{
  list-style: none;
}
#link li{
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
}


/************************************************************************************
archive
*************************************************************************************/
#archive ul{
  list-style: none;
}
#archive li{
  text-align: center;
  line-height: 1.8;
  font-size: 18px;
}


/************************************************************************************
committee
*************************************************************************************/

#committee h3 span{
  display: block;
  font-size: 60%;
}
#committee .list{
  list-style: none;
  text-align: center;
  font-size: 20px;
}
#committee .list2{
  list-style: none;
}
#committee .list li{
  margin-bottom: 24px;
}
#committee .list2 li{
  margin-bottom: 12px;
}
#committee .list2 li:last-of-type{
  margin-bottom: 0;
}
#committee .list li span{
  display: block;
  font-size: 70%;
}

#committee{
  margin: 96px auto;
}
#committee .box_inner2{
  padding: 16px;
}
#committee table{
  background: #fff;
  margin-bottom: 1rem;
  width: 100%;
  margin: 0 auto 16px;
}
#committee table tr{
  border-top: solid 1px var(--color3);
}
#committee table tr:last-child{
  border-bottom: solid 1px var(--color3);
}
#committee table th,
#committee table td{
  padding: 12px;
  vertical-align: middle;
}
#committee table th{
  text-align: center;
  width: 28%;
  background: #FFE2CD;
}
#committee table th span{
  display: block;
  font-size: 70%;
}
/*#committee h4{
  color: var(--color1);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  background: var(--color4);
  padding: 12px 0;
}*/
#committee dl{
  margin-bottom: 24px;
}
#committee dl:last-of-type{
  margin-bottom: 16px;
}
#committee dt{
  font-size: 20px;
  font-weight: bold;
}
#committee dd{
  font-size: 90%;
  padding: 0 0 0 1em;
}
#committee .hide{
  display: none;
}
#committee h5{
  background: var(--color1);
  color: #fff;
  font-size: 20px;
  padding: 8px;
  text-align: center;
  font-weight: bold;
}
#committee table.ptn2{
  margin: 0 auto;
}
#committee table.ptn2 tr{
  border-top: dotted 1px var(--color1);
}
#committee table.ptn2 tr:first-of-type{
  border: none;
}
#committee table.ptn2 tr:last-of-type{
  border-bottom: none;
}
#committee table.ptn2 th,
#committee table.ptn2 td{
  padding: 16px;
}
#committee table.ptn2 th{
  vertical-align: top;
  background: var(--color4);
  width: 28%;
  word-break: keep-all;
}
#committee .grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 90%;
  margin: 24px auto;
  text-align: center;
}

.pl-1{
  padding-left: 1rem;
}

@media screen and (min-width: 768px) {
  #committee{
/*    margin-top: 160px;*/
    margin-top: 180px;
    width: min(100%, 800px);
  }
  #committee{
    margin-bottom: 96px;
  }
  #committee table,
  #committee .box{
    width: min(100%, 800px);
  }
  #committee .box_inner2{
    padding: 24px 40px;
  }
  #committee table th,
  #committee table.ptn2 th{
    width: 33%;
  }
  #committee .grid{
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
} 

/*.button2は#programにまとめて記述*/

/************************************************************************************
course
*************************************************************************************/
#course{
  margin: 96px auto;
}
#course p{
  font-size: 20px;
  margin-bottom: 8px;
}
#course p.time{
  margin-bottom: 32px;
}
#course h5{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 16px auto 32px;
}
#course h5 span{
  font-size: 80%;
}
#container h6{
  font-size: 20px;
  font-weight: bold;
  color: var(--color1);
  display: flex;
  align-items: center;
  justify-content: center;
}
#container h6::before,
#container h6::after{
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--color1);
}
#container h6::before{
  margin-right: 1em;
}
#container h6::after{
  margin-left: 1em;
}
.dl{
  margin: 0 auto 32px;
}
.dl:last-child{
  margin-bottom: 0;
}
.dl dt{
  margin-bottom: 8px;
}
.dl dd{
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
}
.dl dd ul{
    list-style: none;
}
.dl dd li{
    margin: 0 auto 30px;
    line-height: 1.5;
}
.dl dd li:only-child{
  margin-bottom: 0;
}
#course_txt p{
  margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
  #course,
  #course_txt{
    width: min(100%, 800px);
  }
  #course{
    margin-top: 160px;
  }
  #course h5{
    font-size: 24px;
  }
  #course p{
    font-size: 24px;
  }
  #course h5{
    font-size: 24px;
    margin: 8px auto 32px;
  }
  .dl dd{
    font-size: 22px;
  }

}
/*.button2は#programにまとめて記述*/



/************************************************************************************
authorized
*************************************************************************************/
#authorized{
  margin: 96px auto;
}
#authorized .box{
  margin-top: 40px;
}
/*h6,.dlは#courseにまとめて記述*/

.sub_category{
  margin-bottom: 8px;
  color: var(--color1);
  text-align: center;
  margin-bottom: 8px;
  font-size: 80%;
}
#authorized h5{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 16px auto 8px;
}
#authorized p + h5{
  margin: 0 auto 16px;
}
#authorized h5 span{
  font-size: 90%;
}
.bluearea{
  background: var(--color4);
  padding: 8px;
}
#authorized h5.bluearea{
  font-size: 20px;
}
.orangearea{
  background: var(--color6);
  padding: 16px 24px;
  color: var(--color5);
  margin: 0 auto 32px;
  display: block;
}
.inner_detail{
  margin: 0 auto 32px;
}
.inner_detail:last-child{
  margin: 0 auto;
}
.d_none{
  display: none;
}
#authorized .txt{
  margin: 32px auto 0;
  width: min(96%, 720px);
}

@media screen and (min-width: 768px) {
  #authorized{
    width: min(100%, 800px);
  }
  #authorized{
    margin-top: 160px;
  }
  #authorized h5{
    font-size: 24px;
    margin: 8px auto;
  }
  .inner_detail{
    margin: 0 auto 40px;
  }
  .orangearea{
    width: 650px;
  }
}


/************************************************************************************
footer
*************************************************************************************/
footer{
  text-align: center;
  font-size: 16px;
}
footer p{
  text-align: center;
  font-size: 16px;
}
#contact{
  background: #fff;
  border-top: solid 1px var(--color3);
  padding: 24px;
}
#contact svg{
  vertical-align: middle;
}
#copyright{
  background: var(--color1);
  color: #fff;
  padding: 24px;
}