/* カラー変更 */
:root {
  --content-width: 1200px;
  --main-color: #005799;
  --sub-color: #EDF5FC;
  --pale-color: #EDF5FC;
}

/* コンテンツレイアウト */
body {
  margin: 0;
  position: relative;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", sans-serif;
}

main {
  position: relative;
  margin-top: 65px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  border-spacing: 0;
  border-collapse: collapse;
  text-indent: initial;
  line-height: 2.0em;
}

.home section {
  padding: 100px 0;
}

section {
  padding: 60px 0;
}

section:last-of-type {
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }

  .home section {
    padding: 30px 0;
  }
}

.container {
  padding-right: calc(30px / 2);
  padding-left: calc(30px / 2);
}

@media (min-width: 767px) {
  .container {
    margin: 0 auto;
    max-width: var(--content-width);
  }

  :first-child {
    margin-top: 0;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: calc(-1 * 30px / 2);
  margin-left: calc(-1 * 30px / 2);
}

@media (max-width: 767px) {
  .row {
    display: block;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .row.sp-2row {
    display: flex;
  }
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row .span_1 {
  width: calc(100% / 12 * 1);
}

.row .span_2 {
  width: calc(100% / 12 * 2);
}

.row .span_3 {
  width: calc(100% / 12 * 3);
}

.row .span_4 {
  width: calc(100% / 12 * 4);
}

.row .span_5 {
  width: calc(100% / 12 * 5);
}

.row .span_6 {
  width: calc(100% / 12 * 6);
}

.row .span_7 {
  width: calc(100% / 12 * 7);
}

.row .span_8 {
  width: calc(100% / 12 * 8);
}

.row .span_9 {
  width: calc(100% / 12 * 9);
}

.row .span_10 {
  width: calc(100% / 12 * 10);
}

.row .span_11 {
  width: calc(100% / 12 * 11);
}

.row .span_12 {
  width: 100%;
}

.row>.col {
  margin-top: 30px;
  margin-left: 0;
  padding-right: calc(30px / 2);
  padding-left: calc(30px / 2);
}


@media (max-width: 767px) {
  .row>.col {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    width: 100%;
  }

  .row.sp-2row>.col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .row .span_1 {
    width: auto;
  }

  .row>.col:not(:first-child) {
    margin-top: 20px;
  }
}

/* ぱんくず */
.bread_wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.bread {
  overflow: hidden;
  margin: 0;
  justify-content: end;
}

.bread ul {
  float: none;
}

@media (max-width: 767px) {
  .bread ul {
    padding: 15px 0;
  }
}

.bread ul li {
  list-style: none;
  position: relative;
  float: left;
  margin-right: 20px;
  padding-right: calc(20px + 9px);
}

@media (max-width: 767px) {
  .bread ul li {
    margin-right: 15px;
    padding-right: calc(15px + 9px);
  }
}

.bread ul li a {
  padding: 0;
  text-decoration: none;
  color: #1b1b1b;
}


.bread ul li a:hover {
  color: #1b1b1b;
  text-decoration: none;
}

.bread ul li:after {
  content: '>';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bread ul li:last-child:after {
  content: none;
}

/* 画像のフィックス */

figure {
  margin: 0;
  text-align: center;
}

img {
  vertical-align: middle;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  max-width: 100%;
  width: 100%;
  height: auto;
}

figure img {
  width: inherit;
}

/* トップお知らせ */
.topics-list {
  background-color: #F3F3F3;
  padding: 30px 20px;
  list-style: none;
}

.topics-list li {
  padding: 10px 30px;
  border-bottom: solid 1px #C7C7C7;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.topics-list li a {
  color: #222;
  text-decoration: none;
}

@media (max-width: 767px) {
  .topics-list li {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
}

/* 投稿 */
.article_list {
  padding: 30px;
  border: 1px solid var(--main-color);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .article_list {
    padding: 20px;
  }
}

.article_list:first-child {
  margin-top: 0;
}

.article_list:nth-child(n+2) {
  margin-top: 30px;
}

.article_detail {
  background: #F3F3F3;
  padding: 4%;
  margin-bottom: 4%;
  font-size: 1.2rem;
}

.article_detail img {
  width: auto;
}

.article_detail .span_12 {
  margin: 2% 0;
}

.article_button {
  margin-top: 30px;
  text-align: right;
}

@media (max-width: 767px) {
  .article_button {
    margin-top: 20px;
  }
}

.more {
  display: inline-block;
  overflow: hidden;
  margin: auto;
}

.more.btn_ss a,
.more.btn_ss span {
  padding: 0.3em 2.1em 0.3em 1.4em;
}

.more.btn_s a,
.more.btn_s span {
  padding: 0.5em 2.1em 0.5em 1.4em;
}

.more.btn_m a,
.more.btn_m span {
  padding: 0.5em 2.1em 0.5em 1.4em;
}

.more a,
.more span {
  display: inline-block;
  letter-spacing: normal;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  padding: 0.9em 1.6em;
  margin-bottom: 1px;
  text-decoration: none;
}

.more a:after,
.more span:after {
  border-color: var(--main-color);
}

.more a:hover,
.more span:hover {
  color: #333;
  border-color: #333;
}

.more a:hover:after,
.more span:hover:after {
  border-color: #333;
}

.more a.add_arrow,
.more span.add_arrow {
  padding-right: 1.9em;
}

.add_arrow {
  display: block;
  position: relative;
}

.add_arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.add_arrow:hover:after {
  right: 3%;
  border-color: #fff;
}

.more {
  display: inline-block;
  overflow: hidden;
  margin: auto;
}

.more a {
  display: inline-block;
  letter-spacing: normal;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 0.3em 1.3em 0.3em 1em;
  margin-bottom: 1px;
  text-decoration: none;
  font-size: 1.2rem;
}

.pager {
  overflow: hidden;
  margin-bottom: 5%;
}

.pager .pager_prev {
  float: left;
}

.pager .pager_prev a {
  display: block;
  position: relative;
  padding-left: 15px;
  text-decoration: none;
}

.pager .pager_prev a:before,
.pager .pager_prev a:after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: var(--main-color);
  -webkit-transition: .2s;
  transition: .2s;
}

.pager .pager_prev a:before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  top: calc(50% - 2px);
}

.pager .pager_prev a:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  top: calc(50% + 3px);
}

.pager .pager_prev a:hover {
  text-decoration: underline;
}

.pager .pager_prev a:hover:before {
  left: 0;
}

.pager .pager_prev a:hover:after {
  left: 0;
}

.pager .pager_next {
  float: right;
}

.pager .pager_next a {
  display: block;
  position: relative;
  padding-right: 15px;
  text-decoration: none;
}

.pager .pager_next a:before,
.pager .pager_next a:after {
  content: "";
  display: block;
  position: absolute;
  right: 2px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: var(--main-color);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.pager .pager_next a:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  top: calc(50% - 2px);
}

.pager .pager_next a:after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  top: calc(50% + 3px);
}

.pager .pager_next a:hover {
  text-decoration: underline;
}

.pager .pager_next a:hover:before {
  right: 0;
}

.pager .pager_next a:hover:after {
  right: 0;
}

.top-notice {
  padding-bottom: 60px;
  background-color: var(--main-color);
}

@media (max-width: 767px) {
  .top-notice {
    padding-bottom: 30px;
  }
}

.top-notice .heading-2 {
  background-color: var(--main-color);
}

/* .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 10px 20px;
  border: 1px solid var(--main-color);
  border-radius: 15px;
  background: #fff;
  line-height: 1.625;
}

@media (max-width: 767px) {
  .news-item {
    padding: 10px 15px;
    border-radius: 8px;
    line-height: 1.625;
  }
}

.news-item:nth-child(n+2) {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .news-item:nth-child(n+2) {
    margin-top: 15px;
  }
}

.news-item time {
  width: 110px;
}


.news-item a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: var(--main-color);
}

.news-item a:hover {
  text-decoration: underline;
  opacity: .7;
} */


/* コンタクトフォーム */
.inquiry {
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .inquiry {
    width: auto;
  }
}

.inquiry input[type="text"],
.inquiry input[type="url"],
.inquiry input[type="email"],
.inquiry input[type="tel"],
.inquiry input[type="date"],
.inquiry input[type="number"],
.inquiry select,
.inquiry textarea {
  width: 100%;
  padding: 5px;
  color: #000;
}

.submit {
  display: block;
  text-align: center;
  margin: 30px auto 0;
}

.button,
.inquiry .wpcf7-submit {
  display: inline-block;
  min-width: 0px;
  margin: 0;
  padding: 1em 1em;
  border: 0;
  border-radius: 4px;
  line-height: 1;
  background: #f18200;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: .3s;
}

.button:hover,
.inquiry .wpcf7-submit:hover {
  background: #ced4d2;
  color: #383637;
}

.wpcf7-spinner {
  display: none;
}

.required {
  color: #c00;
}


/* Slider */
.mv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .mv {
    height: auto;
  }
}

