@charset "utf-8";
/* CSS Document */
a { text-decoration: none; }
body {
    margin: 0;
	padding: 0;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

header { max-width: 1000px; width: 100%; margin: 0 auto; padding: 0; }

.head {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  position: relative;
}
.navToggle, nav {
    display: none;
}
.group_logo { max-width: 260px; width:100%; }
.group_logo_img { display: none; }
.logo {
  max-width: 159px;
  width: 100%;
  text-align: left;
  margin: 20px 0 0;
  padding: 0 10px;
}
.logo img { width: 159px; height: 58px; }
.pc-logo { }
.mobile-logo { display: none; }
.link_iwatani {
  position: absolute;
  top: 15px;
  right: 0;
}
.lang {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 12px;
  color: #666;
  text-align: right;
}
.lang a {
  text-decoration: none;
  color: #666;
}
.navigation {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}
.nav_area {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: right;
}
/*.nav_btn {
  width: 100%;
  margin: 0;
  padding: 0;
}
.nav_btn_link {
  height: 35px;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 0 27px;
  font-size: .9rem;
  font-weight: bold;
  color: #6e6e6e;
  font-family: 'A-OTF 新ゴ Pro R';
}
.nav_btn_link a {
  text-decoration: none;
  color: #6e6e6e;
}
.nav_btn_link:hover {
  border-bottom: 3px solid #3e7fbb;
  box-sizing: border-box;
}*/
.nav_btn {
  width: 750px;
  height: 35px;
  margin:0 0 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.nav_btn li {
  position: relative;
  list-style: none;
  display: inline-block;
}
.nav_btn li a {
  display: block;
  width: 150px;
  height: 35px;
  text-align: center;
  color: #666;
  font-size: .9rem;
  line-height: 2.2;
  text-decoration: none;
  /*font-family: 'A-OTF 新ゴ Pro R';*/
  box-sizing: border-box;
}
.nav_btn li a::after {
  content:"";
   display:inline-block;
   width:1px;
   height:18px;
   /*background-color:#ddd;*/
   position:absolute;
   top:5px;
   right: 0;
}
.nav_btn > li:hover > a {/*layer-1*/
  border-bottom: 3px solid #3e7fbb;
}
.nav_btn > li li:hover > a {/*layer-2*/
  color: #004f98;
  background: #afc6e2;
}
.nav_btn li ul {
  top: 35px;
  left: -40px;
  position: absolute;
  z-index: 999;
  opacity: .95;
}
.nav_btn li ul li {
  overflow: hidden;
  height: 0;
}
.nav_btn li ul li a {
  border-bottom: 1px solid #fff;
  background: #518cc2;
  color: #fff;
  padding: 0 10px;
  text-align: left;
  width: 180px;
}
.nav_btn li:hover > ul > li {
  overflow: visible;
  height: 35px;
}


.pankuzu {
  width: 100%;
  margin: 0 auto;
  padding: 7px 0 5px;
  font-size: .8rem;
  line-height: 2em;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.pankuzu_box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
}
.pankuzu img { margin-right: 8px; }
.pankuzu a {
  text-decoration: none;
  color: #000;
  font-size: .8rem;
  line-height: 2em;
  padding: 0px;
}
.obi {
  max-width: 1000px;
  widht: 100%;
  margin: 25px auto 30px;
  text-align: left;
}
.obi img {
  max-width: 580px;
  width: 100%;
  height: auto;
}

/*.contents {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  font-size: .9rem;
}*/

.contact_btn {
  position: fixed;
  top: 20%;
  right: 0;
  width: 45px;
  height: 140px;
  background: #ff0033;
  border-top-left-radius:5px;
  border-bottom-left-radius:5px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .1em;
  opacity: 0.8;
  /* フレックスコンテナであることを指定 */
  display: flex;
  /* テキストを縦書きに指定 */
  writing-mode: vertical-rl;
  /* 左右中央揃え */
  align-items: center;
  padding: 16px 0;
  z-index: 2000;
}
.contact_icon { margin: 10px 0 0 4px; }

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  &::after,
  &::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    vertical-align: middle;
  }
}
// 上矢印
.arrow_down::before,
.arrow_up::before {
  top: auto;
  left: auto;
  bottom: 8px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}


