@charset "UTF-8";
/**
 * Mixin
 */
/*  animation */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInBottom {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.scloll {
  opacity: 0;
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

.scloll.on {
  opacity: 1;
}

.scloll-bi {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

.scloll-bi.on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.8;
  opacity: 0;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-text-size-adjust: 100%;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

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

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.5;
  }
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

button {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

button:hover,
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.bold {
  font-weight: 700;
}

.content {
  min-height: 90vh;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .content {
    padding-top: 60px;
  }
}

/* header  */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 25px;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    padding-right: 0;
  }
}

.header__logo {
  width: 400px;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    width: 40%;
  }
}

.menuBtn {
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .menuBtn {
    height: 26px;
  }
}
.menuBtn span {
  height: 6px;
  width: 45px;
  background-color: #ec6941;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 767px) {
  .menuBtn span {
    height: 4px;
    width: 34px;
  }
}

.nav {
  display: none;
  background-color: #ffd6bd;
  position: fixed;
  height: calc(100dvh - 100px);
  width: 100%;
  top: 100px;
  overflow-y: auto;
  padding: 60px;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .nav {
    top: 60px;
    height: calc(100dvh - 60px);
  }
}

.nav_list a {
  font-weight: bold;
  font-size: 3rem;
  color: #ec6941;
  display: block;
}
@media only screen and (max-width: 767px) {
  .nav_list a {
    font-size: 2rem;
  }
}
.nav_list a + a {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .nav_list a + a {
    margin-top: 30px;
  }
}

.nav_btn {
  margin: 40px auto 0;
  width: 380px;
  max-width: 100%;
  min-height: 70px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50px;
  border: #fff 3px solid;
  color: #ec6941;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .nav_btn {
    min-height: 50px;
    margin: 20px auto 0;
  }
}
.nav_btn span {
  z-index: 1;
  font-family: "BIZ UDPGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .nav_btn span {
    font-size: 1.8rem;
  }
}
.nav_btn::before {
  content: "";
  display: block;
  background-color: #ffd6bd;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.nav_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 55px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav_sns img {
  width: 40px;
  height: 40px;
}

.nav_on .menuBtn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav_on .menuBtn span {
  translate: 0 0 0;
}
.nav_on .menuBtn span:nth-of-type(2) {
  display: none;
}
.nav_on .menuBtn span:nth-of-type(1) {
  rotate: 45deg;
  margin: 6px 0 0;
}
.nav_on .menuBtn span:nth-of-type(3) {
  rotate: -45deg;
  margin: -6px 0 0;
}

body.nav_on {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.footer {
  background-color: #fff0e5;
  text-align: center;
  padding: 50px 20px 10px;
}

.footer_logo img {
  width: 300px;
}

.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}
.footer_sns img {
  width: 40px;
}

.footer_copy {
  font-size: 1rem;
  text-align: center;
  font-family: "BIZ UDPGothic", sans-serif;
}

.page_header {
  background-color: #fff0e5;
  text-align: center;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 4rem;
  letter-spacing: 0.1em;
  color: #ec6941;
  padding: 10px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .page_header {
    font-size: 2.4rem;
  }
}
.page_header span {
  display: block;
  line-height: 0;
  margin: 20px 0 0;
}
@media only screen and (max-width: 767px) {
  .page_header span {
    width: 70px;
    margin: 10px 0 0;
  }
}

.page_ttl {
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  margin: 0 0 50px;
  color: #434343;
}
.page_ttl .icon {
  margin: 0 0 30px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .page_ttl {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
}

.page_inner {
  max-width: 900px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.blog_inner {
  max-width: 900px;
  width: 96%;
  min-height: 90vh;
  margin-left: auto;
  margin-right: auto;
}

.blog_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px 0 0;
}

.blog_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.blog_cat a {
  color: #ec6941;
}

.blog_date {
  color: #a0a0a0;
}

.blog_ttl {
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  margin: 0 0 50px;
  border-bottom: 3px solid;
}
@media only screen and (max-width: 767px) {
  .blog_ttl {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
}

.blog_content {
  padding: 50px 0 80px;
}

.post_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  font-size: 1.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 780px) {
  .post_link {
    display: block;
  }
}
.post_link > a {
  width: 50%;
  position: relative;
  display: block;
}

@media only screen and (max-width: 780px) {
  .post_link > a {
    width: 100%;
  }
}
.post_link__left {
  padding-left: 10px;
}

.post_link__right {
  text-align: right;
  padding-right: 10px;
}

.post_link__left + .post_link__right {
  margin-left: 20px;
}

@media only screen and (max-width: 780px) {
  .post_link__left + .post_link__right {
    margin-left: 0;
    margin-top: 10px;
  }
}
.post_link__left::before,
.post_link__right::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-left: 1px solid;
  display: inline-block;
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_link__left::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
}