.mv .slick-next,
.slick-arrow {
  display: none;
}

.sliderArea {
  max-width: 100%;
  margin: 0 auto;
}

.sliderArea.w300 {
  max-width: 300px;
}

.slick-slide {
  margin: 0 5px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.thumb {
  margin: 20px 0 0;
}

.thumb .slick-slide {
  cursor: pointer;
}

.thumb .slick-slide:hover {
  opacity: .7;
}

/*====================================================================
.full-screen
====================================================================*/

.full-screen .slick-list {
  overflow: visible;
  z-index: -1;
}

.full-screen.slider {
  max-width: 100%;
  margin: 0 auto;
}


/* キャッチフェード */
.catch .txt {
  position: fixed;
  font-size: 3.5vw;
  font-weight: 600;
  width: 100%;
  top: 50%;
  left: 20px;
  transition: all 1s;
  opacity: 0;
  z-index: -1;
}

.catch .txt p {
  line-height: 1.2;
}

.catch .txt span {
  display: block;
  font-size: 2.5vw;
}

@media (max-width: 960px) {
  .catch .txt {
    font-size: 3.5vw;
  }
}

.catch .txt.active {
  color: #FFF;
  text-shadow: 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333, 0 0 2px #333;
  opacity: 1;
}

@media(max-width:767px) {
  .mv .catch .txt {
    font-size: 6vw;
    font-weight: 600;
    letter-spacing: -0.05em;
    top: 30%;
    z-index: -1;
  }

  .catch .txt span {
    display: block;
    font-size: 5vw;
  }
}

@media (max-height: 768px) {
  .catch .txt {
    top: 40%;
  }
}

/* 見出し */

h2.heading-1 {
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  padding-top: 0;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}


@media (max-width: 768px) {
  h2.heading-1 {
    font-size: 1.7rem;
  }
}

h2.heading-2 {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  padding-left: 20px;
}

h2.heading-2 span:first-of-type {
  display: inline-block;
  margin: 0 auto;
  font-size: 1rem;
  padding-right: 3px;
}

h2.heading-2 span {
  display: table;
  margin: 0 0 0.5em;
  position: relative;
  padding-top: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 4.4rem;
  padding-bottom: 0.6em;
  letter-spacing: 3px;
  text-align: left;
  line-height: 1em;
  background: linear-gradient(270deg, #3982B9 0%, #005799 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  h2.heading-2 {
    font-size: 1rem;
  }

  h2.heading-2 span {
    font-size: 3rem;
  }
}

h2.heading-3 {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 auto 0%;
  background: linear-gradient(270deg, #3982B9 0%, #005799 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.heading-2.white {
  color: #fff;
}

h2.heading-2.white span {
  background: #fff;
  -webkit-background-clip: text;
}


@media (max-width: 768px) {
  h2.heading-3 {
    font-size: 2.4rem;
  }
}

h3.heading-1 {
  padding: 0 0.5em;
  color: var(--main-color);
  border-left: solid 6px var(--main-color);
  font-size: 1.6rem;
}

h3.heading-3 {
  margin: 0.2em 0 0.5em;
  color: var(--main-color);
  font-weight: normal;
  font-size: 1.6rem;
  position: relative;
  line-height: 1.5em;
}

h3.heading-3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
}

h3.heading-3.white {
  color: #fff;
}

h3.heading-3.white:after {
  background: #fff;
}

h4.heading-4 {
  margin: 0 0 0.5em;
  padding: 0.2em 0 0.2em 1em;
  font-size: 1.2rem;
  position: relative;
  color: var(--main-color);
  background-color: #f2f2f2;
  font-weight: normal;
  line-height: 1.5em;
}

h4.heading-4:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  display: block;
  width: 6px;
  height: 100%;
  margin: auto;
  background: var(--main-color);
}

