@charset "UTF-8";
/* ローディング画面 */
.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid green;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 128, 0, 0.2);
  border-top: 1px solid rgba(0, 128, 0, 0.2);
  content: '';
  height: 70px;
  width: 70px;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*トップへ戻るボタン*/
.topBtn {
  position: fixed;
  /*固定*/
  bottom: 5%;
  /*場所を右下に移動*/
  right: 20px;
  /*場所を右下に移動*/
  display: block;
  /*aタグをblock要素に変更*/
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 2.2;
  border-radius: 30px;
  padding-top: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 21;
}

.topBtn:before {
  content: '\25B2';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 2rem;
}

html {
  font-size: 62.5%;
}

body {
  font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, 'Noto Sans Japanese', serif;
  font-size: 1.5rem;
  font-weight: 400;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  color: #000;
  background: repeating-linear-gradient(-30deg, rgba(0, 201, 205, 0.3) 0 1px, rgba(226, 255, 246, 0.3) 1px 5px);
}

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

a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:active, a:link, a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.green {
  color: #00858d;
}

.d-green {
  color: #00544f;
}

.bold {
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 1025px) {
  body {
    min-width: 1200px;
  }
  body .pc {
    display: block;
  }
  body .sp {
    display: none;
  }
  body header {
    width: 100%;
    height: 123px;
    background-color: #75cab9;
  }
  body header .header {
    position: relative;
    width: 1200px;
    margin: 0 auto;
  }
  body header .header .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body header .header .flex h1 {
    width: 220px;
    margin: 35px 0 0 50px;
  }
  body header .header .flex h1 div:nth-child(2) {
    margin: 15px auto 0;
    width: 82px;
  }
  body header .header .flex #menu {
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 70px 0 0 0;
  }
  body header .header .flex #menu #navi {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
  }
  body header .header .flex #menu #navi li {
    margin: 0 15px;
    line-height: 100%;
  }
  body header .header .flex #menu #navi li a {
    color: #00544f;
    font-weight: 700;
    font-size: 1.6rem;
    text-decoration: none;
  }
  body header .header .circle1 {
    position: absolute;
    top: 30px;
    left: -35px;
    width: 390px;
    height: 195px;
    border-radius: 0 0 195px 195px;
    background: #fff;
    z-index: -21;
  }
  body header .header .circle2 {
    position: absolute;
    top: 30px;
    left: -15px;
    width: 350px;
    height: 175px;
    border-radius: 0 0 175px 175px;
    background: #75cab9;
    z-index: -11;
  }
  body header .line {
    position: absolute;
    top: 123px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #fff;
    z-index: -21;
  }
  body main {
    width: 1200px;
    margin: 100px auto 0;
    position: relative;
  }
  body main section#torimedi {
    width: 1050px;
    margin: 0 auto;
    text-align: center;
  }
  body main section#torimedi .main_title {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  body main section#torimedi h2 {
    width: 622px;
    margin: 40px auto 0;
  }
  body main section#torimedi h3 {
    margin-top: 75px;
    font-size: 3.5rem;
  }
  body main section#torimedi p {
    margin-top: 20px;
    font-size: 2.7rem;
    line-height: 1.75;
  }
  body main section#news {
    width: 1050px;
    margin: 0 auto;
  }
  body main section#news h3 {
    width: 100%;
    padding-left: 40px;
    border-bottom: 1px solid #00858d;
    font-size: 3.7rem;
    letter-spacing: 0.4;
  }
  body main section#news h3 span {
    font-size: 2.2rem;
    margin-left: 1rem;
  }
  body main section#news ul {
    width: 1000px;
    margin: 0 auto;
  }
  body main section#news ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
    padding: 1rem;
    background-color: #fff;
    border-radius: 20px;
  }
  body main section#news ul li .day {
    white-space: nowrap;
    font-size: 1.7rem;
  }
  body main section#news ul li .label {
    white-space: nowrap;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #cd435a;
    border-radius: 1.5rem;
    font-size: 1.9rem;
    color: #cd435a;
  }
  body main section#news ul li .text {
    font-size: 1.9rem;
  }
  body main section#about {
    width: 1050px;
    margin: 110px auto 0;
    border: 20px solid rgba(117, 202, 185, 0.7);
    background-color: rgba(230, 247, 241, 0.7);
    border-radius: 45px;
    background-image: url(./assets/images/main_back_tori.svg), url(./assets/images/main_back_medicineset.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 2.5% left, top 15% right 2.5%;
  }
  body main section#about h3 {
    width: 550px;
    font-size: 6rem;
    margin: 90px auto 0;
  }
  body main section#about h3 span {
    width: 350px;
    display: inline-block;
  }
  body main section#about .photo {
    width: 464px;
    height: 331px;
    margin: 30px auto 0;
  }
  body main section#about .photo img {
    border-radius: 20px;
  }
  body main section#about p {
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 2.7rem;
    line-height: 2;
    text-align: center;
  }
  body main section#service {
    width: 1050px;
    margin: 100px auto 0;
    padding: 40px 65px;
    background-color: #fff;
    border-radius: 45px;
    background-image: url(./assets/images/main_back_medicine.svg), url(./assets/images/main_back_truck.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 15% left 7.5%, top 15% right 7.5%;
  }
  body main section#service h3 {
    font-size: 3.3rem;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  body main section#service p {
    font-size: 1.9rem;
    text-align: center;
  }
  body main section#service .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
  }
  body main section#service .content .item {
    width: 23%;
    border: 7px solid #c8eae4;
    padding: 5px 0 10px;
    text-align: center;
    border-radius: 20px;
    position: relative;
  }
  body main section#service .content .item .item_no {
    font-size: 3.1rem;
  }
  body main section#service .content .item .item_text {
    margin-top: 0.75rem;
    font-size: 2.4rem;
    line-height: 1;
  }
  body main section#service .content .item .arrow {
    position: absolute;
    width: 40px;
    top: 50%;
    right: -32%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 5;
  }
  body main section#check {
    width: 1050px;
    margin: 100px auto 0;
    padding-bottom: 20px;
    border: 7px solid #7accbb;
    border-radius: 20px;
    text-align: center;
  }
  body main section#check h3 {
    background-color: #7accbb;
    margin: 0;
    padding: 20px 0;
    font-size: 3.3rem;
    color: #fff;
  }
  body main section#check p {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  body main section#check .check_tel {
    font-size: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body main section#check .check_time {
    margin-top: 10px;
    font-size: 2rem;
  }
  body main section#stores {
    width: 1050px;
    margin: 90px auto 0;
    padding: 40px 0 20px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    background-image: url(./assets/images/main_back_cloud.svg), url(./assets/images/main_back_building.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 10% left 7.5%, top 15% right 7.5%;
  }
  body main section#stores h3 {
    margin: 0;
    padding: 0;
    font-size: 3.3rem;
  }
  body main section#stores p {
    font-size: 2rem;
    z-index: 11;
    margin-right: 30px;
    margin-left: 30px;
    padding-bottom: 25px;
    border-bottom: 4px solid #7accbb;
  }
  body main section#stores .stores_img {
    width: 990px;
    margin: -130px auto 0;
  }
  body main section#stores .stores_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60%;
    margin: 0 auto;
  }
  body main section#stores .stores_flex .stores_logo {
    width: 47%;
    height: auto;
  }
  body main section#stores .stores_flex .stores_logo img {
    display: inline-block;
    max-width: 100%;
  }
  body main section#stores .stores_flex .stores_box {
    width: 50%;
    margin-left: 3%;
    text-align: justify;
  }
  body main section#stores .stores_flex .stores_box ul {
    font-size: 2.4rem;
  }
  body main section#stores .stores_flex .stores_box ul li {
    list-style: none;
    margin-top: 10px;
  }
  body main section#stores .stores_flex .stores_box ul li span {
    margin-right: 1rem;
    color: #75cab9;
  }
  body main section#area {
    width: 1050px;
    margin: 160px auto 0;
  }
  body main section#area .area_copy {
    width: 254px;
    height: 110px;
    margin: 0 auto;
    position: relative;
    background-color: #ffe100;
    padding: 2rem;
    line-height: 1.75;
    text-align: center;
    border-radius: 50%;
    font-size: 2.1rem;
  }
  body main section#area .area_copy::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 20px;
    bottom: 0;
    border-style: solid;
    border-color: transparent transparent transparent #ffe100;
    border-width: 20px 0 20px 25px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  body main section#area iframe {
    margin-top: -30px;
    width: 1050px;
    height: 620px;
  }
  body main section#arealist {
    width: 1050px;
    margin: 160px auto 0;
    text-align: center;
    background-color: #fff;
  }
  body main section#arealist h3 {
    font-size: 2.4rem;
    background-color: #bce5de;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
  }
  body main section#arealist h3 .area-list-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
  }
  body main section#arealist h3 .area-list-icon .icon {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 15px;
    width: 100%;
    height: 100%;
  }
  body main section#arealist h3 .area-list-icon .icon::after {
    content: '';
    width: 15px;
    height: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  body main section#arealist h3 .area-list-icon .icon::before {
    content: '';
    width: 15px;
    height: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  body main section#arealist h3 .area-list-icon .icon.open::before {
    content: '';
    opacity: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
  body main section#arealist .area-list-bg {
    padding-bottom: 35px;
  }
  body main section#arealist .area-list-bg h4 {
    width: 980px;
    margin: 0 auto;
    font-size: 2.1rem;
    padding: 15px 0;
    letter-spacing: 0;
    border: 1px solid #000;
    border-bottom: none;
    background-color: #ddf2ed;
  }
  body main section#arealist .area-list-bg dl {
    width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
  }
  body main section#arealist .area-list-bg dl dd {
    width: calc(100% / 4);
    margin: 0;
    padding: 10px 0;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  body footer {
    margin-top: 75px;
    width: 100%;
    text-align: center;
    position: relative;
  }
  body footer .footer_wrap {
    width: 100%;
    background-color: #75cab9;
    padding-bottom: 40px;
  }
  body footer .footer_wrap .footer_logo {
    width: 290px;
    height: auto;
    margin: 0 auto;
    padding-top: 40px;
  }
  body footer .footer_wrap .contact {
    margin-top: 40px;
    font-size: 2.1rem;
  }
  body footer .footer_wrap .phone {
    display: inline-block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    font-size: 1.7rem;
  }
  body footer .footer_wrap .email {
    margin-top: 10px;
    font-size: 1.7rem;
  }
  body footer .footer_wrap .annotation {
    margin-top: 10px;
    font-size: 1.5rem;
  }
  body footer .axis_copy {
    background-color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  body footer .axis_copy .axis_logo {
    width: 10%;
    margin: 0 auto 10px;
    display: block;
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body footer .axis_copy .axis_logo :hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

/* TL */
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4em;
    /* 表示された時用のCSS */
  }
  body .pc {
    display: none !important;
  }
  body .sp,
  body .tl {
    display: block !important;
  }
  body header {
    width: 100%;
    height: 95px;
    background-color: #75cab9;
    border-bottom: 10px solid #fff;
  }
  body header .header {
    width: 100%;
  }
  body header .header .flex {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body header .header .flex h1 {
    width: 20%;
    margin: 0 5% 0 auto;
    padding-top: 20px;
  }
  body header #navi {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    overflow-y: auto;
    padding-top: 40px;
    width: 100%;
    height: 100vh;
    z-index: 200;
    top: 0;
    right: -100%;
    background-color: #fff;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-left: 0;
  }
  body header #navi li {
    padding: 15px 10px;
    font-size: 1.6rem;
    list-style-type: none;
    border-bottom: 1px dashed #00858d;
  }
  body header .nav_btn {
    width: 44px;
    height: 44px;
    z-index: 300;
    top: 7px;
    left: 7px;
    cursor: pointer;
    position: absolute;
  }
  body .hamburger_line {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 34px;
    height: 2px;
    left: 5px;
    background-color: #000;
    position: absolute;
  }
  body .hamburger_line1 {
    top: 10px;
  }
  body .hamburger_line2 {
    top: 21px;
  }
  body .hamburger_line3 {
    top: 32px;
  }
  body .nav_bg {
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #000;
    cursor: pointer;
    position: fixed;
  }
  body.nav_open header #navi {
    right: 0;
  }
  body.nav_open header .nav_bg {
    opacity: 0.8;
    visibility: visible;
  }
  body.nav_open header .hamburger_line1 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 20px;
  }
  body.nav_open header .hamburger_line2 {
    width: 0;
    left: 50%;
  }
  body.nav_open header .hamburger_line3 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 20px;
  }
  body main {
    width: 90%;
    margin: 25px auto 0;
    position: relative;
  }
  body main section#torimedi {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  body main section#torimedi .main_title {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  body main section#torimedi h2 {
    width: 82%;
    margin: 20px auto 0;
  }
  body main section#torimedi h3 {
    margin-top: 40px;
    font-size: 3.5rem;
  }
  body main section#torimedi p {
    margin-top: 15px;
    font-size: 2.7rem;
    line-height: 1.75;
  }
  body main section#news {
    width: 100%;
    margin: 0 auto;
  }
  body main section#news h3 {
    width: 100%;
    padding-left: 0.5rem;
    border-bottom: 1px solid #00858d;
    font-size: 3.7rem;
    letter-spacing: 0.4;
  }
  body main section#news h3 span {
    font-size: 2.2rem;
    margin-left: 1rem;
  }
  body main section#news ul {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
  }
  body main section#news ul li {
    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;
    margin-top: 10px;
    padding: 1rem;
    width: 98%;
    background-color: #fff;
    border-radius: 20px;
  }
  body main section#news ul li .day {
    white-space: nowrap;
    font-size: 1.7rem;
  }
  body main section#news ul li .label {
    white-space: nowrap;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #cd435a;
    border-radius: 1.5rem;
    font-size: 1.9rem;
    color: #cd435a;
  }
  body main section#news ul li .text {
    font-size: 1.9rem;
  }
  body main section#about {
    width: 100%;
    margin: 60px auto 0;
    border: 12px solid rgba(117, 202, 185, 0.7);
    background-color: rgba(230, 247, 241, 0.7);
    border-radius: 45px;
    background-image: url(./assets/images/main_back_tori.svg), url(./assets/images/main_back_medicineset.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 2.5% left, top 7.5% right 2.5%;
    background-size: 30% 30%, 30% 30%;
  }
  body main section#about h3 {
    width: 100%;
    font-size: 3.5rem;
    margin: 50px auto 0;
    text-align: center;
  }
  body main section#about h3 span {
    width: 60%;
    display: inline-block;
  }
  body main section#about .photo {
    width: 80%;
    height: auto;
    margin: 30px auto 0;
  }
  body main section#about .photo img {
    border-radius: 20px;
  }
  body main section#about p {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 2.7rem;
    line-height: 1.75;
    text-align: center;
  }
  body main section#service {
    width: 100%;
    margin: 60px auto 0;
    padding: 40px 7.5% 10px;
    background-color: #fff;
    border-radius: 45px;
    background-image: url(./assets/images/main_back_medicine.svg), url(./assets/images/main_back_truck.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 2.5% left 5%, top 2.5% right 5%;
    background-size: 15% 15%, 15% 15%;
  }
  body main section#service h3 {
    font-size: 3.3rem;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  body main section#service p {
    font-size: 1.9rem;
    text-align: center;
  }
  body main section#service .content {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
  }
  body main section#service .content .item {
    width: 70%;
    border: 7px solid #c8eae4;
    margin: 30px auto;
    padding: 5px 0 10px;
    text-align: center;
    border-radius: 20px;
    position: relative;
  }
  body main section#service .content .item .item_no {
    font-size: 3.1rem;
  }
  body main section#service .content .item .item_text {
    margin-top: 0.75rem;
    font-size: 2.4rem;
    line-height: 1;
  }
  body main section#service .content .item .arrow {
    position: absolute;
    width: 46px;
    bottom: -50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: 5;
  }
  body main section#check {
    width: 100%;
    margin: 50px auto 0;
    padding-bottom: 20px;
    border: 7px solid #7accbb;
    border-radius: 20px;
    text-align: center;
  }
  body main section#check h3 {
    background-color: #7accbb;
    margin: 0;
    padding: 10px 0;
    font-size: 3.3rem;
    color: #fff;
  }
  body main section#check p {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  body main section#check .check_tel {
    font-size: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body main section#check .check_tel :active,
  body main section#check .check_tel :link,
  body main section#check .check_tel :visited,
  body main section#check .check_tel :hover {
    color: #00858d;
  }
  body main section#check .check_time {
    margin-top: 10px;
    font-size: 2rem;
  }
  body main section#stores {
    width: 100%;
    margin: 50px auto 0;
    padding: 40px 0 20px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    background-image: url(./assets/images/main_back_cloud.svg), url(./assets/images/main_back_building.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 5% left 5%, top 15% right 0;
    background-size: 25% 25%, 30% 30%;
  }
  body main section#stores h3 {
    margin: 0;
    padding: 0;
    font-size: 3.3rem;
  }
  body main section#stores p {
    font-size: 2rem;
    z-index: 11;
    margin-right: 4%;
    margin-left: 4%;
    padding-bottom: 20px;
    border-bottom: 4px solid #7accbb;
  }
  body main section#stores .stores_img {
    width: 100%;
    margin: -130px auto 0;
  }
  body main section#stores .stores_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    margin: 0 auto;
  }
  body main section#stores .stores_flex .stores_logo {
    width: 100%;
    height: auto;
  }
  body main section#stores .stores_flex .stores_logo img {
    display: inline-block;
    max-width: 100%;
  }
  body main section#stores .stores_flex .stores_box {
    width: 100%;
    margin-left: 0;
    text-align: justify;
  }
  body main section#stores .stores_flex .stores_box ul {
    font-size: 2.4rem;
    text-align: center;
    padding-left: 0;
  }
  body main section#stores .stores_flex .stores_box ul li {
    list-style: none;
    margin-top: 10px;
  }
  body main section#stores .stores_flex .stores_box ul li span {
    margin-right: 1rem;
    color: #75cab9;
  }
  body main section#area {
    width: 100%;
    margin: 60px auto 0;
  }
  body main section#area .area_copy {
    width: 40%;
    height: 110px;
    margin: 0 auto;
    position: relative;
    background-color: #ffe100;
    padding: 2rem;
    line-height: 1.75;
    text-align: center;
    border-radius: 50%;
    font-size: 2.1rem;
  }
  body main section#area .area_copy::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 40%;
    bottom: -30%;
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
    border-style: solid;
    border-color: transparent transparent transparent #ffe100;
    border-width: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    z-index: -11;
  }
  body main section#area iframe {
    margin-top: 15px;
    width: 100%;
    height: 544px;
  }
  body main section#arealist {
    width: 100%;
    margin: 60px auto 0;
    text-align: center;
    background-color: #fff;
  }
  body main section#arealist h3 {
    font-size: 2.4rem;
    background-color: #bce5de;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
  }
  body main section#arealist h3 .area-list-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
  }
  body main section#arealist h3 .area-list-icon .icon {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 15px;
    width: 100%;
    height: 100%;
  }
  body main section#arealist h3 .area-list-icon .icon::after {
    content: '';
    width: 15px;
    height: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  body main section#arealist h3 .area-list-icon .icon::before {
    content: '';
    width: 15px;
    height: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  body main section#arealist h3 .area-list-icon .icon.open::before {
    content: '';
    opacity: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
  body main section#arealist .area-list-bg {
    padding-bottom: 5%;
  }
  body main section#arealist .area-list-bg h4 {
    width: 90%;
    margin: 0 auto;
    font-size: 2.1rem;
    padding: 15px 0;
    letter-spacing: 0;
    border: 1px solid #000;
    border-bottom: none;
    background-color: #ddf2ed;
  }
  body main section#arealist .area-list-bg dl {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    text-align: center;
  }
  body main section#arealist .area-list-bg dl dd {
    width: calc(100% / 4);
    margin: 0;
    padding: 10px 1rem;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 1.5rem;
  }
  body footer {
    margin-top: 60px;
    width: 100%;
    text-align: center;
    position: relative;
  }
  body footer .footer_wrap {
    width: 100%;
    background-color: #75cab9;
    padding-bottom: 20px;
    color: #fff;
  }
  body footer .footer_wrap .footer_logo {
    width: 25%;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
  }
  body footer .footer_wrap .contact {
    margin-top: 20px;
    font-size: 2.1rem;
  }
  body footer .footer_wrap .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    font-size: 1.7rem;
  }
  body footer .footer_wrap .phone :active,
  body footer .footer_wrap .phone :link,
  body footer .footer_wrap .phone :visited,
  body footer .footer_wrap .phone :hover {
    color: #fff;
  }
  body footer .footer_wrap .email {
    margin-top: 5px;
    font-size: 1.7rem;
  }
  body footer .footer_wrap .annotation {
    margin-top: 5px;
    font-size: 1.5rem;
  }
  body footer .axis_copy {
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  body footer .axis_copy .axis_logo {
    width: 15%;
    margin: 0 auto 5px;
    display: block;
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body footer .axis_copy .axis_logo :hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body footer .axis_copy .axis_logo small {
    font-size: 1.1rem;
  }
}

/* SP */
@media screen and (max-width: 480px) {
  body {
    font-size: 1.2em;
    /* 表示された時用のCSS */
  }
  body .pc {
    display: none !important;
  }
  body .sp {
    display: block !important;
  }
  body header {
    width: 100%;
    height: 69px;
    background-color: #75cab9;
    border-bottom: 10px solid #fff;
  }
  body header .header {
    width: 100%;
  }
  body header .header .flex {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body header .header .flex h1 {
    width: 20%;
    margin: 0 5% 0 auto;
    padding-top: 20px;
  }
  body header #navi {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    overflow-y: auto;
    padding-top: 40px;
    width: 100%;
    height: 100vh;
    z-index: 200;
    top: 0;
    right: -100%;
    background-color: #fff;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-left: 0;
  }
  body header #navi li {
    padding: 15px 10px;
    font-size: 1.4rem;
    list-style-type: none;
    border-bottom: 1px dashed #00858d;
  }
  body header .nav_btn {
    width: 44px;
    height: 44px;
    z-index: 300;
    top: 7px;
    left: 7px;
    cursor: pointer;
    position: absolute;
  }
  body .hamburger_line {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 34px;
    height: 2px;
    left: 5px;
    background-color: #000;
    position: absolute;
  }
  body .hamburger_line1 {
    top: 10px;
  }
  body .hamburger_line2 {
    top: 21px;
  }
  body .hamburger_line3 {
    top: 32px;
  }
  body .nav_bg {
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #000;
    cursor: pointer;
    position: fixed;
  }
  body.nav_open header #navi {
    right: 0;
  }
  body.nav_open header .nav_bg {
    opacity: 0.8;
    visibility: visible;
  }
  body.nav_open header .hamburger_line1 {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 20px;
  }
  body.nav_open header .hamburger_line2 {
    width: 0;
    left: 50%;
  }
  body.nav_open header .hamburger_line3 {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 20px;
  }
  body main {
    width: 90%;
    margin: 25px auto 0;
    position: relative;
  }
  body main section#torimedi {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  body main section#torimedi .main_title {
    font-size: 2.8rem;
    line-height: 1.5;
  }
  body main section#torimedi h2 {
    width: 82%;
    margin: 20px auto 0;
  }
  body main section#torimedi h3 {
    margin-top: 40px;
    font-size: 2rem;
  }
  body main section#torimedi p {
    margin-top: 15px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  body main section#news {
    width: 100%;
    margin: 0 auto;
  }
  body main section#news h3 {
    width: 100%;
    padding-left: 0.5rem;
    border-bottom: 1px solid #00858d;
    font-size: 2.1rem;
    letter-spacing: 0.4;
  }
  body main section#news h3 span {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
  body main section#news ul {
    width: 98%;
    margin: 0 auto;
    padding: 10px 0;
  }
  body main section#news ul li {
    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;
    margin-top: 10px;
    padding: 1rem;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
  }
  body main section#news ul li .day {
    white-space: nowrap;
    font-size: 1.2rem;
  }
  body main section#news ul li .label {
    white-space: nowrap;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #cd435a;
    border-radius: 1.5rem;
    font-size: 1.3rem;
    color: #cd435a;
  }
  body main section#news ul li .text {
    font-size: 1.3rem;
  }
  body main section#about {
    width: 100%;
    margin: 60px auto 0;
    border: 12px solid rgba(117, 202, 185, 0.7);
    background-color: rgba(230, 247, 241, 0.7);
    border-radius: 45px;
    background-image: url(./assets/images/main_back_tori.svg), url(./assets/images/main_back_medicineset.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 2.5% left, top 7.5% right 2.5%;
    background-size: 30% 30%, 30% 30%;
  }
  body main section#about h3 {
    width: 100%;
    font-size: 3.5rem;
    margin: 50px auto 0;
    text-align: center;
  }
  body main section#about h3 span {
    width: 60%;
    display: inline-block;
  }
  body main section#about .photo {
    width: 80%;
    height: auto;
    margin: 30px auto 0;
  }
  body main section#about .photo img {
    border-radius: 20px;
  }
  body main section#about p {
    margin-top: 20px;
    margin-bottom: 30px;
    padding: 0 7.5%;
    font-size: 1.4rem;
    line-height: 1.75;
    text-align: justify;
  }
  body main section#service {
    width: 100%;
    margin: 60px auto 0;
    padding: 40px 7.5% 10px;
    background-color: #fff;
    border-radius: 45px;
    background-image: url(./assets/images/main_back_medicine.svg), url(./assets/images/main_back_truck.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 2.5% left 5%, top 2.5% right 5%;
    background-size: 15% 15%, 15% 15%;
  }
  body main section#service h3 {
    font-size: 2rem;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  body main section#service p {
    font-size: 1.5rem;
    text-align: center;
  }
  body main section#service .content {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0 auto;
    margin-top: 25px;
    position: relative;
  }
  body main section#service .content .item {
    width: 100%;
    border: 7px solid #c8eae4;
    margin: 20px 0;
    padding: 5px 0 10px;
    text-align: center;
    border-radius: 20px;
    position: relative;
  }
  body main section#service .content .item .item_no {
    font-size: 2.6rem;
  }
  body main section#service .content .item .item_text {
    margin-top: 0.75rem;
    font-size: 1.9rem;
    line-height: 1;
  }
  body main section#service .content .item .arrow {
    position: absolute;
    width: 37px;
    bottom: -50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: 5;
  }
  body main section#check {
    width: 100%;
    margin: 50px auto 0;
    padding-bottom: 20px;
    border: 7px solid #7accbb;
    border-radius: 20px;
    text-align: center;
  }
  body main section#check h3 {
    background-color: #7accbb;
    margin: 0;
    padding: 10px 0;
    font-size: 2rem;
    color: #fff;
  }
  body main section#check p {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  body main section#check .check_tel {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body main section#check .check_tel :active,
  body main section#check .check_tel :link,
  body main section#check .check_tel :visited,
  body main section#check .check_tel :hover {
    color: #00858d;
  }
  body main section#check .check_time {
    margin-top: 10px;
    font-size: 1.3rem;
  }
  body main section#stores {
    width: 100%;
    margin: 50px auto 0;
    padding: 40px 0 20px;
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    background-image: url(./assets/images/main_back_cloud.svg), url(./assets/images/main_back_building.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: top 5% left 5%, top 21.5% right 5%;
    background-size: 25% 25%, 20% 20%;
  }
  body main section#stores h3 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
  }
  body main section#stores p {
    font-size: 1.5rem;
    z-index: 11;
    margin-right: 4%;
    margin-left: 4%;
    padding-bottom: 10px;
    border-bottom: 2px solid #7accbb;
  }
  body main section#stores .stores_img {
    width: 100%;
    margin: -130px auto 0;
  }
  body main section#stores .stores_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 70%;
    margin: 0 auto;
  }
  body main section#stores .stores_flex .stores_logo {
    width: 100%;
    height: auto;
  }
  body main section#stores .stores_flex .stores_logo img {
    display: inline-block;
    max-width: 100%;
  }
  body main section#stores .stores_flex .stores_box {
    width: 100%;
    margin-left: 0;
    text-align: justify;
  }
  body main section#stores .stores_flex .stores_box ul {
    font-size: 1.6rem;
    padding-left: 0;
  }
  body main section#stores .stores_flex .stores_box ul li {
    list-style: none;
    margin-top: 10px;
  }
  body main section#stores .stores_flex .stores_box ul li span {
    margin-right: 1rem;
    color: #75cab9;
  }
  body main section#area {
    width: 100%;
    margin: 60px auto 0;
  }
  body main section#area .area_copy {
    width: 70%;
    height: 100px;
    margin: 0 auto;
    position: relative;
    background-color: #ffe100;
    padding: 2.5rem 0;
    line-height: 1.75;
    text-align: center;
    border-radius: 50%;
    font-size: 1.5rem;
  }
  body main section#area .area_copy::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 40%;
    bottom: -40%;
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
    border-style: solid;
    border-color: transparent transparent transparent #ffe100;
    border-width: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    z-index: -11;
  }
  body main section#area iframe {
    margin-top: 15px;
    width: 100%;
    height: 255px;
  }
  body main section#arealist {
    width: 100%;
    margin: 60px auto 0;
    text-align: center;
    background-color: #fff;
  }
  body main section#arealist h3 {
    font-size: 2.4rem;
    background-color: #bce5de;
    padding: 20px 0;
    position: relative;
    cursor: pointer;
  }
  body main section#arealist h3 .area-list-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
  }
  body main section#arealist h3 .area-list-icon .icon {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 15px;
    width: 100%;
    height: 100%;
  }
  body main section#arealist h3 .area-list-icon .icon::after {
    content: '';
    width: 15px;
    height: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  body main section#arealist h3 .area-list-icon .icon::before {
    content: '';
    width: 15px;
    height: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  body main section#arealist h3 .area-list-icon .icon.open::before {
    content: '';
    opacity: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
  body main section#arealist .area-list-bg {
    padding-bottom: 5%;
  }
  body main section#arealist .area-list-bg h4 {
    width: 90%;
    margin: 0 auto;
    font-size: 1.5rem;
    padding: 15px 0;
    letter-spacing: 0;
    border: 1px solid #000;
    border-bottom: none;
    background-color: #ddf2ed;
  }
  body main section#arealist .area-list-bg dl {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  body main section#arealist .area-list-bg dl dd {
    width: calc(100% / 2);
    margin: 0;
    padding: 10px 0.25rem;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    font-size: 1.2rem;
  }
  body footer {
    margin-top: 60px;
    width: 100%;
    text-align: center;
    position: relative;
  }
  body footer .footer_wrap {
    width: 100%;
    background-color: #75cab9;
    padding-bottom: 20px;
    color: #fff;
  }
  body footer .footer_wrap .footer_logo {
    width: 40%;
    height: auto;
    margin: 0 auto;
    padding-top: 20px;
  }
  body footer .footer_wrap .contact {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  body footer .footer_wrap .phone {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.75;
  }
  body footer .footer_wrap .phone a {
    display: inline;
  }
  body footer .footer_wrap .phone a :active,
  body footer .footer_wrap .phone a :link,
  body footer .footer_wrap .phone a :visited,
  body footer .footer_wrap .phone a :hover {
    color: #fff;
  }
  body footer .footer_wrap .email {
    margin-top: 5px;
    font-size: 1.3rem;
  }
  body footer .footer_wrap .annotation {
    margin-top: 5px;
    font-size: 1rem;
  }
  body footer .axis_copy {
    background-color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  body footer .axis_copy .axis_logo {
    width: 20%;
    margin: 0 auto 5px;
    display: block;
    opacity: 1;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body footer .axis_copy .axis_logo :hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
/*# sourceMappingURL=style.css.map */