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

.fadein {
  -webkit-animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
          animation: fade-in 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s both;
}

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

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

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

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

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

main {
  margin-top: 100px;
}
@media (max-width: 1023px) {
  main {
    margin-top: 60px;
  }
}

section .contents {
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  section .contents {
    width: 90%;
  }
}

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

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 8px;
  background-color: #FFF;
  border: none;
  font-size: 16px;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-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: 15px;
  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;
}

/* タイトル
-----------------------------------*/
.title-area {
  position: relative;
  margin-top: 150px;
  padding: 0 0 56px;
}
@media (max-width: 767px) {
  .title-area {
    margin-top: 75px;
    padding: 0 0 28px;
  }
}
.title-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 56px);
  background: #EFEFEF;
}
@media (max-width: 767px) {
  .title-area::before {
    height: calc(100% - 28px);
  }
}
.title-area .contents {
  max-width: 1100px;
}
@media (max-width: 767px) {
  .title-area .contents {
    width: 100%;
    padding-left: 5%;
  }
}
.title-area .wrap {
  display: flex;
  justify-content: space-between;
}
.title-area .heading-title {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    font-size: 28px;
  }
}
.title-area .heading-title span {
  display: block;
  margin-right: 24px;
  font-size: 15px;
  font-family: "Bayon-Regular", sans-serif;
  font-weight: normal;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .title-area .heading-title span {
    margin-right: 12px;
    font-size: 14px;
  }
}
.title-area .bg {
  width: calc(100% - 145px);
}
@media (max-width: 767px) {
  .title-area .bg {
    width: calc(100% - 88px);
  }
}

.heading01 {
  margin: 104px 0 64px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 80px 0 40px;
    font-size: 28px;
  }
}
.heading01 span {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  font-family: "Bayon-Regular", sans-serif;
  font-weight: normal;
  letter-spacing: 0.15em;
}

.heading02 {
  margin: 100px 0 48px;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 64px 0 24px;
    font-size: 18px;
  }
}
.heading02 span {
  position: relative;
  display: inline-block;
  padding-left: 48px;
}
@media (max-width: 767px) {
  .heading02 span {
    padding-left: 24px;
  }
}
.heading02 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: #555;
}
@media (max-width: 767px) {
  .heading02 span::before {
    width: 15px;
  }
}