h4.heading-4.white {
  color: #fff;
}

h4.heading-4.white:after {
  background: #fff;
}

h4.heading-5 {
  margin: 0.2em 0 0.5em;
  padding: 0.2em 0 0.2em 1em;
  font-size: 1.2rem;
  position: relative;
  color: var(--main-color);
  border-bottom: 1px solid;
  font-weight: normal;
  line-height: 1.5em;
}

h4.heading-5:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  display: block;
  width: 6px;
  height: 100%;
  margin: auto;
  background: var(--main-color);
}

h4.heading-5.white {
  color: #fff;
}

h4.heading-5.white:after {
  background: #fff;
}

#pagetitle {
  position: relative;
  color: #fff;
  padding: 100px;
  background: linear-gradient(90deg, #005799, #3982B9);
  overflow: hidden;
}

#pagetitle::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -20px;
  width: 500px;
  height: 300px;
  background-image: url("/wp-content/uploads/bg-logo.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

#pagetitle span {
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  #pagetitle {
    padding: 50px;
  }

  #pagetitle::after {
    right: -30px;
    bottom: -10px;
    width: 200px;
    height: 100px;
  }

  #pagetitle span {
    font-size: 2.4rem;
  }

  h3.heading-3 {
    font-size: 1.4rem;
  }
}



