@charset "UTF-8";
/*
Theme Name: 
Description:  Web Site
Author: Hiroki Ishiida
Version: 1.0
*/
/*------------ COMMON SETTING ------------ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px !important;
  font-size: 62.5%;
}

body {
  color: #262626;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}

.wrapper {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

section {
  padding: 60px 15px;
}
section:nth-child(odd) {
  background-color: #fff;
}
section:nth-child(even) {
  background-color: #fffbf4;
}
@media screen and (min-width: 1080px) {
  section {
    padding: 80px 15px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding: 80px 0;
  }
}

.Title {
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #444444;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .Title {
    font-size: 4rem;
    gap: 10px;
  }
}
.Title span {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #457d50;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .Title span {
    font-size: 1.8rem;
  }
}

.Pcver {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .Pcver {
    display: block !important;
  }
}

.Spver {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .Spver {
    display: none !important;
  }
}

main {
  overflow: hidden;
}

/* ------- BTN -------- */
.Btn {
  max-width: 400px;
  width: 100%;
  margin: 40px auto 0;
  font-weight: 500;
  position: relative;
  color: #444444;
  padding: 20px;
  border-radius: 100px;
  background-color: #fff;
  border: 2px solid #444444;
  display: block;
  text-align: center;
  transition: all 0.3s;
  line-height: 1;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .Btn {
    font-size: 1.8rem;
    border: 3px solid #444444;
  }
}
.Btn::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  background-size: contain;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .Btn::before {
    width: 10px;
    height: 14px;
  }
}
.Btn:hover {
  background-color: #444;
  color: #fff;
  opacity: 1;
  transition: all 0.3s;
}
.Btn:hover::before {
  right: 25px;
  filter: invert(1);
  transition: all 0.3s;
}

.TextContent p:nth-child(1) {
  font-weight: 500;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 1080px) {
  .TextContent p:nth-child(1) {
    font-size: 2rem;
  }
}
.TextContent p:nth-child(2) {
  line-height: 1.7;
}

/* 共通設定 */
/*----------------- HEADER ----------------- */
header {
  width: 100%;
  position: absolute;
  height: 60px;
  top: -60px;
}
header .Header__inner {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 110;
  padding: 15px;
  transition: all 0.5s;
}
@media screen and (min-width: 1080px) {
  header .Header__inner {
    padding: 10px 30px;
  }
}
header .logo {
  max-width: 145px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1080px) {
  header .logo {
    max-width: 160px;
  }
}

