@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
:root {
  --blue :#99B8B8;
  --orange : #F6C893;
  --font-Quicksand : "Quicksand", sans-serif;
}
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: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  color: #1e2123;
  font-size: 1.5rem;
  line-height: 1.6;
  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;
  margin-bottom: 1.6rem;
}
a {
  color: var(--blue);
  text-decoration: underline;
}
a:link {
  color: var(--blue);
  text-decoration: underline;
}
a:visited {
  color: var(--blue);
  text-decoration: underline;
}
a:hover {
  color: var(--orange);
  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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
ul.navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 0;
}
ul.navbar-nav li a {
  text-decoration: none;
  color: #333333;
}
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;
  margin-block: 1.5rem;
}
@media (max-width: 767px) {
  .navbar-brand {
    margin-block: 2rem;
  }
  .navbar-brand img {
    zoom: 0.7;
  }
}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 20px;
  right: 15px;
  background-color: transparent;
  border-style: none;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
}
.toggle:focus {
  outline: none;
}
.toggle span {
  font-family: var(--font-Quicksand);
  font-size: 2rem;
  font-weight: 300;
  line-height: 0.5;
  margin-right: 0.6rem;
}
.pc {
  display: none;
}

@media (min-width: 991px) {
  .smp {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}

  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: 40px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  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.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-335deg);
  transform: translateY(6px) rotate(-335deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  -webkit-transform: translateY(-4px) rotate(335deg);
  transform: translateY(-4px) rotate(335deg);
}

