@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: 15px;
  right: 10px;
  width: 60px;
  height: 60px;
  z-index: 120;
  background: #EC6300;
  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: #EC6300;
  -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, 2.8vw, 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-size: clamp(2rem, 2.3vw, 2.6rem);
  font-weight: normal;
}
#nav ul {
  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-size: clamp(3.4rem, 3.6vw, 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: 400;
  font-style: normal;
  color: #000000;
  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: #EC6300;
  color: #fff;
}
::selection {
  background: #EC6300;
  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: #EC6300;
  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 #EC6300;
}
.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 #EC6300;
  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, 1.7vw, 1.8rem);
  color: #000000;
  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: 400;
  font-style: normal;
  line-height: 1.6;
}
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
  //////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  共通
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*----- マージン -----*/
  /*----- ボタンスタイル -----*/
  /*----- 見出しスタイル -----*/
  /*-------- テーブルスタイル ----------*/
  /*-------- リストスタイル ----------*/
  /*-------- ブートスラップ関連 ----------*/
  /*-------- flexスタイル ----------*/
  /*-------- .sns-area ----------*/
}
.all-wrapper .main-nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.all-wrapper .main-nav .nav_list li:not(:last-child) {
  margin-right: 3.5vw;
}
.all-wrapper .main-nav .nav_list li a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.4;
}
.all-wrapper .main-nav .nav_list li a:hover {
  color: #EC6300;
}
@media (min-width: 1220px) {
  .all-wrapper .main-nav .nav_list li:not(:last-child) {
    margin-right: 4vw;
  }
  .all-wrapper .main-nav .nav_list li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 1500px) {
  .all-wrapper .main-nav .nav_list li:not(:last-child) {
    margin-right: 5vw;
  }
  .all-wrapper .main-nav .nav_list li a {
    font-size: 1.8rem;
  }
}
.all-wrapper header.header .header-wrap {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 20px 0;
}
.all-wrapper header.header .header-wrap .head-left, .all-wrapper header.header .header-wrap .head-right {
  width: auto;
}
.all-wrapper header.header .header-wrap .head-left .head-logo img {
  width: 180px;
  width: clamp(200px, 40vw, 220px);
  height: auto;
}
.all-wrapper header.header .header-wrap .head-right .head-tel {
  margin-top: 10px;
}
.all-wrapper header.header .header-wrap .head-right .head-tel .tel {
  font-size: clamp(2.6rem, 2.8vw, 3rem);
  color: #EC6300;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}
.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-wrap .head-right .head-tel .tel {
    pointer-events: none;
  }
  .all-wrapper header.header .pc-nav {
    display: block;
  }
  .all-wrapper header.header .sp-nav {
    display: none;
  }
}
.all-wrapper footer.footer {
  background: #EC6300;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0;
  color: #fff;
  font-weight: bold;
}
.all-wrapper footer.footer .footer-wrap {
  margin-bottom: 50px;
}
.all-wrapper footer.footer .footer-wrap .f-wrap-02 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.all-wrapper footer.footer .footer-wrap .f-wrap-02 .left-box {
  margin-bottom: 30px;
}
.all-wrapper footer.footer .footer-title img {
  max-width: 360px;
  margin: 0 0 10px;
}
.all-wrapper footer.footer .foot-tel {
  margin-top: 10px;
}
.all-wrapper footer.footer .foot-tel .tel {
  font-size: clamp(3rem, 3.3vw, 3.6rem);
  color: #fff;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}
.all-wrapper footer.footer .copyright {
  text-align: center;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer {
    padding: 80px 0 50px;
  }
  .all-wrapper footer.footer .footer-wrap {
    margin-bottom: 100px;
  }
  .all-wrapper footer.footer .footer-wrap f-wrap-02 .left-box {
    margin-bottom: 0px;
  }
  .all-wrapper footer.footer .foot-tel .tel {
    pointer-events: none;
  }
}
@media (min-width: 987px) {
  .all-wrapper footer.footer .footer-wrap .f-wrap-02 {
    gap: 20%;
  }
  .all-wrapper footer.footer .footer-wrap .f-wrap-02 .f-box {
    width: 40%;
  }
}
.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;
}
@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, 1.65vw, 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, 2.35vw, 2.7rem);
  font-weight: 500;
  border-left: 10px solid #EC6300;
  padding-left: 10px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.all-wrapper .midashi2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #EC6300;
  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: #EC6300;
}
.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 {
  display: block;
  background: #EC6300;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}
.all-wrapper .btnA span {
  color: #fff;
  display: inline-block;
  padding-right: 20px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  line-height: 1.4;
}
.all-wrapper .btnA span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 16px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}
.all-wrapper .h-style-a {
  text-align: center;
  margin-bottom: 25px;
}
.all-wrapper .h-style-a span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 40px;
  font-size: clamp(2.1rem, 2.25vw, 2.4rem);
  position: relative;
}
.all-wrapper .h-style-a span::before, .all-wrapper .h-style-a span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #EC6300;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.all-wrapper .h-style-a span::before {
  left: 0;
}
.all-wrapper .h-style-a span::after {
  right: 0;
}
@media (min-width: 768px) {
  .all-wrapper .h-style-a {
    margin-bottom: 35px;
  }
  .all-wrapper .h-style-a span {
    padding: 0 60px;
  }
}
.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 #EBEBEB;
}
.all-wrapper .table-style .t-wrap dt, .all-wrapper .table-style .t-wrap dd {
  width: 100%;
  border-bottom: 1px solid #EBEBEB;
  border-left: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 15px;
}
.all-wrapper .table-style .t-wrap dt {
  background: #EC6300;
  font-weight: 600;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@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 .f-wrap-02, .all-wrapper .f-wrap-03 {
  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;
}
.all-wrapper .f-wrap-02 .f-box, .all-wrapper .f-wrap-03 .f-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.all-wrapper .f-wrap-02 .f-box img, .all-wrapper .f-wrap-03 .f-box img {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  height: auto;
}
.all-wrapper .f-wrap-03 .f-box {
  margin-bottom: 30px;
}
.all-wrapper .f-wrap-03 .f-box img {
  max-width: 450px;
}
@media (min-width: 768px) {
  .all-wrapper .f-wrap-02 {
    gap: 4%;
  }
  .all-wrapper .f-wrap-02 .f-box {
    width: 48%;
  }
  .all-wrapper .f-wrap-03 {
    gap: 2%;
  }
  .all-wrapper .f-wrap-03 .f-box {
    width: 32%;
  }
}
.all-wrapper .sns-area .sns-title {
  text-align: center;
  margin-bottom: 30px;
}
.all-wrapper .sns-area .sns-title span {
  display: inline-block;
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  position: relative;
}
.all-wrapper .sns-area .sns-title span::before, .all-wrapper .sns-area .sns-title span::after {
  content: "";
  position: absolute;
  height: 1.3em;
  width: 2px;
  background: #000000;
}
.all-wrapper .sns-area .sns-title span::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-20deg);
          transform: translateY(-50%) rotate(-20deg);
}
.all-wrapper .sns-area .sns-title span::after {
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(20deg);
          transform: translateY(-50%) rotate(20deg);
}
.all-wrapper .sns-area .sns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4%;
  max-width: 700px;
  margin: 0 auto;
}
.all-wrapper .sns-area .sns-wrap .sns-box {
  width: 100%;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
.all-wrapper .sns-area .sns-wrap .sns-box img {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .all-wrapper .sns-area .sns-title {
    margin-bottom: 40px;
  }
  .all-wrapper .sns-area .sns-wrap .sns-box {
    width: 48%;
  }
  .all-wrapper .sns-area .sns-wrap .sns-box img {
    max-width: 100%;
  }
}

/* .all-wrapper */