/*------------------- NAV ------------------ */
nav {
  width: 100%;
  height: 100vh;
  opacity: 0;
  padding: 15px;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  transition: all 0.5s;
  visibility: hidden;
}
nav.panelactive {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1080px) {
  nav {
    visibility: visible;
    opacity: 1;
    height: -moz-fit-content;
    height: fit-content;
    background: unset;
    text-align: left;
    padding: 0 0;
    position: relative;
    z-index: 100;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

.Menu__content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 15px;
}
@media screen and (min-width: 1080px) {
  .Menu__content {
    flex-direction: row;
    position: unset;
    transform: unset;
    padding: 0 0;
  }
}
.Menu__content .Menu__list {
  color: #444;
  display: grid;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
  }
}
.Menu__content .Menu__list .Menu__item {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 2.6rem;
  text-align: left;
  transition: all 0.3s;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
}
.Menu__content .Menu__list .Menu__item a {
  display: grid;
  gap: 2px;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item a {
    font-size: 1.8rem;
    justify-items: center;
  }
}
.Menu__content .Menu__list .Menu__item a .menu-subtitle {
  font-size: 1.6rem;
  color: #457d50;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item a .menu-subtitle {
    font-size: 1.2rem;
  }
}
.Menu__content .Menu__list .Menu__item::before {
  content: "";
  background: url(../img/icon/arrow.svg) no-repeat;
  width: 11px;
  height: 18px;
  position: absolute;
  background-size: contain;
  top: 15%;
  right: 0;
  transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item::before {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .Menu__content .Menu__list .Menu__item {
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: unset;
    font-size: 1.6rem;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.Menu__content .Menu__list .Menu__item:last-child {
  margin-bottom: 0;
}
.Menu__content .Menu__list .Menu__item:hover::before {
  right: 10px;
  transition: all 0.3s;
}
.Menu__content .Sp-Menu {
  margin-top: 20px;
}
@media screen and (min-width: 1080px) {
  .Menu__content .Sp-Menu {
    display: none;
  }
}
.Menu__content .Sp-Menu .sns {
  max-width: 30px;
  width: 100%;
  display: inline-block;
  margin-bottom: 15px;
}
.Menu__content .Sp-Menu .NavBottom {
  display: grid;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}
.Menu__content .Sp-Menu .NavBottom .Copyright {
  font-size: 1.2rem;
}

/*------------- HAMBERGER MENU ------------ */
.OpenBtn {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1000;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #d6ac40;
  border-radius: 100%;
}
.OpenBtn span {
  width: 25px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s;
  position: absolute;
  border-radius: 50px;
  right: 50%;
  transform: translate(50%, -50%);
}
.OpenBtn span:nth-of-type(1) {
  top: 35%;
}
.OpenBtn span:nth-of-type(2) {
  top: 49%;
}
.OpenBtn span:nth-of-type(3) {
  top: 63%;
}
.OpenBtn.active {
  background-color: #8f8f8f;
}
.OpenBtn.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(50%, -50%) rotate(30deg);
}
.OpenBtn.active span:nth-of-type(2) {
  transform: scaleX(0);
}
.OpenBtn.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(50%, -50%) rotate(150deg);
}
@media screen and (min-width: 1080px) {
  .OpenBtn {
    display: none;
  }
}

/*----------------- KEY-VISUAL ------------------ */
.KeyVisual {
  height: 60vh;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
  margin: 0 15px 0;
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .KeyVisual {
    height: 70vh;
  }
}
@media screen and (min-width: 1080px) {
  .KeyVisual {
    margin-top: 100px;
  }
}
.KeyVisual .swiper-wrapper {
  overflow: hidden;
  margin-bottom: 0;
}
.KeyVisual .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 60vh;
}
@media screen and (min-width: 768px) {
  .KeyVisual .swiper-wrapper .swiper-slide {
    height: 70vh;
  }
}
.KeyVisual .swiper-wrapper .swiper-slide.img01 {
  background-image: url(../img/KeyVisual/keyVisual01.png);
}
.KeyVisual .swiper-wrapper .swiper-slide.img02 {
  background-image: url(../img/KeyVisual/keyVisual02.png);
}
.KeyVisual .swiper-wrapper .swiper-slide.img03 {
  background-image: url(../img/KeyVisual/keyVisual03.png);
}

