@charset "utf-8";

/* ---------------------------------------------
 common
--------------------------------------------- */
body{
  margin: 0;
  /*background-image: url(../img/CorkBoard02.jpg);*/
  background-image: url(../img/whitepaint.jpg);
  background-repeat: repeat;
}

img{
  width: 100%;
}
a:hover{
  opacity: 0.7;
}

h2 {
  position: relative;
  padding: 1.5rem 1.5rem calc(1.5rem + 10px);
  border: 2px solid #000;
}

h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  border-top: 2px solid #000;
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

h3 {
  font-size: 180%;
  position: relative;
  color: #333;
  display: inline-block;
  margin: 47px 0;
  text-shadow: 0 0 2px white;
}
h3:before {
  content: "";
  position: absolute;
  background: #009999;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: 50%;
  border: dashed 1px white;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  box-shadow: 0px 0px 0px 5px #009999;
}


/*ボタン*/
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border {
  margin-bottom: 12px;
  padding: 0;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  border-radius: 0;
}

a.btn-border span {
  position: relative;

  display: block;

  padding: 1.25rem 3rem;

  color: #000;
  border: 2px solid #000;
  border-radius: 0.5rem;
  background: #32bdbd;
}

a.btn-border:before {
  position: absolute;
  bottom: -8px;
  left: 0;

  display: block;

  width: 100%;
  height: 14px;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  border: 2px solid #000;
  border-top: 1px solid #000;
  border-radius: 0 0 0.5rem 0.5rem;
  background-image: -webkit-repeating-linear-gradient(
    135deg,
    #000,
    #000 1px,
    transparent 2px,
    transparent 5px
  );
  background-image: repeating-linear-gradient(
    -45deg,
    #000,
    #000 1px,
    transparent 2px,
    transparent 5px
  );
  background-size: 7px 7px;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;
}

a.btn-border:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
}

a.btn-border:hover:before {
  bottom: -5px;
}

a.btn-border:active {
  -webkit-transform: translate(0, 7px);
  transform: translate(0, 7px);
}

a.btn-border:active:before {
  bottom: -1px;
}

/* ---------------------------------------------
 style
--------------------------------------------- */

.container{
  padding: 2%;
}

.caution{
  font-size: 75%;
}

@media only screen and (min-width: 600px){
  .container {
      width: 60%;
      margin-left: auto;
      margin-right: auto;
  }
}

.bg_wrap{
  background-image: url(../img/img254.png);
  background-size: 40%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sns_wrap{
  max-height: 500px;
  overflow: hidden;
}

.center{
text-align: center;
}

.icon_image{
  width: 30% !important; 
}

/*footer*/
#footer{
  font-size: 80%;
  background-color: #009999;
}

#footer .container{
  background-image: none;
  padding: 2% 3%;
}

#footer .googlemap{
  width: 100%;
  height: 100%;
}

#footer .insta_img{
  width: auto;
  margin-top: 20px;
}

#footer .copyright{
  background-color: #000;
  color: #fff;
  font-size: 70%;
  text-align: center;
  padding: 5px 0;
}