@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

.l-header__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  height: 100px;
}
@media screen and (max-width: 600px) {
  .l-header__inner {
    height: auto;
  }
}

.l-header__bar {
  background: none;
}

/* メニューの位置*/
.home #gnav {
  text-align: center;
}

.home ul.c-gnav {
  justify-content: center;
}

.home #gnav a {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-title {
  position: relative;
}

.section-title::before {
  content: attr(data-number);
  position: absolute;
  left: 10px;
  top: -150px;
  font-size: 8em;
  font-weight: bold;
  opacity: 0.3;
  z-index: 100 !important;
}
@media screen and (max-width: 600px) {
  .section-title::before {
    font-size: 4em;
    top: -20px;
    right: 80px;
  }
}

.flickity-carousel.swell-block-columns__inner {
  display: block;
}

.flickity-prev-next-button {
  top: 20%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translateY(-20%);
}

.flickity-prev-next-button.next {
  right: 15px;
}

.flickity-prev-next-button.previous {
  left: 15px;
}

body {
  font-family: "Noto Serif JP", serif;
}

.p-authorBox__l img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .all-img-text2 {
    display: none;
  }
}

.siro {
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0px 5px 25px rgba(255, 231, 180, 0.8588235294);
  position: relative;
}

.p-postList.-type-card,
.p-postList.-type-thumb {
  flex-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  .p-postList.-type-card,
  .p-postList.-type-thumb {
    flex-wrap: wrap;
  }
}

.front #swell-block-fullWide-4,
.front #swell-block-fullWide-5,
.front #swell-block-fullWide-6 {
  background-attachment: fixed;
  height: auto;
}
@media screen and (max-width: 600px) {
  .front #swell-block-fullWide-4,
  .front #swell-block-fullWide-5,
  .front #swell-block-fullWide-6 {
    background-attachment: scroll;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

@media screen and (max-width: 960px) {
  .footer-rich .has-text-align-right {
    text-align: center;
    margin: 0 auto;
  }
  .footer-rich .wp-block-buttons {
    justify-content: center !important;
  }
}
.footer-rich .wp-block-button__link {
  white-space: nowrap;
  width: auto !important;
}
@media screen and (max-width: 600px) {
  .footer-rich .wp-block-button__link {
    width: 100% !important;
  }
}

.footer-img img {
  display: inline-block;
  text-align: center;
}

/* フッター直前ウィジェット*/
.l-content {
  margin: 0 auto 0 !important;
}

/*contactfrom*/
/* 全幅指定 */
.contactForm {
  max-width: 100%;
  margin: 0 auto;
  /* 各項目の下部余白と線 */
  /* 送信ボタン */
}
.contactForm .contact_item {
  border-bottom: solid 1px #8f8e8e;
  padding: 10px 0;
  /* labelとinputをflex */
}
.contactForm .contact_item:first-child {
  border-top: 1px solid #8f8e8e;
}
.contactForm .contact_item p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .contactForm .contact_item p {
    flex-direction: column;
  }
}
.contactForm .contact_item p .label {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: bold;
  /* 必須タグ */
  /* 任意タグ */
}
@media screen and (max-width: 960px) {
  .contactForm .contact_item p .label {
    text-align: left;
    width: 70%;
  }
}
.contactForm .contact_item p .label_tag {
  font-size: 1rem;
  color: white;
  border-radius: 0.2rem;
  margin-left: 0.5rem;
  padding: 2px 5px;
}
.contactForm .contact_item p .label_must {
  background-color: red;
}
.contactForm .contact_item p .label_option {
  background-color: #8f8e8e;
}
.contactForm .contact_item .wpcf7-form-control-wrap {
  width: 70%;
}
.contactForm .contact_item input[type=text],
.contactForm .contact_item input[type=email],
.contactForm .contact_item input[type=tel] {
  border: solid 1px #ccc;
  background-color: #f5f5f5;
  padding: 0.1rem;
  font-size: 18px;
  width: 100%;
}
.contactForm .contact_item textarea {
  border: solid 1px #ccc;
  background-color: #f5f5f5;
  height: 100px;
  font-size: 18px;
  width: 100%;
}
.contactForm .btn {
  margin-top: 10px;
  text-align: center;
}
.contactForm .btn input[type=submit] {
  background: #000000;
  border: 2px solid white;
  width: 164px;
  height: 56px;
  color: white;
  text-align: center;
  cursor: pointer;
  border-radius: 0.5rem;
  font-size: 18px;
  /* ボタンにホバーした時 */
}
.contactForm .btn input[type=submit]:hover {
  color: #000000;
  background-color: white;
  border-color: #000000;
}