/* ========================================================
ページトップに戻るボタン
=========================================================*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #fff;
	border: 2px solid #222;
	border-radius: 5px;
    text-align: center;
    color: #222;
    font-size: 12px;
    text-decoration: none;
    padding: 7px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 7px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}


footer {
  width: 100%;
  background: #c6e8f7;
  padding: 35px 0 25px;
}
.footer {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  padding: 1% 2%;
  display: flex;
  justify-content: flex-start;
}
.footer_box {
  display: block;
  width: 23%;
  font-size: .8rem;
  line-height: 2em;
  padding: 0;
  margin: 0;
}
.footer_box:last-child { width: 30%; }
.footer_box p {
  font-size: .9rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #282828;
}
.footer_box span {
  text-decoration: none;
  padding-bottom: 0;
}
.footer_box a {
  text-decoration: none;
  color: #282828;
}
.footer_work {
  display: inline-block;
  width: 65%;
  padding-right: 0px;
  vertical-align: top;
  margin-left: 12px;
  line-height: 2.4em;
}
.footer_access {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.address {
  margin: 0 0 40px;
  font-size: .9rem;
  color: #282828;
}
.address img {
  margin: 10px 0;
}
.footer_bottom {
  padding: 8px 0;
  background: #ececec;
}
.footer_bottom_link {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  font-size: .75rem;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer_bottom a {
  display: inline-block;
  margin-left: 50px;
  text-decoration: none;
  color: #000;
}
.copyright {
  font-size: .7rem;
  text-align: center;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.copyright div { margin: 0 15px 0 0; vertical-align: middle; line-height: .6em; }
.copyright div:nth-child(3){ margin-right: 5px;}
.copyright a { text-decoration: none; }

.center { text-align: center; }
.right { text-align: right; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt25 { margin-top: 25px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt45 { margin-top: 45px; }
.mt50 { margin-top: 50px; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb50 { margin-bottom: 50px; }
.mb80 { margin-bottom: 80px; }

.sp-visible {
  display: block; }

.pc-visible {
  display: none; }


@media screen and (max-width : 998px ){
  header {
    max-width: 998px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
  }
  .head {
  max-width: 998px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
  .logo {
  width: 159px;
  text-align: left;
}
  .mobile-logo { display: none; }
.lang { margin-right: 2%; }
.navigation {
  width: 100%;
  background: #fff;
  padding: 0;
  margin: 0;
}
.nav_area {
  max-width: 998px;
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.nav_btn {
  width: 100%;
}
/*.nav_btn_link {
  display: inline-block;
  text-align: center;
  padding: 0 27px;
}*/

nav { display: none; }

.pankuzu {
  width: 96%;
  margin: 0 auto;
  padding: 7px 2% 7px;
  font-size: .8rem;
}
.contents {
  max-width: 998px;
  width: 100%;
  margin: 0 auto;
  font-size: .9rem;
}

footer {
  max-width: 998px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
  padding: 10px 0 0;
  color: #000;
}
.footer {
  max-width: 998px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: #000;
}
.footer_box {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 4% 0 0;
  margin: 0 auto;
  color: #000;
  border-bottom: 1px solid #bbb;
}
.footer_box:last-child { width: 100%; padding-top: 0; }
.footer_box p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 3px;
  padding-left: 4%;
  margin: 0;
  color: #000;
  border-bottom: 1px solid #bbb;
}
.footer_box a {
  text-decoration: none;
  color: #000;
  margin: 0;
  padding: 0;
}

