@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

a {
  color: rgb(215, 21, 30);
  text-decoration: none;
  font-weight: 500;
}

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  border-top: 3px solid #db343c;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}
.hd_bg .hd .hd_logo {
  flex-shrink: 0;
  width: calc(100% - 12vw);
}
.hd_bg .hd .hd_logo a {
  display: block;
  position: relative;
  padding-left: 10px;
}
.hd_bg .hd .hd_logo a img {
  display: block;
  height: 6vh; /* ロゴの実際の高さに合わせて調整してください */
  width: auto;
}
.hd_bg .hd .hd_logo a .logo_wh {
  position: relative;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.hd_bg .hd .hd_logo a .logo_bla {
  position: absolute;
  top: 0;
  left: 10px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.hd_bg#index_hd {
  transition: all 0.5s ease;
}
.hd_bg#index_hd.bg .hd .hd_logo a .logo_wh {
  opacity: 0;
}
.hd_bg#index_hd.bg .hd .hd_logo a .logo_bla {
  opacity: 1;
}
.hd_bg:not(#index_hd) .hd_logo a .logo_wh {
  opacity: 0;
}
.hd_bg:not(#index_hd) .hd_logo a .logo_bla {
  opacity: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: -200%;
  left: 0;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: auto;
  max-height: calc(100% + 30px);
  padding: 60px 15px 30px;
  background: #636363;
  transition: All 0.8s ease;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  background: #fff;
  color: #db343c;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.5em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #db343c;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #db343c;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
  background: #db343c;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 1.5em;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #db343c;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #db343c;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}
.nav .nav_contact {
  margin-bottom: 40px;
}
.nav .nav_contact .ttl {
  display: none;
}
.nav .nav_contact .tel, .nav .nav_contact .sp_nav_otoiawase {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background: #a31010;
  font-size: 26px;
  font-weight: 700;
  border-radius: 50vh;
  overflow: hidden;
}
.nav .nav_contact .tel a, .nav .nav_contact .sp_nav_otoiawase a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  width: 100%;
  padding: 10px;
  color: #fff !important;
  text-decoration: none;
}
.nav .nav_contact .tel a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(../images/icon_tel_white.png) no-repeat center center;
  background-size: contain;
}
.nav .nav_contact .sp_nav_otoiawase {
  margin-bottom: 20px;
}
.nav .nav_contact .sp_nav_otoiawase a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  background: url(../images/ft_oroiawase_w.png) no-repeat center center;
  background-size: contain;
}
.nav .nav_contact address {
  display: none;
}
.nav .nav_contact .sns {
  display: flex;
  justify-content: center;
  gap: 35px;
  width: 100%;
  max-width: 120px;
  margin: 20px auto 0;
}
.nav .nav_contact .sns li a img {
  width: 100%;
  height: auto;
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 0;
  right: 0;
  width: 50px;
  height: 52px;
  background: #db343c;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 30%;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0;
}
.con .main {
  margin-bottom: 30px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
}
.ft_bg .ft {
  padding: 40px 0 30px;
  text-align: center;
}
.ft_bg .ft .ft_logo {
  font-size: 24px;
}
.ft_bg .ft .ft_contact {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin-bottom: 20px;
  font-size: 12px;
}
.ft_bg .ft .ft_contact a {
  display: block;
  color: rgb(95, 95, 95);
  font-size: 1rem;
  margin-top: 10px;
}
.ft_bg .ft .ft_contact a img {
  padding-right: 10px;
}
.ft_bg .ft .ft_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: end;
}
.ft_bg .ft .ft_counter {
  font-size: 12px;
  margin-top: 20px;
}
.ft_bg .ft_copy {
  padding: 20px 0;
  background: #db343c;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #b5b5b6;
  border: 1px solid #b5b5b6;
  border-radius: 100vh;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 3px;
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #fff;
}
.pt .pt_wrap .pt_btn::before {
  width: 1px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 1px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 0;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 10px;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #db343c;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #db343c;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #db343c;
  border-radius: 5px;
  color: #db343c !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #db343c;
  color: #fff !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #db343c;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .slider_con {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  max-width: 400px;
  padding: 100px 10px 80px 10px;
  text-align: center;
}
.index_slider_bg .index_slider .slider_con .slider_con_img img {
  height: auto !important;
  -o-object-fit: initial !important;
     object-fit: initial !important;
}
.index_slider_bg .index_slider .slider_con .slider_con_img img:first-child {
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
}
.index_slider_bg .index_slider .slider_con .slider_con_img img:last-child {
  width: 140px;
  margin: -10px auto 0;
  display: block;
}
.index_slider_bg .index_slider .slider_con .slider_con_txt {
  margin-top: 16px;
  color: #333;
  font-size: clamp(1.2rem, 0.9rem + 1.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 3px #fff;
}
.index_slider_bg .index_slider .slider_con .slider_con_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 20px 0 50px;
}
.index_slider_bg .index_slider .slider_con .slider_con_btn .slider_btn {
  width: 220px;
  border-radius: 50px;
  box-shadow: 0px 4px 5px #212121;
  overflow: hidden;
}
.index_slider_bg .index_slider .slider_con .slider_con_btn .slider_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  background: #e22020;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #e22020;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.index_slider_bg .index_slider .slider_con .slider_con_btn .slider_btn a:hover {
  background: #fff;
  color: #e22020;
}
.index_slider_bg .index_slider img {
  width: 60%;
  height: 90dvh !important;
  -o-object-fit: cover !important;
  object-fit: cover;
}
.index_slider_bg .index_slider .metaslider .slides img {
  width: 100%;
  display: block;
  opacity: 0.7;
}