@media screen and (max-width: 1440px) {
  .f18 span {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 1440px) {
  .f24 span,
  .f24 p {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 1440px) {
  .textarea-class {
    font-size: 16px !important;
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-pd {
  padding: 0 20px;
}

.c-pageTitle {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 4px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .c-pageTitle {
    font-size: 24px !important;
  }
}

.swell-block-faq {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
@media screen and (max-width: 600px) {
  .swell-block-faq {
    display: block;
  }
}

.swell-block-faq__item {
  background: white;
  width: 33%;
  box-shadow: var(--swl-box_shadow);
}
@media screen and (max-width: 600px) {
  .swell-block-faq__item {
    width: 100%;
  }
}

.swell-block-faq .swell-block-faq__item + .swell-block-faq__item {
  margin-top: 0;
}

.btn .text-class {
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn .text-class:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.btn .text-class:hover:before {
  transform: scaleX(1);
}

.imgwrap span {
  display: inline-block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.568627451);
}
@media screen and (max-width: 600px) {
  .imgwrap .custom-img {
    width: 100% !important;
    height: 100% !important;
  }
}

@media screen and (max-width: 960px) {
  .custom-img {
    max-height: 400px !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.custom-img-text {
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .custom-img-text {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 960px) {
  .line-wrapper .textarea-class, .line-wrapper .text-class {
    display: block;
    padding: 1rem;
    text-align: center;
    line-height: 3;
  }
}
.line-wrapper .line {
  background-color: #fff;
  border-bottom: 4px solid #ccc;
}
.line-wrapper .line:nth-of-type(1) {
  border-top: none;
}

.title {
  font-size: 36px;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  position: relative;
}

.title::after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 3px;
  background-color: #676464;
}

.title2 {
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  padding: 10px 30px;
  background-color: #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0 #000000;
}

.title2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  height: 2px;
  width: 10px;
  background-color: #000000;
  transform: translateY(-50%);
}

.title2-1 {
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  padding: 10px 30px;
  background-color: #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0 #000000;
}

.title2-1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  height: 2px;
  width: 10px;
  background-color: #000000;
  transform: translateY(-50%);
}

.title2-2 {
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  padding: 10px 30px;
  background-color: #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0 #000000;
}

.title2-2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #000000;
}

.title3 {
  font-size: 24px;
  font-weight: bold;
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  display: inline-block;
  position: relative;
  background: linear-gradient(145deg, #d4e4dd, #eef6f4);
  border-radius: 5px;
  margin: 0 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title3::before,
.title3::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(58, 58, 58, 0.5176470588);
}

.title3::before {
  top: 50%;
  left: -35px;
  width: 25px;
  transform: translateY(-50%);
}

.title3::after {
  top: 50%;
  right: -35px;
  width: 25px;
  transform: translateY(-50%);
}

.title4 {
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.title4::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 8px;
  width: 100%;
  background-color: #000000;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.title4:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}

.title5 {
  position: relative;
}
.title5::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 20px;
  /* 四角の横幅 */
  height: 20px;
  /* 四角の縦幅 */
  background-color: rgba(255, 82, 82, 0.699);
  /* 四角の色 */
  z-index: -10;
}

.title6 {
  position: relative;
  /* 適切なサイズに調整 */
}
.title6::before {
  content: "";
  position: absolute;
  bottom: 50%;
  width: 50%;
  height: 2px;
  background-color: #000000;
  left: 0;
  transform: translateX(-50%);
}
.title6::after {
  content: "";
  position: absolute;
  bottom: 50%;
  width: 50%;
  height: 2px;
  background-color: #000000;
  right: 0;
  transform: translateX(50%);
}

.title7 {
  display: block;
  font-family: "Impact", "Arial Black", "Franklin Gothic Bold", sans-serif;
  text-shadow: 3px 3px 6px rgba(255, 206, 151, 0.75);
  position: absolute;
  top: -25%;
  left: -10%;
}
@media screen and (max-width: 600px) {
  .title7 {
    position: static;
  }
}

.title8 {
  display: block;
  font-family: "Impact", "Arial Black", "Franklin Gothic Bold", sans-serif;
  text-shadow: 3px 3px 6px rgba(255, 206, 151, 0.75);
  text-align: center;
}

.blogg {
  font-family: "Noto Serif JP", serif;
}
.blogg .contact {
  font-size: 40px;
}
@media screen and (max-width: 600px) {
  .blogg .contact {
    font-size: 24px;
  }
}

.front {
  color: rgb(0, 0, 0);
}

#swell-block-fullWide-1 {
  background-attachment: fixed;
  height: auto;
}
@media screen and (max-width: 600px) {
  #swell-block-fullWide-1 {
    background-attachment: scroll;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

#swell-block-fullWide-2 {
  background-attachment: fixed;
  height: auto;
}
@media screen and (max-width: 600px) {
  #swell-block-fullWide-2 {
    background-attachment: scroll;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

.front1 {
  position: relative;
  max-width: 85.125%;
  margin-left: 40%;
}
@media screen and (max-width: 960px) {
  .front1 {
    max-width: 100%;
    margin-left: 0;
  }
}
.front1 #swell-block-fullWide-1 {
  height: 600px;
}
.front1 .about_text {
  position: absolute;
  top: 200px;
  left: -220px;
  width: 400px;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .front1 .about_text {
    position: static;
    padding: 0;
  }
}
.front1 .sp_about {
  padding: 2rem;
}

.front2 {
  position: absolute;
  bottom: -450px;
  padding: 0 170px;
  background-color: transparent !important;
}
@media screen and (max-width: 600px) {
  .front2 {
    position: static;
    padding: 0;
  }
}
.front2 .textbox .about_text1 {
  background-color: #ff0000;
  padding: 1rem;
  display: inline-block;
}
.front2 .about_textarea {
  background-color: #ff0000;
  padding: 1rem;
}

.front #swell-block-fullWide-2 {
  background-attachment: fixed;
  height: auto;
}
@media screen and (max-width: 600px) {
  .front #swell-block-fullWide-2 {
    background-attachment: scroll;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

.about .topue {
  width: 90%;
}

.example .title,
.example .contact {
  font-size: 30px;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .example .title,
  .example .contact {
    font-size: 24px;
  }
}
.example .subtitle {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .example .subtitle {
    font-size: 18px;
  }
}
.example .textarea {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: justify;
  margin: 50px auto;
  max-width: 100%;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 1px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #f9f9f9;
}
@media screen and (max-width: 960px) {
  .example .textarea {
    margin: 30px auto;
  }
}
.example .post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}
@media screen and (max-width: 960px) {
  .example .post {
    grid-template-columns: 100%;
  }
}
.example .post:nth-child(odd) .post-thumbnail,
.example .post:nth-child(even) .post-content {
  order: 1;
}
.example .post:nth-child(odd) .post-content,
.example .post:nth-child(even) .post-thumbnail {
  order: 2;
}
@media screen and (max-width: 960px) {
  .example .post:nth-child(odd) .post-content,
  .example .post:nth-child(even) .post-thumbnail {
    order: 1;
  }
}
.example .post-thumbnail,
.example .post-content {
  padding: 20px;
}
.example .post-title,
.example .post-excerpt {
  margin: 0;
}
.example .post-title {
  font-size: 24px;
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
.example .post-title::before, .example .post-title::after {
  content: "";
  min-width: 100px;
  height: 4px;
  content: "";
  border-top: 1px solid #000000;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 960px) {
  .example .post-title::before, .example .post-title::after {
    min-width: 30px;
  }
}
.example .post-excerpt {
  font-size: 16px;
  margin-bottom: 50px;
}
.example .post-link {
  display: grid;
  grid-template-columns: 1fr auto 20px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  align-items: center;
  color: black;
  transition: all 0.1s ease;
}
.example .post-link::before {
  content: "";
}
.example .post-link::after {
  content: "⇀";
  font-size: 24px;
  justify-self: end;
  transition: transform 0.3s ease;
  transform: translateX(0);
}
.example .post-link:hover {
  color: #a3a3a3;
}
.example .post-link:hover::after {
  transform: translateX(12px);
}
.example .link-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  place-items: center;
}
@media screen and (max-width: 960px) {
  .example .link-container {
    grid-template-columns: 100%;
  }
}
.example .link-container .left-link,
.example .link-container .right-link {
  text-align: center;
  background: linear-gradient(to right, #000000, white);
  border: 1px solid #d2d2d2;
  width: 100%;
  height: 300px;
  line-height: 300px;
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .example .link-container .left-link,
  .example .link-container .right-link {
    height: 200px;
    line-height: 200px;
  }
}
@media screen and (max-width: 960px) and (max-width: 600px) {
  .example .link-container .left-link,
  .example .link-container .right-link {
    font-size: 18px;
  }
}
.example .link-container .left-link::before,
.example .link-container .right-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease;
}
.example .link-container .left-link::before {
  background: rgba(0, 0, 0, 0.695);
  transform: scaleX(0);
  transform-origin: left;
}
.example .link-container .right-link::before {
  background: rgba(0, 0, 0, 0.695);
  transform: scaleX(0);
  transform-origin: left;
}
.example .link-container .left-link:hover::before {
  transform: scaleX(1);
}
.example .link-container .right-link:hover::before {
  transform: scaleX(1);
}
.example .swell-block-fullWide {
  margin-top: 100px;
  background-repeat: no-repeat;
  background-size: cover;
}
.example .swell-block-fullWide .swell-block-columns__inner {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 600px) {
  .example .swell-block-fullWide .swell-block-columns__inner {
    flex-direction: column;
  }
}
.example .swell-block-fullWide .swell-block-columns__inner .swell-block-button {
  width: 235.19px;
}
.example .swell-block-fullWide .swell-block-columns__inner .swell-block-button a {
  display: block;
  width: 100%;
}

.custom__example {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}
@media screen and (max-width: 960px) {
  .custom__example {
    grid-template-columns: 100%;
  }
}
.custom__example__item {
  border: 1px solid black;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.custom__example__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.custom__example__item__content {
  display: grid;
  row-gap: 10px;
}
.custom__example__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}
.custom__example__excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}
.custom__example__link {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  color: #fff;
  background-color: #000;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-self: end;
  justify-self: end;
}
.custom__example__link:hover {
  background-color: #fff;
  color: #000;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-numbers {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.next.page-numbers {
  margin-left: 10px;
}

.profile .text-class {
  padding: 1rem;
}
.profile .textarea-class {
  padding: 1rem;
}
.profile .custom-img {
  display: block;
  width: 80%;
  margin: 0 auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-line {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}

.access .pd {
  padding: 3rem;
}
.access .pd .swell-block-columns {
  margin-bottom: 50px;
  border-bottom: solid 1px #ccc;
}/*# sourceMappingURL=style.css.map */