@charset "UTF-8";
/*html5doctor.com Reset Stylesheetv1.6.1*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: middle;
}

body {
  line-height: 1.6em;background-image: url("../img/umi_pic08.jpg")
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

/* change colours to suit your needs */
ins {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: transparent;
  color: #000;
  font-style: normal;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

iframe {
  border: 0;
}

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

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

.container:before, .container:after {
  display: table;
  content: " ";
}

/*-------------------*/
input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

/*iOS reset*/
input[type="submit"], input[type="button"], input[type="reset"], button {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration, button::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus, input[type="button"]:focus, input[type="reset"]:focus, button:focus {
  outline-offset: -2px;
}

/*=======
public
=====================*/
html {
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  /*16 base*/
  background-color: #fefefe;
  color: #444;
  font-family: "メイリオ",meiryo,"Hiragino Kaku Gothic ProN",sans-serif;
  font-size: 1em;
  word-break: break-all;
}

img {
  width: 100%;
  /*IE8*/
  height: auto\9;
}

.f--min {
  font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
}

.f--en {
  font-family: "Alfa Slab One", cursive;
}

/*=======
link
=====================*/
a {
  outline: none;
  text-decoration: underline;
}

a:link {
  color: #171c61;
}

/*未訪問*/
a:visited {
  color: #171c61;
}

/*訪問済*/
a:hover {
  color: #171c61;
  text-decoration: none;
  opacity: .85;
}

/*マウスオーバー*/
a:active {
  color: #171c61;
}

/*クリック動作間*/
button:hover {
  opacity: .85;
}

.link--offset a, .link--offset a:hover {
  color: #444;
  text-decoration: none;
}

/*========
Micro clearfix
=====================*/
.cf:before, .cf:after {
  display: table;
  content: "";
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}

/*=======
Animation
=====================*/
.fadeInDown {
  -webkit-animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-name: fadeInDown;
  visibility: visible !important;
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.amt_fade {
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Float Shadow */
.hvr-float-shadow {
  -webkit-transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  display: inline-block;
  position: relative;
  transform: perspective(1px) translateZ(0);
          box-shadow: 0 0 1px transparent;
  vertical-align: middle;
  transition-duration: 0.3s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.hvr-float-shadow:before {
  -webkit-transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 5%;
  width: 90%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  content: '';
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.3s;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}

.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  opacity: 1;
}

/*=========
Operation(fixed)
=====================*/
.operation {
  z-index: 997;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.operation__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 60px;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
}

.operation__arrow a {
  display: block;
  color: #fff;
}

/* Header */
.header {
  width: 100%;

}

.header__inner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0 20px;


}

.header__inner h1 {
  position: absolute;
  top: 15px;
  width: 94px;
}

.breadcrumb {
  width: 100%;
  margin-bottom: 0;
  padding-top: 17px;
  padding-left: 120px;
  font-size: 0;
}

.breadcrumb li {
  display: inline-block;
  font-size: 12px;
}

.breadcrumb li:after {
  padding: 0 8px;
  font-family: FontAwesome;
  content: '\f0da';
}

.breadcrumb li:last-child:after {
  content: none;
}

/* Main Visual */
.visual {
  
}

.visual__inner {
max-width:748px;margin: 0 auto;
}


.bg{ background-color: #fffdf0;}

.main_v{max-width: 1065px;margin:0 auto;}
.main_v p{text-align: center;margin-top:1rem;font-size: 1.25rem;line-height: 1.8rem;padding:0 3rem;}
.main_v p span{display: block;}

.container {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto 50px;
  padding: 2rem;
background-color: #7dccf3;
}


.wrap--press {
  width: 100%;
background-color: #fff;
padding: 1rem;
}
.wrap--press {
padding: 2rem;
}


h3.ttl{font-size: 25px;text-align: center;color: #f18e00;margin-bottom: 1rem;}
h3.ttl span{font-size: 82px; display: block;line-height: 7rem;}
p.prodct_txt{font-size: 23px;line-height: 2rem;text-align: center;font-weight: bold;}
p.prodct_txt span{display: block;}

ul.prodct{display: flex;}
.balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 1.5rem;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e26d14;
    border-radius: 1rem;
}

.balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 30px solid #e26d14;
}
.balloon h4{color:#fff;text-align: center;font-size: 25px;}
.balloon h4 span{font-size: 38px;display: block;line-height: 3.5rem;}
.balloon p{color: #fff;font-size: 19px;margin: 0 1rem;}
li.prodct_exam p{margin-left: 1rem;}
li.prodct_exam h5{background-color: #ec6d2a;margin:0 1rem;color:#fff;display: inline-block;border-radius: 1rem;padding: 0 1rem;}
.point{position: relative;background-color: #fffac2;margin: 3rem 0;padding:1rem 0;}
.point figure{float:right;width: 30%;padding:0 1rem 1rem 0;}

ul.uwasa{display: flex;}
ul.uwasa li:first-child{width: 53%;}
ul.uwasa h6{background-color: #008998;color:#fff;display: inline-block;padding: 0.75rem 1.5rem 0.75rem 2rem;font-size: 32px;border-radius: 0 15px 15px 0;position: relative;z-index: 1;}
ul.uwasa li p{margin:-2rem 0 0 2rem;padding:3rem 2rem 2rem 0;border-top: solid 1px #008998;border-right: solid 1px #008998;position: relative; z-index: 0;}

p.genki{font-size: 18px; font-weight: bold; color:#009844;text-align: center;margin: 2rem 0}

ul.shop{display: flex;}
ul.shop li:first-child{width: 30%;}
ul.shop li dl{margin-left:1rem;}
ul.shop dt{border-top: solid 2px #008998;padding:0.5rem;font-size:24px;font-weight:bold;}
ul.shop dt b{color:#008998;vertical-align: top;}
ul.shop dd{padding:0 0.5rem;}
ul.shop dd:last-child{border-bottom: solid 2px #008998;}
ul.shop dd em{font-style: normal;font-size: 12px;}
ul.shop dd a{text-decoration: none;font-size: 12px;}
p.tel{font-weight:bold;}
p.tel span{color:#e51373;}
p.address{}
p.address span{background-color: #008998;color:#fff;font-size: 12px;padding:0.15rem 0.5rem;border-radius: 5px;}

/* Footer */
.footer {
  width: 100%;
  padding: 25px;
  background: #0080b8;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.footer__sns {
  width: 100%;
  margin-bottom: 20px;
}

.footer__sns li {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.5rem;
}

.footer__sns li a {
  color: #fff;
}

.return__btn {
  width: 100%;
  margin-bottom: 20px;
}

.return__btn a {
  display: inline-block;
  padding: 12px 20px 10px;
  border: solid 1px #fff;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
}

.return__btn a:hover {
  border-color: #171c61;
  background: #171c61;
}

.operation {
  z-index: 997;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.operation__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 60px;
  background: #111;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
}

.operation__arrow a {
  display: block;
  color: #fff;
}

.modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.modal__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal__contents {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 800px;
          transform: translate(-50%, -50%);
}

.modal__contents img {
  border-radius: 2px;
}
    p.address br{display:none;}

@media (max-width: 926px) {


}
@media (max-width: 879px){
   
}
@media (max-width: 821px){

}
@media (max-width: 640px) {
  .header__inner {
    height: auto;
    padding: 15px;
    text-align: center;
  }
  .header__inner h1 {
    position: static;
    margin: 0 auto 10px;
  }
  .breadcrumb {
    padding: 0;
  }

}

@media (max-width: 550px) {

}

@media (max-width: 450px) {
  .visual__inner {

  }
  .visual__logo {
 
  }
  .canvas__wrap:before {
    padding-top: 70%;
  }
  .breadcrumb li {
    font-size: 10px;
  }
  .footer small {
    font-size: 10px;
  }
   ul.shop-name li h4 {
    font-size: 1rem;
} 
    ul.shop-name li h4 span {
    font-size: 2rem;
    margin: 0;
}
}

@media (max-width: 414px) {
  .visual__inner {

  }
}

@media (max-width: 700px) {
  h3.ttl span {
    font-size: 70px;
}
    p.prodct_txt {
    font-size: 20px;
}
.balloon h4 {
    font-size: 20px;
}
    .balloon h4 span {
    font-size: 33px;
}
    p.address br{display:block;}
    
}
@media (max-width: 619px){
     h3.ttl span {
    font-size: 46px;
    line-height: 3.5rem;
}
    p.prodct_txt {
    font-size: 15px;
}
.balloon h4 {
    font-size: 15px;
}
    .balloon h4 span {
    font-size: 25px;
     line-height: 2rem;
}
    ul.prodct {
    display: block;
}
    .balloon::before {
    content: "";
    position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
    border-bottom: 15px solid #e26d14;
        margin-top:0;
}
    ul.uwasa {
    display: block;
}
    ul.uwasa li:first-child {
    width: 100%;
}
    ul.shop {
    display: block;
}
    ul.shop li:first-child {
    width: 100%;
    margin-bottom: 1rem;
}
    ul.shop li dl {
    margin-left: 0rem;
}
    p.prodct_txt span {
    display: inline;
}
}
