.p-map__main {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 56px;
}
@media (max-width: 834px) {
  .p-map__main {
    border-radius: 32px;
  }
}
.p-map__main iframe {
  width: 100%;
}
@media (max-width: 834px) {
  .p-map__main iframe {
    height: 87vw;
  }
}
.p-map__button {
  position: relative;
  z-index: 1;
  margin-top: -28px;
}
.p-map__button .c-button {
  margin: 0 auto;
}
.p-map__button .c-button:where(body[data-theme-color=blue] *) {
  --button-color: var(--color-sub01);
}
.p-map__button .c-button:where(body[data-theme-color=pink] *) {
  --button-color: var(--color-sub01);
}
.p-map__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-map__list {
    flex-direction: column;
    gap: 32px;
  }
}
.p-map__item {
  width: 32%;
  margin-right: 2%;
}
@media (max-width: 768px) {
  .p-map__item {
    width: 100%;
    margin-right: 0;
  }
}
.p-map__item:nth-of-type(3n) {
  margin-right: 0;
}
.p-map__img {
  overflow: hidden;
  border-radius: 16px;
}
.p-map__text {
  margin-top: 12px;
}
.p-map__item-heading {
  margin-bottom: 0.15em;
  font-size: 1.3em;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-info__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .p-info__list {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 834px) {
  .p-info__list {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .p-info__list {
    flex-direction: column;
  }
}
.p-info__item {
  width: 48%;
  overflow: hidden;
  border-color: var(--border-color);
  border-style: solid;
  border-width: 4px;
  border-radius: 40px;
}
@media (max-width: 1024px) {
  .p-info__item {
    width: 100%;
    border-radius: 24px;
  }
}
@media (max-width: 834px) {
  .p-info__item {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .p-info__item {
    width: 100%;
  }
}
.p-info__item--main {
  --border-color: var(--color-main02);
  --thumb-color: rgba(var(--color-main02-rgb), 16%);
  --icon-color: var(--color-main01);
}
.p-info__item--sub {
  --border-color: var(--color-sub02);
  --thumb-color: rgba(var(--color-sub02-rgb), 16%);
  --icon-color: var(--color-sub01);
}
.p-info__thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 32px;
}
@media (max-width: 834px) {
  .p-info__thumb {
    padding: 32px 0 24px;
  }
}
.p-info__thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: repeating-linear-gradient(90deg, var(--thumb-color), var(--thumb-color) 4px, rgba(255, 255, 255, 0) 4px, rgba(255, 255, 255, 0) 8px);
}
.p-info__icon {
  position: relative;
  width: 124px;
  height: 124px;
  background-color: var(--icon-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64% auto;
  border-radius: 50%;
}
@media (max-width: 834px) {
  .p-info__icon {
    width: 100px;
    height: 100px;
  }
}
.p-info__text {
  padding: 16px 32px 56px;
}
@media (max-width: 834px) {
  .p-info__text {
    padding: 10px 20px 30px;
  }
}
.p-info__title {
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media (max-width: 834px) {
  .p-info__title {
    font-size: 1.8rem;
  }
}
.p-info__para {
  margin-top: 12px;
}
@media (max-width: 834px) {
  .p-info__para {
    margin-top: 10px;
  }
}

.p-path__list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-path__list {
    flex-direction: column;
  }
}
.p-path__item {
  position: relative;
  width: 31.7%;
  margin-right: 2%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-path__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 56px;
  }
}
.p-path__item:nth-of-type(3n) {
  margin-right: 0;
}
.p-path__item::after {
  position: absolute;
  top: -28px;
  left: -20px;
  width: 56px;
  height: 56px;
  font-size: 2.6rem;
  line-height: 56px;
  color: var(--color-white);
  text-align: center;
  content: attr(data-num);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .p-path__item::after {
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    line-height: 48px;
  }
}
@media (max-width: 834px) {
  .p-path__item::after {
    top: -16px;
    left: -16px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    line-height: 40px;
  }
}
.p-path__item:nth-of-type(odd)::after {
  background-color: var(--color-main02);
}
.p-path__item:nth-of-type(even)::after {
  background-color: var(--color-sub02);
}
.p-path__img {
  overflow: hidden;
  border-radius: 16px;
}
.p-path__text {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .p-path__text {
    font-size: 1.6rem;
  }
}




.form_info{
    width: min(90%,700px);
    margin: auto;
}


#c_dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

#c_dl dt {
    background-color: #dedede;
    text-align: center;
    padding: 20px;
    width: 250px
}

#c_dl dd {
    width: calc(100% - 250px);
    border-bottom: 1px solid #dedede;
    padding: 20px;
    box-sizing: border-box
}

@media screen and (max-width:768px) {
    #c_dl dt {
        width: 100%
    }

    #c_dl dt br {
        display: none
    }

    #c_dl dd {
        width: 100%
    }
}

button,
input,
optgroup,
select,
textarea {
    border-radius: 5px;
    border: 1px solid #ccc
}

#c_dl .txt {
    width: 80%
}

#c_dl dt span {
    background-color: #8bcdd8;
    border-radius: 10px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 16px;
    display: block;
    width: 100px;
    margin: 0 auto auto
}

.c_btn {
    text-align: center
}

.c_btn input {
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(#fff, #eee);
    font-size: 16px;
    border: 1px solid#ccc;
    margin-top: 32px
}

.fm-modoru {
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(#fff, #eee);
    font-size: 16px;
    border: 1px solid#ccc;
    margin-top: 32px
}

.txt2 {
    width: 50px !important
}

.lead{
    text-align: center;
}

@media screen and  (max-width:768px){
  .lead{
    text-align: left;
  }
}
.att{
    color: #f00;
    font-size: 1.2em;
}

input[type="text"],
textarea,
input[type="email"]{
    width: 100%;
    padding: 0.1em 0.3em;
}
textarea{
    height: 100px;
}

select{
    padding: 0.1em 1em;
}

.lead > strong{
    font-size: 1.1em;
    display: block;
    border-bottom: 1px solid #719F25;
    
}@media only screen and (max-width: 768px) {		
	.sp_none{	
		display: none !important;
	}	
}		
		
@media only screen and (min-width: 769px) {		
	.pc_none{	
		display: none !important;
	}	
}	