.post_link__right::after {
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
  right: 0;
}

/* エディタ */
.post a {
  text-decoration: underline;
}

.post .wp-caption {
  width: 100% !important;
}

.post .wp-caption-text {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0 !important;
}

.post img {
  vertical-align: bottom;
}

.post * + h2,
.post * + h3,
.post * + h4,
.post * + h5,
.post * + h6 {
  margin-top: 6rem;
}

.post h2 {
  font-size: 3rem;
  margin-bottom: 2.6rem;
}

.post h3 {
  font-size: 2.4rem;
  margin-bottom: 2.6rem;
}

.post h4 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
}

.post * + h4 {
  margin-top: 3rem;
}

.post h5 {
  font-size: 1.8rem;
}

.post iframe {
  max-width: 100%;
}

.post pre {
  white-space: pre-wrap;
}

.post ul,
.post p {
  line-height: 1.6;
}

.post * + p,
.post * + figure {
  margin-top: 3rem;
}

.post * + div,
.post * + ul,
.post * + ol,
.post * + table,
.post * + blockquote {
  margin-top: 3rem;
}

.post ol {
  padding-left: 2rem;
}

.post ol.list_ol {
  counter-reset: li;
  padding-left: 0;
  list-style: none;
}

.post ol.list_ol > li {
  word-break: break-all;
  position: relative;
  padding-left: 24px;
}

.post ol.list_ol > li::before {
  counter-increment: li;
  content: counter(li);
  width: 20px;
  line-height: 20px;
  text-align: center;
  height: 20px;
  display: inline-block;
  border-radius: 3px;
  font-size: 1.2rem;
  position: absolute;
  top: 0.4em;
  left: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
}

@media only screen and (max-width: 780px) {
  .post ol.list_ol > li::before {
    width: 16px;
    line-height: 16px;
    height: 16px;
  }
}
.post ul {
  padding-left: 2rem;
  list-style: disc;
}

.post ul.list_default {
  padding-left: 0;
  list-style: none;
}

.post ul.list_default li {
  word-break: break-all;
  position: relative;
  padding-left: 2rem;
}

.post ul.list_default li::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
}

.post ul.list_triangle {
  padding-left: 0rem;
  list-style: none;
}

.post ul.list_triangle li {
  word-break: break-all;
  position: relative;
  padding-left: 2.2rem;
}

.post ul.list_triangle li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  position: absolute;
  top: 0.9rem;
  left: 0;
  font-size: 1.2rem;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  text-align: center;
  padding-left: 0.3rem;
  border-radius: 50%;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .post ul.list_triangle li::before {
    padding-left: 0.2rem;
  }
}
.post ul.list_check {
  padding: 0;
  list-style: none;
}

.post ul.list_check li {
  word-break: break-all;
  position: relative;
  padding-left: 2.4rem;
}

.post ul.list_check li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  top: 0.9rem;
  left: 0;
  font-size: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  padding-left: 0.1rem;
  border-radius: 50%;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .post ul.list_check li::before {
    padding-left: 0.1rem;
  }
}
.post li + li {
  margin-top: 0.5rem;
}

.post .list_line li {
  border-bottom: 1px dotted #ccc;
}

.post a {
  text-decoration: underline;
}

.post table {
  width: 100%;
}

.post table th,
.post table td {
  border: 1px solid #ccc;
  padding: 10px 15px;
}

.post table thead td,
.post table th {
  background: #f5f5f5;
  text-align: left;
  font-weight: normal;
  width: 40%;
}

.post blockquote {
  position: relative;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1em 1.5em 1em 3.5em;
  background-color: #f5f5f5;
}

.post blockquote cite {
  display: block;
  padding-right: 30px;
  font-size: 0.8rem;
  text-align: right;
  color: #ccc;
}

.blog_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  width: 94%;
  max-width: 1280px;
  padding: 80px 0;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .blog_list {
    gap: 20px;
  }
}

.blog_list__item {
  width: calc((100% - 120px) / 3);
}
@media only screen and (max-width: 767px) {
  .blog_list__item {
    width: calc((100% - 20px) / 2);
  }
}

.blog_list__img {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 100%; /* calc(画像高さ ÷ 画像横幅 × 100%) */
}
.blog_list__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog_list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .blog_list__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 8px;
  }
}

.blog_list__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.blog_list__cat a {
  color: #ec6941;
}

.blog_list__data {
  color: #a0a0a0;
}

.nav-links {
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.nav-links span {
  color: #a0a0a0;
}