@charset "utf-8";

html {scroll-behavior: smooth;}

/*
Base style
*/
body{
    font-family: 'Noto Sans JP',"Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
  }

/*
grid
*/
.grid {
  display: flex;
  width: 1200px;
  margin: auto;
  padding: 0;
  justify-content: space-between;
}
.grid-item {
  list-style: none;
}
.grid-col-2 > .grid-item {
  width: calc(50% - 60px); /* 10pxは余白の間隔 */
}
.grid-col-3 > .grid-item {
  width: calc(33.3% - 40px);
}
.grid-col-4 > .grid-item {
  width: calc(25% - 30px); /* 10pxは余白の間隔 */
}


/*
改行
*/
 .br-sp {display: inline; }
 .br-pc {display: none; }


@media screen and (min-width: 768px){
  .br-pc {display: inline; }
  .br-sp {display: none; }
  }



/*
grid SP
*/

@media screen and (max-width: 768px) {
  .grid {
    display: block;
    padding: 0 20px 0 20px;
    width: 100%;
  }
  .grid-col-2 > .grid-item,
  .grid-col-3 > .grid-item,
  .grid-col-4 > .grid-item {
    width: 100%;
  }
  
  
}



/*
container
*/
.container {
  width: 1200px;
  margin: 0 auto; /* 中央に配置するためのマージン設定 */
}
/*
container-SP
*/
@media screen and (max-width: 768px){
.container {
  width: 100%;
}
}
/*
hero-container
*/
.hero-container {
  margin: 0 auto;
}
/*
hero-containerr-SP
*/
@media screen and (max-width: 768px){
.hero-container {
  width: 100%;
}
}
/*
横線
*/
hr{
    height: 1px;
}
/*
header
*/