.heading03 {
  margin: 48px 0 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
  transition: 0.5s all;
}
.link-txt:hover {
  color: #FFC600;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  position: relative;
  z-index: 0;
  display: inline-block;
  min-width: 140px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 16px;
  border-radius: 500px;
  background: linear-gradient(to right, #FFC600 0%, #FF7166 100%);
  color: #FFF;
  line-height: 44px;
  font-size: 16px;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background: linear-gradient(to right, #108DC7 0%, #FFC600 100%);
  transition: 0.5s all;
}
.com-bt:hover {
  color: #FFF;
  text-decoration: none;
}
.com-bt:hover::before {
  opacity: 1;
}
@media (max-width: 767px) {
  .com-bt {
    min-width: 145px;
    padding: 0 8px;
    font-size: 15px;
  }
}
.com-bt .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 9px;
  height: 14px;
  background: url(/images/common/com_arrow01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .com-bt .arrow {
    width: 8px;
    height: 13px;
  }
}
.com-bt.next {
  padding: 0 64px 0 40px;
}
.com-bt.next .arrow {
  right: 44px;
}
.com-bt.prev {
  padding: 0 40px 0 64px;
}
.com-bt.prev .arrow {
  left: 44px;
  transform: rotate(180deg) translateY(-50%);
  transform-origin: top center;
}
.com-bt.input {
  padding: 0;
}
.com-bt.input.next input[type=submit],
.com-bt.input.next input[type=button] {
  padding: 0 64px 0 40px;
}
.com-bt.input.prev input[type=submit],
.com-bt.input.prev input[type=button] {
  padding: 0 40px 0 64px;
}
.com-bt input[type=submit],
.com-bt input[type=button] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 16px;
}

.com-bt input[type=submit],
.com-bt input[type=button],
button.com-bt {
  border: none;
  background-color: initial;
  color: #FFF;
  font-size: 16px;
  line-height: 44px;
  cursor: pointer;
}
.com-bt input[type=submit]:hover,
.com-bt input[type=button]:hover,
button.com-bt:hover {
  background-color: initial;
  color: #FFF;
}
@media (max-width: 767px) {
  .com-bt input[type=submit],
.com-bt input[type=button],
button.com-bt {
    font-size: 15px;
  }
}

.com-bt2 {
  display: inline-block;
  min-width: 250px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 16px;
  border-radius: 500px;
  background: #37414F;
  color: #FFF;
  line-height: 60px;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt2:hover {
  background: #FFC600;
  color: #FFF;
  text-decoration: none;
}
.com-bt2:hover::before {
  opacity: 1;
}
@media (max-width: 767px) {
  .com-bt2 {
    padding: 0 8px;
    font-size: 14px;
  }
}

.com-bt3 {
  display: inline-block;
  min-width: 250px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 16px;
  border: 2px solid #37414F;
  border-radius: 500px;
  background: #FFF;
  color: #000;
  line-height: 56px;
  text-align: center;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt3:hover {
  border-color: #FFC600;
  color: #FFC600;
  text-decoration: none;
}
.com-bt3:hover::before {
  opacity: 1;
}
@media (max-width: 767px) {
  .com-bt3 {
    padding: 0 8px;
    font-size: 14px;
  }
}

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

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 横並び
-----------------------------------*/
.com-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.com-wrap .img {
  width: 48%;
}
.com-wrap .txt {
  width: 48%;
}
.com-wrap.txt-left {
  flex-direction: row-reverse;
}

/* 横並びリスト
-----------------------------------*/
.list-col2,
.list-col3,
.list-col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.list-col2 li {
  width: 48%;
  margin-bottom: 24px;
}
.list-col2 li:nth-child(even) {
  margin-left: 4%;
}

.list-col3 li {
  width: 32%;
  margin-bottom: 16px;
  margin-right: 2%;
}
.list-col3 li:nth-child(3n) {
  margin-right: 0;
}

.list-col4 li {
  width: 24%;
  margin-bottom: 16px;
  margin-right: 1.333%;
}
.list-col4 li:nth-child(4n) {
  margin-right: 0;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

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

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

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

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-top: solid 1px #DCDDDD;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 24px 0;
  border-bottom: solid 1px #DCDDDD;
  font-weight: bold;
}
@media (max-width: 767px) {
  .table th {
    display: block;
    padding: 16px 4px 0;
    border-bottom: none;
  }
}
.table td {
  padding: 24px 0;
  border-bottom: solid 1px #DCDDDD;
}
@media (max-width: 767px) {
  .table td {
    display: block;
    padding: 8px 4px 16px;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news {
  border-top: 1px solid #DCDDDD;
}
.list-news li {
  border-bottom: 1px solid #DCDDDD;
}
.list-news li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  transition: 0.5s all;
}
@media (max-width: 767px) {
  .list-news li a {
    display: block;
    padding: 16px 0;
  }
}
.list-news li a .date {
  width: 168px;
  line-height: 1;
}
.list-news li a .title {
  flex: 1;
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover {
  color: #FFC600;
  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: 44px 0 88px;
  font-weight: bold;
  line-height: 33px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 32px 0 64px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span.current {
  display: inline-block;
  width: 35px;
  margin: 0 10px;
  border: 1px solid #37414F;
  color: #37414F;
  transition: 0.5s all;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  text-decoration: none;
  background-color: #37414F;
  color: #FFF;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  height: 13px;
  margin: auto;
  background: url(/images/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background: url(/images/common/com_arrow04.svg) no-repeat;
  background-size: 100% auto;
}
.wp-pagenavi .previouspostslink::before {
  transform: rotate(180deg);
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .wbox-detail {
  padding: 64px 60px 88px;
  border-radius: 24px;
  background: #FFF;
}
@media (max-width: 767px) {
  .entry-detail .wbox-detail {
    padding: 32px 30px 44px;
  }
}
.entry-detail .entry-header .entry-title {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 767px) {
  .entry-detail .entry-header .entry-title {
    margin: 28px 0;
    font-size: 16px;
  }
}
.entry-detail .entry-header .entry-meta .date {
  line-height: 1;
}
.entry-detail .entry-content {
  margin: 32px 0;
  overflow: hidden;
  word-break: break-all;
}
@media (max-width: 767px) {
  .entry-detail .entry-content {
    margin: 16px 0;
  }
}
.entry-detail .large-img {
  margin: 64px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .large-img {
    margin: 32px 0;
  }
}
.entry-detail .btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 124px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-detail .btn-area {
    flex-direction: column;
    margin: 64px 0;
  }
}
.entry-detail .btn-area .com-bt2 {
  min-width: 200px;
  margin: 0 48px;
}
@media (max-width: 767px) {
  .entry-detail .btn-area .com-bt2 {
    margin: 24px 0;
  }
}
.entry-detail .btn-area .next-bt {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.entry-detail .btn-area .next-bt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 13px;
  background: url(/images/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
.entry-detail .btn-area .prev-bt {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.entry-detail .btn-area .prev-bt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(180deg) translateY(-50%);
  transform-origin: top center;
  width: 8px;
  height: 13px;
  background: url(/images/common/com_arrow03.svg) no-repeat;
  background-size: 100% auto;
}
.entry-detail .btn-area a:hover {
  text-decoration: none;
}

/* 投稿記事 詳細
-----------------------------------*/
.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-weight: bold;
  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-weight: bold;
  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-weight: bold;
}
@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-weight: bold;
}
@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-weight: bold;
}
@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-weight: bold;
}
@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-weight: bold;
  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 */