.index_main .index_about {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-top: -5vh;
  padding: 0 15px;
}
.index_main .index_about .index_about_con {
  flex-shrink: 0;
  padding: 20px 0;
}
.index_main .index_about .index_about_con h2 {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.index_main .index_about .index_about_con h2::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #db343c;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #db343c;
}
.index_main .index_about .index_about_con h2 span {
  display: block;
}
.index_main .index_about .index_about_img {
  flex-shrink: 0;
  width: 100%;
}
.index_main .index_about .index_about_img img {
  width: 100%;
  height: auto;
}
.index_main .index_news {
  padding: 60px 15px;
  background: #f2f2f2;
}
.index_main .index_news h2 {
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}
.index_main .index_news h2::before {
  content: attr(data-text);
  display: inline-block;
  margin-bottom: 20px;
  color: #db343c;
  font-family: "Libre Baskerville", serif;
  border-bottom: 2px solid #db343c;
}
.index_main .index_news h2 span {
  display: block;
}
.index_main .index_news .index_news_scrl {
  width: 100%;
  max-height: 50vh;
  margin: 0 auto;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #d8d8d8;
}
.index_main .index_news .index_news_scrl .index_news_item:first-of-type {
  border-top: 1px solid #d8d8d8;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  padding: 0 15px;
  color: #9a9a9a;
  font-size: 14px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  display: inline-block;
  color: #616161;
  text-decoration: underline;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}

.more {
  width: 220px;
  margin: 40px auto 0;
}
.more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #db343c;
  color: #fff;
  font-weight: 700;
  border: 2px solid #db343c;
  border-radius: 100vw;
  transition: all 0.3s ease;
}
.more a:hover {
  background: #fff;
  color: #db343c;
}