header{
  height: 100px;
  line-height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

header .logo {
  float: left;
  padding-left: 22px;
  padding-top: 16px;
}

header .logo img {
  width: 50%;
}

.number {
  display: block;
  padding-top: 24px;
}

.number img {
  width: 50%;
  float: right;
}

.number img {
  width: 25%;
}

a{
  color: #333333;
  text-decoration: none;
  display: block;
}

ul li{
  list-style: none;
  width:100px;
}



.menu{
  display: none;
  justify-content: space-around;
  max-width: 980px;
  margin:0 auto;
}


.menu{
  display: block;
}


/**レスポンシブにした時のナビの見せ方**/
  header nav{
    position: fixed;
    width: 300px;
    top: 0;
    right: -300px;
    background-color: rgba(33,33,33,.9);
    height: 100%;
    padding-top: 60px;
  }

header nav ul li{
  width: 100%;
}

  header nav ul li a{
    color: #ffffff;
    padding-left: 20px;
  }

  header .btn-gnavi{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    cursor: pointer;
    transition: all 400ms;
    -webkit-transition:all 400ms;
  }

  header .btn-gnavi span {
      position: absolute;
      width: 30px;
      height: 4px;
      background: #666;
      border-radius: 10px;
      -webkit-transition: all 400ms;
      transition: all 400ms
  }

  header .btn-gnavi span:nth-child(1){
    top: 0;
  }

  header .btn-gnavi span:nth-child(2){
    top: 10px;
  }

  header .btn-gnavi span:nth-child(3){
    top: 20px;
  }

  header .btn-gnavi.hb-open{
    transform: rotate(180deg);
    -webkit-transform:rotate(180deg);
  }

  header .btn-gnavi.hb-open span{
    background: #fff;
  }

  header .btn-gnavi.hb-open span:nth-child(1){
    width: 24px;
    transform: translate(-7px,17px) rotate(45deg);
    -webkit-transform: translate(-7px,17px) rotate(45deg);
  }

  header .btn-gnavi.hb-open span:nth-child(3){
    width: 24px;
    transform: translate(-7px,-17px) rotate(-45deg);
    -webkit-transform: translate(-7px,-17px) rotate(-45deg);
  }
  @media screen and (max-width: 768px){
    header .logo img {
      width: 70%;
      }
    header .logo {
      padding-top: 3%;
    }
    .number {
      display: none;

    }
  
  }

/*
hero
*/

.hero {
  position: relative;
  background-image: url(../image/hero.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  color: #fff;
  text-align: center;
  margin-top: 100px;
}

.hero h2 {
  font-family: serif;
  font-weight: bold;
  text-align: left;
  line-height: 1.35;
  letter-spacing: 0.04em;
  float: left;
  color: #333;
  font-size: 60px;
  margin-top: 30px;
  text-shadow: 40px 40px 50px rgb(255, 255, 255);
}

.hero h2 span {
  font-size: 52px;
}

.hero-logo {
  width: 40%; /* ロゴの幅を指定 */
  float: left;
}

.hero-grid {
  width: 562px;
  height: 700px;
  padding: 27px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, 1fr);
  background: #fff;
  gap: 6px;
  font-size: 20px;
  font-weight: bold;
}

.hero-grid__item {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.hero-grid__item::before {
  content: ">";
  position: absolute;
  top: 50%;
  right: -15px; /* ">"マークの位置を調整 */
  transform: translateY(-50%);
  font-size: 24px; /* ">"マークのサイズを調整 */
}

.hero-grid__item:nth-child(1) {
  color: #fff;
  background: #E9BC83;
  border-radius: 10px;
  grid-column: span 2;
  grid-row: span 2;
}

.hero-grid__item:nth-child(2) {
  color: #fff;
  background: #CFB4D2;
  border-radius: 10px;
  grid-column: span 2;
  grid-row: span 2;
}

.hero-grid__item:nth-child(3) {
  color: #fff;
  background: #9ACBDC;
  border-radius: 10px;
  grid-column: span 2;
  grid-row: span 2;
}

.hero-grid__item:nth-child(4) {
  color: #fff;
  background: #E9B4B2;
  border-radius: 10px;
  grid-column: span 6;
  grid-row: span 2;
}

.hero-grid__item:nth-child(5) {
  color: #fff;
  background: #E0E18C;
  border-radius: 10px;
  grid-column: span 3;
}

.hero-grid__item:nth-child(6) {
  color: #fff;
  background: #92CCA2;
  border-radius: 10px;
  grid-column: span 3;
}
.hero-grid__item:nth-child(7) {
  color: #fff;
  background: #E9BC83;
  border-radius: 10px;
  grid-column: span 3;
}

.hero-grid__item:nth-child(8) {
  color: #fff;
  background: #CFB4D2;
  border-radius: 10px;
  grid-column: span 3;
}

.hero-grid__item:nth-child(9) {
  color: #fff;
  background: #F0F0F0;
  border-radius: 10px;
  grid-column: span 6;
  grid-row: span 2;
}

.hero-grid__item img {
  width: 100%;
}


@media screen and (max-width: 768px) {
  .hero {
    position: relative;
    background-image: url(../image/hero-sp.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 349px;
    margin-top: 76px;
  }
  .hero h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-left: 20px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
  .hero h2 span {
    font-size: 24px;
  }
  .hero-logo {
    width: 55%; /* ロゴの幅を指定 */
    float: right;
  }
  .hero-grid {
    display: none;
  }
}

/*
main-visual
*/
.main-visual {
  margin-top: 100px;
  position: relative;
  width: 100%;
}
.main-visual.main-visual-business {
  margin-top: 175px;
}
.main-visual img {
  width: 100%;
}

.background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  justify-content: center;
  height: 75px;
  background-color: #E9B4B2;
  border-radius: 0 50px 50px 0;
}
.background.background-business {
  background-color: #92CCA2; /*バージョン違い*/
}
.background.background-support {
  background-color: #E9BC83; /*バージョン違い*/
}
.background.background-expert {
  background-color: #CFB4D2; /*バージョン違い*/
}
.background.background-tochikatsuyou {
  background-color: #E9BC83; /*バージョン違い*/
}
.background.background-assess {
  background-color: #E9B4B2; /*バージョン違い*/
}
.background.background-advertising {
  background-color: #9ACBDC; /*バージョン違い*/
}
.background.background-sale {
  background-color: #CFB4D2; /*バージョン違い*/
  top: 0; /* バージョン違い */
}
.title {
  position: absolute;
  bottom: 23px; 
  left: 100px; 
  margin-left: auto;
  margin-right: auto;
  text-align: left; 
  color: #FFFFFF;
  font-size: 24px; 
  font-weight: bold;
}
.title.title-sale {
  top: 34%; /* バージョン違い */
  transform: translateY(-50%); /* バージョン違い */
}

/*
main-visual-SP
*/
@media screen and (max-width: 768px) {
  .main-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-visual.main-visual-business {
  margin-top: 100px;
}
  .main-visual-sale-image {
    width: 100%;
  height: 260px;
  object-fit: cover;
  }
  .title {
    left: 20px;
    margin-top: 20px; 
    text-align: center;
  }
  .background {
    width: 100%;
    position: static;
    border-radius: 0;
  }
  
  .title.title-sale {
    top: 28.5%; /* バージョン違い */
    transform: translateY(-50%); /* バージョン違い */
  }
}

/*
section
*/
.section {
 padding: 70px 0px 80px 0px;
}
.section.section-secoundaly {
  background: #F7F8F8;
}
.section-headline{
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
}
.section-headline.section-headline-orange{
  color: #E9BC83;
}
.section-headline.section-headline-purple{
  color: #CFB4D2;
}
.section-headline.section-headline-blue{
  color: #9ACBDC;
}
.section-headline.section-headline-pink{
  color: #E9B4B2;
}
.section-headline.section-headline-yellowgreen{
  color: #E0E18C;
}
.section-headline.section-headline-green{
  color: #92CCA2;
}
.section-subheadline{
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 10px;
}
.section-button {
  text-align: right;
  font-weight: bold;
}
.section-button .button {
  display: inline-block;
  color: #fff;
  background-color: #E9B4B2;
  text-align: center;
  padding: 15px 60px;
  text-decoration: none;
}
a.btn-border {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 155px;
  padding: 20px 10px;
  max-width: 1200px;
  height: 87px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border: 1.7px solid #1c1c1c;
  border-radius: 0;
}

a.btn-border:hover {
  color: #fff;
  background: #1c1c1c;
}

/*
section-SP
*/

@media screen and (max-width: 768px) {
  .section {
    padding: 70px 0px 70px 0px;
   }
   .section-button {
  text-align: center;
  margin-top: 40px;
  }
  .section-headline{
   font-size: 30px;
  }
  a.btn-border {
    font-size: 20px;
    margin-top: 70px;
    margin-bottom: 70px;
    padding: 10px 10px;
    width: 100%;
    height: 60px;
  }
}




/*
button
*/
.button {
  display: inline-block;
  color: #fff;
  background-color: #E9B4B2;
  text-align: center;
  padding: 15px 60px;
  text-decoration: none;
}
.button:hover {
  opacity: 0.7;
  transition: all 0.8s;
}
.button.button-land-link {
  background: #E9BC83;
  font-size: 16px;
  width: 235px;
  padding: 16px 0px;
  border-radius: 8px;
}
.button.button-sale-link {
  background: #CFB4D2;
  font-size: 16px;
  width: 235px;
  padding: 16px 0px;
  border-radius: 8px;
}
/*
button-SP
*/
@media screen and (max-width: 768px) {
  .button.button-land-link {
    width: 100%;
    margin-top: -100px;
  }
    .button.button-sale-link {
      width: 100%;
      margin-top: -100px;
    }
  

}

/*
Strong Point
*/
.card {
  padding:  0 10px;
}
.card:hover {
  opacity: 0.7;
  transition: all 0.8s;
}
.card h1 {
  font-size: 18px;
  text-align: left;
  padding: 20px;
}
.card img {
  width: 100%;
  height: auto;
}
.card-link1 {
  display: block;
  color: #E9B4B2;
  text-decoration: none;
  position: relative;
  border-right: 1px solid #E9B4B2;
  border-bottom: 1px solid #E9B4B2;
}
.card-link2 {
  display: block;
  color: #9ACBDC;
  text-decoration: none;
  position: relative;
  border-right: 1px solid #9ACBDC;
  border-bottom: 1px solid #9ACBDC;
  transition: all 0.8s;
}
.card-link3 {
  display: block;
  color: #E9BC83;
  text-decoration: none;
  position: relative;
  border-right: 1px solid #E9BC83;
  border-bottom: 1px solid #E9BC83;
  transition: all 0.8s;
}
.card-link4 {
  display: block;
  color: #CFB4D2;
  text-decoration: none;
  position: relative;
  border-right: 1px solid #CFB4D2;
  border-bottom: 1px solid #CFB4D2;
  transition: all 0.8s;
}
.arrow{
  position: relative;
  display: inline-block;
  margin-top: 12.9px;
  margin-right: 17px;
  float: right;
}
.arrow::before{
  content: '';
  width: 10px;
  height: 10px;
  border: 0px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}

.card-link1 .arrow::before{
  border-top: solid 2px #E9B4B2;
  border-right: solid 2px #E9B4B2;
}
.card-link2 .arrow::before{
  border-top: solid 2px #9ACBDC;
  border-right: solid 2px #9ACBDC;
}
.card-link3 .arrow::before{
  border-top: solid 2px #E9BC83;
  border-right: solid 2px #E9BC83;
}
.card-link4 .arrow::before{
  border-top: solid 2px #CFB4D2;
  border-right: solid 2px #CFB4D2;
}

/*
Strong Point SP
*/
@media screen and (max-width: 768px) {
  .card {
    width: 100%;
    height: 88px;
    padding: 0;
    margin-bottom: 40px;
  }
  
  .card h1 {
    font-size: 14px;
  }

  .card-link1 .card-image {
  content: url("../image/strongpoint1-sp.png");
  }
  .card-link2 .card-image {
    content: url("../image/strongpoint2-sp.png");
  }
  .card-link3 .card-image {
    content: url("../image/strongpoint3-sp.png");
  }
  .card-link4 .card-image {
    content: url("../image/strongpoint4-sp.png");
  }
  .card-link1,.card-link2,.card-link3,.card-link4 {
    display: flex;
  }
  .card-link1 img,.card-link2 img,.card-link3 img,.card-link4 img {
    width: 50%;
    height: 50%;
  }

  
    
  }


/*
about
*/
.about{
  margin: 0;
  display: flex;
  justify-content: center;
}

.about-caption{
  padding-left: 15px;
}
.about-headline{
  margin: 0 0 20px;
  font-size: 30px;
}

.feature {
  text-align: center;
  padding:  0 15px;
}
.feature-img {
  margin:  0 0 20px;
}
.feature-imgdescription {
  font-size: 20px;
  margin: 0 0 20px;
}
.feature-headline {
  font-weight: bold;
  font-size: 21px;
  margin: 0 0 20px;
  text-align: left;
}
.feature-description {
  margin: 0;
  text-align: left;
}


/*
advisor
*/
.advisor{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.advisor-image {
  width: 40%;
}
.advisor-caption{
  padding-left: 90px;
}
.advisor-caption p {
  font-size: 16px;
  line-height: 2;
  width: 640px;
  margin: 0px;
  text-align: justify;
}
.advisor-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
advisor-SP
*/
@media screen and (max-width: 768px) {
  .advisor{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .advisor-caption p {
  width: 100%;
  margin-top: 60px;
  }
  .advisor-caption{
  padding-left: 0px;
  }
  .advisor-image {
   width: 100%;
  }
}
/*
infinity
*/
.infinity{
  margin: auto;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  align-items: flex-end;
}
.infinity-image {
  width: 40%;
}
.infinity-caption-right  h1{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 160px;
}
.infinity-caption-right  h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 38px;
}
.infinity-caption p {
  font-size: 18px;
  line-height: 2;
  width: 510px;
  margin: 0px;
  margin-bottom: 35px;
  text-align: justify;
}
.infinity-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
infinity-SP
*/
@media screen and (max-width: 768px) {
  .infinity{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .infinity-caption-right h1{
  margin-top: 0px;
  margin-bottom: -50px;
  font-size: 85px;
  margin-left: 10px;
  text-align: center;
  }
  .infinity-caption-right h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 25px;
  text-align: center;
  }
  .infinity-caption p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  }
  .infinity-caption{
  padding-left: 0px;
  }
  .infinity-image {
   width: 100%;
  }
}

/* 
sitemap
*/
.site-map {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 180px;
  margin-top: 100px;
  width: 1200px;
  padding-top: 100px;
}
.site-map p {
  font-size: 17px;
  line-height: 3;
}
.site-map p:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.site-map h2 {
  font-size: 18px;
}
.site-map-content {
  display: flex;
  justify-content: center;
}
.site-map-item {
  width: 320px;
  margin-left: 60px;
}
/* 
sitemap-SP
*/
@media screen and (max-width: 768px) {
  .site-map {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 100px;
    width: 100%;
    padding-top: 0px;
  }
  .site-map h1 {
    margin-bottom: 40px;
  }
  .site-map-content {
    display: block;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
tochikatsuyou
*/
.tochikatsuyou{
  margin: auto;
  display: flex;
  justify-content: space-between;
  width: 1070px;
  align-items: flex-end;
}
.tochikatsuyou-image {
  margin-top: -110px;
  width: 45%;
}
.tochikatsuyou-caption-right h1{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 150px;
  text-align: right;
  line-height: 1.1;
}
.tochikatsuyou-caption h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 45px;
}
.tochikatsuyou-caption p {
  font-size: 18px;
  line-height: 2;
  width: 500px;
  text-align: justify;
}
.tochikatsuyou-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
tochikatsuyou-SP
*/
@media screen and (max-width: 768px) {
  .tochikatsuyou{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .tochikatsuyou-caption-right h1{
  margin-top: 0px;
  margin-bottom: -50px;
  font-size: 90px;
  text-align: left;
  }
  .tochikatsuyou-caption h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 30px;
  }
  .tochikatsuyou-caption p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .tochikatsuyou-caption{
  padding-left: 0px;
  }
  .tochikatsuyou-image {
   margin-top: 40px;
   width: 100%;
  }
}

/*
future
*/
.future {
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}

.future-image {
  width: 30%;
  height: 30%;
  margin-top: -55px;
}

.future-caption h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 51px;
}

.future-caption p {
  font-size: 16px;
  line-height: 2;
  width: 715px;
  text-align: justify;
}

.future-headline {
  margin: 0 0 20px;
  font-size: 30px;
}

.future-caption {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-gap: 20px;
  align-items: center;
}

.future-logo-image {
  grid-row: 1;
  grid-column: 2;
  align-self: flex-start;
  width: 260%;
  margin-left: -200px;
}

/*
future-SP
*/
@media screen and (max-width: 768px) {
  .future {
    display: block;
    width: 100%;
    padding: 0 20px 20px;
  }

  .future-caption h2 {
    margin-top: 0px;
    margin-bottom: 50px;
    font-size: 40px;
  }

  .future-caption p {
    width: 100%;
  }

  .future-caption {
    display: block;
    padding-left: 0px;
  }

  .future-image {
    width: 100%;
  }
  .future-logo-image {
    display: none;
  }
}

/*
three-power
*/
.three-power{
  margin: auto;
  display: flex;
  justify-content: left;
  width: 1200px;
}
.three-power.three-power-secondary{
  justify-content: right;
}
.three-power-icon {
  width: 10%;
  height: 10%;
  margin-right: 20px;
}
.three-power-caption h1{
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 40px;
}
.three-power-caption h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 28px;
}
.three-power-caption p {
  font-size: 16px;
  line-height: 2;
  width: 830px;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: justify;
}
.three-power-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
three-power-SP
*/
@media screen and (max-width: 768px) {
  .three-power{
  margin-top: -110px;
  margin-bottom: 120px;
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .three-power-caption h1{
  margin-top: 0px;
  font-size: 28px;
  }
  .three-power-caption h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  }
  .three-power-caption p {
  width: 100%;
  margin-bottom: 20px;
  }
  .three-power-icon {
    width: 30%;
    height: 30%;
    margin-right: 0px;
  }
  .three-power-caption{
  padding-left: 0px;
  }
  .three-power-image {
   width: 100%;
  }
}

/*
three-points-list
*/
.three-points-list{
  margin: auto;
  display: flex;
  justify-content: left;
  width: 1200px;
}
.three-points-list-icon {
  width: 15%;
  height: 15%;
  margin-right: 50px;
}
.three-points-list-caption h2{
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 28px;
  color: #E9BC83;
}

.three-points-list-caption .h2-color1 {
  color: #E9BC83;
}

.three-points-list-caption .h2-color2 {
  color: #92CCA2;
}

.three-points-list-caption .h2-color3 {
  color: #E9B4B2;
}

.three-points-list-caption p {
  font-size: 16px;
  line-height: 2;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: justify;
}
.three-points-list-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
three-points-list-SP
*/
@media screen and (max-width: 768px) {
  .three-points-list{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  margin-bottom: 100px;
  }
  .three-points-list-caption h2{
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 21px;
  }
  .three-points-list-caption p {
  width: 100%;
  margin-bottom: 20px;
  }
  .three-points-list-icon {
    width: 40%;
    height: 40%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .three-points-list-caption{
  padding-left: 0px;
  }
  .three-points-list-image {
   width: 100%;
  }
}

/*
expert-link
*/
.expert-link {
  margin: auto;
  margin-bottom: 200px;
  display: flex;
  justify-content: left;
  width: 1200px;
}

.expert-link.expert-link-secondary {
  justify-content: right;
}

.expert-link-icon {
  width: 30%;
  height: 30%;
  margin-left: 30px;
  margin-top: -90px;
}

.expert-link-caption {
  align-items: center;
  flex-wrap: wrap;
}

.expert-link-icon-image {
 width: 3%;
 margin-top: -7px;
}

.expert-link-caption h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  flex-grow: 1;
  text-align: right;
  overflow-wrap: break-word;
}

.expert-link-caption h2 {
  margin-top: 0;
  margin-bottom: -30px;
  padding: 8px 25px 8px 25px;
  font-size: 17px;
  background-color: #E9B4B2;
  color: #fff;
  width: fit-content;
}

.expert-link-caption .h2-color1 {
  background-color: #E9B4B2;
  color: #fff;
}

.expert-link-caption .h2-color2 {
  background-color: #B2D8E9;
  color: #fff;
}

.expert-link-caption .h2-color3 {
  background-color: #E0E18C;
  color: #fff;
}


.expert-link-caption hr {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.expert-link-caption p {
  font-size: 16px;
  line-height: 2;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: justify;
}

.expert-link-headline {
  margin: 0 0 20px;
  font-size: 30px;
}

/* expert-link-SP */
@media screen and (max-width: 768px) {
  .expert-link {
    display: block;
    width: 100%;
    padding: 0 20px 20px;
  }
  .expert-link-icon-image {
    width: 8%;
    margin-top: -7px;
  }

  .expert-link-caption h1 {
    margin-top: 10px;
    font-size: 25px;
    text-align: left;
  }

  .expert-link-caption h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .expert-link-caption p {
    width: 100%;
    margin-bottom: 20px;
  }

  .expert-link-icon {
    width: 80%;
    height: 80%;
    margin-right: 0;
  }

  .expert-link-caption {
    padding-left: 0;
  }

  .expert-link-image {
    width: 100%;
  }
  .expert-link-icon {
    margin-top: 0px;
  }
}

/*
sale-three-points
*/
.sale-three-points {
  margin: auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: left;
  width: 1200px;
}

.sale-three-points-icon {
  width: 50%;
  height: 50%;
  margin-left: 100px;
  margin-top: -50px;
}

.sale-three-points-caption {
  align-items: center;
  flex-wrap: wrap;
}

.sale-three-points-icon-image {
 width: 3%;
 margin-top: -7px;
}

.sale-three-points-caption h1 {
  margin-top: 0;
  margin-left: 45px;
  margin-bottom: 20px;
  font-size: 20px;
  flex-grow: 1;
  overflow-wrap: break-word;
}

.sale-three-points-caption h2 {
  margin-top: 0;
  margin-bottom: -30px;
  padding: 1px 10px 1px 10px;
  font-size: 20px;
  background-color: #E9B4B2;
  color: #fff;
  width: fit-content;
}

.sale-three-points-caption .h2-color1 {
  background-color: #E9B4B2;
  color: #fff;
}

.sale-three-points-caption .h2-color2 {
  background-color: #B2D8E9;
  color: #fff;
}

.sale-three-points-caption .h2-color3 {
  background-color: #E0E18C;
  color: #fff;
}


.sale-three-points-caption hr {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sale-three-points-caption p {
  font-size: 16px;
  line-height: 2;
  width: 566px;
  margin-top: 20px;
  margin-bottom: 100px;
  text-align: justify;
}

.sale-three-points-headline {
  margin: 0 0 20px;
  font-size: 30px;
}

/* expert-link-SP */
@media screen and (max-width: 768px) {
  .sale-three-points {
    display: block;
    width: 100%;
    padding: 0 20px 20px;
  }
  .sale-three-points-icon-image {
    width: 8%;
    margin-top: -7px;
  }

  .sale-three-points-caption h1 {
    margin-top: 10px;
    margin-left: 0px;
    font-size: 30px;
    text-align: left;
  }

  .sale-three-points-caption h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .sale-three-points-caption p {
    width: 100%;
    margin-bottom: 20px;
  }

  .sale-three-points-icon {
    width: 80%;
    height: 80%;
    margin-right: 0;
  }

  .sale-three-points-caption {
    padding-left: 0;
  }

  .sale-three-points-image {
    width: 100%;
  }
  .sale-three-points-icon {
    margin-top: 0px;
  }
}

/*
three-power-image
*/
.three-power-image{
  margin: auto;
  display: block;
  width: 1200px;
}
.three-power-image-image {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin-top: 90px;
}
.three-power-image-caption h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
}
.three-power-image-caption p {
  font-size: 19px;
  line-height: 1.8;
  width: 500px;
  margin-bottom: 10px;
  text-align: justify;
}
.three-power-image-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
.sale-three-points-p02-icon {
  display: flex;
  width: 1200px;
  margin-top: -120px;
  margin-bottom: 160px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
.sale-three-points-p02-icon img {
  width: 50%;
  margin-right: 50px;
}
/*
three-power-image-SP
*/
@media screen and (max-width: 768px) {
  .three-power-image{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .three-power-image-caption h2{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 25px;
  }
  .three-power-image-caption p {
    font-size: 16px;
    line-height: 1.8;
    width: 500px;
    margin-bottom: 10px;
    text-align: justify;
  }
  .sale-three-points-icon {
    margin-top: 10px;
    margin-left: 0px;
    width: 100%;
  }
  .three-power-image-caption p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .three-power-image-caption{
  padding-left: 0px;
  }
  .three-power-image-image {
   width: 100%;
   margin-top: 40px;
  }
  .sale-three-points-p02-icon {
    display: block;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 100px;
    padding: 0 20px 0 20px;
  }
  .sale-three-points-p02-icon img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}





/*
support_staff
*/
.support_staff{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.support_staff-image {
  width: 40%;
}
.support_staff-caption {
  margin-top: auto;
  margin-bottom: auto;
}
.support_staff-caption h1{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
}
.support_staff-caption p {
  font-size: 18px;
  line-height: 1.8;
  width: 400px;
  margin: 0px;
  margin-top: 20px;
  text-align: justify;
}
.support_staff-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
support_staff-SP
*/
@media screen and (max-width: 768px) {
  .support_staff{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .support_staff-caption h1{
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 30px;
  }
  .support_staff-caption p {
  font-size: 16px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  }
  .support_staff-caption{
  padding-left: 0px;
  }
  .support_staff-image {
   width: 100%;
  }
}



/*
glamping guide
*/
.glamping-guide{
  margin: auto;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.glamping-guide-image {
  width: 50%;
  border-left: 1px solid #000;
  padding-left: 20px;
}
.glamping-guide-caption {
 margin-top: auto;
 margin-bottom: auto;
}
.glamping-guide-caption h1{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 40px;
}
.glamping-guide-caption p {
  font-size: 23px;
  font-weight: bolder;
  line-height: 1.8;
  width: 400px;
  margin: 0px;
  text-align: center;
}
.glamping-guide-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
glamping-guide-SP
*/
@media screen and (max-width: 768px) {
  .glamping-guide{
  display: block;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  }
  .glamping-guide-caption h1{
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 30px;
  }
  .glamping-guide-caption p {
  font-size: 20px;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 60px;
  }
  .glamping-guide-caption{
  padding-left: 0px;
  }
  .glamping-guide-image {
   width: 100%;
   border-left: 0px;
  padding-left: 0px;
  }
}


/*
grafare-sale
*/
.grafare-sale_title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}
.grafare-sale_logo {
  width: 500px;
  margin-bottom: 10px;
}
.grafare-sale_01{
  height: 480px;
  text-align: center;
  margin-bottom: 300px;
}
.grafare-sale_01 h1{
  padding-top: 45px;
  padding-bottom: 30px;
  width: 310px;
  color: #003366;
  line-height: 1.6;
  margin-bottom: 5px;
  font-family: serif;
  font-size: 25px;
  width: 900px;
}

.grafare-sale ol li{
  background-color: #F7F8F8;
  width: 330px;
}
.grafare-sale ol li:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.grafare-sale{
  margin-top: 50px;
  margin-bottom: 280px;
}
.grafare-sale h2{
  padding-left: 30px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: bold;
  text-align: left;
}
.grafare-sale h3{
  color: #333;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 30px;
  margin-right: 30px;
  text-align-last: center;
  border: 0.5px solid #333;
 }
.grafare-sale  p{
  font-weight: lighter;
  padding-left: 30px;
  color: #333;
  text-align: left;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.grafare-sale ol{
  justify-content: space-between;
  display: flex;
  width: 1200px;
  margin: auto;
  margin-bottom: 0px;
  list-style: none;
}
.grafare-sale ol li:last-child{
  border-right: solid 0px #bbbbbb;
}
.grafare-sale img{
  max-width: 100%;
  margin-top: 0px;
}

/*
grafare-sale-SP
*/
@media screen and (max-width: 768px) {
  .grafare-sale_title {
    text-align: center;
    margin-bottom: 40px;
  }
  .grafare-sale_logo {
    width: 350px;
    margin-bottom: 10px;
  }
  .grafare-sale_01{
    height: 1500px;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-bottom: 600px;
  }
  .grafare-sale_01 h1{
    padding-top: 45px;
    padding-bottom: 30px;
    margin: auto;
    width: 310px;
    color: #003366;
    line-height: 1.6;
    margin-bottom: 5px;
    font-family: serif;
    font-size: 22px;
  }
  .grafare-sale{
    margin-top: 50px;
    margin-bottom: 200px;
  }
  .grafare-sale  p{
   padding-bottom: 20px;
  }
  .grafare-sale ol{
    display: block;
    width: 100%;
    list-style: none;
  }
  .grafare-sale ol li{
    margin-bottom: 4.5rem;
  }
  .grafare-sale h3 img{
    max-width: 60%;
    margin-bottom: 20px;
  }

}



/*
merit
*/
.merit{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.merit-image {
  width: 25%;
  height: 25%;
  margin-top: 40px;
}
.merit-caption {
  margin-left: 90px;
}
.merit-caption h1{
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 40px;
}
.merit-caption p {
  font-size: 16px;
  line-height: 1.8;
  width: 735px;
  margin: 0px;
  margin-top: 25px;
  text-align: justify;
}
.merit-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
merit-SP
*/
@media screen and (max-width: 768px) {
  .merit{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .merit-caption h1{
  margin-top: 50px;
  margin-bottom: 0px;
  font-size: 30px;
  }
  .merit-caption p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .merit-caption{
  padding-left: 0px;
  margin-top: 50px;
  margin-left: 0px;
  }
  .merit-image {
   display: block;
   width: 75%;
   margin-top: 0px;
   margin-left: auto;
   margin-right: auto;
  }
}

/*
expert
*/
.expert{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.expert-image {
  width: 20%;
  margin-left: 80px;
}
.expert-caption {
  margin-left: 90px;
}
.expert-caption h1{
  margin-top: 30px;
  margin-bottom: 0px;
  font-size: 40px;
}
.expert-caption p {
  font-size: 16px;
  line-height: 1.8;
  width: 550px;
  margin: 0px;
  margin-top: 25px;
  text-align: justify;
}
.expert-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
expert-SP
*/
@media screen and (max-width: 768px) {
  .expert{
  margin-top: -70px;
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .expert-caption h1{
  margin-top: 50px;
  margin-bottom: 0px;
  font-size: 26px;
  }
  .expert-caption p { 
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  }
  .expert-caption{
  padding-left: 0px;
  margin-top: 50px;
  margin-left: 0px;
  }
  .expert-image {
   display: block;
   width: 70%;
   margin-left: 0px;
   margin-left: auto;
   margin-right: auto;
  }
}

/*
tochikatsuyou-formlink
*/
.tochikatsuyou-formlink-headline{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  width: 100%;
  height: 100px;
  color: #fff;
  background-color: #646464;
  text-align: center;
  margin: 0px;
}
.tochikatsuyou-formlink{
  margin: auto;
  display: flex;
  width: 100%;
  height: 325px;
  background-color: #DCDCDC;
  justify-content: center;
}
.tochikatsuyou-formlink-container {
  width: 1200px;
  display: flex;
  align-items: center;
}

.tochikatsuyou-formlink-caption {
  width: 100%;
  margin: 0 auto;
}
.tochikatsuyou-formlink-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.tochikatsuyou-formlink-caption h2{
  margin: 0px;
  margin-bottom: -10px;
  font-size: 21px;
}
.tochikatsuyou-formlink-caption h3{
  margin: 0px;
  font-weight: bold;
  font-size: 70px;
}
.tochikatsuyou-formlink-caption h3 img {
  width: 6%;
  margin-right: -10px;
  margin-bottom: 17px;
}
.tochikatsuyou-formlink-caption p {
  font-size: 16px;
  line-height: 1.8;
  width: 500px;
  margin: 0px;
  margin-top: 25px;
  text-align: justify;
}
/*
tochikatsuyou-formlink-SP
*/
@media screen and (max-width: 768px) {
  .tochikatsuyou-formlink-headline{
    font-size: 20px;
  }
  .tochikatsuyou-formlink-container {
    width: 100%;
    display: block;
    align-items: center;
  }
  .tochikatsuyou-formlink{
   width: 100%;
   height: 300px;
  }
  .tochikatsuyou-formlink-caption{
    text-align: center;
    padding-left: 0px;
    margin-top: 50px;
    margin-left: 0px;
    }
  .tochikatsuyou-formlink-caption h2{
    font-size: 14px;
    margin-bottom: -50px;
   }
  .tochikatsuyou-formlink-caption h3{
   font-size: 45px;
   margin-top: 50px;
   margin-bottom: 0px;
  }
  .tochikatsuyou-formlink-caption h3 img{
    width: 6%;
    margin-right: -5px;
    margin-bottom: 14px;
  }
  .tochikatsuyou-formlink-caption p { 
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .tochikatsuyou-formlink-image {
   display: block;
   width: 70%;
   margin-top: 90px;
   margin-left: auto;
   margin-right: auto;
  }
}

/*
buy-formlink
*/
.buy-formlink-headline{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  width: 100%;
  height: 100px;
  background-color: #DCDCDC;
  text-align: center;
  margin: 0px;
}
.buy-formlink-headline span {
  font-size: 60px;
}
.buy-formlink{
  margin: auto;
  display: flex;
  width: 100%;
  height: 360px;
  background-color: #DCDCDC;
  justify-content: center;
}
.buy-formlink-container {
  width: 1200px;
  margin-top: -80px;
  display: flex;
  align-items: center;
}

.buy-formlink-caption {
  width: 100%;
  margin: 0 auto;
}
.buy-formlink-image-button {
  margin-top: 50px;
  width: 85%;
  height: auto;
  object-fit: contain;
}
.buy-formlink-image {
  width: 45%;
  height: auto;
  object-fit: contain;
}
.buy-formlink-caption h2{
  margin: 0px;
  margin-bottom: -10px;
  font-size: 20px;
  line-height: 2;
}
.buy-formlink-caption h3 img {
  width: 7%;
  margin-right: -10px;
  margin-top: -10px;
}
.buy-formlink-caption p {
  font-size: 16px;
  line-height: 1.8;
  width: 500px;
  margin: 0px;
  margin-top: 25px;
  text-align: justify;
}
/*
buy-formlink-SP
*/
@media screen and (max-width: 768px) {
  .buy-formlink-headline{
    display: block;
    font-size: 25px;
    line-height: 1.2;
    padding: 20px 20px 0px 20px;
  }
  .buy-formlink-headline span {
    font-size: 40px;
  }
  .buy-formlink-container {
    width: 100%;
    display: block;
    align-items: center;
  }
  .buy-formlink{
   width: 100%;
   height: 500px;
  }
  .buy-formlink-caption{
    text-align: center;
    padding-left: 0px;
    margin-top: 50px;
    margin-left: 0px;
    }
  .buy-formlink-caption h2{
    font-size: 16px;
    padding: 30px 20px 30px 20px;
    margin-bottom: -50px;
   }
  .buy-formlink-caption h3 img{
    width: 5%;
    margin-right: -5px;
  }
  .buy-formlink-caption p { 
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .buy-formlink-image {
   display: block;
   width: 90%;
   margin-top: 50px;
   margin-left: auto;
   margin-right: auto;
  }
}

/*
satei-formlink
*/
.satei-formlink-headline{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  width: 100%;
  height: 100px;
  color: #fff;
  background-color: #646464;
  text-align: center;
  margin: 0px;
  margin-top: -71px;
}
.satei-formlink{
  margin: auto;
  display: flex;
  width: 100%;
  height: 325px;
  background: linear-gradient(to right, #B4B4B4 0%, #B4B4B4 50%, #C8C8C8 50%, #C8C8C8 100%);
  justify-content: center;
}
.satei-formlink-container {
  width: 1200px;
  display: flex;
  align-items: center;
}

.satei-formlink-caption {
  width: 100%;
  margin: 0 auto;
  margin-left: 150px;
}
.satei-formlink-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.satei-formlink-caption h2{
  margin: 0px;
  margin-bottom: -10px;
  font-size: 21px;
}
.satei-formlink-caption h3{
  margin: 0px;
  font-weight: bold;
  font-size: 70px;
}
.satei-formlink-caption h3 img {
  width: 7%;
  margin-right: -10px;
  margin-top: -10px;
  margin-bottom: 19px;
}
.satei-formlink-caption p {
  font-size: 16px;
  line-height: 1.8;
  width: 500px;
  margin: 0px;
  margin-top: 25px;
  text-align: justify;
}
/*
satei-formlink-SP
*/
@media screen and (max-width: 768px) {
  .satei-formlink-headline{
    font-size: 20px;
  }
  .satei-formlink-container {
    width: 100%;
    display: block;
    align-items: center;
  }
  .satei-formlink{
   width: 100%;
   height: 290px;
   background: linear-gradient(to bottom, #B4B4B4 0%, #B4B4B4 50%, #C8C8C8 50%, #C8C8C8 100%);
  }
  .satei-formlink-caption{
    text-align: center;
    padding-left: 0px;
    margin-top: 50px;
    margin-left: 0px;
    }
  .satei-formlink-caption h2{
    font-size: 16px;
    margin-bottom: -50px;
   }
  .satei-formlink-caption h3{
   font-size: 45px;
   margin-top: 50px;
   margin-bottom: 0px;
  }
  .satei-formlink-caption h3 img{
    width: 7%;
    margin-right: -5px;
    margin-bottom: 8px;

  }
  .satei-formlink-caption p { 
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .satei-formlink-image {
   display: block;
   width: 70%;
   margin-top: 40px;
   margin-left: auto;
   margin-right: auto;
  }
}

/*
connect
*/
.connect{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.connect-image {
  width: 40%;
}
.connect-caption{
  padding-left: 90px;
}
.connect-caption p {
  font-size: 16px;
  line-height: 2;
  width: 700px;
  margin: 0px;
  text-align: center;
}

.connect-caption p  span{
  font-weight: bolder;
}



.connect-headline{
  margin: 0 0 20px;
  font-size: 30px;
  text-align: center;
}
/*
connect-SP
*/
@media screen and (max-width: 768px) {
  .connect{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  } 
  .connect-caption{
   padding-left: 0px;
  }
  .connect-caption p {
   width: 100%;
   text-align: center;
 }

}

/*
professional
*/
.professional{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.professional-image {
  width: 40%;
}
.professional-caption{
  padding-left: 90px;
}
.professional-caption p {
  font-size: 16px;
  line-height: 2;
  width: 630px;
  margin: 0px;
  text-align: center;
}
.professional-subheadline {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 25px;
  text-align: center;
}
.professional-headline{
  margin: 0 0 20px;
  font-size: 30px;
  text-align: center;
}
.professional-headline span {
  color: #E9BC83;
}
/*
professional-SP
*/
@media screen and (max-width: 768px) {
  .professional{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  } 
  .professional-caption{
  padding-left: 0px;
  }
  .professional-caption p {
  width: 100%;
  text-align: center;
 }
 .professional-subheadline {
  font-size: 23px;
}

}

/*
three-points
*/
.three-points{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.three-points-image {
  width: 40%;
}
.three-points-caption p {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  width: 625px;
  margin: 0px;
}
.three-points-caption p span {
  font-weight: bolder;
}
.three-points-subheadline {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 25px;
}
.three-points-headline{
  font-size: 35px;
  text-align: center;
}
.three-points-headline span {
  font-size: 115px;
}
/*
three-points-SP
*/
@media screen and (max-width: 768px) {
  .three-points{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  } 
  .three-points-caption{
  padding-left: 0px;
  }
  .three-points-caption p {
  width: 100%;
 }
 .three-points-subheadline {
  font-size: 23px;
 }
 .three-points-headline{
  font-size: 24px;
  text-align: center;
}
.three-points-headline span {
  font-size: 40px;
}

}

/*
katsuyou-graph
*/
.katsuyou-graph p {
  width: 900px;
  line-height: 2.3;
  font-size: 22px;
  margin-top: 120px;
  margin-left: auto;
  margin-right: auto;
}

#my-table {
  margin-top: 100px;
  width: 1200px;
  height: 1500px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}

#my-table td {
  border: 0.5px solid black;
  padding: 10px;
}

#my-table .first-column {
  background-color: #9ACBDC;
  color: #fff;
  font-weight: bold;
}

#my-table tr:first-child td {
  font-weight: bold;
}
/*
katsuyou-graph-SP
*/
@media screen and (max-width: 768px) {
  .katsuyou-graph p {
    font-size: 18px;
    line-height: 2;
    width: 100%;
    padding: 20px 20px;
    text-align: justify;
  }

  #my-table {
    width: 100%;
    overflow-x: scroll;
    margin-left: auto;
    margin-right: auto;
  }

  #my-table td {
    white-space: nowrap;
  }
}

/* 
privacy
*/
.privacy {
  padding-top: 100px;
  max-width: 1200px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}
.privacy h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 70px;
}
.privacy h2 {
  font-size: 20px;
  color: #fff;
  background-color: #92CCA2;
  padding: 20px;
  padding-left: 45px;
}
.privacy p {
  line-height: 2.5;
  padding-left: 43px;
}
/* 
privacy-SP
*/
@media screen and (max-width: 768px) {
.privacy {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 70px;
  margin-left: 0px;
  margin-right: 0px;
}
.privacy h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 40px;
}
.privacy h2 {
  padding-left: 35px;
}
.privacy p {
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 18px;
}
}



/*
Promise
*/
.promise-grid__item {
  padding: 0px;
}
.promise1 {
  margin-top: 50px;
  text-align: center;
  color: #fff;
  background-color: #E9B4B2;
  border-radius: 30px;
  height: 325px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.promise2 {
  margin-top: 50px;
  text-align: center;
  color: #fff;
  background-color: #9ACBDC;
  border-radius: 30px;
  height: 325px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.promise3 {
  margin-top: 50px;
  text-align: center;
  color: #fff;
  background-color: #E0E18C;
  border-radius: 30px;
  height: 325px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.promise4 {
  margin-top: 50px;
  text-align: center;
  color: #fff;
  background-color: #CFB4D2;
  border-radius: 30px;
  height: 325px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.promise_title_image {
  width: 5%;
  margin-right: 0.5%;
}
.promise1 hr,.promise2 hr,.promise3 hr,.promise4 hr {
  margin-right: 0;
  border: none;
  border-top: 1px solid #fff;
  width: 80%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.promise-img {
  margin:  0 0 20px;
}
.promise-img img {
  width: 50%;
}
.promise-imgdescription {
  font-size: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.promise-headline {
  font-weight: bold;
  font-size: 23px;
  margin: 0 0 20px;
  text-align: center;
}
.promise-description {
  width: 196px;
  font-size: 16px;
  line-height: 2;
  padding-top: 10px;
  text-align: justify;
}
hr, .promise-description {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .promise_title_image {
  width: 15%;
}
}
/*
voice
*/
.voice {
  text-align: center;
}
.voice-img {
  margin:  0 0 20px;
}
.voice-img img {
  width: 50%;
}
.voice-imgdescription {
  font-size: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.voice-headline {
  font-weight: bold;
  font-size: 21px;
  margin: 0 0 20px;
  text-align: left;
}
.voice-description {
  font-size: 16px;
  line-height: 2;
  padding-top: 10px;
  margin: 0;
  text-align: justify;
}
.voice hr {
  margin-right: 0;
}
/*
voice SP
*/



/* 
company-page
*/
.headline {
  max-width: 1200px;
  text-align: center;
  margin-top: 125px;
  margin-bottom: 125px;
  margin-left: auto;
  margin-right: auto;
}

.headline img {
  width: 70%;
}

.company-page {
  max-width: 1200px;
  margin-top: 130px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.company-page-caption {
  width: 50%;
}

.company-page-photo {
  width: 50%;
  text-align: center;
}


.company-page-photo h2 {
  font-size: 18px;
  margin-top: 3%;
  margin-bottom: 100px;
  text-align: center;
}

.company-page-store-photo {
  width: 100%;
  margin-top: -60px;
  margin-bottom: 0;
}

.company-page-map-photo {
  width: 100%;
}

.Table {
  width: 100%;
  height: 780px;
  border-top: solid 0.5px #333;
  border-bottom: solid 0.5px #333;
  border-collapse: collapse;
  font-size: 16px;
}

.Table-Body-Row {
  border-top: solid 0.5px #333;
  border-bottom: solid 0.5px #333;
}

.Table-Body-Row-Cell {
  padding: 0.3em 0.1em;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}

.table-overview tr th {
  width: 16rem;
  padding: 0.8rem;
  vertical-align: top;
}

.table-overview tr td {
  width: calc(100% - 16rem);
  padding: 0.8rem 1.6rem;
  vertical-align: top;
}
/* 
company-page-SP
*/
@media screen and (max-width: 768px) {
  .headline {
    width: 92%;
    margin-top: 70px;
    margin-bottom: 20px;
  }
  .headline img {
    width: 100%;
  }
  .company-page {
    width: 100%;
    margin: auto auto;
    display: block;
    justify-content: space-around;
  }
  .company-page-photo  iframe{
    width: 100%;
  }
  .company-page-photo h2 {
    margin-left: 0px;
  }
  .company-page-logo {
    width: 75%;
    margin-top: 100px;
    margin-left: 50px;
  }
  .company-page-store-photo {
    margin-bottom: 50px;
    margin-left: 0px;
    width: 100%;
  }
  .company-page-photo {
    width: 100%;
  }
  .company-page-map-photo {
    width: 100%;
  }
  .Table {
    width: 100%;
    margin-bottom: 100px;
    }
    .company-page-caption {
      width: 100%;
      padding: 0 20px 0 20px;
    }
  }





/*
OurBusiness
*/
.ourbusiness {
  margin-top: 135px;
  text-align: center;
}
.ourbusiness-img {
  margin:  0 0 20px;
}
.ourbusiness-img img {
  width: 100%;
}
.ourbusiness-imgdescription {
  font-size: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.ourbusiness-headline1 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: left;
  color: #92CCA2;
}
.ourbusiness-headline2 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: left;
  color: #E9BC83;
}
.ourbusiness-headline3 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: left;
  color: #E0E18C;
}
.ourbusiness-headline4 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: left;
  color: #E9B4B2;
}
.ourbusiness-headline5 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: left;
  color: #CFB4D2;
}
.ourbusiness-headline6 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: left;
  color: #9ACBDC;
}
.ourbusiness-description {
  font-size: 16px;
  line-height: 2;
  padding-top: 10px;
  margin: 0;
  text-align: justify;
}
/*
OurBusiness SP
*/






/*==================================================
スライダーのためのcss
===================================*/


/*画像の横幅を100%にしてレスポンシブ化*/
img{
  width: 100%;
  height: auto;
  vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/

.gallery{
  margin:0 0 5px 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
  z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
  cursor: pointer;
  outline: none;
  background:#333;
  width:15%!important;
}


.choice-btn li img{
  opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
  opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
}

/*========= レイアウトのためのCSS ===============*/

/*エリア全体を中央寄せ*/
.gallery_wrapper{
  width:900px;
  max-width:900px;
  margin:0 auto;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .gallery_wrapper{
    width:100%;
  }
}







/*
rent
*/
.rent {
  margin-top: 135px;
  text-align: center;
}
.rent-img {
  margin:  0 0 20px;
}
.rent-img img {
  width: 100%;
}
.rent-imgdescription {
  font-size: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.rent-headline1 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
  color: #92CCA2;
}
.rent-headline2 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
  color: #E9BC83;
}
.rent-headline3 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
  color: #E0E18C;
}
.rent-headline4 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
  color: #E9B4B2;
}
.rent-headline5 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
  color: #CFB4D2;
}
.rent-headline6 {
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 20px;
  text-align: center;
  color: #9ACBDC;
}
.rent-description {
  font-size: 16px;
  line-height: 2;
  padding-top: 10px;
  margin: 0;
  text-align: justify;
}
/*
rent SP
*/



/*
flow
*/
.flow {
  width: 1200px;
  margin: auto;
  margin-bottom: 120px;
  text-align: center;
}
.flow-headline {
  tab-size: 37px;
  color: #9ACBDC;
}
.flow-img-pc {
  margin: 30px 0px;
  width: 1200px;
}
.flow-img-sp {
  display: none;
}
.flow-link {
  float: right;
  font-weight: bold;
  font-size: 18px;
}
.land-link {
  display: flex;
  border: 12px solid #F9F2E8;
  background-color: #FCFAF6;
  padding: 25px;
  justify-content: space-between;
}
.land-link-headline {
  font-size: 30px;
  text-align: center;
  color: #E9BC83;
}

.land-link-img-pc {
  display: block;
}
.land-link-img-sp {
  display: none;
}

.linkd img {
  width: 100%;
}
.linkd  p {
  margin-top: 0px;
  font-size: 16px;
  width: 235px;
}
.land-link-img img {
  width: 100%;
  padding-left: 25px;
}
.sale-link {
  display: flex;
  border: 12px solid #EAE2EC;
  background-color: #F6F3F7;
  padding: 30px;
  justify-content: space-between;
}
.sale-link-headline {
  font-size: 30px;
  text-align: center;
  color: #CFB4D2;
}
.sale-link-img-pc {
  display: block;
}
.sale-link-img-sp {
  display: none;
}
.saled img {
  width: 100%;
  margin-top: 8px;
  margin-bottom: -40px;
}
.saled  p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 16px;
  width: 235px;
}
.sale-link-img img {
  width: 100%;
  padding-left: 25px;
}
/*
flow SP
*/
@media screen and (max-width: 768px) {
 .flow {
  width: 100%;
 }
  .flow-img-pc {
    display: none;
  }
  .flow-img-sp {
    display: block;
    margin: auto;
    width: 90%;
  }
  .flow-link {
    font-size: 23px;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 20px;
    float: left;
  }
  .land-link-headline {
    margin-top: 100px;
  }
  .sale-link-headline {
    margin-top: 100px;
  }
  .land-link-img  img {
    padding-left: 0px;
  }
  .land-link-img-pc {
    display: none;
  }
  .land-link-img-sp {
    display: block;
    margin-top: 40px;
  }
  .linkd img {
    display: none;
  }
  .land-link {
    display: block;
  }
  .linkd  p {
    width: 265px;
    text-align: justify;
  }
  .sale-link-img  img {
    padding-left: 0px;
  }
  .sale-link-img-pc {
    display: none;
  }
  .sale-link-img-sp {
    display: block;
    margin-top: 40px;
  }
  .saled img {
    display: none;
  }
  .sale-link {
    display: block;
  }
  .saled  p {
    width: 265px;
    text-align: justify;
  }
}

/*
GRAFARE
*/
.grafare{
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.grafare_title {
  text-align: center;
  margin-bottom: 80px;
}
.grafare-headline{
  margin: 0 0 20px;
  font-size: 20px;
}
.grafare×sharepark_logo {
  width: 600px;
  margin-bottom: 2%;
}
.grafare-caption{
  padding-left: 15px;
}
.grafare-description {
  font-size: 16px;
  width: 450px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 85px;
}
.grafare-image {
  margin-top: -80px;
  width: 70%;
}
.grafare-link {
  font-weight: bold;
  font-size: 18px;
}
/*
GRAFARE SP
*/
@media screen and (max-width: 768px) {
  .grafare{
    display: block;
    width: 100%;
  }
  .grafare-headline {
    width: 300px;
    margin: auto;
  }
  .grafare_title {
    text-align: center;
    margin-bottom: 40px;
  }
  .grafare×sharepark_logo {
    width: 85%;
    margin-bottom: 5%;
  }
  .grafare-description {
    width: 100%;
    padding: 0 20px 0 20px;
  }
  .grafare-image {
    margin-top: 0px;
    width: 100%;
  }
  .grafare-link {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: auto;
  }
}


/*
GLAMPING
*/

.glamping {
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
.glamping_banner_pc {
  display: block;
}
.glamping_banner_sp {
  display: none;
}
.glamping_banner_pc img {
  width: 100%;
}
.glamping_banner_pc img:hover {
  opacity: 0.8;
  transition: 0.5s;
}
/*
GLAMPING SP
*/
@media screen and (max-width: 768px) {
  .glamping {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .glamping_banner_pc {
    display: none;
  }
  .glamping_banner_sp {
    display: block;
  }
  .glamping_banner_sp img {
    width: 100%;
  }
  .glamping_banner_sp img:hover {
    opacity: 0.8;
    transition: 0.5s;
  }

}





/* 
contact
*/
#main_content{
	text-align: left;
}

#main_content h1 {
	text-align: center;
}

.assess-image {
  width: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  margin-bottom: 100px;
}

.container-form{
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
  display: block;
}
.container-form h1 {
  font-size: 25px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 70px;
} 
.container-form h2 {
  color: #92CCA2;
  padding-bottom: 5px;
  border-bottom: 1px solid #92CCA2;
  max-width: 1200px;
  font-size: 18px;
  margin-top: 90px;
  margin-bottom: 50px;
} 

.container-form h3 {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  padding-bottom: 25px;
} 

/* 
パークホーム
終活予約ページ用
*/
.container-form-shukatsu{
  font-family: serif;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
  display: block;
}
.container-form-shukatsu h1 {
  font-size: 25px;
  text-align: center;
  margin-top: 40px;
  background-color: #e2e2e2;
  padding-top: 20px;
  padding-bottom: 20px;
} 
.container-form-shukatsu h2 {
  color: #ae7cd2;
  padding-bottom: 5px;
  border-bottom: 1px solid #ae7cd2;
  max-width: 1200px;
  font-size: 18px;
  margin-top: 80px;
  margin-bottom: 50px;
} 

.container-form-shukatsu h3 {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
} 

@media screen and (max-width:767px){
	.container-form{
		padding-left: 1rem;
		padding-right: 1rem;
		box-sizing: border-box;
	}
  .container-form h1 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 40px;
  }
  .assess-image {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    margin-bottom: 50px;
  }


  .container-form-shukatsu{
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }
  .container-form-shukatsu h1 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 40px;
  }
  .assess-image {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}


  /*- heading -*/
  /*ページ大見出し*/
.page_heading{
	font-size: 2em;
	line-height: 1.4;
	font-weight: bold;
	color: #fff;
	background: #1e2088;
	background: linear-gradient(to bottom, rgba(30,32,136,1) 0%,rgba(25,28,183,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e2088', endColorstr='#191cb7',GradientType=0 );
	padding: 18px 20px 16px;
	margin: 0 0 30px;
	box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
}

.page_heading > span{
	font-size: 50%;
	color: #b1e2ef;
	display: block;
	text-align: right;
	letter-spacing: 0.16em;
	margin: -2.2em 0 0.7em;
}

@media screen and (max-width:767px){
	.page_heading{
		font-size: 1.4em;
	}
}
.margin_b2{margin-bottom:2rem;}
.lh18{line-height: 1.8;}
  /*- form -*/
.form{
	line-height: 2;
	font-size: 16px;
}

.form_table{
	width: 100%;
	box-sizing: border-box;
}


.form_table th{
	width: 25%;
	text-align: left;
	vertical-align: top;
	font-weight: bold;
	padding: 12px;
	border-bottom: 1px solid #ddd;
	overflow: hidden;
	box-sizing: border-box;
}

.form_table td{
	width: 70%;
	padding: 12px;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
}


  /*入力パーツ*/
.form .textbox{
	display: inline-block;
	font-size: 100%;
	font-family:Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	color: #333;
	line-height: inherit;
	background: #fff;
	padding: 3px;
	margin: 1px;
	border: 1px solid #aaa;
	max-width: 100%;
	box-sizing: border-box;
}

.form textarea.textbox{
	display: block;
}

.form select.textbox{
	cursor: pointer;
}

.form label{
	cursor: pointer;
	display: inline-block;
	margin-right: 2em;
	min-width: 25%;
}

.form input[type="radio"], .form input[type="checkbox"] {
	margin: 0 5px 0 0;
}
.form_item_label{
  display: block;
  margin-top: 0rem;
}

.form_item_label::before{
  content: "▼";
}

  /*入力必須*/
.form .must{
	display: block;
	background: #92CCA2;
	padding: 5px;
  margin-top: 5px;
	font-size: 10px;
	line-height: 10px;
	color: #fff;
	float: right;
	border-radius: 5px;
}

.form .must-shukatsu{
	display: block;
	background: #ae7cd2;
	padding: 5px;
  margin-top: 5px;
	font-size: 10px;
	line-height: 10px;
	color: #fff;
	float: right;
	border-radius: 5px;
}

.form .annotation{
	font-size: 11px;
  color: #ccc;
}

  /*個人情報注意書き*/
.readme1{
	margin-right: 5px;
	margin-left: 5px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.readme1_heading{
	font-size: 14px;
}

.readme1 textarea.textbox{
	width: 100%;
	height: 250px;
	color: #333;
	font-size: 13px;
}

  /*個人情報同意チェック*/
.readme2{
	text-align: center;
	padding: 10px 10px 30px 10px;
	background-color: #efefef;
	border: 1px solid #ccc;
}

  /*送信エリア*/
#submit_box{
	text-align: center;
	padding: 1rem 0 6rem;
}

#submit_box button{
	font-size: 20px;
	line-height: 1.8;
	padding: 10px 30px;
	margin: 0 1rem;
	cursor: pointer;
}

@media screen and (max-width:767px){
	.form_table th{
		display: block;
		width: 100%;
		border-bottom: none;
		background: #efefef;
		padding: 0.4em 0.5em 0.2em;
	}

	.form_table td{
		display: block;
		width: 100%;
		margin-bottom: 2rem;
	}

	  /*入力パーツ*/
	.form .textbox{
		width: 100%!important;
	}
	
	.form_item_label{
		display: block;
		margin-top: 0.5rem;
	}
	
	.form_item_label::before{
		content: "▼";
	}
	
	  /*送信エリア*/
	#submit_box button{
		display: block;
		width: 70%;
		margin: 0 auto 1.5rem;
	}
}



/* 
footer
*/
footer {
    color: #fff;
    background: #92CCA2;
    margin: 0;
   }
   .footer_h3 {
     font-size: 27px;
     margin: auto;
     padding-top: 100px;
     max-width: 1200px;
   }
   .footer_flex {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     margin-left: auto;
     margin-right: auto;
     padding-bottom: 120px;
     max-width: 1200px;
   }
   .footer_1 {
     margin-top: 10px;
   }
   .footer_1 p {
     font-size: 16px;
     line-height: 2;
     color: #fff;
   }
   .footer_1 p:hover {
     opacity: 0.5;
     transition: 0.5s;
   }
   .company {
     width: 300px;
   }

   .company h2 {
    font-size: 25px;
   }
   .company p {
    font-size: 17px;
     line-height: 2;
     color: #fff;
     transition: 0.5s;
   }

   .company img {
    width: 70%;
    margin-bottom: 15%;
   }
  
   .copyright {
     text-align: center;
     padding-bottom: 20px;
   }
  

   .parkhome-btn-footer img {
    width: 100%;
   }

   .parkhome-btn-footer:hover {
    opacity: 0.8;
    transition: 0.5s;
  }
  
  /* 
  footer-SP
  */
  @media screen and (max-width: 768px) {
  .footer_h3 {
    font-size: 27px;
    margin: auto;
    padding-top: 100px;
    width: 300px;
  }
  .footer_flex {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    width: 300px;
  }
  .footer_1 p {
    font-size: 16px;
    line-height: 3;
  }
  .copyright {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 20px;
  }
  .company img {
    width: 70%;
    margin-top: 15%;
  }

  .parkhome-btn-footer img {
    width: 100%;
   }
  }