.footer_work {
  width: 92%;
  border-bottom: 1px solid #bbb;
  margin: 0;
  padding-left: 8%;
  font-size: 1.1rem;
}
.footer_work:last-child { border-bottom: none; }
.footer_work a { text-decoration: none; }
.footer_access {
  max-width: 998px;
  width: 92%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  background: #3e7fbb;
  margin: 0;
  padding: 4%;
  color: #fff;
}
.footer_access p {
  color: #fff;
  border: none;
  font-size: 1rem;
  width: 100%;
  margin-right: 30px;
}
.address {
  margin: 0;
  font-size: .9rem;
  color: #fff;
}
.address img {
  margin: 10px 0;
}
.footer_bottom {
  margin: 0;
  padding: 8px 0;
  background: #ececec;
}
.footer_bottom_link {
  max-width: 998px;
  width: 100%;
  margin: 0 auto;
  font-size: .9rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.footer_bottom a {
  display: inline-block;
  margin-left: 4%;
  text-decoration: none;
  color: #000;
}
.copyright {
  font-size: .7rem;
  text-align: center;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.copyright div { margin: 10px 0; vertical-align: middle; line-height: 1em; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
}



@media screen and (max-width: 768px){
body {
    max-width: 768px;
	width: 100%;
    margin: 0 auto;
	padding: 0;
}
  header {
    max-width: 768px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
  }
  .head {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
  .group_logo { max-width: 768px; width:100%; }
  .group_logo_img { width: 50%; }
  .logo {
  max-width: 159px;
  width: 100%;
  text-align: center;
  margin: 25px auto;
}
  .pc-logo { display: none; }
  .mobile-logo {
		display: block;
		max-width: 159px;
		width: 100%;
		height: auto;
		text-align: center;
		margin: 0 auto;
	}
  .link_iwatani {
  position: absolute;
  top: 8px;
  right: 5px;
}
  .lang { display:none; }
  .navigation {
        display: none;
}
nav { display: block; }

/* ハンバーガーメニュー */
nav.globalMenuSp {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: #f0f0f0;
    color: #000;
    text-align: left;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 82%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

nav.globalMenuSp ul {
    background: #f0f0f0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding-left: 5%;
    width: 95%;
    border-bottom: 1px solid #aaa;
    font-weight: bold;
}
nav.globalMenuSp ul li ul {
    margin-top: 0px;
}
nav.globalMenuSp ul li ul li {
    list-style: none;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    border-bottom: none;
    font-weight:normal;
}
nav.globalMenuSp ul li ul li:last-child {
    padding-bottom: 3px;
}

    nav.globalMenuSp .nav-tit {
    font-size: 14px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
	line-height: 1em;
    margin: 10px 0 5px;
}
nav.globalMenuSp ul li a {
    display: block;
    padding: 3px 0px;
    color: #000;
    text-decoration: none;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 15px;
    top: 25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
    background: #fff;
    text-align: center;
}

.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 10px;
}

.navToggle span:nth-child(1) {
    top: 13px;
}

.navToggle span:nth-child(2) {
    top: 23px;
}

.navToggle span:nth-child(3) {
    top: 33px;
}

.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 23px;
    left: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 23px;
	left: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



//アコーディオンメニューの中身
.nav-content{
  position: absolute;
  width: 100%;
  top: -735px;
  z-index: 2;
  ul li{
    font-family: 'Codystar', cursive;
    font-size:22rem;
    a{
      text-align: center;
      display: block;
      padding: 20px 0px;
      color: #000;
    }
  }
  transition: 1.5s top;
}

//アコーディオンメニューの背景
#js-cover{
  background:#f0f0f0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  opacity: 1;
  z-index: 1;
}

//アコーディオンメニューの動き
.is-open{
  .nav-content{
    top: 65px;
  }
}

//ハンバーガーアイコン
.menu-button{　
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 14px;
  top: 15px;
  i{
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    transition: background 0.5s;
    position: relative;
    left: 5px;
    top: 14px;
    &:before,
    &:after{
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 3px;
      background: #fff;
      position: absolute;
      transform: rotate(0deg);
      transition: all 0.3s !important;
    }
    &:before{
      transform:translateY(8px);
    }
    &:after{
      transform:translateY(-8px);
    }
  }
}

//ハンバーガーアイコンのアニメーション
.is-open {
  .menu-button {
    i{
      background: #000;
      &:after{
        transform:translateY(0px) rotate(-45deg);
      }
      &:before{
        transform:translateY(0px) rotate(45deg);
      }
    }
  }
}





.nav-content {
  position: absolute;
  width: 85%;
  top: -835px;
  z-index: 2;
  background: #fff;
  -webkit-transition: 1.5s top;
          transition: 1.5s top;
}
.nav-content ul {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
}
.nav-content ul:last-child {
    border: none;
    padding-bottom: 0;
}
.nav-content ul li {
    list-style: none;
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
}
.nav-content li.nav-tit {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000;
    margin-top: 20px;
}
.nav-content ul li a {
    display: block;
    padding: 5px 0px;
    color: #000;
    text-decoration: none;
}
.nav-content ul li input {
	border: 2px solid #999;
    width: 70%;
	height: 30px;
}
#sbtn {
	width:44px;
	height:37px;
	border-radius:2px;
	background:#14345b;
	color:#fff;
	font-size:12px;
	border:none;
}

.is-open .nav-content {
    top: 0px;
}

#js-cover {
    background: #000;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    opacity: 0;
    z-index: 1;
}

.menu-button {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  right: 15px;
  top: 35px;
}
.menu-button i {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    -webkit-transition: background 0.5s;
            transition: background 0.5s;
    position: relative;
    left: 5px;
    top: 14px;
}
.menu-button i:before,
.menu-button i:after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.3s !important;
            transition: all 0.3s !important;
}
.menu-button i:before {
    -webkit-transform: translateY(8px);
        -ms-transform: translateY(8px);
            transform: translateY(8px);
}
.menu-button i:after {
      -webkit-transform: translateY(-8px);
          -ms-transform: translateY(-8px);
              transform: translateY(-8px);
}