.index_side .index_bnr_list li {
  margin-bottom: 4px;
}
.index_side .index_bnr_list li a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_side .index_bnr_list li a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  align-content: space-between;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #d8d8d8;
}
.news_list .news_item:first-of-type {
  border-top: 1px solid #d8d8d8;
}
.news_list .news_item .news_item_date {
  padding: 0 15px;
  color: #9a9a9a;
  font-size: 14px;
}
.news_list .news_item .news_item_ttl a {
  display: inline-block;
  color: #616161;
  text-decoration: underline;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_post_date {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  margin-bottom: -30px;
  padding: 0 15px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon > section {
  padding: 60px 15px;
}
.mcon > section > *:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 345px;
  padding-top: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mcon h1 span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem);
  text-align: center;
  line-height: 1.3;
  text-shadow: 1px 2px 4px #000;
}
.mcon h1 span::after {
  content: attr(data-text);
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.875rem, 0.761rem + 0.57vw, 1.125rem);
}
.mcon h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 30px;
  color: #db343c;
  font-size: 24px;
}
.mcon h2::before {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  margin: 0 auto 15px;
  background: #db343c;
}
.mcon h3 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid #ddd;
}
.mcon h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: #fff;
  border-radius: 50vh;
  border: 3px solid #db343c;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin: 20px 0;
  font-size: 18px;
}
.mcon h4::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  margin-right: 10px;
  background: #db343c;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon figure.paper_download {
  margin: 0 auto;
  width: 70%;
}
.mcon figure.paper_download tr {
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}
.mcon figure.paper_download tr td {
  border: none;
}
.mcon figure.contact-table table tr td {
  border: 1px solid #d5d5d5;
}
.mcon figure.fee-table {
  width: 100%;
}
.mcon figure.fee-table table tr td {
  border: none;
}
.mcon .table-3col {
  display: block;
}
.mcon .table-2col {
  display: none;
}

@media screen and (max-width: 494px) {
  .mcon .table-2col {
    display: block;
  }
  .mcon .table-3col {
    display: none;
  }
}
.the_center {
  margin: 0 auto;
}

.howtojoin {
  border: 1px solid #b80202;
  padding: 20px;
}

.qa-q {
  position: relative;
  padding-left: 0;
  margin-bottom: 1.5em;
  color: #0a4fa3;
  border-bottom: 2px dotted #0a4fa3;
  padding-bottom: 0.3em;
  margin-left: 2.5em;
}

.qa-a {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 2em;
}

.qa-q::before,
.qa-a::before {
  top: 1px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.qa-q::before {
  content: "Q.";
  color: #0a4fa3;
  position: absolute;
  left: -1.6em;
  border-bottom: none;
}

.qa-a::before {
  content: "A.";
  color: #ff2b2b;
  position: absolute;
  left: 0;
  border-bottom: none;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** form(PC)
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.form table th {
  font-size: 1.2rem;
}
.form input[type=text], .form input[type=email], .form input[type=tel] {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  background: #fff;
}
.form input[type=text]:focus, .form input[type=email]:focus, .form input[type=tel]:focus {
  /* background-color: $sub-color; */
}
.form input[type=file] {
  width: 100%;
  background: #fff;
}
.form input[type=file]::file-selector-button {
  padding: 8px;
  margin-right: 1.5em;
}
.form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* デフォルトのスタイルを消す */
  /* border: 1px solid $base-color; */
  border-radius: 50%;
  height: 20px;
  left: -0.5em; /* ラジオボタンとラベルの余白 */
  margin: 0;
  position: relative;
  width: 20px;
}
.form input[type=radio]::before {
  /* background-color: $base-color; */
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: 14px;
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 14px;
}
.form input[type=radio] {
  /* チェックされたらラジオボタン内側を表示 */
}
.form input[type=radio]:checked::before {
  opacity: 1;
}
.form .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1em;
}
.form .wpcf7-radio .wpcf7-list-item {
  min-width: 70px;
}
.form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 18px;
}
.form textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  background: #fff;
}
.form textarea:focus {
  /* background-color: $sub-color; */
}
.form span.required {
  color: #db343c;
  font-size: 0.8em;
}
.form .more {
  width: 220px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #db343c;
  color: #fff;
  font-weight: 700;
  border: 2px solid #db343c;
  border-radius: 100vw;
  transition: all 0.3s ease;
}
.form .more:hover {
  background: #fff;
  color: #db343c;
}

.confirm .confirm_content {
  white-space: pre-wrap;
}
.confirm span[class^=confirm] {
  font-size: 1.5em;
}/*# sourceMappingURL=sp.css.map */