@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

html {
  font-size: 1rem;
}

.w_base {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-right: 10px !important;
  padding-left: 10px !important;
}

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

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 110px;
  background: rgba(255, 255, 255, 0.68);
  border-top: 8px solid #db343c;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.hd_bg .hd .hd_logo {
  flex-shrink: 0;
  text-align: center;
}
.hd_bg .hd .hd_logo a {
  display: block;
  position: relative;
  padding-left: 10px;
}
.hd_bg .hd .hd_logo a img {
  display: block;
  height: 48px;
  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: 0;
  transition: opacity 0.5s ease;
}
.hd_bg#index_hd {
  height: 120px !important;
  background: transparent;
  transition: all 0.5s ease;
}
.hd_bg#index_hd.bg {
  background: rgba(255, 255, 255, 0.68);
}
.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_bg {
  width: 100%;
  height: 100%;
}
.nav_bg .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  width: 100%;
}
.nav_bg .nav .nav_list > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  color: #616161;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a:hover {
  background: #db343c;
  color: #fff;
}
.nav_bg .nav .nav_list > li.current a {
  background: #db343c;
  color: #fff;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  margin-top: 15px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #db343c;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:first-of-type:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #db343c;
  position: absolute;
  top: -10px;
  left: 1em;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.2);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #db343c;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  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);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.5);
}
.nav_bg .nav .nav_contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 250px;
  height: 100%;
  padding: 10px;
  background: #a31010;
  text-align: center;
}
.nav_bg .nav .nav_contact .ttl {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.nav_bg .nav .nav_contact .tel {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav_bg .nav .nav_contact .tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
}
.nav_bg .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_bg .nav .nav_contact .sp_nav_otoiawase {
  display: none;
}
.nav_bg .nav .nav_contact address {
  color: #fff;
  font-size: 11px;
}
.nav_bg .nav .nav_contact .sns {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  order: 1;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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: 0.9rem;
}
.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: 30px;
  bottom: 30px;
  z-index: 1;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: #b5b5b6;
  border: 1px solid #b5b5b6;
  border-radius: 100vh;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 5px;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  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: 12px;
}
.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: 100%;
  max-width: 700px;
  padding: 0 20px;
  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: 500px;
  width: 100%;
  margin: 20px auto;
}
.index_slider_bg .index_slider .slider_con .slider_con_img img:last-child {
  width: 220px;
  margin: -20px auto 0;
  display: block;
}
.index_slider_bg .index_slider .slider_con .slider_con_txt {
  margin-top: 20px;
  color: #333;
  font-size: 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;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.index_slider_bg .index_slider .slider_con .slider_con_btn .slider_btn {
  width: 250px;
  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: 16px 40px;
  background: #e22020;
  color: #fff;
  font-size: 16px;
  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: 100%;
  max-width: 400px;
  height: 100vh !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 {
  order: 1;
  width: 100%;
}
.index_main .index_about {
  display: flex;
  align-items: center;
}
.index_main .index_about .index_about_con {
  flex-shrink: 0;
  width: 50%;
  padding: 20px 20px 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: 50vw;
}
.index_main .index_about .index_about_img img {
  width: 50vw;
  height: auto;
}
.index_main .index_news {
  padding: 60px 0;
  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: 670px;
  max-height: 380px;
  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 {
  width: 100px;
  padding: 0 15px;
  color: #9a9a9a;
  font-size: 14px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 120px);
}
.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.5em;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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 {
  width: 100px;
  padding: 0 15px;
  color: #9a9a9a;
  font-size: 14px;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 120px);
}
.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: 20px;
  margin-bottom: -40px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon > section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
}
.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: 120px;
  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: 70px;
  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: 18px;
}
.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 h3.flow_meeting {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 20px;
}
.mcon h3.flow_meeting::before {
  content: none;
}
.mcon h3.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;
}
.mcon h3.qa-q::before {
  top: 1px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}
.mcon h3.qa-q::before {
  content: "Q.";
  color: #0a4fa3;
  position: absolute;
  left: -1.6em;
  border-bottom: none;
}
.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 h4 a,
.mcon h4 > a {
  color: #2a86aa;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mcon h4 a::after,
.mcon h4 > a::after {
  content: " ↗";
  font-size: 0.85em;
  opacity: 0.8;
}
.mcon h4 a:hover,
.mcon h4 > a:hover {
  color: #0e385a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.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 {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon figure.paper_download {
  margin: 0 auto;
  width: 70%;
}
.mcon figure.paper_download table tr {
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}
.mcon figure.paper_download table tr td {
  border: none;
}
.mcon figure.contact-table table tr td {
  border: 1px solid #d5d5d5;
}
.mcon figure.fee-table table tr td {
  border: none;
}
.mcon .table-2col {
  display: none;
}
.mcon .member-store {
  border: 3px solid #956a6a;
  border-radius: 20px;
  background-color: #f9eded;
  padding: 10px 20px 0px;
  width: auto;
}
.mcon .announce {
  border: 3px solid #808080;
  border-radius: 5px;
  background-color: #f5f5f5;
  padding: 20px 20px 10px;
  margin-bottom: 20px;
}

.the_center {
  margin: 0 auto;
}

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

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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=style.css.map */