/*	footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
	clear: both;
  width: 100%;
  padding: 1.68rem;
  background-color: #DAE8E2;
  text-align: center;
}
address {
  font-style: normal;
  margin-bottom: 4rem;
}
.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;
  font-size: 1.2rem;
  font-family: var(--font-Quicksand);
}

/* 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;
}
.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;
}
section {
  position: relative;
  margin-bottom: 15rem;
}
.title {
  display: flex;
  margin-bottom: 10rem;
}
.title .ttl{
  width: 25%;
  font-size: 5rem;
  font-family: var(--font-Quicksand);
  font-weight: 300;
  line-height: 0.7;
}
.title .bg {
  height: 10rem;
  width: 75%;
}
.title span:after {
  content: "▼";
  font-size: 1.5rem;
  position: absolute;
  top: 60px;
  left: 10px;
}
.title.left .bg {
  border-radius: 1rem 0 0 1rem;
  background-color: var(--blue);
}
.title.right .bg {
  border-radius: 0 1rem 1rem 0;
  background-color: var(--orange);
}
.title.left .ttl{
  margin-right: 1rem;
  text-align: right;
}
 .title.right .ttl{
  margin-left: 1rem;
  text-align: left;
}
.title span {
  position: relative;
}
.title.left span:after{
  color: var(--blue);
}
.title.right span:after{
  color: var(--orange);
}
@media (max-width: 767px) {
  section {
    position: relative;
    margin-bottom: 5rem;
  }
  .title {
    display: flex;
    margin-bottom: 3rem;
  }
  .title .ttl{
    width: 35%;
    font-size: 3rem;
  }
  .title .bg {
    height: 5rem;
    width: 64%;
  }
  .title span:after {
    font-size: 1.2rem;
    top: 40px;
    left: 5px;
  }
}
/*  ------------------------------------------------------------------------------*/
/* BUTTON */
.btnArea {
  text-align: center;
  margin-block:3rem;
}
.button {
  display: block;
  margin-inline: auto;
  width:100%;
  max-width: 280px;
  text-align: center;
  color: #333333;
  text-decoration: none!important;
  padding: 12px 0;
  transition: .6s;
  background: linear-gradient(90deg ,#99b7ba 0%, #f9cb94 100%);
  background-size: 100%;
  cursor: pointer;
  border-radius: 50px;
}

.button:hover {
  background-position: right top;
  background-size: 150%;
}
/*　privacy-------------------------------------------------------------------------*/
.privacy {
  text-align: left;
  padding-block: 6rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.privacy h1 {
  font-size: 2.4rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}
.privacy h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}
.privacy h3 {
  font-size:1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h4 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h6 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ul li{
  margin-bottom: 0.7rem;
}
.privacy ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ol li {
  margin-bottom: 0.7rem;
}
.privacy a {
  text-decoration: underline;
}

/***********
 * お問い合わせ
 * *********/
.contact {
  padding-block-end: 10rem;
}
.contact p {
  text-align: center;
}
/
.contact__mc {
  text-align: center;
  border-bottom: 1px solid #939393;
  padding-bottom: 10rem;
}
.contact_tel {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #939393;
}
.contact_tel h2 {
  margin-bottom: 2rem;
}
.contact_tel .tel {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  padding-block: 0;
  font-size: 4rem;
  line-height: 1;
}
.contact_tel .tel a {
  text-decoration: none;
}
.contact_tel .tel i {
  margin-inline-end: 1rem;
}
.contact_tel .tel i img {
  margin-block-start: -0.8rem;
}
.form {
  padding-top: 5rem;
}
.form h2 {
  text-align: center;
}
.form p {
  margin-bottom: 0;
}
.form_title {
  margin-block-end: 3rem;
}

.form__inner {
  width: 100%;
  max-width: 73rem;
  margin-right: auto;
  margin-left: auto;
}
.form__inner dl {
  display: flex;
  margin-bottom: 2.3rem;
  text-align: left;
  align-items: center;
}
.form__inner dl dt {
  width: 25%;
  font-size: 1.3rem;
}
.form__inner span.red {
  color: red;
}
.form__inner dl dd {
  width: 75%;
}
.form__inner dl dd #preview {
  width: 100%;
  height: auto;
}
.form__inner dl dd a {
  text-decoration: underline;
}
.ex p {
  text-align: left;
  font-size: 1.3rem;
  margin-block-end: 0.5rem;
}
.confirm .form__inner dl {
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.form.confirm p {
text-align: left;
}
.grecaptcha-badge { visibility: hidden; }

.form.finish p {
 margin-block-end: 3rem;
}

.confirm .btn p {
  display: flex;
  justify-content: center;

}
.form__inner .btn {
  padding-top: 8rem;
}
.form__inner .btn input {
  background: var(--gold-gra);
  width: 26rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #111111;
  text-shadow: 1px 1px 1px #ffffff;
  border-radius: 6rem;
  margin-block-end: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.6s;
}
.form__inner .btn input:hover {
  background-position: right center;
  background-size: 200%;
  transition: 0.6s;
}
input[type="text"],input[type="tel"],input[type="email"],textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #dfdfdf;
  background-color: #F4F4F4;
  padding:1rem 1rem;
  border-radius: 8px;
}
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
.finish__inner {
  text-align: left;
}
.finish__inner h2 {
  font-family: var(--title-font);
  font-size: 2.4rem;
  margin-block-end: 4rem;
  text-align: center;
}
.finish__inner p {
  margin-block-end: 2rem;
}
#formWrap {}
#formWrap dl {
 border-bottom: 1px solid #cccccc;
}
#formWrap dt {
  width: 28%;
}
#formWrap dd {
  width: 72%;
}
/* home ------------------------------------------------------------------------------*/
.hero {
  position: relative;
  margin-bottom: 10rem;
}
.hero img {
  opacity: 0;
  animation-name: mvStart;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
.mc {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  animation-name: mvStart;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@keyframes mvStart{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * about
 * ********************************************************************/
.about {}
.about .row {
  align-items: center;
}
.about h1 {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/**
 * service
 * ********************************************************************/
.service__warap-block {
  border-radius: 3rem;
  border: 2px solid #000000;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
}
.service__warap-block .ttlBox {
  background-color: #ffffff;
  padding: 0.5rem;
  position: absolute;
  top: -20px;
  left: 20px;
}
.service__warap-block .ttlBox h2 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.service__warap-block .ttlBox span {
  font-size: 2rem;
  font-family: var(--font-Quicksand);
  font-weight: 300;
  margin-right: 0.6rem;
  line-height: 1.5;
}
.service__warap-block h3 {
  margin-block: 1.5rem 0.6rem;
  font-size: 1.7rem;
  font-weight: 600;
}
.service__warap-block-box {
  background-color: #F2F2F2;
  padding: 1.5rem;
  margin-top: 2rem;
}

/**
 * outline
 * ********************************************************************/
.outline__inner {
  width: 100%;
  border-radius: 3rem;
  border: 2px solid #000000;
 }
.outline__inner h2 {
  text-align: center;
  padding-block: 4rem;
}
.outline__inner table {
  width: 100%;
  border-top: 1px solid #000000;
}
.outline__inner table tr {
  border-bottom: 1px solid #000000;
}
.outline__inner table tr:last-child {
   border-bottom: none;
}
.outline__inner table th {
  padding: 2rem 3rem;
  border-right: 1px solid #000000;
  font-weight: 400;
}
.outline__inner table td {
  padding: 2rem 3rem;
}

/**
 * contact
 * ********************************************************************/

.contact__inner h2 {
  text-align: center;
  padding-block: 4rem;
}

/*　Media Queries　-------------------------------------------------------*/
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:919px) {}
@media (max-width:767px) {
  /**********
   * お問い合わせ
   * *************/
  .contact__page {
    padding-top: 3rem;
  }
  .contact__mc {
    padding-bottom: 5rem;
  }
  .contact_tel {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .contact_tel h2 {
    font-size: 2rem;
    margin-block-end: 1rem;
  }
  .contact_tel .tel {
    font-family: "Arial";
    padding-block: 0;
    font-size: 2.4rem;
  }
  .contact_tel .tel img {
    width: 2.3rem;
    height: auto;
  }
  .form {
    padding-top: 5rem;
  }
  .form h2 {
  font-size: 2rem;
  margin-block-end: 2rem;
  }
  .contact__page h2 {
    margin-bottom: 2rem;
  }
  .contact__page .form h2 {
    margin-bottom: 1rem;
  }
  .form__inner dl {
    display: block;
    margin-bottom: 2rem;
  }
  .form__inner dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .form__inner dl dt sup {
    color: red;
  }
  .form__inner dl dd {
    width: 100%;
  }
  .form__inner dl dd.file {
    text-align: center;
    padding-top: 3rem;
  }
  .form__inner dl dd #preview {
    width: 100%;
    height: auto;
    padding: 2rem;
  }
  .form__inner .btn {
    padding-top: 4rem;
  }
  #formWrap dt {
    width: 100%;
    text-align: left;
  }
  #formWrap dd {
    width: 100%;
  }
  a.privacy {
    display: block;
    margin: 0.5rem auto;
  }
  .privacypolicy h2 {
    font-size: 2.4rem;
  }
  .hero {
    margin-bottom: 5rem;
  }
  .mc {
        top: 10%;
        left: 0;
        transform: translateY(0);
        width: 100%;
        padding-inline: 10%;
    
    }
  .mc img {
        /* zoom: 0.55; */
        width: 100%;
        height: auto;
    
    }
  .concept {
    padding: 5rem 4rem;
    display: block;
  }
  .concept img {
    width: 100%;
    height: auto;
  }
  .about h1 {
    font-size: 1.7rem;
    font-weight: 600;
  }
  .cookie__block h2 {
    font-size: 2.4rem;
  }
  .service__warap-block-box {
    margin-bottom: 3rem;
  }
  .outline__inner h2 {
    padding-block: 2rem;
  }
  .outline__inner table th {
    padding: 1rem 2rem;
    white-space: nowrap;
  }
  .outline__inner table td {
    padding: 1rem 2rem;
  }
}
@media (max-width:576px) {}
@media (max-width:414px) {}
@media (max-width:320px) {}