@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
:root {
  --blue :#1A4C9B;
}
html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP','Montserrat', sans-serif;
  color: #1e2123;
  font-size: 1.4rem;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:link {
  color: inherit;
  text-decoration: underline;
}
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:598px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}
/*-form
-------------------------------------------------------------------*/
 
.form_small {
  width: 5rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(247,247,247,1.00);
}
.form_middle {
  width: 1.2rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
.form_long {
  width: 26rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
input[type="text"],input[type="email"],input[type="tel"],textarea {
  box-shadow: none;
  border: none;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
}
/*	header#globalHeader　----------------------------------------------------*/
header#globalHeader {
  padding-block: 1rem;
}
.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.navbar-nav li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 0 0 0 2rem;
}
.navbar-nav li a {
  text-decoration: none;
  color: #333333;
}
.navbar-nav li a:hover {
  color: #666666;
}
.navbar-nav li.btn a {
  color: #ffffff;
  border-radius: 1rem;
  text-align: center;
  padding: 1rem;
  width: 12rem;
  display: block;
  line-height: 1.3;
  font-size: 1.3rem;
  font-weight: 700;
}
.navbar-nav li.entry a {
  background-color: #2eb6aa;
}
.navbar-nav li.contact a {
  background-color: #54c3f1;
}
.navbar-nav li.entry a:hover {
  background-color: #207f77;
}
.navbar-nav li.contact a:hover {
  background-color: #1197ce;
}
header#globalHeader.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  background-color: #FFFFFF;
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  position: relative;
  z-index: 9999;
}
.navbar-brand img {}
.navbar-brand h1{}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: transparent;
  border-style: none;
  z-index: 9999;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 991px) {
  .toggle {
    display: none;
  }
  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }
  .navbar-collapse {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
  }
  ul.navbar-nav {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  ul.navbar-nav li {
    display: block;
    margin: 0 0 2rem 0;
    margin-left: 2rem;
  }
}
.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 26px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
  border-radius: 4px;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 10px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 5px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

/*	footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
	clear: both;
  width: 100%;
  padding: 1.68rem;
}
footer#globalFooter nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
footer#globalFooter nav ul li {
	list-style: none;
	display: inline;
	padding: 0 10px;
	margin: 0;
	position: relative;
}
footer#globalFooter nav ul li a {
  text-decoration: none;
}
.page-top {
  right: -50px;
  bottom: 50px;
  position: fixed;
}
.page-top a {
  border-radius: 10rem;
  background-color: #333;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}
/* copyright　----------------------------------------------------*/
footer#globalFooter p.copyright {
	text-align: center;
}

/* common ----------------------------------------------------*/
.contentSec {
  margin-bottom: 15rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
	justify-content: flex-start;
}
.flex-center {
	justify-content:center;
  align-items: center;
}
.flex-end {
	justify-content:flex-end;
}
.flex-around {
	justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width:767px) {
	.flex {
		display: block;
	}
  .contentSec {
    margin-bottom: 5rem;
  }
}

.wp-pagenavi {
  clear: both;
    margin-block: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}
.wp-pagenavi .pages {
    margin-right: 0.5rem
}
.wp-pagenavi a.nextpostslink {
    color: #111111;
    text-decoration: none;
    margin-left: 0.5rem
}
.wp-pagenavi a.previouspostslink {
    color: #111111;
    text-decoration: none;
    margin-inline: 0.5rem;
}
.wp-pagenavi a.page, .wp-pagenavi span.current {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  margin-inline: 3px;
    border-radius: 100px;
    height: 30px;
    width: 30px;
}

.wp-pagenavi a, .wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi span.current {
  font-weight: 700;
}
/*  ------------------------------------------------------------------------------*/
/* BUTTON */

.button {
  display: inline-block;
  width:100%;
  max-width: 260px;
  text-align: center;
  border: 1px solid #333333;
  color: #333333;
  text-decoration: none!important;
  font-weight: bold;
  padding: 12px 0;
  border-radius: 8px;
  transition: .4s;
}

.button:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFF;
}
/* グラデーションのボタン　*/
.button_gradation {
  display: inline-block;
  width: 180px;
  text-align: center;
  font-size: 16px;
  color: #FFF;
  text-decoration: none!important;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 4px;
  background-image: linear-gradient(-90deg, #FF006E, #FFD500);
  transition: .5s;
  background-size: 200%;
}

.button_gradation:hover {
  color: #FFF;
  background-position: right center;
}

/* home ------------------------------------------------------------------------------*/
.image {
  margin-bottom: 5rem;
}
.btnArea {
  margin: 5rem;
  text-align: center;
  border-radius: 3rem;
  padding: 2rem;
}
.btnArea p {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom:2rem;
}
.btnArea-btn {
  margin-inline: 2rem;
}
.btnArea-btn a {
  text-decoration: none;
  background-color: #ffffff;
  width: 200px;
  padding-block: 2rem;
  border-radius: 2rem;
  display: block;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
  transition: 0.5s;
  
}
.btnArea-btn a:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(3px);
}
#entry .btnArea-btn a {
  border-bottom: 2px solid #2eb6aa;
  color: #2eb6aa;
}
#entry .btnArea-btn a:hover {
  background: #2eb6aa;
  color: #fff;
}
#contact .btnArea-btn a {
  border-bottom: 2px solid #54c3f1;
  color: #27acd9;
}
#contact .btnArea-btn a:hover {
  background: #13acec;
  color: #fff;
}
.qr {
  margin-inline: 1rem;
}
.qr img {
  border-radius: 1rem;
}
#entry {
  background-color: #2eb6aa;
}
#contact {
  background-color: #54c3f1;
}
/*　Media Queries　-------------------------------------------------------*/
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:919px) {}
@media (max-width:767px) {
  .image {
    margin-bottom: 0rem;
  }
  .btnArea {
    margin: 2rem 0 4rem;
    text-align: center;
  }
  .btnArea-btn a {
    width: 100%;
  }
  .qr {
  display: none;
  }
}
@media (max-width:576px) {}
@media (max-width:414px) {}
@media (max-width:320px) {}