.is-open .menu-button i {
  background: #000;
}
.is-open .menu-button i:after {
    -webkit-transform: translateY(0px) rotate(-45deg);
        -ms-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotate(-45deg);
}
.is-open .menu-button i:before {
    -webkit-transform: translateY(0px) rotate(45deg);
        -ms-transform: translateY(0px) rotate(45deg);
            transform: translateY(0px) rotate(45deg);
}


.accordion-container .accordion-title {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  font-size: 1.1rem;
  font-weight: normal;
  color: #000;
  cursor: pointer;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open { 
  background-color: #f0f0f0;
}

.accordion-container .accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #000;
  transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #000;
  transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
  transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
  opacity: 0;
}

.accordion-content div {
  padding: 5px 0;
  font-size: 1.1rem;
  font-weight: normal;
}

/* CSS for CodePen */
.accordion-container {
  width: 100%;
  margin: 5px auto;
}

.pankuzu {
  width: 98%;
  margin: 0 auto;
  padding: 7px 0 7px 2%;
  font-size: .8rem;
}

.contents {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-size: .9rem;
}


footer {
  max-width: 768px;
  width: 100%;
  background: #fff;
  margin: 50px auto 0;
  padding: 0;
  color: #000;
  border-top: 1px solid #bbb;
}
.footer {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: #000;
}
.footer_box {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 1% 0 0;
  margin: 0 auto;
  color: #000;
  border-bottom: 1px solid #bbb;
}
.footer_box:last-child { width: 100%; padding-top: 0; }
.footer_box p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 3px;
  padding-left: 4%;
  margin: 0;
  color: #000;
  border-bottom: 1px solid #bbb;
}
.footer_box a {
  text-decoration: none;
  color: #000;
  margin: 0;
  padding: 0;
}

.footer_work {
  width: 92%;
  border-bottom: 1px solid #bbb;
  margin: 0;
  padding: 1% 0 0 8%;
  font-size: 1.1rem;
}
.footer_work:last-child { border-bottom: none; }
.footer_work a { text-decoration: none; }
.footer_access {
  max-width: 768px;
  width: 94%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  background: #3e7fbb;
  margin: 0;
  padding: 3%;
  color: #fff;
}
.footer_access p {
  color: #fff;
  border: none;
  font-size: 1rem;
  width: 100%;
}
.address {
  margin: 0;
  font-size: .9rem;
  color: #fff;
}
.address img {
  margin: 10px 0;
}
.footer_bottom {
  padding: 8px 0;
  background: #ececec;
}
.footer_bottom_link {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  font-size: .9rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.footer_bottom a {
  display: inline-block;
  margin-left: 4%;
  text-decoration: none;
  color: #000;
}
.copyright {
  font-size: .7rem;
  text-align: center;
  margin: 5px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.copyright div { margin: 10px 0; vertical-align: middle; line-height: 1em; }
}

@media screen and (max-width: 460px){
	.mobile-logo {
		display: block;
		max-width: 317px;
		width: 75%;
		height: auto;
		text-align: center;
		margin: 0 auto;
	}
}
@media screen and (max-width: 375px){
	.mobile-logo {
		display: block;
		max-width: 317px;
		width: 60%;
		height: auto;
		text-align: center;
		margin: 0 auto;
	}
}