@charset "UTF-8";

/*==============================================
global
==============================================*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
  background: #fff;
  position: relative;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.9;
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  min-width: 1100px;
  position: relative;
  letter-spacing: 0.08em;
}


* {
  box-sizing: border-box;
}

*:last-child {
  margin-bottom:0;
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, form, button, figure, figcaption {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-weight: normal;
  font-size: 1.5rem;
}

li {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: middle!important;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
  height: auto;
  image-rendering: -webkit-optimize-contrast; /*Chromeぼけ対策*/
  image-rendering: auto;
}

sup {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
  bottom: 3px;
}

._pc {
  display: inline-block;
}

._sp {
  display: none;
}

._inner {
  width: 850px;
  margin: 0 auto;
  position: relative;
}

main {
  display: block;
  padding-top: 70px;
}


/*anime*/
._up {
  opacity: 0;
  transform: translateY(50px);
  transition: all .5s ease;
}

._up--ison {
  opacity: 1;
  transform: translateY(0%);
}



/*==============================================
a
==============================================*/
a:link, a:visited  {
	color: #000;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
	color: #000;
  transition: 0.3s ease-in-out;
}

a img {
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover img {
  opacity: 0.8;
}

/*btn*/
._btn, ._btn:visited {
	color: #000!important;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 100px;
  transition: 0.3s ease-in-out;
  padding: .75em 2em .75em 2em;
  background: #07b53b!important;
  color: #fff!important;
  font-size: 1.8rem;
}

._btn:hover {
  color: #07b53b!important;
  background: #fff!important;
}




/*==============================================
header
==============================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  background: #fff;
  width: 100%;
  z-index: 10;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: fixed;
}

.header__logo {
  width:130px;
  height:auto;
  padding-left: 15px;
}

.header__contact {
  background: #fff000;
}


.header__contact a, .header__contact a:visited {
  color: #000;
  background: #fff000;
  display: block;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 4em;
  font-weight: bold;
}

.header__contact a:hover {
  background: #000;
  color: #fff000;
}


/*==============================================
kv
==============================================*/
.kv {
  background: url(../_img/kv.jpg) no-repeat center center;
  background-size: cover;
  height: 80vh;
  max-height: 1000px;
  position: relative;
  margin-bottom: 70px;
}

.kv__txt {
  position: absolute;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 2em 3em;
  min-width: 650px;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.08);
}



/*==============================================
lead
==============================================*/
.lead {
  text-align: center;
  margin-bottom: 10px;
}

.lead p {
  margin-bottom: .5em;
  font-size: 1.8rem;
}

.lead h1 {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.13em;
}

.lead h1 span {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}

/*==============================================
date
==============================================*/
.date {
  text-align: center;
  font-weight: 700;
}
.date-num span {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 3.3rem;
  position: relative;
  top:.05em;
}

.date-notice {
  font-weight: normal;
}


/*==============================================
box
==============================================*/
.box {
  margin-bottom: 100px;
  text-align: center;
}

.minibox {
  margin-bottom: 35px;
}

.box h2 {
  position:relative;
  margin-bottom:2em;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
}

.box h2::after {
  content:'';
  position:absolute;
  width:70px;
  height:4px;
  bottom:-.7em;
  left:50%;
  transform: translateX(-50%);
  background: #ffff00;
}

.box h3 {
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: .5em;
}


/*==============================================
fig
==============================================*/
.fig-notice {
  font-size: 1.4rem;
  text-align: center;
  color: #555;
  margin-top: 1.5em;
}


/*==============================================
contact
==============================================*/
.contact > ._inner {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 2em;
  background: #ffff00;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1em;
  font-size: 2.4rem;
}

.contact h2::after {
  display: none;
}

.contact-btn {
  margin: 2em 0 3em;
}

.contact-qr {
  width: 40%;
  margin: 0 auto 2em;
}

.contact-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

/*==============================================
map
==============================================*/
.map iframe {
  width: 100%;
  height: 500px;
  border: none;
}

.map p {
  text-align: center;
  margin-bottom: 1em;
}




/*==============================================
footer
==============================================*/
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2em;
  font-size: 1.4rem;
}

footer p {
  margin-bottom: .5em;
}

footer strong {
  font-size: 1.6rem;
  margin-bottom: .5em;
  display: block;
}

footer a, footer a:visited {
  color: #ff0!important;
}







@media only screen and (max-width: 767px) and (orientation:portrait), only screen and (max-width:900px) and (orientation:landscape) {

html {
  font-size: 55%;
}

body {
  min-width: initial;
}

main {
  display: block;
  padding-top: 50px;
}

._pc {
  display: none;
}

._sp {
  display: inline-block;
}

._inner {
  width: 100%;
  min-width: 1px;
}

/*==============================================
header (SP)
==============================================*/
header {
  height: 50px;
  position: fixed;
}

.header__logo {
  width:100px;
  height:auto;
  padding-left: 8px;
}

.header__contact a, .header__contact a:visited {
  height: 50px;
  padding: 0 3em;
}

/*==============================================
kv (SP)
==============================================*/
.kv {
  height: 65vh;
  margin-bottom: 40px;
}

.kv__txt {
  width: 80%;
  padding: 2em 1.5em;
  min-width: 1px;
}


/*==============================================
lead (SP)
==============================================*/
.lead {
  margin-bottom: 10px;
}

.lead p {
  font-size: 1.4rem;
}

.lead h1 {
  font-size: 2.8rem;
}

/*==============================================
date (SP)
==============================================*/
.date-num {
  line-height: 1.3;
}

.date-num span {
  font-size: 2rem;
}

.date-notice {
  font-size: 1.2rem;
}


/*==============================================
box (SP)
==============================================*/
.box {
  margin-bottom: 50px;
  padding: 0 5%;
  text-align: left;
}

.minibox {
  margin-bottom: 30px;
}

.box h2 {
  font-size: 2.6rem;
}

.naikan {
  padding-top: 3em;
}

/*==============================================
fig (SP)
==============================================*/
.fig-notice {
  font-size: 1.2rem;
}

/*==============================================
contact (SP)
==============================================*/
.contact > ._inner {
  padding: 1.5em;
}

.contact-qr {
  display: none;
}

/*==============================================
map (SP)
==============================================*/
.map iframe {
  height: 300px;
}


}