@charset "utf-8";

/* CSS Document */


/***********
pageHeading
************/

.pageHeading {
  height: 320px;
  margin: 110px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url(../../img/pagevisual.png) no-repeat center top / cover ;
  position: relative;
  overflow: hidden;
}
.pageHeading-subTitle {
  font-size: 154%;
  font-weight: 600;
  font-feature-settings: "palt";
  font-family: '游ゴシック体', YuGothic,  '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1.3;
  position: relative;
  color: #fff;
  z-index: 9;
  text-align: center;
  padding-bottom: 0.5em;
}
.pageHeading-title {
  font-size: 270%;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic,  '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1.3;
  position: relative;
  color: #fff;
  z-index: 9;
  text-align: center;
}


@media screen and (max-width:1024px) {

  .pageHeading {
    margin: 0 auto;
    height: 26vmin;
    min-height: 120px;
    max-height: 200px;
  }
  .pageHeading-subTitle {
    font-size: 124%;
  }
  .pageHeading-title {
    font-size: 170%;
    padding: 0 3%;
  }

}

@media screen and (max-width:834px) {
  .pageHeading-subTitle {
    font-size: 85%;
  }
  .pageHeading-title {
    font-size: 147%;
  }
}


/***********
breadcrumb
************/

.breadcrumb{
  padding-top: 25px;
  font-feature-settings: "palt";
}
.breadcrumb-lists{
  display: flex;
}
.breadcrumb-lists li{
}
.breadcrumb-lists li:last-child{
  max-width: 15em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translate(-4px , -8px);
  margin: 0 14px 0 6px;
}
.breadcrumb-lists li a{
  display: inline-block;
  color: #063b7c;
  text-decoration: none;
  max-width: 15em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumb-lists li a:hover{
  text-decoration: underline;
}

@media screen and (max-width:834px) {

  .breadcrumb{
    padding: 12px 0 12px 0;
    font-size: 70%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb-lists{
    display: flex;
    white-space: nowrap;
    padding-left: 5%;
  }
  .breadcrumb-lists li:last-child{
    padding-right: 20px;
  }
  .breadcrumb-lists li i{
    margin-right: 0.2em;
  }
  .breadcrumb-lists li:not(:last-child)::after{
    margin: 0 8px 0 2px;
    transform: rotate(45deg) translate(-2px , -5px) scale(0.8);
  }

}

/***********
indexList
************/

.indexList {
}
.indexList li {
  margin-bottom: 30px;
}
.indexList a {
  display: flex;
  align-items: center;
  border: 2px solid #6e81a5;
  border-radius: 10px;
  overflow: hidden;
  color: #000;
  text-decoration: none;
  position: relative;
}

.indexList a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  position: absolute;
  right: 20px;
  top: 50%;
  background: url(../../img/icon/arrow.png) no-repeat 0 0 / 100% 100%;
  transition: 0.2s;
}
body.is-pc .indexList a:hover::after{
  opacity: 1;
  animation: amin-arrow 0.4s ease forwards 0.2s;
}

.indexList-img {
  width: 35%;
}
.indexList-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.indexList-inner {
  flex: 1;
  padding: 20px 70px 20px 40px;
}

.indexList-cat{
  display: inline-block;
  border-radius: 6px;
  padding: 0.3em 1em 0.3em 1em;
  font-size: 116%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.indexList-cat.is-cat01{
  color: #063b7c;
  padding-left: 2em;
  background: url(../../img/icon/beginner.png) no-repeat 5px center / 1.4em 1.4em;
  border: 2px solid #6e81a5;
}
.indexList-cat.is-cat02{
  color: #fff;
  background-color: #6e81a5;
  border: 2px solid #6e81a5;
}

.indexList-title {
  font-size: 170%;
  line-height: 1.4;
  color: #063b7c;
  padding-bottom: 0.5em;
}
.indexList-summary {
  font-size: 116%;
  line-height: 1.8;
  height: calc(3em * 1.8);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@keyframes amin-arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

@media screen and (max-width:834px) {

  .indexList a::after {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    right: 10px;
  }
  .indexList-img img {
    height: 30vw;
  }
  .indexList-inner {
    padding: 10px 50px 10px 4%;
  }
  .indexList-cat{
    border-radius: 4px;
    padding: 0.3em 0.6em 0.3em 0.6em;
    font-size: 93%;
    margin-bottom: 10px;
  }
  .indexList-title {
    font-size: 131%;
  }
  .indexList-summary {
    font-size: 100%;
  }

}

@media screen and (max-width:520px) {

  .indexList {
  }
  .indexList li {
    margin-bottom: 15px;
  }
  .indexList a {
    display: block;
    border-radius: 6px;
  }

  .indexList a::after {
    display: none;
  }

  .indexList-img {
    width: auto;
  }
  .indexList-img img {
    height: 30vmin;
  }
  .indexList-inner {
    padding: 20px 30px 20px 4%;
    position: relative;
  }
  .indexList-inner::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    position: absolute;
    right: 5px;
    top: 50%;
    background: url(../../img/icon/arrow.png) no-repeat 0 0 / 100% 100%;
    transition: 0.2s;
  }
  .indexList-cat{
    border-radius: 3px;
    padding: 0.3em 0.6em 0.3em 0.6em;
    font-size: 85%;
    margin-bottom: 5px;
  }
  .indexList-title {
    font-size: 124%;
  }
  .indexList-summary {
    font-size: 93%;
    line-height: 1.6;
    height: calc(3em * 1.6);
  }

}




/***********
pagination
************/

.pagination {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 60px;
}

.pagination:empty {
  display: none;
}

.pagination span,
.pagination a {
  display: inline-block;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border: 1px solid #063b7c;
  color: #063b7c;
  border-radius: 50%;
  text-decoration: none;
  text-align: center;
  font-size: 124%;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin: 0 5px;
}
.pagination span.dots{
  border-color: transparent;
}
.pagination span:not(.dots),
.pagination a:hover {
  background-color: #063b7c;
  color: #fff;
}

@media screen and (max-width:834px) {

  .pagination {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .pagination span,
  .pagination a {
    font-size: 100%;
    margin: 0 2px;
  }

}



/***********
article
************/

.article {
}
.article-heading {
  border-bottom: 1px solid #aaa;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
.article-heading-data {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 20px;
}
.article-heading-time {
  display: inline-block;
  white-space: nowrap;
  font-size: 131%;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  padding-top: 0.25em;
  margin-right: 1em;
}
.article-heading-cat {
  display: inline-block;
  min-width: 7em;
  padding: 0.2em 1.5em;
  margin: 0 4px 2px 0;
  border-radius: 10vw;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 124%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}
.article-heading-title {
  font-size: 220%;
  font-feature-settings: "pkna";
  letter-spacing: 0.05em;
}

@media screen and (max-width:834px) {

  .article {
  }
  .article-heading {
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
  .article-heading-data {
    padding-bottom: 15px;
  }
  .article-heading-time {
    font-size: 108%;
  }
  .article-heading-cat {
    font-size: 100%;
  }
  .article-heading-title {
    font-size: 147%;
  }


}



/***********
post
************/

.post {
  font-size: 1.24rem;
  font-weight: 500;
  padding-bottom: 20px;
}

.post p:not([class]) {
  line-height: 2;
  font-size: 1.24rem;
  font-weight: 500;
  padding-bottom: 1em;
}

.post h2:not([class]) {
  background-color: #c6defb;
  color: #063b7c;
  font-size: 2rem;
  font-feature-settings: "palt";
  line-height: 1.4;
  padding: 0.6em 1em 0.6em 1.2em;
  position: relative;
  margin-bottom: 30px;
  margin-top: 50px;
}
.post h2:not([class])::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 3px;
  background-color: #063b7c;
  position: absolute;
  left: 0;
  top: 1.2em;
}

.post h3:not([class]) {
  font-size: 1.7rem;
  font-feature-settings: "palt";
  margin: 40px 0 1em 0;
  border-left: 3px solid #063b7c;
  padding: 0.8em 0 0.8em 15px;
  line-height: 1.4;
}

.post h4:not([class]) {
  font-size: 1.54rem;
  font-feature-settings: "palt";
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 8px;
  margin: 30px 0 20px 0;
}

.post h5:not([class]) {
  font-size: 1.39rem;
  margin-top: 30px;
  color: #063b7c;
}
.post h5:not([class])::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background-color: #063b7c;
  margin: 10px 0 20px;
}

.post h6:not([class]) {
  font-size: 1.39rem;
  margin: 15px 0 8px 0;
}

.post img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.post blockquote:not([class]) {
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px 3%;
  margin: 30px 0;
}
.post blockquote:not([class]) h2:first-child,
.post blockquote:not([class]) h3:first-child,
.post blockquote:not([class]) h4:first-child,
.post blockquote:not([class]) h5:first-child{
  margin-top: 0;
}

.post table:not([class]) {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.post table:not([class]) thead th,
.post table:not([class]) thead td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 2%;
  text-align: center;
  line-height: 1.7;
  background-color: #e9f0f9;
}

.post table:not([class]) tbody th {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 2%;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  background-color: #e9f0f9;
}

.post table:not([class]) tbody td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.24rem;
  padding: 12px 2%;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  line-height: 1.7;
  background-color: #fff;
}

.post ul:not([class]){
  line-height: 2;
  font-size: 1.24rem;
  list-style: disc;
  margin-left: 1.5em;
  padding: 20px 0;
}
.post ol:not([class]){
  line-height: 2;
  font-size: 1.24rem;
  list-style: decimal;
  margin-left: 1.5em;
  padding: 20px 0;
}

@media screen and (max-width:834px) {

  .post {
    font-size: 1.08rem;
    padding-bottom: 10px;
  }

  .post p:not([class]) {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .post h2:not([class]) {
    font-size: 1.47rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .post h2:not([class])::before {
  }

  .post h3:not([class]) {
    font-size: 1.47rem;
    margin: 30px 0 1em 0;
    padding: 0.5em 0 0.5em 12px;
  }

  .post h4:not([class]) {
    font-size: 1.39rem;
  }

  .post h5:not([class]) {
  }
  .post h5:not([class])::after {
    width: 100px;
  }

  .post h6:not([class]) {
    font-size: 1.16rem;
  }

  .post img {
  }

  .post blockquote:not([class]) {
    padding: 15px 3%;
    margin: 20px 0;
  }

  .post table:not([class]) {
    border: 1px solid rgba(0, 0, 0, 0.2);
  }

  .post table:not([class]) thead th,
  .post table:not([class]) thead td {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post table:not([class]) tbody th {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post table:not([class]) tbody td {
    font-size: 0.93rem;
    padding: 5px 2%;
    line-height: 1.5;
  }

  .post ul:not([class]){
    font-size: 1.08rem;
    line-height: 1.7;
    padding: 10px 0;
  }
  .post ol:not([class]){
    font-size: 1.08rem;
    line-height: 1.7;
    padding: 10px 0;
  }

}

.post > *:first-child,
.post blockquote > *:first-child{
  margin-top: 0 !important;
}

.post *[class^="l-"] img:not([class]){
  padding-bottom: 0 !important;
}


/***********
related
************/

.related {
  border-top: 1px solid #ccc;
}
.related-title {
  font-size: 170%;
  border-left: 6px solid #063b7c;
  padding: 5px 0 5px 18px;
  margin-bottom: 20px;
}
.related-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
}
.related-list li {
  width: 32.3%;
  margin-left: 1%;
  margin-bottom: 1%;
}
.related-list.is-half li {
  width: 49%;
}
.related-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 5.5em;
  border-radius: 3px;
  border: 2px solid #ddd;
  font-size: 139%;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  color: #063b7c;
  text-decoration: none;
  line-height: 1.3;
  padding: 5px 30px 5px 25px;
  position: relative;
}
.related-list a::after {
  font-family: 'Font Awesome 5 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-weight: 900;
  text-rendering: auto;
  font-style: normal;
  font-variant: normal;
  display: inline-block;
  content: "\f0da";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -0.5em;
  font-size: 14px;
  line-height: 1;
}
body.is-pc .related-list a:hover {
  border-color: #c6defb;
  background-color: #e9f0f9;
}

@media screen and (max-width:834px) {

  .related-list li {
    width: 49%;
  }
  .related-list a {
    font-size: 124%;
    padding: 5px 30px 5px 20px;
  }
  .related-list a::after {
    font-size: 12px;
  }

}

@media screen and (max-width:520px) {

  .related .related-title {
    font-size: 131%;
    padding: 5px 0 5px 10px;
    margin-bottom: 10px;
    border-width: 4px;
  }
  .related-list {
    display: block;
    margin-left: 0;
  }
  .related-list li,
  .related-list.is-half li {
    width: auto;
    margin-left: 0;
    margin-bottom: 8px;
  }
  .related-list a {
    font-size: 100%;
    padding: 5px 30px 5px 15px;
  }
  .related-list a::after {
    right: 10px;
    font-size: 12px;
  }

}



/***********
pageLink
************/

.pageLink {
  display: flex;
  flex-wrap: wrap;
}
.pageLink li {
  width: 33.3%;
  padding: 0 1px 1px 0;
}
.pageLink a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  min-height: 4em;
  padding: 10px 15px;
  line-height: 1.3;
  background-color: #e9f0f9;
  color: #000;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 124%;
  font-feature-settings: "pkna";
  text-decoration: none;
  text-align: center;
}
body.is-pc .pageLink a:hover {
  background-color: #c6defb;
}

@media screen and (max-width:834px) {

  .pageLink {
    display: flex;
    flex-wrap: wrap;
  }
  .pageLink li {
    width: 33.3%;
    padding: 0 1px 1px 0;
  }
  .pageLink a {
    padding: 10px 10px;
    font-size: 100%;
  }
}

@media screen and (max-width:520px) {

  .pageLink li {
    width: 50%;
    padding: 0 1px 1px 0;
  }
  .pageLink a {
    min-height: 4em;
    padding: 5px 5px;
    font-size: 93%;
  }

}

/***********
columnList
************/

.columnList {
}
.columnList li {
}
.columnList li:not(:last-child) {
  margin-bottom: 30px;
}
.columnList a {
  display: flex;
  justify-content: space-between;
  color: #000;
  text-decoration: none;
  background-color: #fff;
  padding: 30px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.columnList-img {
  width: 35%;
}

.columnList-inner {
  flex: 1;
  padding-left: 5%;
  padding-top: 10px;
}
.columnList-cat {
  display: inline-block;
  min-width: 7em;
  padding: 0.1em 1em;
  border-radius: 10vw;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 131%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-feature-settings: "palt";
  text-align: center;
  white-space: nowrap;
}
.columnList-title {
  padding-top: 10px;
  font-size: 154%;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1.4;
}

.columnList-summary {
  margin-top: 12px;
  font-size: 116%;
  height: calc(3em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width:834px) {

  .columnList a {
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

  .columnList-inner {
    padding-top: 0;
  }
  .columnList-cat {
    font-size: 100%;
  }
  .columnList-title {
    font-size: 124%;
  }

  .columnList-summary {
    font-size: 93%;
  }

}

@media screen and (max-width:520px) {

  .columnList {
  }
  .columnList li {
  }
  .columnList li:not(:last-child) {
    margin-bottom: 15px;
  }
  .columnList a {
    display: block;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .columnList-img {
    width: auto;
  }
  .columnList-img img {
    width: 100%;
    height: 40vmin;
    object-fit: cover;
  }

  .columnList-inner {
    padding: 20px 0;
  }
  .columnList-cat {
    font-size: 100%;
  }
  .columnList-title {
    padding-top: 10px;
    font-size: 116%;
    line-height: 1.6;
  }

  .columnList-summary {
    margin-top: 12px;
    font-size: 85%;
    height: calc(3em * 1.5);
  }

}




/***********
pageCat
************/

.pageCat{
  text-align: center;
  padding-top: 60px;
  margin-bottom: -70px;
}

.pageCat-item{
  display: inline-block;
  border-radius: 6px;
  padding: 0.3em 1em 0.3em 1em;
  font-size: 154%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
}
.pageCat-item.is-cat01{
  color: #063b7c;
  padding-left: 2em;
  background: url(../../img/icon/beginner.png) no-repeat 5px center / 1.4em 1.4em;
  border: 2px solid #6e81a5;
}
.pageCat-item.is-cat02{
  color: #fff;
  background-color: #6e81a5;
  border: 2px solid #6e81a5;
}

.pageCat + .l-heading .l-heading-title::before{
  display: none;
}

@media screen and (max-width:834px) {

  .pageCat{
    padding-top: 20px;
    margin-bottom: -30px;
  }
  .pageCat-item{
    font-size: 124%;
  }

}


/***********
viceList
************/


.viceList{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.viceList li{
  width: 49%;
  margin-bottom: 30px;
  padding: 30px;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.viceList-block {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.viceList-img {
  width: 30%;
}
.viceList-img img {
  border-radius: 50%;
}
.viceList-inner {
  flex: 1;
  padding-left: 20px;
}
.viceList-title {
  font-size: 170%;
  font-feature-settings: "pkna";
  color: #063b7c;
  line-height: 1.4;
}

.viceList-summary {
  line-height: 1.8;
  font-size: 116%;
}
.viceList-tags {
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
}
.viceList-tags span {
  display: inline-block;
  background-color: #f0f0f0;
  color: #555;
  padding: 0.3em 1em;
  margin: 0 2px 2px 0;
  border-radius: 10vw;
  font-weight: 600;
  font-size: 93%;
  font-feature-settings: "palt";
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
}

@media screen and (max-width:834px) {

  .viceList{
    display: block;
  }
  .viceList li{
    width: auto;
    margin-bottom: 20px;
    padding: 25px 20px;
  }

  .viceList-inner {
  }
  .viceList-title {
    font-size: 139%;
  }

  .viceList-summary {
    font-size: 108%;
  }
  .viceList-tags {
  }
  .viceList-tags span {
    padding: 0.3em 0.5em;
    font-size: 77%;
  }

}

@media screen and (max-width:520px) {

  .viceList{
  }
  .viceList li{
    width: auto;
    margin-bottom: 20px;
    padding: 25px 5% 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .viceList-block {
    display: block;
    padding-bottom: 20px;
  }
  .viceList-img {
    width: 40%;
    max-width: 160px;
    margin: 0 auto;
  }
  .viceList-inner {
    padding: 20px 0 0;
  }
  .viceList-title {
    font-size: 147%;
    text-align: center;
  }

  .viceList-summary {
    font-size: 108%;
    line-height: 1.8;
    margin-top: 0;
  }
  .viceList-tags {
    justify-content: center;
  }
  .viceList-tags span {
  }


}





/***********
module-wpcf7
************/


/***********
module-wpcf7
************/

.wpcf7{
  margin: 0 auto;
}

.wpcf7-form > p{
  font-size: 124%;
  font-weight: bold;
  background-color: #f0f0f0;
  padding: 10px 22px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.wpcf7-text,
.wpcf7-textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 10px;
  width: 100%;
  min-height: 50px;
  border: none;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #ccc;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.wpcf7-textarea{
  padding: 5px 10px;
  line-height: 1.3;
}

.wpcf7-select{
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../../img/select_arrow.png) no-repeat right center;
  font-size: 16px;
  padding: 0 25px 0 10px;
  min-height: 50px;
  line-height: 50px;
  border: none;
  background-color: #fff;
  border: 2px solid #ccc;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.wpcf7-date{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0 10px;
  min-height: 50px;
  border: none;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #ccc;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

}

.wpcf7-submit{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding: 20px 0;
  margin: 0 auto;
  color: #fff;
  background-color: #063b7c;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: none;
  position: relative;
  transition: all ease 0.2s;
}



/***********
pageEm
************/

.pageEm {
  padding-top: 6em;
  padding-bottom: 6em;
  margin-top: 4em;
  background-color: #d5e0f2;
  border-bottom: 1px solid #c9d3dc;
}
.pageEm-container {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 4em;
}
.pageEm-inner {
  width: 56%;
}
.pageEm-block {
  white-space: nowrap;
  font-feature-settings: "palt";
  letter-spacing: 0;
}
.pageEm-text01 {
  font-size: 30px;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1;
  margin-bottom: -1.5em;
}
.pageEm-lead {
  font-size: 44px;
  font-weight: 600;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  line-height: 1;
}
.pageEm-lead-accent {
  font-size: 75px;
  font-weight: 600;
}
.pageEm-lead-accent.is-offset {
  margin-right: 0.2em;
}
.pageEm-lead-num {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: 140px;
  font-style: normal;
  color: #0e6eb8;
}
.pageEm-tips {
  border-top: 1px solid #c9d3dc;
  margin-top: 3em;
  padding-top: 2em;
  font-size: 85%;
  opacity: 0.7;
}

.pageEm-img {
  flex: 1;
}

@media screen and (max-width:1280px) {

  .pageEm-inner {
    width: 56%;
  }
  .pageEm-text01 {
    font-size: 2.2vw;
    margin-bottom: -1.2em;
  }
  .pageEm-lead {
    font-size: 3.2vw;
  }
  .pageEm-lead-accent {
    font-size: 5.5vw;
  }
  .pageEm-lead-accent.is-offset {
  }
  .pageEm-lead-num {
    font-size: 10vw;
  }
  .pageEm-img {
    margin-right: -5%;
  }

}

@media screen and (max-width:834px) {
  .pageEm {
    padding-top: 2em;
    padding-bottom: 2em;
    margin-bottom: 2em;
  }
  .pageEm-container {
    padding: 1.5em;
  }
  .pageEm-tips {
    margin-top: 0;
  }
}


@media screen and (max-width:640px) {

  .pageEm-container {
    display: block;
    padding: 1.5em;
    margin-left: -4%;
    margin-right: -4%;
  }
  .pageEm-inner {
    width: auto;
  }
  .pageEm-block {
  }
  .pageEm-text01 {
    font-size: 3.6vw;
    line-height: 1.2;
  }
  .pageEm-lead {
    font-size: 6.5vw;
  }
  .pageEm-lead-accent {
    font-size: 10vw;
  }
  .pageEm-lead-num {
    font-size: 17vw;
    font-family: 'Arial', sans-serif;
  }
  .pageEm-img {
    padding-top: 3em;
    width: 80%;
    margin: 0 auto;
  }
  .pageEm-tips {
    font-size: 70%;
  }

}




/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
@charset "utf-8";


/***********
grid
************/

.e-grid{
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  line-height: 1.7;
}
.e-grid-item{
  padding-left: 3%;
  margin-bottom: 50px;
}
.e-grid-item > h2:first-child,
.e-grid-item > h3:first-child,
.e-grid-item > h4:first-child ,
.e-grid-item > h5:first-child ,
.e-grid-item > h6:first-child {
  margin-top: 0 !important;
}

.e-grid-item1{  width: 10%;  }
.e-grid-item2{  width: 20%;  }
.e-grid-item3{  width: 30%;  }
.e-grid-item4{  width: 40%;  }
.e-grid-item5{  width: 50%;  }
.e-grid-item6{  width: 60%;  }
.e-grid-item7{  width: 70%;  }
.e-grid-item8{  width: 80%;  }
.e-grid-item9{  width: 90%;  }
.e-grid-item10{  width: 100%;  }

.e-grid-img {
  padding-bottom: 20px;
}
.e-grid-img img {
  margin-bottom: 0 !important;
}
.e-grid-img + h2,
.e-grid-img + h3,
.e-grid-img + h4,
.e-grid-img + h5,
.e-grid-img + h6 {
  margin-top: 0 !important;
}

@media screen and (max-width:834px) {

  .e-grid{
    display: block;
    margin-left: 0;
    margin-bottom:0px;
    font-size: 1.16rem;
  }
  .e-grid-item{
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px;
  }

}

/***********
gridList
************/

.e-gridList {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  line-height: 1.7;
}
.e-gridList li{
  margin-bottom: 50px;
  padding-left: 3%;
}
.e-gridList-half li {
  width: 50%;
}
.e-gridList-trisect li {
  width: 33.3%;
}
.e-gridList-quarter li {
  width: 25%;
}

.e-gridList-img {
  padding-bottom: 20px;
}
.e-gridList-img img {
  margin-bottom: 0 !important;
}
.e-gridList-text {
}

.e-gridList-img + h2,
.e-gridList-img + h3,
.e-gridList-img + h4,
.e-gridList-img + h5,
.e-gridList-img + h6{
  margin-top: 0 !important
}

@media screen and (max-width:834px) {

  .e-gridList {
    display: flex;
    flex-wrap: wrap;
    margin-left: -3%;
  }
  .e-gridList li{
    width: 100%;
    margin-bottom: 30px;
    padding-left: 3%;
  }
  .e-gridList.e-gridList-half li,
  .e-gridList.e-gridList-trisect li,
  .e-gridList.e-gridList-quarter li{
    width: 100%;
  }
  .e-gridList.e-sp-half li {
    width: 50%;
  }
  .e-gridList.e-sp-trisect li {
    width: 33.3%;
  }
  .e-gridList.e-sp-quarter li {
    width: 25%;
  }

  .e-gridList-img {
    padding-bottom: 20px;
  }
  .e-gridList-img img {
    padding-bottom: 0 !important;
  }
  .e-gridList-text {
  }

}



/***********
box
************/

.e-box {
  padding: 40px 80px;
  background-color: #e9f0f9;
}

.e-box > *:first-child{
  margin-top: 0 !important;
}

@media screen and (max-width:834px) {

  .e-box {
    padding: 25px 5%;
    background-color: #f0f0f0;
  }
}

/***********
linkWrap
************/

.e-linkWrap {
  text-align: center;
  padding: 20px 0;
}

.e-linkWrap-half {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}
.e-linkWrap-half-item {
  padding: 5px 10px;
}

@media screen and (max-width:834px) {

  .e-linkWrap-half {
    display: block;
    padding: 20px 0;
  }
  .e-linkWrap-half-item {
    padding: 0 0 10px ;
  }
}


/***********
table
************/

.e-table {
  border: 1px solid #ccc;
}
.e-table ,
.e-table tr,
.e-table th,
.e-table td{
  height: auto !important;
}

.e-table th {
  border: 1px solid #ccc;
  font-size: 1.16rem;
  padding: 20px 3%;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.8;
  background-color: #e9f0f9;
}

.e-table td {
  border: 1px solid #ccc;
  font-size: 1.16rem;
  padding: 20px 3%;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  line-height: 1.8;
}

.post .e-table p:not([class]){
  padding: 0;
  font-size: 1.16rem;
}

/*cell size*/

.e-cell-quarter {
  width: 25%;
}

.e-cell-trisect {
  width: 33.3%;
}

.e-cell-half {
  width: 50%;
}

@media screen and (max-width:834px) {

  .e-table{
  }
  .e-table th{
    font-size: 1rem;
    padding: 8px 8px;
    line-height: 1.7;
  }
  .e-table td{
    font-size: 1rem;
    padding: 8px 8px;
    line-height: 1.7;
  }
  .post .e-table p:not([class]){
    padding: 0;
    font-size: 1rem;
  }

  /*スマホ時、縦組みになる*/
  .e-table-sp,
  .e-table-sp thead,
  .e-table-sp tbody,
  .e-table-sp tr,
  .e-table-sp th,
  .e-table-sp td {
    display: block;
    width: 100% !important;
    border: none;
  }
  .e-table-sp th,
  .e-table-sp td {
    border: none;
    font-size: 1rem;
  }
  .e-table-sp thead th {
    text-align: center;
    padding: 5px 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ccc;
  }
  .e-table-sp tbody th {
    text-align: left;
    padding: 5px 8px;
    font-weight: bold;
  }
  .e-table-sp tbody td {
    padding: 8px 0px 15px 0;
    font-size: 0.93rem;
  }

}

/***********
googleMap
************/

.e-googleMap iframe{
  width: 100%;
  height: 600px;
}

/***********
youtube
************/

.e-youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.e-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/***********
xxxxx
************/


.e-price {
  text-align: center;
}
.e-price-box {
  padding: 10px 0;
}
.e-price-title {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
  font-size: 1.54rem;
  color: #063b7c;
  padding-bottom: 0.2em;
}
.e-price-fee {
  font-size: 1.7rem;
  font-weight: bold;
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  transform: skewX(-10deg);
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
  color: #063b7c;
}
.e-price-num {
  font-size: 300%;
  font-family: 'Poppins', sans-serif;
  padding-right: 0.1em;
}
.e-price-taxt {
  font-size: 1rem;
  letter-spacing: 0;
}


@media screen and (max-width:834px) {

  .e-price {
  }
  .e-price-box {
  }
  .e-price-title {
    font-size: 1.24rem;
    font-feature-settings: "palt";
  }
  .e-price-fee {
    font-size: 1.34rem;
  }

}


/***********
xxxxx
************/

/***********
xxxxx
************/
