@charset "UTF-8";
.clearfix:before, .table-styleA dl:before, .table-styleB dl:before,
.clearfix:after,
.table-styleA dl:after,
.table-styleB dl:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after, .table-styleA dl:after, .table-styleB dl:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix, .table-styleA dl, .table-styleB dl {
  zoom: 1;
}
.clearfix:after, .table-styleA dl:after, .table-styleB dl:after {
  display: block;
  content: "";
  clear: both;
}

/*　////////////////////////////////////////////////////////////////////////////////////////////////
flex include
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
初期値top:50%; left:50%;
[@include set-top();] [@include set-left();]
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*縦中央*/
/*横中央*/
/* -----上下左右中央、%指定で調整可能----- */
/*　////////////////////////////////
flex 設定
//////////////////////////////////　*/
/*　////////////////////////////////
三角形
//////////////////////////////////　*/
/*　////////////////////////////////
矢印
//////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
font-size
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*　////////////////////////////////
汎用style
//////////////////////////////////　*/
.menu-toggle, .menu-toggle span {
  display: inline-block;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.menu-toggle {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  z-index: 120;
  background: #0957a6;
  border: none;
}
.menu-toggle p {
  margin-top: 33px;
  color: #fff;
  letter-spacing: -0.04em;
  font-size: 1.5rem;
}
.menu-toggle span {
  position: absolute;
  left: 15%;
  width: 70%;
  height: 4px;
  background-color: #fff;
  z-index: 120;
}
.menu-toggle span:nth-of-type(1) {
  top: 30%;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
}
.menu-toggle span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-toggle span:nth-of-type(3) {
  top: 70%;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
}

.menu-toggle.active {
  opacity: 1;
  border: none;
}
.menu-toggle.active p {
  color: #fff;
}
.menu-toggle.active span {
  background-color: #fff;
}
.menu-toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
  top: 54%;
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: #0957a6;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
#nav .nav_title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: clamp(2.4rem, 3.68vw, 3.2rem);
  line-height: 1.3;
  font-weight: 400;
  z-index: 10;
  color: #fff;
  padding: 15px;
  margin-bottom: 10px;
}
#nav .nav_title .en_title {
  display: block;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2rem, 3.02vw, 2.6rem);
  font-weight: normal;
}
#nav ul {
  margin-top: 30px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#nav ul li {
  text-align: center;
  list-style-type: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.6s ease;
  transition: transform 0.8s ease, opacity 0.6s ease, -webkit-transform 0.8s ease;
  will-change: transform, animation, position;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
#nav ul li a {
  display: inline-block;
  padding: 10px 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
}
#nav ul li a:hover {
  color: #ccc;
}
#nav .nav_tel_area {
  text-align: center;
  border-top: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 75vw;
  margin: 40px auto 0;
  padding: 25px 0 0;
  color: #fff;
}
#nav .nav_tel_area .tel_txt {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(3.4rem, 4.7vw, 3.8rem);
  line-height: 1;
}

#nav.active {
  right: 0;
  opacity: 0.98;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
#nav.active li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

button:focus:not(.focus-visible) {
  outline: none;
}

/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  -webkit-line-break: normal;
  line-break: normal;
  line-height: 1.8;
  font-weight: 300;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", system-ui;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #3e3a39;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