/*----------------- About ------------------ */
.about {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 60px;
  }
}
.about .TextContnt {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .about .TextContnt p {
    text-align: center;
  }
}
.about .TextContnt p:nth-child(1) {
  font-size: 2rem;
  font-weight: 600;
  color: #444444;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .about .TextContnt p:nth-child(1) {
    font-size: 2.4rem;
  }
}
.about .TextContnt p:nth-child(2) {
  line-height: 1.7;
}
.about .imgContent {
  max-width: 300px;
  width: 100%;
  margin: 0 auto 30px;
}
.about table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.about table tr {
  border-bottom: 1px solid #efe9df;
  display: grid;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .about table tr {
    grid-template-columns: 170px 1fr;
  }
}
.about table tr:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin: 0;
}
.about table tr th,
.about table tr td {
  width: 100%;
}
.about table tr .tdText {
  line-height: 1.5;
}
.about table tr th {
  line-height: 1;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.about table tr td a {
  color: #2370ca;
  text-decoration: underline;
}

/*----------------- facility ------------------ */
.facility p {
  line-height: 1.7;
}
.facility p b {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.facility .facility-list {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #efe9df;
  padding-bottom: 30px;
}
.facility .facility-list li {
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .facility .facility-list li {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .facility .facility-list li:nth-child(2) .imgContent {
    order: 2;
  }
}
.facility .facility-list li .imgContent img {
  aspect-ratio: 3/2;
  border-radius: 10px;
}
.facility .MapContent {
  display: grid;
  gap: 15px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.facility .MapContent iframe {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .facility .MapContent iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 768px) {
  .facility .MapContent p {
    margin: 0 auto;
  }
}

/*----------------- services ------------------ */
.services {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 1080px) {
  .services .TopTextContnt {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 30px !important;
    text-align: center;
  }
}
.services .TextContnt {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (min-width: 1080px) {
  .services .TextContnt {
    margin-left: 0;
    margin-right: 0;
  }
}
.services .TextContnt p {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .services .TextContnt p {
    max-width: unset;
  }
}
.services .TextContnt p:nth-child(1) {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
.services .TextContnt p:nth-child(2) {
  line-height: 1.7;
}
@media screen and (min-width: 1080px) {
  .services .services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 15px;
  }
}
.services .services-list li {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1080px) {
  .services .services-list li {
    gap: 15px;
    margin-bottom: 0;
  }
}
.services .services-list li .TextContnt {
  margin-bottom: 0;
}
.services .services-list li .TextContnt .place {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}
.services .services-list li .TextContnt .place p {
  margin: 0 0;
}
.services .services-list li .TextContnt .place p:nth-child(1) {
  max-width: 90px;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #444444;
  border: 1px solid #444444;
}
.services .services-list li .TextContnt .place p:nth-child(2) {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1080px) {
  .services .services-list li .imgContent {
    margin-bottom: unset;
  }
}
.services .services-list li .imgContent img {
  aspect-ratio: 5/6;
}
@media screen and (min-width: 768px) {
  .services .services-list li .imgContent img {
    aspect-ratio: 3/2;
  }
}
.services .services-list li:nth-child(1) .imgContent, .services .services-list li:nth-child(3) .imgContent {
  margin-right: 15px;
}
@media screen and (min-width: 1080px) {
  .services .services-list li:nth-child(1) .imgContent, .services .services-list li:nth-child(3) .imgContent {
    margin-right: unset;
  }
}
.services .services-list li:nth-child(1) .imgContent img, .services .services-list li:nth-child(3) .imgContent img {
  border-radius: 0 15px 15px 0;
}
@media screen and (min-width: 1080px) {
  .services .services-list li:nth-child(1) .imgContent img, .services .services-list li:nth-child(3) .imgContent img {
    border-radius: 15px;
  }
}
.services .services-list li:nth-child(2) .imgContent {
  margin-left: 15px;
}
@media screen and (min-width: 1080px) {
  .services .services-list li:nth-child(2) .imgContent {
    margin-left: unset;
  }
}
.services .services-list li:nth-child(2) .imgContent img {
  border-radius: 15px 0 0 15px;
}
@media screen and (min-width: 1080px) {
  .services .services-list li:nth-child(2) .imgContent img {
    border-radius: 15px;
  }
}
.services .BtnContent {
  margin: 0 15px;
}
.services .BtnContent .Btn::before {
  content: "";
  background: url(../img/icon/blank.svg) no-repeat;
  width: 11px;
  height: 11px;
}
.services .googl-calendar {
  border-top: 1px solid #d3d3d3;
  padding-top: 30px;
  margin: 30px 15px 0;
}
.services .googl-calendar iframe {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.services .googl-calendar .BtnContent {
  display: flex;
  justify-content: center;
  margin: 0 0;
}
.services .googl-calendar .BtnContent a {
  margin-top: 20px;
  font-size: 1.2rem;
  border-bottom: 1px solid #262626;
  position: relative;
  text-align: center;
  padding-right: 14px;
}
@media screen and (min-width: 400px) {
  .services .googl-calendar .BtnContent a {
    font-size: 1.4rem;
  }
}
.services .googl-calendar .BtnContent a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 11px;
  height: 11px;
  transform: translateY(-45%);
  background: url(../img/icon/blank.svg);
}

/* LOW KEYVISUAL */
.LowKeyVisual {
  aspect-ratio: 16/9;
  background: url(../img//KeyVisual/keyVisual01.png) no-repeat;
  position: relative;
  background-position: center center;
  background-size: cover;
  border-radius: 10px;
  margin: 0 15px 0;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual {
    aspect-ratio: 4/1;
  }
}
@media screen and (min-width: 1080px) {
  .LowKeyVisual {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .LowKeyVisual {
    margin: 100px 30px 0;
  }
}
.LowKeyVisual .LowKeyVisualInner {
  padding: 15px 15px 15px 0;
  border-radius: 0 10px 0 0;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual .LowKeyVisualInner {
    padding: 20px;
  }
}
.LowKeyVisual .LowKeyVisualTitle {
  font-size: 2.6rem;
  line-height: 1;
  margin: 0 0;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual .LowKeyVisualTitle {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    font-size: 4.8rem;
    gap: 10px;
  }
}
.LowKeyVisual .LowKeyVisualTitle span {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .LowKeyVisual .LowKeyVisualTitle span {
    font-size: 2rem;
    line-height: 1.5;
  }
}

/* パンクズリスト */
.breadcrumb-trail .fbc-wrap {
  padding: 10px 15px;
  word-break: break-word;
}
@media screen and (min-width: 1080px) {
  .breadcrumb-trail .fbc-wrap {
    padding: 10px 30px;
  }
}
.breadcrumb-trail .fbc-wrap .fbc-items {
  padding: 0 0 !important;
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumb-trail .fbc-wrap .fbc-items li {
  font-size: 1.2rem;
  padding: 0 0 !important;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1;
}
.breadcrumb-trail .fbc-wrap .fbc-items li:first-child {
  padding: 0 0 !important;
}
.breadcrumb-trail .fbc-wrap .fbc-items .item-archive span {
  font-size: 1.2rem !important;
}

.archive .CardContent {
  margin-bottom: unset;
}

/*----------------- ABOUT-PAGE ------------------ */
.page-id-10 .about {
  padding-top: 60px;
}
.page-id-10 .about .imgContent {
  aspect-ratio: unset;
  margin: 0 auto;
}
.page-id-10 .about .imgContent img {
  border-radius: 10px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}

/*----------------- Archive ------------------ */
.NewsList .NewsListItem {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.NewsList .NewsListItem:last-child {
  border-bottom: unset;
}
.NewsList .NewsListItem .NewsListText {
  display: -webkit-box; /* 必須 */
  -webkit-box-orient: vertical; /* 必須 */
  -webkit-line-clamp: 2; /* 行数を制限 */
  overflow: hidden; /* はみ出た部分を非表示 */
  position: relative;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  padding-right: 30px;
}
.NewsList .NewsListItem .NewsListText::before {
  content: "";
  background: url(../img/Vector.svg) no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  background-size: contain;
  top: 15%;
  right: 0;
  transition: all 0.3s;
}
.NewsList .NewsListItem .NewsListText:hover::before {
  right: 5px;
  transition: all 0.3s;
}

/*--------------- Prev-Next BTN -------------- */
.navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #ddd;
  font-family: "Montserrat", sans-serif;
}
.navigation .next-post-link a,
.navigation .previous-post-link a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s;
  position: relative;
}
.navigation .next-post-link a::before,
.navigation .previous-post-link a::before {
  content: "";
  background: url(../img/Vector.svg) no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  background-size: contain;
  top: 5%;
  transition: all 0.3s;
}
.navigation .previous-post-link a {
  padding-right: 15px;
}
.navigation .previous-post-link a::before {
  top: 12%;
  right: 0;
}
.navigation .next-post-link a {
  padding-left: 15px;
}
.navigation .next-post-link a::before {
  left: 0;
  transform: rotate(180deg);
}

/*--------------- WP-PAGENAVI -------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 2.4rem;
  margin: 20px !important;
  border: unset !important;
  transition: all 0.3s;
  font-weight: 600 !important;
}
.wp-pagenavi .current {
  color: #aaa;
}
.wp-pagenavi .pages {
  display: none !important;
}

/*----------------- Single ------------------ */
.CardContent {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}
.CardContent .Date {
  font-size: 1.4rem;
  color: #666666;
  font-family: "Montserrat", sans-serif;
}
.CardContent .post-categories {
  padding: 5px 15px;
  border-radius: 2px;
  border: 1px solid #318999;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 600;
}

#Post {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
#Post .TextInner {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#Post .CardTitle {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
#Post h2.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#Post h2.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 140%;
  transform: translateY(-50%);
}
#Post h3.wp-block-heading {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px;
  background-color: #eee;
  border-radius: 3px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
#Post p {
  line-height: 1.7;
}
#Post iframe,
#Post img {
  width: 100%;
  border-radius: 5px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
#Post .Btn {
  margin: 0 auto;
}
#Post .Btn::before {
  right: unset;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
#Post .Btn:hover::before {
  left: 15px;
}
#Post .wp-block-columns {
  gap: 20px;
}
#Post .wp-block-buttons {
  display: flex;
  justify-content: center;
}
#Post .wp-block-image.aligncenter {
  display: block !important;
}
#Post .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: 100%;
}

