@charset "UTF-8";
@font-face {
  font-family: "ZenKurenaido-Regular";
  src: url(../fonts/ZenKurenaido/ZenKurenaido-Regular.woff2) format("woff2");
  font-display: swap;
}
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.left-in {
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.left-in.animated {
  clip-path: inset(0);
  opacity: 1;
}

.right-in {
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.right-in.animated {
  clip-path: inset(0);
  opacity: 1;
}

.fade-in {
  animation: fade-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.fade-in-left {
  animation: fade-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.fade-in-right {
  animation: fade-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s both;
}

.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.25s both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

@media (min-height: 700px) {
  main {
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  main {
    margin-top: 0;
  }
}

section .contents {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  section .contents {
    padding: 0 24px;
  }
}

section .contents p,
section .contents ul,
section .contents ol {
  margin-bottom: 1em;
}

.nowrap {
  white-space: nowrap;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #4e3612;
  padding: 12px;
  border-radius: 0;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  background-color: #fefbda;
  outline: none;
}

input[type=date],
select {
  max-width: 100%;
  padding: 8px;
  font-size: 16px;
  border-radius: 0;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.sup-txt {
  text-align: center;
  font-size: 14px;
  margin-bottom: 16px;
  margin-top: -4px;
}

.small {
  font-size: 14px;
}

.select-wrap {
  display: inline-block;
  position: relative;
  background-color: #FFF;
}
.select-wrap select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0;
  padding: 12px 24px 12px 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  background-color: transparent;
  color: #000;
}
.select-wrap::after {
  content: "";
  transform: translateY(50%);
  bottom: calc(50% - 2px);
  right: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
}

/* パンくず
-----------------------------------*/
.b-nv {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}
.b-nv ul {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0;
}
.b-nv ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
  line-height: 1;
}
.b-nv ul li a {
  margin-right: 8px;
}
.b-nv ul li::after {
  content: "";
  display: block;
  border-color: #333;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 8px;
  vertical-align: middle;
  width: 8px;
  transform: rotate(-45deg);
}
.b-nv ul li:last-child::after {
  content: none;
}

/* タイトル
-----------------------------------*/
.heading01 {
  margin: 0 auto -156px;
  background: #44c688;
  position: relative;
  top: -172px;
  width: 160px;
  height: 160px;
  border-radius: 500px;
  color: #FFF;
  font-family: "ZenKurenaido-Regular";
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .heading01 {
    width: 100px;
    height: 100px;
    top: -114px;
    margin: 0 auto -86px;
  }
}
.heading01 div {
  position: absolute;
  bottom: 50%;
  right: 50%;
  font-size: 24px;
  line-height: 1.2;
  transform: translateY(50%) translateX(50%);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .heading01 div {
    font-size: 20px;
  }
}
.heading01 div span {
  display: block;
  font-size: 44px;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 div span {
    font-size: 32px;
  }
}

.heading02 {
  font-size: 20px;
  color: #4e3612;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 72px;
  font-weight: bold;
}
.heading02 + * {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .heading02 {
    margin-bottom: 24px;
    margin-top: 40px;
    font-size: 18px;
  }
}
.heading02.small {
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .heading02.small {
    margin-bottom: 12px;
    margin-top: 24px;
  }
}

.heading03 {
  font-size: 24px;
  font-weight: bold;
  color: #4e3612;
  font-family: "ZenKurenaido-Regular";
  text-align: center;
  margin-bottom: 40px;
  margin-top: 72px;
  position: relative;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .heading03 {
    font-size: 18px;
  }
}
.heading03::after {
  position: absolute;
  height: 1px;
  background-color: #44c688;
  transform: translateX(50%);
  bottom: 0;
  content: "";
  display: block;
  width: 100px;
  right: 50%;
}
.heading03 + * {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .heading03 {
    margin-bottom: 24px;
    margin-top: 40px;
  }
}

.heading04 {
  font-size: 22px;
  font-weight: bold;
  color: #44C688;
  font-family: "ZenKurenaido-Regular";
  text-align: center;
  margin-bottom: 40px;
  margin-top: 72px;
}
@media (max-width: 767px) {
  .heading04 {
    font-size: 18px;
  }
}
.heading04 + * {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .heading04 {
    margin-bottom: 24px;
    margin-top: 40px;
  }
}

.color-box {
  position: relative;
  padding: 40px 0;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .color-box {
    margin-top: 40px;
  }
}
.color-box::before {
  content: "";
  background-color: #fefbda;
  display: block;
  width: 160%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  border-radius: 40px;
}
.color-box > * {
  position: relative;
  z-index: 1;
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.style-btn01 {
  background-color: #FFF;
  border: 1.5px solid #333;
  border-radius: 500px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
  min-width: 440px;
  text-align: center;
  padding: 32px 116px 32px 40px;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  transform: scale(0.7);
  font-size: 31px;
  line-height: 1;
  font-family: "ZenKurenaido-Regular";
  color: #333;
}
@media (min-width: 768px) {
  .style-btn01 img {
    width: 154px;
  }
}
@media (max-width: 767px) {
  .style-btn01 {
    min-width: 400px;
    padding: 32px 100px 32px 32px;
    font-size: 28px;
    transform: none;
    /*img {
    	width: 160px;
    }*/
  }
}
.style-btn01:hover {
  color: #333;
  text-decoration: none;
}
.style-btn01::before {
  content: "";
  background: url(../images/common/bt_bg01.png) 0 0 no-repeat;
  background-size: 100% auto;
  border-radius: 500px;
  border: 1.5px solid #333;
  position: absolute;
  bottom: 50%;
  right: -1px;
  display: block;
  width: 95px;
  height: 95px;
  transition: all 0.2s;
  transform: translateY(50%);
}
.style-btn01:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.style-btn01:hover::before {
  right: -23px;
}
@media (max-width: 767px) {
  .style-btn01:hover::before {
    right: -12px;
  }
}
.style-btn01:hover img {
  opacity: 1 !important;
}
.style-btn01.bg02::before {
  background: url(../images/common/bt_bg02.png) 0 0 no-repeat;
  background-size: 100% auto;
}
.style-btn01.reverse {
  padding: 32px 40px 32px 116px;
}
@media (max-width: 767px) {
  .style-btn01.reverse {
    padding: 32px 32px 32px 100px;
  }
}
.style-btn01.reverse::before {
  transform: scale(-1, 1) translateY(50%);
  right: auto;
  left: -1px;
}
.style-btn01.reverse:hover::before {
  right: auto;
  left: -23px;
}
@media (max-width: 767px) {
  .style-btn01.reverse:hover::before {
    left: -12px;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
}

.indent2 {
  display: block;
  margin-left: 2em;
  text-indent: -2em;
}

.indent3 {
  display: block;
  margin-left: 3em;
  text-indent: -3em;
}

/* 汎用カラム
-----------------------------------*/
.col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.col2 > * {
  width: 45%;
}

.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.col3 > * {
  width: 31%;
}

.col-free {
  display: flex;
  justify-content: center;
  align-items: center;
}
.col-free > * {
  margin: 0 4px;
}

@media (max-width: 767px) {
  .sp-break {
    display: block !important;
  }
  .sp-break > * {
    width: 100%;
  }
  .sp-break > *:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* カラム幅
-----------------------------------*/
.w300 {
  min-width: 300px !important;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}
.list-dot li li:not(:last-of-type) {
  margin-bottom: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}
.list-dot li:before li:not(:last-of-type) {
  margin-bottom: 1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}
.list-num li li:not(:last-of-type) {
  margin-bottom: 1em;
}

/* フリー */
.list-free li:not(:last-of-type) {
  margin-bottom: 1em;
}

/* テーブル
-----------------------------------*/
/* 幅 */
.colw05 {
  width: 5% !important;
}

.colw10 {
  width: 10% !important;
}

.colw15 {
  width: 15% !important;
}

.colw20 {
  width: 20% !important;
}

.colw25 {
  width: 25% !important;
}

.colw30 {
  width: 30% !important;
}

.colw35 {
  width: 35% !important;
}

.colw40 {
  width: 40% !important;
}

.colw45 {
  width: 45% !important;
}

.colw50 {
  width: 50% !important;
}

.colw60 {
  width: 60% !important;
}

.colw70 {
  width: 70% !important;
}

.colw80 {
  width: 80% !important;
}

.colw90 {
  width: 90% !important;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  border-bottom: 1px solid #CCC;
}
.list-news li:last-child {
  border-bottom: none;
}
.list-news li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.list-news li a .date {
  width: 80px;
  line-height: 1;
}
.list-news li a .label {
  width: 80px;
  padding: 6px 8px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .list-news li a .label {
    font-size: 12px;
  }
}
.list-news li a .title {
  width: calc(100% - 192px);
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover {
  color: #AAA;
  text-decoration: none;
}
@media (max-width: 767px) {
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
  }
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 88px 0;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 64px 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 32px;
  margin: 0 2px;
  border-radius: 50%;
  color: #333;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  background-color: #333;
  color: #FFF;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 40px 0 32px;
  font-size: 28px;
  line-height: 1.3;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 24px;
  }
}
.entry-detail .entry-header .entry-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.entry-detail .entry-header .entry-meta .date {
  line-height: 1;
}
.entry-detail .entry-header .entry-meta .label {
  width: 80px;
  padding: 6px 8px;
  margin-left: 16px;
  background-color: #333;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-meta .label {
    font-size: 12px;
  }
}
.entry-detail .entry-content {
  padding: 24px 0;
  margin: 24px 0;
  border-bottom: 1px solid #CCC;
  border-top: 1px solid #CCC;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    padding: 16px 0;
    margin: 16px 0;
  }
}
.entry-detail .btn-area {
  margin: 88px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    margin: 40px 0;
  }
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content {
  /* 投稿画像 */
}
.entry-detail .entry-content p {
  margin: 1em 0;
}
.entry-detail .entry-content h1 {
  margin: 24px 0 16px;
  font-size: 28px;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h1 {
    margin: 16px 0 12px;
    font-size: 24px;
  }
}
.entry-detail .entry-content h2 {
  margin: 24px 0 16px;
  font-size: 26px;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h2 {
    margin: 16px 0 12px;
    font-size: 22px;
  }
}
.entry-detail .entry-content h3 {
  margin: 16px 0;
  font-size: 24px;
  line-height: 1.3;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h3 {
    margin: 12px 0;
    font-size: 20px;
  }
}
.entry-detail .entry-content h4 {
  margin: 16px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h4 {
    margin: 12px 0;
    font-size: 18px;
  }
}
.entry-detail .entry-content h5 {
  margin: 16px 0;
  font-size: 20px;
  line-height: 1.3;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h5 {
    margin: 12px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-content h6 {
  margin: 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .entry-detail .entry-content h6 {
    margin: 12px 0;
    font-size: 14px;
  }
}
.entry-detail .entry-content ul {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content ul li {
  list-style: disc;
}
.entry-detail .entry-content ol {
  margin: 16px 0 16px 32px;
}
.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 32px;
}
.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}
.entry-detail .entry-content table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.entry-detail .entry-content table th {
  padding: 16px;
  border: solid 1px #333;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table th {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .entry-detail .entry-content table td {
    padding: 8px 2px;
    font-size: 12px;
  }
}
.entry-detail .entry-content .alignleft,
.entry-detail .entry-content img.alignleft {
  display: inline;
  float: left;
  margin-right: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .alignright,
.entry-detail .entry-content img.alignright {
  display: inline;
  float: right;
  margin-left: 16px;
  margin-top: 4px;
}
.entry-detail .entry-content .aligncenter,
.entry-detail .entry-content img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-detail .entry-content img.alignleft,
.entry-detail .entry-content img.alignright,
.entry-detail .entry-content img.aligncenter {
  margin-bottom: 16px;
}
.entry-detail .entry-content .wp-caption {
  text-align: center;
}

/*# sourceMappingURL=common.css.map */