.container, .container-s, .container-xs {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .container-s {
    width: 700px;
  }
  .container-xs {
    width: 680px;
  }
}
@media (min-width: 987px) {
  .container, .inner-container {
    width: 930px;
  }
  .container-s {
    width: 930px;
  }
  .container-xs {
    width: 880px;
  }
}
@media (min-width: 1220px) {
  .container, .inner-container {
    width: 1140px;
  }
  .container-s {
    width: 1000px;
  }
}
/*@media (min-width: 1460px) {
  .container{
    width: 1380px;
  }
}*/
/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.br-tb2 {
  display: none;
}
@media (min-width: 480px) {
  .br-tb2 {
    display: block;
  }
}
@media (min-width: 768px) {
  .br-tb2 {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

.xlg-br {
  display: none;
}
@media (min-width: 1500px) {
  .xlg-br {
    display: block;
  }
}

@media (min-width: 1500px) {
  .br-xlg {
    display: none;
  }
}

/*margin 0 auto */
.block-center {
  display: block;
  margin: 0 auto;
}

/*center*/
.center {
  text-align: center;
}

.lg-center {
  text-align: left;
}
@media (min-width: 1220px) {
  .lg-center {
    text-align: center;
  }
}

.md-center {
  text-align: left;
}
@media (min-width: 987px) {
  .md-center {
    text-align: center;
  }
}

.sm-center {
  text-align: left;
}
@media (min-width: 768px) {
  .sm-center {
    text-align: center;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }
  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #0957a6;
  color: #fff;
}
::selection {
  background: #0957a6;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover, a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #3e3a39;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background: #0957a6;
  color: #fff;
  width: 60px;
  height: 60px;
  display: inline-block;
  position: relative;
}
.pagetop a:before, .pagetop a:after {
  position: absolute;
  content: "";
  top: 10px;
  width: 1px;
  height: 40px;
  background: #fff;
}
.pagetop a:before {
  left: 34%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.pagetop a:after {
  left: 66%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

/*　////////////////////////////////
YouTube動画スタイル
//////////////////////////////////　*/
.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*　////////////////////////////////
背景色
//////////////////////////////////　*/
.bg-gray {
  background: #f2f2f0;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .bg-gray {
    padding: 80px 0;
  }
}

/*　////////////////////////////////
table
//////////////////////////////////　*/
.table-styleA, .table-styleB {
  border-bottom: 1px solid #cc5584;
}
.table-styleA dl, .table-styleA dt, .table-styleA dd, .table-styleB dl, .table-styleB dt, .table-styleB dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table-styleA dl dt, .table-styleA dl dd, .table-styleB dl dt, .table-styleB dl dd {
  border-top: 1px solid #cc5584;
  line-height: 1.8;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .table-styleA dl dt, .table-styleA dl dd, .table-styleB dl dt, .table-styleB dl dd {
    font-size: 1.6rem;
  }
}
.table-styleA dl dt, .table-styleB dl dt {
  width: 100%;
  float: none;
  padding: 10px 0;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .table-styleA dl dt, .table-styleB dl dt {
    text-align: left;
    width: 230px;
    float: left;
    padding: 20px 0 0 20px;
  }
}
.table-styleA dl dd, .table-styleB dl dd {
  margin-left: 0;
  padding: 10px;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .table-styleA dl dd, .table-styleB dl dd {
    margin-left: 230px;
    padding: 20px 0 20px 20px;
  }
}
.table-styleA dl dd:after, .table-styleB dl dd:after {
  content: "";
  display: block;
  clear: both;
}

/*　////////////////////////////////
背景画像指定
//////////////////////////////////　*/
/*　////////////////////////////////
end　背景画像指定
//////////////////////////////////　*/
body {
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 2.22vw, 1.8rem);
  color: #3e3a39;
  animation: fadeIn 2.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: "Noto Sans JP", system-ui;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
}
body ul {
  margin: 0;
}
body ul li {
  list-style-type: none;
}
body a span:hover,
body a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

.all-wrapper {
  overflow: hidden;
  /*　////////////////////////////////
  header
  //////////////////////////////////　*/
  /*　////////////////////////////////
  footer
  //////////////////////////////////　*/
  /*------------------------
  ページナビ
  -------------------------*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  共通
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*----- マージン -----*/
  /*----- ボタンスタイル -----*/
  /*----- 見出しスタイル -----*/
  /*-------- テーブルスタイル ----------*/
  /*-------- リストスタイル ----------*/
  /*-------- ブートスラップ関連 ----------*/
}
.all-wrapper header.header .header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 15px;
  margin: 0 auto;
}
.all-wrapper header.header .header-top .head-left, .all-wrapper header.header .header-top .head-right {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.all-wrapper header.header .header-top .head-left {
  margin-bottom: 15px;
}
.all-wrapper header.header .header-top .head-left .sub-title {
  font-size: clamp(1.5rem, 2.09vw, 1.7rem);
  line-height: 1.5;
}
.all-wrapper header.header .header-top .logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.all-wrapper header.header .header-top .logo-area .logo {
  width: 45px;
  width: clamp(45px, 8vw, 74px);
  height: auto;
}
.all-wrapper header.header .header-top .logo-area .h1-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}
.all-wrapper header.header .header-top .logo-area .h1-title .kabu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px 0 10px;
  line-height: 1.2;
  font-size: clamp(1.5rem, 2.51vw, 2.3rem);
}
.all-wrapper header.header .header-top .logo-area .h1-title .name {
  font-size: clamp(3rem, 5.65vw, 5.5rem);
  line-height: 1;
}
.all-wrapper header.header .header-top .logo-area:hover span {
  opacity: 1;
}
.all-wrapper header.header .header-top .head-right {
  text-align: right;
  padding-top: 10px;
}
.all-wrapper header.header .header-top .head-right .head-tel {
  display: inline-block;
  margin-bottom: 10px;
}
.all-wrapper header.header .header-top .head-right .head-tel img {
  width: 240px;
  width: clamp(200px, 35vw, 310px);
  height: auto;
}
.all-wrapper header.header .header-top .head-right .location {
  font-size: clamp(1.4rem, 1.96vw, 1.6rem);
}
.all-wrapper header.header .pc-nav {
  display: none;
}
.all-wrapper header.header .sp-nav {
  display: block;
}
@media (min-width: 987px) {
  .all-wrapper header.header .header-top {
    padding: 5vh 7vw;
  }
  .all-wrapper header.header .header-top .head-left, .all-wrapper header.header .header-top .head-right {
    width: auto;
  }
  .all-wrapper header.header .header-top .head-left {
    margin-bottom: 0;
  }
  .all-wrapper header.header .header-top .logo-area {
    margin-bottom: 15px;
  }
  .all-wrapper header.header .header-top .logo-area .h1-title .kabu {
    padding: 0 10px 0 15px;
  }
  .all-wrapper header.header .header-top .head-right .head-tel {
    margin-bottom: 15px;
  }
  .all-wrapper header.header .pc-nav {
    display: block;
    background: #cc5584;
  }
  .all-wrapper header.header .pc-nav .nav_list {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .all-wrapper header.header .pc-nav .nav_list li {
    width: 20%;
    border-left: 1px solid #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .all-wrapper header.header .pc-nav .nav_list li:last-child {
    border-right: 1px solid #fff;
  }
  .all-wrapper header.header .pc-nav .nav_list li a {
    display: block;
    background: #013770;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(34%, rgb(1, 55, 112)), to(rgb(11, 87, 166)));
    background: linear-gradient(0deg, rgb(1, 55, 112) 34%, rgb(11, 87, 166) 100%);
    text-align: center;
    color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px;
  }
  .all-wrapper header.header .sp-nav {
    display: none;
  }
}
.all-wrapper footer.footer {
  background: #e1f3fc;
  padding: 100px 0;
  position: relative;
}
.all-wrapper footer.footer::before, .all-wrapper footer.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background-image: url("/img/common/blade.svg");
  background-repeat: repeat-x;
  background-size: contain;
  left: 0;
}
.all-wrapper footer.footer::before {
  top: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.all-wrapper footer.footer::after {
  bottom: -1px;
}
.all-wrapper footer.footer .footer-menu {
  margin-bottom: 30px;
}
.all-wrapper footer.footer .footer-menu li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-indent: -1em;
  padding-left: 1em;
}
.all-wrapper footer.footer .footer-menu li::before {
  content: "■";
  color: #0957a6;
}
.all-wrapper footer.footer .footer-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 60px;
}
.all-wrapper footer.footer .footer-contents .left-box, .all-wrapper footer.footer .footer-contents .right-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.all-wrapper footer.footer .footer-contents .left-box {
  border-bottom: 1px solid #3e3a39;
  padding: 0 0 30px;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.all-wrapper footer.footer .footer-contents .left-box .logo {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2vw;
}
.all-wrapper footer.footer .footer-contents .left-box .logo img {
  width: 50px;
  width: clamp(50px, 7vw, 130px);
}
.all-wrapper footer.footer .footer-contents .left-box .txt .title-top {
  font-weight: bold;
  font-size: 1.7rem;
  font-size: clamp(1.7rem, 1.7vw, 2.6rem);
}
.all-wrapper footer.footer .footer-contents .left-box .txt .footer-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}
.all-wrapper footer.footer .footer-contents .left-box .txt .footer-title .kabu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 10px;
  line-height: 1.2;
  font-size: 1.8rem;
  font-size: clamp(1.8rem, 1.9vw, 2.8rem);
}
.all-wrapper footer.footer .footer-contents .left-box .txt .footer-title .name {
  font-size: 3rem;
  font-size: clamp(3.5rem, 4vw, 7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.all-wrapper footer.footer .footer-contents .right-box .footer-tel {
  display: inline-block;
  margin-bottom: 12px;
}
.all-wrapper footer.footer .footer-contents .right-box .footer-tel img {
  width: 240px;
  width: clamp(200px, 25vw, 310px);
  height: auto;
}
.all-wrapper footer.footer .copyright {
  text-align: center;
  font-size: clamp(1.4rem, 1.96vw, 1.6rem);
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 5px 3vw;
  }
  .all-wrapper footer.footer .footer-contents {
    gap: 4%;
    margin-bottom: 100px;
  }
  .all-wrapper footer.footer .footer-contents .left-box, .all-wrapper footer.footer .footer-contents .right-box {
    width: auto;
  }
  .all-wrapper footer.footer .footer-contents .left-box {
    padding: 20px 40px 20px 0;
    margin: 0;
    border-bottom: none;
    border-right: 1px solid #3e3a39;
  }
}
.all-wrapper .pagenavi {
  text-align: center;
}
.all-wrapper .pagenavi a.page-numbers {
  padding: 5px 7px;
  border: 1px solid #0957a6;
  color: #0957a6;
}
.all-wrapper .pagenavi .current {
  padding: 5px 7px;
  border: 1px solid #0957a6;
  background-color: #0957a6;
  color: #fff;
}
.all-wrapper .pagenavi2 {
  text-align: center;
}
.all-wrapper .pagenavi2 h2.screen-reader-text {
  display: none;
}
.all-wrapper .pagenavi2 ul li {
  display: inline-block;
  margin-bottom: 20px;
}
.all-wrapper .pagenavi2 ul li a {
  padding: 5px 7px;
  border: 1px solid #0957a6;
  color: #0957a6;
}
.all-wrapper .pagenavi2 ul li span.current {
  background-color: #0957a6;
  color: #fff;
  border: 1px solid #0957a6;
  padding: 5px 7px;
}
.all-wrapper .pagenavi2 ul li span.dots {
  border: 1px solid #808080;
  color: #808080;
  padding: 5px 10px;
}
.all-wrapper section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .all-wrapper section {
    margin-bottom: 100px;
  }
}
.all-wrapper .section-s {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .all-wrapper .section-s {
    margin-bottom: 80px;
  }
}
.all-wrapper .pa_section {
  margin-bottom: 40px;
}
.all-wrapper .pa_section:last-child {
  margin-bottom: 80px;
}
.all-wrapper .no-margin {
  margin: 0;
}
@media (min-width: 987px) {
  .all-wrapper .pa_section {
    margin-bottom: 0px;
  }
  .all-wrapper .pa_section:last-child {
    margin-bottom: 80px;
  }
  .all-wrapper .pa_box {
    padding-top: 63px;
  }
}
.all-wrapper .sentence {
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 2.15vw, 1.7rem);
}
.all-wrapper .txt_center {
  text-align: center;
  text-wrap: balance;
}
.all-wrapper .widget-title {
  margin: 0;
  max-width: initial;
}
.all-wrapper .midashi {
  font-size: clamp(2rem, 3.09vw, 2.7rem);
  font-weight: 500;
  border-left: 10px solid #0957a6;
  padding-left: 10px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.all-wrapper .midashi2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0957a6;
  margin-bottom: 10px;
}
.all-wrapper .g-map {
  text-align: center;
  margin-top: 15px;
}
.all-wrapper .g-map a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #cc5584;
}
.all-wrapper .kome {
  color: #c23939;
}
.all-wrapper .hissu {
  color: #ed1c24;
  margin-left: 10px;
}
.all-wrapper .attend {
  color: #ed1c24;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.all-wrapper .red_txt {
  color: #ff0d36;
}
.all-wrapper .ast {
  text-indent: -1em;
  margin-left: 1em;
}
.all-wrapper .ast::before {
  content: "※";
}
.all-wrapper .mb_xxs {
  margin-bottom: 10px;
}
.all-wrapper .mb_xs {
  margin-bottom: 12px;
}
.all-wrapper .mb_s {
  margin-bottom: 20px;
}
.all-wrapper .mb_m {
  margin-bottom: 25px;
}
.all-wrapper .mb_l {
  margin-bottom: 35px;
}
.all-wrapper .mb_xl {
  margin-bottom: 40px;
}
.all-wrapper .mb_xxl {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .all-wrapper .mb_xs {
    margin-bottom: 20px;
  }
  .all-wrapper .mb_s {
    margin-bottom: 30px;
  }
  .all-wrapper .mb_m {
    margin-bottom: 40px;
  }
  .all-wrapper .mb_l {
    margin-bottom: 50px;
  }
  .all-wrapper .mb_xl {
    margin-bottom: 60px;
  }
  .all-wrapper .mb_xxl {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .all-wrapper .sm-mt {
    margin-top: 30px;
  }
}
@media (max-width: 987px) {
  .all-wrapper .md-mt {
    margin-top: 30px;
  }
}
.all-wrapper .btnA {
  color: #0957a6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 20px;
  font-size: clamp(1.8rem, 2.48vw, 2rem);
  position: relative;
}
.all-wrapper .btnA::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 17px;
  background: #0957a6;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.all-wrapper .h-style-a {
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px 15px;
  background: #49555C;
  background: -webkit-gradient(linear, left top, right top, from(rgb(73, 85, 92)), color-stop(50%, rgb(167, 168, 168)), to(rgb(73, 85, 92)));
  background: linear-gradient(90deg, rgb(73, 85, 92) 0%, rgb(167, 168, 168) 50%, rgb(73, 85, 92) 100%);
  position: relative;
  line-height: 1.4;
}
.all-wrapper .h-style-a span {
  color: #fff;
  font-size: 2rem;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.05em;
}
.all-wrapper .square-title {
  color: #0957a6;
  font-size: clamp(2.2rem, 3.77vw, 3.5rem);
  text-indent: -1.2em;
  margin-left: 1.2em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.all-wrapper .square-title::before {
  content: "■";
  margin-right: 0.2em;
}
@media (min-width: 768px) {
  .all-wrapper .h-style-a {
    margin-bottom: 45px;
    padding: 30px 25px;
  }
  .all-wrapper .square-title {
    margin-bottom: 20px;
  }
}
.all-wrapper .table-style .t-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.all-wrapper .table-style .t-wrap:first-child {
  border-top: 1px solid #0957a6;
}
.all-wrapper .table-style .t-wrap dt, .all-wrapper .table-style .t-wrap dd {
  width: 100%;
  border-bottom: 1px solid #0957a6;
  border-left: 1px solid #0957a6;
  border-right: 1px solid #0957a6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 15px;
}
.all-wrapper .table-style .t-wrap dt {
  background: #cc5584;
  font-weight: 600;
}
@media (min-width: 768px) {
  .all-wrapper .table-style .t-wrap dt {
    width: 26%;
    border-right: none;
  }
  .all-wrapper .table-style .t-wrap dd {
    width: 74%;
  }
}
.all-wrapper .list-style li {
  text-indent: -1em;
  margin-left: 1em;
}
.all-wrapper .list-style li::before {
  content: "・";
}
.all-wrapper .square_list li {
  text-indent: -1.2em;
  margin-left: 1.2em;
}
.all-wrapper .square_list li::before {
  content: "■";
  margin-right: 0.2em;
}
.all-wrapper .row-eq-height {
  /*row 高さ揃える*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.all-wrapper .row-reverse {
  /*左右入れ替え*/
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .all-wrapper .col-mb {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .all-wrapper .col-mb-l {
    margin-bottom: 45px;
  }
}

/* .all-wrapper */