/*----------------- FORM ------------------ */
.Form {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
.Form .FormText {
  line-height: 1.8;
  text-align: left;
}
.Form dl {
  margin-top: 40px;
  text-align: left;
  margin-bottom: 40px;
}
.Form dl .must,
.Form dl .any {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #fff;
  background-color: #e14e4e;
  padding: 5px 15px;
  border-radius: 3px;
}
.Form dl .any {
  background-color: #999;
}
.Form dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  color: #262626;
  display: flex;
  align-items: flex-start;
}
.Form dl dt p {
  display: flex;
  align-items: center;
}
.Form dl dd {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
.Form dl dd:last-child {
  margin-bottom: 0;
}
.Form dl input[type=text],
.Form dl input[type=tel],
.Form dl input[type=email],
.Form dl select,
.Form dl textarea {
  font-size: 1.6rem;
  border-radius: 3px;
  background-color: #fcfcfc;
  border: 1px solid #d6d7d9;
  width: 100%;
  padding: 15px;
  text-align: left;
}
.Form dl ::-moz-placeholder {
  color: #ccc;
}
.Form dl ::placeholder {
  color: #ccc;
}
.Form dl .wpcf7-not-valid-tip {
  text-align: left;
}
.Form dl select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/icon/select-icon.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 15px;
  cursor: pointer;
}
.Form dl textarea {
  height: 300px;
}
.Form .Btn {
  background: #444;
  color: #fff;
}
.Form .privacyContent {
  display: block;
  text-align: center;
  padding: 18px;
  border-radius: 3px;
  background: #ececec;
  max-width: 400px;
  margin: 0 auto;
  color: #262626;
}
.Form .privacyContent input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: -3px;
}
.Form .privacyContent .privacyText {
  font-size: 1.5rem;
  font-weight: 500;
}
.Form .privacyContent .privacyText a {
  color: #1d8ad9;
  text-decoration: underline;
}