/* ボタン */
.center {
  display: flex;
  justify-content: center;
  height: -webkit-fill-available;
  align-items: center;
}

.left {
  display: flex;
  justify-content: flex-start;
}

.right {
  display: flex;
  justify-content: flex-end;
}

.btn-1 {
  cursor: pointer;
  display: inline-block;
  padding: 15px 45px;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #005799 10%, #3982B9 90%);
  border-image-slice: 1;
  background: linear-gradient(45deg, #005799 10%, #3982B9 90%);
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s;
}

.btn-1:hover {
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  animation: 0.5s backgroundAnime;
}

@keyframes backgroundAnime {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}

.btn-2 {
  display: inline-block;
  padding: 30px;
  border: none;
  background: #EDF5FC;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 1.5em;
}

@media (max-width: 768px) {
  .btn-2 {
    padding: 15px;
    font-size: 1em;
  }
}

.btn-2 span {
  display: block;
  font-size: 0.7em;
}

.btn-3 {
  cursor: pointer;
  display: inline-block;
  padding: 30px;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #005799 10%, #3982B9 90%);
  border-image-slice: 1;
  background: linear-gradient(45deg, #005799 10%, #3982B9 90%);
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  text-decoration: none;
  width: 100%;
  transition: all 0.5s;
}

@media (max-width: 768px) {
  .btn-3 {
    padding: 15px;
    font-size: 1em;
  }
}

.btn-3 span {
  display: block;
  font-size: 0.7em;
}

.btn-3:hover {
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  animation: 0.5s backgroundAnime;
}

.btn-4 {
  border: 1px solid #fff;
  padding: 45px;
  border-radius: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

/* テーブル */

.table-schedule {
  width: 100%;
}

.table-schedule td,
.table-schedule th {
  border: 1px solid var(--sub-color);
  padding: 0.7em;
  text-align: center;
}

@media (max-width: 480px) {

  .table-schedule td,
  .table-schedule th {
    padding: 0.7em .3em;
  }
}

.table-schedule thead th {
  background: var(--main-color);
  color: #fff;
}

.table-schedule tbody th {
  background: transparent;
}

.table-default {
  width: 100%;
}

.table-default td,
.table-default th {
  padding: 0.7em 1em;
  border: 1px solid var(--sub-color);
  vertical-align: middle;
}

.table-default th {
  background: var(--main-color);
  color: #fff;
}

/* 流れ */

.bg {
  background: #e8f6fb;
  padding: 10px 15px;
  display: block;
  border: 1px solid #fff;
  box-shadow: 0 3px 3px #ebeae8;
  border-radius: 13px 0;
  margin-right: 10px;
}

span.bg {
  background: var(--main-color);
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  display: block;
}

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

.indent span.bg {
  display: inline;
}

.frame {
  border: 1px solid var(--main-color);
  border-radius: 6px;
  padding: 1em 0;
  position: relative;
  display: flex;
}

.frame>.col {
  padding-right: calc(30px / 2);
  padding-left: calc(30px / 2);
}

.span_6 .frame,
.span_4 .frame {
  margin-top: 30px;
}

@media (max-width: 767px) {

  .span_6 .frame,
  .span_4 .frame {
    margin-top: 20px;
  }

  .frame {
    display: block;
  }

  .frame .span_2,
  .frame .span_3,
  .frame .span_4,
  .frame .span_5,
  .frame .span_6,
  .frame .span_7,
  .frame .span_8,
  .frame .span_9,
  .frame .span_10 {
    width: 100% !important;
  }
}

.frame.arrow:after {
  border-color: transparent transparent transparent var(--main-color);
  border-style: solid;
  border-width: 26px 0 26px 18px;
  content: '';
  margin-top: -11px;
  position: absolute;
  right: 50%;
  bottom: -36px;
  transform: rotate(90deg);
}

.frame.arrow.end:after {
  display: none;
}


/* リスト */
.dl-wrap-1 {
  border-top: 1px solid #fff;
}

.dl-wrap-2 {
  background-color: var(--sub-color);
  padding: 30px;
}

dl {
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  align-items: flex-start;
  gap: 15px;
  margin: 0;
}

@media (max-width: 767px) {
  dl {
    flex-direction: column;
    gap: 10px;
  }

  .company-info dt,
  .company-info dd {
    width: 100%;
  }

}

dl.has-border {
  border-bottom: 1px solid #fff;
}

dl dt {
  font-weight: bold;
  width: 140px;
}

dl dd {
  width: calc(100% - 160px);
  margin: 0;
}

.company-info dt {
  background: var(--main-color);
  color: #fff;
  text-align: center;
}


/* ページトップ */
.pagetop {
  text-align: center;
  color: #FFF;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pagetop a {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
  padding: 0;
  border-radius: 50%;
  background: #6a8dc5;
}

@media (max-width: 767px) {
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}

.pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
  transform: translate(-50%, -20%) rotate(45deg);
  -webkit-transition: .2s;
  transition: .2s;
}


/* ヘッダー */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.header-wrap {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: auto;
  text-align: center;
  display: flex;
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.header-head {
  text-align: left;
}

.header-head a {
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  padding: 20px;
}

.header-head img {
  width: 300px;
}

.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

header nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

header nav ul {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
  list-style: none;
  flex-wrap: nowrap;
  flex-direction: row;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  display: block;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
  width: 170px;
  height: 100%;
  text-decoration: none;
  transition: background 0.3s ease;
}

header nav ul li a:hover {
  color: #fff;
  background: linear-gradient(135deg, #005799, #3982B9);
}

.line-btn {
  position: relative;
  min-width: 260px;
}

.line-btn a {
  display: block;
  color: #fff;
  background: #06C755;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px 20px 70px;
  width: 100%;
  height: 100%;
}

.line-btn a::after {
  content: "";
  display: inline-block;
  background: url(/wp-content/uploads/LINE_icon.png) center / cover, no-repeat;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

@media (max-width: 767px) {
  .line-btn a {
    color: #fff;
    background: #06C755;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    height: 100%;
  }

  .line-btn a::after {
    content: "";
    display: inline-block;
    background: url(/wp-content/uploads/LINE_icon.png) center / cover, no-repeat;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100px;
  }
}

/*
.header_nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin: 0 auto;
  list-style: none;
}

@media (max-width: 1023px) {
  .header_nav ul {
    display: none;
  }
}

.header_nav ul li {
  position: relative;
}

.nav-icon-01 a {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
  width: 100%;
  height: 100%;
  transition: background 0.3s ease;
}

.nav-icon-01 a:hover {
  color: #fff;
  background: linear-gradient(135deg, #005799, #3982B9);
}

.header-btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 80px;
  z-index: 999999999;
}

@media (min-width: 1023px) {
  .header-btn {
    display: none;
  }
}

.header-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 17px;
  height: 3px;
  border-radius: 2px;
  background: #005799;
  width: 45%;
}

.header-btn span:nth-of-type(1) {
  top: 24px;
}

.header-btn span:nth-of-type(2) {
  top: 32px;
}

.header-btn span:nth-of-type(3) {
  top: 40px;
}

.header-btn span:nth-of-type(4) {
  top: 48px;
  background: none;
  font-size: 8px;
  color: #005799;
}
  */

/* フッター */

.footer {
  background-color: #005799;
  width: 100%;
}

/* .footer {
  background-image: url(/wp-content/uploads/footer_bg.png);
  background-color: transparent;
  background-repeat: round;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
} */

.footer-wrap {
  padding-top: 50px;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  .footer-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.footer__copy {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.reservation_area {
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index: 1;
  width: 100%;
}

.reservation_area ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 auto;
}

.reservation_area ul li {
  width: 100%;
  writing-mode: horizontal-tb;
  text-align: center;
}

/* 汎用クラス */

.bg-red {
  background-color: #fe266d !important;
}

.bg-green {
  background-color: #5fcf32 !important;
}

.bg-orange {
  background-color: #ffa204 !important;
}

.text-red {
  color: #db2d2d !important;
}

.text-blue {
  color: #2420db !important;
}

.text-green {
  color: #6ddb20 !important;
}

.text-orange {
  color: #db9620 !important;
}

.text-pink {
  color: #db20b2 !important;
}

.text-black {
  color: #000000 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}


.text-xlarge {
  font-size: 1.6rem !important;
}

.text-large {
  font-size: 1.4rem !important;
}

.text-white {
  color: #fff;
}


@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 767px) {
  .text-xlarge {
    font-size: 2.0rem;
  }

  .text-large {
    font-size: 1.6rem;
  }

  .sp-only {
    display: none !important;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {
  .tablet-hide {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .tablet-only {
    display: none !important;
  }
}


a.link-opacity:hover {
  opacity: 0.7;
}

.bg-white {
  background-color: #fff;
}

.bg-blue {
  background-image: linear-gradient(90deg, #005799, #3982B9);
  color: #fff;
}

.bg-img {
  background-image: linear-gradient(90deg, #005799, #3982B9);
  color: #fff;
  padding-bottom: 100px;
  position: relative;
}

.bg-img::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 620px;
  height: 300px;
  background-image: url(/wp-content/uploads/bg-logo.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

@media (max-width: 768px) {
  .bg-img::after {
    width: 260px;
  }
}

.bg-recruit {
  background: url(/wp-content/uploads/bg-recruit.jpg) no-repeat center / cover;
}

@media (max-width: 768px) {
  .bg-recruit {
    padding-bottom: 300px;
  }
}

.anchor-text {
  font-size: 1.3rem;
  color: #fff;
  text-align: left;
  font-weight: bold;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .anchor-text {
    font-size: 1.2rem;
  }
}

.message {
  line-height: 1.5;
}

@media (min-width: 767px) {
  .text-container {
    margin: 0 auto;
    max-width: 800px;
  }
}