/*------ Footer --------*/
footer {
  padding: 30px 15px;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
}
@media screen and (min-width: 1080px) {
  footer {
    padding: 60px 15px;
  }
}
footer .wrapper {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  footer .wrapper {
    justify-items: center;
  }
}
@media screen and (min-width: 1080px) {
  footer .wrapper .FooterTop {
    margin-bottom: 10px;
  }
}
footer .wrapper .FooterTop .FooterTopContent .Logo img {
  max-width: 160px;
  width: 100%;
  display: block;
  margin: 0 auto 20px auto;
}
@media screen and (min-width: 1080px) {
  footer .wrapper .FooterTop .FooterTopContent .Logo img {
    max-width: 200px;
    margin: 0 auto 30px auto;
  }
}
footer .wrapper .FooterTop .Menu__content {
  position: unset;
  transform: unset;
  padding: 0 0;
}
@media screen and (min-width: 1080px) {
  footer .wrapper .FooterTop .Menu__content .Menu__list {
    justify-content: center;
    gap: 60px;
  }
}
@media screen and (min-width: 1080px) {
  footer .wrapper .FooterTop .Menu__content .Menu__list .Menu__item a {
    font-size: 2.8rem;
  }
}
footer .wrapper .FooterTop .Menu__content .Menu__list .Menu__item a .menu-subtitle {
  font-size: 1.6rem;
}
footer .wrapper .sns {
  max-width: 30px;
  width: 100%;
  display: inline-block;
}
footer .wrapper .FooterBottom {
  display: grid;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 1080px) {
  footer .wrapper .FooterBottom {
    justify-items: center;
  }
}
footer .wrapper .FooterBottom .Copyright {
  font-size: 1.2rem;
}/*# sourceMappingURL=style.css.map */