@charset "utf-8";

/* =========================
   Reset CSS (Modern)
========================= */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin / Padding リセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* body 基本設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

/* リスト */
ul,
ol {
  list-style: none;
}

/* 画像 */
img,
picture {
  display: block;
}

/* フォーム系 */
input,
button,
textarea,
select {
  font: inherit;
}

/* ボタン */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* 強調 */
strong {
  font-weight: normal;
}

/* フォーカス（アクセシビリティ） */
:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 767px) {

  body {
    font-size: 14px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
  }
  p,
  li,
  a,
  dt,
  dd {
    font-size: 14px;
  }

}

/* CSS Document */
body {
  font-family:
    'Noto Sans JP',
    'Hiragino Sans',
    'Yu Gothic',
    sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
}

a {
  color: #4b7ff7;
}

a:hover {
  opacity: 0.7
}

/* ===== ヘッダー ===== */
header {
  background: #fff;
  /*border-bottom: 1px solid #ddd;*/
}

.header-inner {
  max-width: 1600px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*min-width: 900px;*/
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media all and (max-width: 767px) {
  .header-inner {
    max-width: 100%;
    min-width: 100%;
    padding: 15px 15px;
  }

  .sp_dispNon {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}


.about24 {
  padding: 30px 60px;
  box-sizing: border-box;
  margin-bottom: 60px !important;
}

.about24_fl_eachend {
  display: flex;
  justify-content: space-between;
  /* 両端に寄せる */
}

@media (max-width: 767px) {
  .about24 {
    padding: 20px 30px 30px;
    margin-bottom: 30px !important;
  }

  .about24_fl_eachend {
    display: block;
  }

  .about24_fl_eachend p {
    font-size: 14px;
  }

  .about24_fl_eachend img {
    margin: 20px auto 10px;
  }
}

.logo {
  font-weight: bold;
  color: #1a4fa3;
}

@media all and (max-width: 767px) {
  .logo img {
    width: 140px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-links {
  font-size: 12px;
  display: flex;
  flex-direction: column;
}

.top-links a {
  color: #4b7ff7;
  text-decoration: none;
  font-weight: bold;
}

.contact {
  text-align: center;
  font-size: 12px;
  line-height: 200%;
}

.tel {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  padding-left: 5px;
}

.telLink {
  display: flex;
  align-items: flex-end;
}

.btn {
  background: #4b7ff7;
  color: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .btn {
    padding: 12px 5px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  }

  .sptopbtnarea .top-links {
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .sptopbtnarea .top-links a {
    position: relative;
    display: block;
    text-align: left;
    padding-left: 14px;
    font-size: 11px;
    line-height: 1.4;
  }

  .sptopbtnarea .ico_arw {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .sptopbtnarea .telLink {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sptopbtnarea .header-btn {
    display: block;
    width: 60%;
    margin: 10px auto;
    text-align: center;
  }

  .sptopbtnarea .tel {
    font-size: 24px;
  }

  .sptopbtnarea .telLink img {
    width: 23px;
    height: auto;
    position: relative;
    top: 2px;
  }
}

@media (max-width: 1200px) {

  .header-right {
    gap: 12px;
  }

  .top-links a {
    font-size: 11px;
  }

  .btn.header-btn {
    padding: 12px 14px;
    font-size: 16px;
    white-space: nowrap;
  }

  .contact {
    font-size: 11px;
  }

  .tel {
    font-size: 20px;
  }

}


.ico_arw {
  font-size: 8px;
  padding-right: 10px;
}

/* ===== グローバルナビ ===== */
.global-nav {
  background: #f5f5f5;
  font-size: 13px;
  font-weight: bold;
  /*border-bottom: 1px solid #ddd;*/
}

.global-nav ul {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 12px 0;
  list-style: none;
  /*min-width: 800px;*/
}

.global-nav a {
  text-decoration: none;
  color: #333;
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 130%;
}

/*
.global-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e4e4e4;
  transition: .3s;
}

.global-nav a:hover::after {
  width: 100%;
}
*/

@media (max-width: 1024px) {
  .header-inner {
    min-width: 0;
    padding: 15px 20px;
  }

  .global-nav ul {
    min-width: 0;
    gap: 40px;
    padding: 12px 20px;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

}


@media all and (max-width: 767px) {
  .global-nav {
    font-size: 11px;
    box-sizing: border-box;
  }

  .global-nav ul {
    max-width: 100%;
    margin: 0;
    gap: 0;
    padding: 12px 0;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;
  }

  .global-nav a {
    padding: 0 5px;
    border-right: solid #c4c1c1 1px;
    box-sizing: border-box;
    height: 33px;
  }

  .global-nav li:last-child a {
    border-right: none;
  }

  .global-nav li {
    flex: 1;
    text-align: center;
    box-sizing: border-box;
  }

}

.pageTop {
  bottom: 86px;
  display: none;
}

.top-js {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 10;
  width: 50px;
  height: 50px;
}

.top-button-js {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  background-color: #606060;
  border-radius: 4px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0.5;
}

.top-button-js::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;

  width: 12px;
  height: 12px;

  border-top: 3px solid #fff;
  border-left: 3px solid #fff;

  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 767px) {
  .top-js {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
  }

  .top-button-js::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
  }
}

/* ===== メインビジュアル ===== */
.hero {
  background: #dfecf4;
  text-align: center;
  overflow: hidden;
}

.hero img {
  width: 100%;
  max-width: 1151px;
  height: auto;
  margin: 0 auto;
  animation: mvFade 2s ease forwards;
}


@media (max-width: 767px) {
  .hero img {
    display: block;
    height: auto;
    width: 100%;
  }
}
@keyframes mvFade {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* ===== セクション ===== */
.section {
  padding: 60px 0 0;
  background: #fff;
  display: block;
}

.sectionMb {
  padding: 60px 0 40px;
  background: #fff;
  display: block;
}

@media (max-width: 767px) {
  .section {
    padding: 30px 0 0;
  }

  .sectionMb {
    padding: 30px 0 20px;
  }
}

.gray {
  background: #f5f5f5;
}

.inner {
  width: 760px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .inner {
    width: auto;
    box-sizing: border-box;
    margin: 0 20px;
    font-size: 14px;
  }
}

h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: left;
  font-weight: bold;
}

@media (max-width: 767px) {
  h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

p {
  line-height: 1.6;
}

/* ===== ボタン ===== */
.btn.white {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #4b7ff7;
  border: 2px solid #4b7ff7;
  padding: 10px 120px;
  font-weight: bold;
}

.btnmgt {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .btn.white {
    display: block;
    margin-top: 20px;
    background: #fff;
    color: #4b7ff7;
    border: 2px solid #4b7ff7;
    padding: 10px 10px;
    font-weight: bold;
    font-size: 14px;
  }

  .btnmgt {
    margin-top: 30px;
  }
}



/* ===== 特長 ===== */
.section.features24 {
  padding: 60px 0 90px;
}

@media (max-width: 767px) {
  .section.features24 {
    padding: 30px 16px 1px;
    box-sizing: border-box;
  }
}

.features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .features {
    display: block;
    gap: 0;
    margin-top: 30px;
  }
}

.feature {
  flex: 1;
  background: #ffffff;
  padding: 0;
  border-radius: 4px;
  font-size: 12px;
  position: relative;
}

.feature h3 {
  background: #cde9fb;
  text-align: center;
  line-height: 57px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-size: 18px;
  font-weight: bold;
}

.feature p {
  padding: 20px 24px 0;
}

.featureNote {
  position: absolute;
  bottom: -40px;
  left: 0;
  color: #999999;
  font-size: 9px;
}

@media (max-width: 767px) {
  .feature {
    background: #ffffff;
    padding: 0;
    border-radius: 4px;
    font-size: 13px;
    position: relative;
    margin-bottom: 50px;
  }

  .feature h3 {
    background: #cde9fb;
    text-align: center;
    line-height: 57px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-size: 18px;
    font-weight: bold;
  }

  .feature p {
    padding: 20px 24px 0;
  }

  .featureNote {
    position: absolute;
    bottom: -32px;
    left: 0;
    color: #999999;
    font-size: 9px;
  }
}

.balloon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 49px;
  height: 49px;

  background: url("../img/balloon.png");
  background-repeat: no-repeat;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  left: -15px;
}

.featureimg {
  height: 120px;
}

.featureimg img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

}


/* ===== カード ===== */
.cards {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  border: 2px solid #4b7ff7;
  padding: 20px 24px 20px;
  border-radius: 4px;
  color: #4b7ff7;
  font-size: 12px;
  position: relative;
  
  display: flex;
  flex-direction: column;
}

.card h4 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.cards a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  font-weight: bold;
}

.card p {
  flex-grow: 1;
}

.card .mt10:last-child {
  margin-top: auto;
  padding-top: 5px;
}

/* 画像エリア */
.card .textC {
  height: 80px;          /* 高さ固定 */
  display: flex;
  align-items: flex-end;  /* 下揃え */
  justify-content: center;
}

/* 詳しく見る */
.card .mt10:last-child {
  padding-top: 14px;
}


@media (max-width: 767px) {
  .cards {
    display: block;
    gap: 0;
  }

  .card {
    padding: 20px 20px 20px;
    margin-bottom: 30px;
    font-size: 13px;
  }
}

/* ===== お知らせ ===== */
.newsarea {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .newsarea {
    margin-bottom: 30px;
  }
}

.news li {
  border-bottom: 1px dotted #ccc;
  padding: 14px 0;
  font-size: 14px;
}

.news li a {
  display: block;
  padding: 10px 0;
  /* ←ここで上も含めて広げる */
  text-decoration: none;
  font-weight: bold;
}

.dateTxt {
  color: #666666;
  display: block;
  font-weight: normal;
}

.newsLink {
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  margin-top: 20px;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 30px 20px 60px;

}

.cta .btn {
  width: 380px;
  display: block;
  margin: 0 auto;
}

.cta li {
  display: inline-block;
  font-size: 12px;
  padding: 10px 20px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .cta {
    padding: 15px 20px 30px;

  }

  .cta .btn {
    width: 80%;
    display: block;
    margin: 0 auto;
  }

  .cta li {
    display: inline-block;
    font-size: 12px;
    padding: 10px 20px;
    font-weight: bold;
  }
  .cta li a{
    font-size: 13px;
    line-height: 130%;
  }
}

/* ===== フッター ===== */
footer {
  background: #f5f5f5;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 760px;
  margin: auto;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 11px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.copy {
  text-align: center;
  font-size: 12px;
}

@media (max-width: 767px) {
  footer {
    background: #f5f5f5;
    padding: 20px 20px;
  }

  .footer-inner {
    width: auto;
    margin: auto;
  }

  .footer-nav {
    display: block;
    margin-bottom: 60px;
  }

  .footer-nav div {
    display: block;
    gap: 0;
    margin-bottom: 16px;
  }

  .footer-nav div a {
    display: block;
    line-height: 20px;
    font-size: 13px;
  }
}

/* ===== 24 ===== */
.sec_main {
  margin: 46px 0 0;
}

.sec_main24 {
  margin: 46px 0 38px;
}

.readTxt {
  margin-bottom: 30px;
  font-size: 14px;
}

.figure_img {
  text-align: center;
  margin: 60px 0 30px;
}

.figure_img img {
  margin: 0 auto;
}

@media (max-width: 767px) {
  .sec_main {
    margin: 23px 0 0;
  } 

  .sec_main24 {
    margin: 23px 0 19px;
  }
  
  .sec_main24 img,.sec_main img{
    width: 100%;
  }

  .readTxt {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .figure_img {
    text-align: center;
    margin: 30px 0 15px;
  }
}

/* ===== オーナー ===== */
.merits {
  /* display: flex; */
  gap: 20px;
  margin-top: 20px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .merits {
    padding-bottom: 10px;
  }

}

.merit {
  flex: 1;
  background: #ffffff;
  padding: 0;
  border-radius: 4px;
  font-size: 13px;
  position: relative;
  margin-bottom: 30px;
}

.merit h3 {
  background: #cde9fb;
  text-align: center;
  line-height: 57px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .merit h3 {
    line-height: 20px;
    font-size: 14px;
    padding: 20px 20px;
  }
}

.merit p {
  padding: 20px 24px 20px;
}
@media (max-width: 767px) {
  .merit p {
    font-size:13px; 
  }
}

.meritTxt {
  font-size: 10px;
  line-height: 10px;
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .meritTxt {
    line-height: 8px;
  }
}

.meritballoon {
  display: block;
  text-align: center;
}

/* ===== お申込みの流れ ===== */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process li {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 20px;

  background: #fff;
  padding: 0;
  margin-bottom: 40px;

}

/* 番号 */
.processNo {
  background: #4b7ff7;
  color: #fff;
  font-size: 30px;
  font-weight: bold;

  width: 60px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 文章 */
.processBody {
  padding: 10px 30px 10px 0;
  flex: 1;
}

.processBody h3 {
  font-size: 16px;
  margin-bottom: 3px;
  color: #000000;
}

.processBody p {
  line-height: 1.8;
  font-size: 11px;
  color: #000000;
}

@media (max-width: 767px) {
  .processBody {
    display: block !important;
    width: 100%;
    padding: 20px 20px 20px 0 !important;
  }

@media (max-width: 767px) {
  .processBody p {
    font-size: 13px;
    line-height: 140%;
  }
}

  .processBody h3 {
    font-size: 14px;
  }

  .processImg img {
    width: 100% !important;
    display: block;
  }
}

/* ▼ */
.process li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #d9d9d9;
}

.process li:last-child::after {
  display: none;
}

.processBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  width: 100%;
  padding: 30px 30px 30px 0;
}

/* 左 */
.processText {
  flex: 1;
}

.processText h3 {
  font-weight: bold;
}

/* 右 */
.processImg {
  flex-shrink: 0;
}

.processImg img {
  width: 260px;
  display: block;
}

/* ===== よくある質問 ===== */
.anchorText {
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

@media (max-width: 767px) {
  .anchorText {
    font-size: 12px;
    text-align: left;
  }
  .expansionLink{
    text-decoration: none!important;
    color: #4b7ff7!important;
  }
}

.qabox {
  margin-bottom: 100px;
}

.qabox:last-of-type {
  margin-bottom: 0;
}

.qa_figure {
  margin: 20px auto;
}

.anchorText li {
  display: inline-block;
  padding: 60px 20px 60px;
}

.question h1,
.sec_h1 {
  font-size: 30px;
  font-weight: bold !important;
}

@media (max-width: 767px) {

  .question h1,
  .sec_h1 {
    font-size: 18px;
  }

  .anchorText {
    margin: 20px 10px 10px;
  }

  .anchorText li {
    display: block;
    padding: 0 0 10px;
  }
}

.question h2 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 24px;
}


.question .qList {
  border-bottom: 1px dotted #ccc;
  padding: 20px 0;
}

.question dt {
  color: #4b7ff7;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.question dt strong{
  font-weight: bold;
}

.question dd {
  color: #666666;
  font-size: 16px;
}

.question dd a {
  color: #666666;
  text-decoration: underline;
}

.question dl {
  padding-left: 30px;
}

.ico_q {
  width: 23px;
  height: 23px;
  line-height: 23px;
  background-color: #4b7ff7;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-left: -30px;
  margin-right: 8px;
}

.ico_a {
  width: 23px;
  height: 23px;
  line-height: 23px;
  background-color: #666666;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-left: -30px;
  margin-right: 8px;
}

/* ===== ダウンロード ===== */
.download h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .download h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.dlList {
  list-style: none;
  background: #fff;
  /* ← 白に変更 */
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
  font-weight: bold;
}

/* リセット */
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* 横並び */
.dlList dl {
  display: flex;
  align-items: center;
}

/* タイトル */
.dlList dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* ラベル */
.ico_Non {
  background: #666666;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-right: 20px;
  width: 64px;
}

@media (max-width: 767px) {
  .dlList dt {
    display: block;
    gap: 0;
    font-size: 12px;
  }

  .dlList dl {
    display: block;
  }

  .dlList dd {
    width: 100%;
    display: inline-block;
    width: 49% !important;
    margin-top: 20px;
  }

  .ico_Non {
    margin-right: 10px;
    width: 44px;
    display: inline-block;
  }
}


/* ボタン共通 */
.pdfBtnW,
.pdfBtnB {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  padding: 8px 14px 8px 40px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid #4b7ff7;
  color: #4b7ff7;
  background: #fff;
}

.pdfBtnW {
  background-image: url("../img/ico_pdf_w.png");
  background-repeat: no-repeat;
  background-position: 15px 5px;
}

/* ボタンを右寄せにする */
.dlList dd:first-of-type {
  margin-left: auto;
}

.dlList:last-of-type {
  margin-bottom: 60px;
}

/* ボタン間の余白 
.dlList dd + dd {
  margin-left: 10px;
}*/
.dlList dd {
  width: 164px;
}

/* 右のボタン（塗り） */
.pdfBtnB {
  background: #4b7ff7;
  color: #fff;
  background-image: url("../img/ico_pdf_b.png");
  background-repeat: no-repeat;
  background-position: 15px 5px;
}

@media (max-width: 767px) {

  .pdfBtnW,
  .pdfBtnB {
    width: 96%;
    text-align: center;
  }

  .pdfBtnW {
    margin-right: 10px;
  }
}

/* ===== フォーム ===== */
input,
textarea {
  width: 100%;
  padding: 5px;
  margin-top: 8px;
}

.error {
  color: red;
  font-size: 12px;
}

.formbox {
  border-bottom: 1px dotted #ccc;
  padding: 30px 0;
  font-size: 14px;
}

.confirmationbox {
  border-bottom: 1px dotted #ccc;
  padding: 30px 0;
  font-size: 14px;
}

.confirmationbox:last-of-type {
  margin-bottom: 40px;
}

.confirmationbox p {
  display: flex;
}

@media all and (max-width: 767px) {
  .confirmationbox p {
    display: block;
  }

  .confirmationttl {
    display: block;
    margin-bottom: 5px;
  }
}


.confirmationttl {
  width: 200px;
  flex-shrink: 0;
}

.confirmationontent {
  flex: 1;
}

select {
  display: block;
  margin-top: 8px;
}

.hissu {
  background: #fdcdcd;
  color: #be1414;
  font-size: 12px;
  border-radius: 20px;
  padding: 0 6px 2px;
  margin-left: 10px;
}

.privacycheck {
  background: #f5f5f5;
  margin: 30px auto 20px;
  width: 550px;
  text-align: center;
  font-size: 14px;
  padding: 30px 0;

}

.privacycheck label,
.privacycheck p {
  display: inline-block;
}

.privacycheck input {
  width: auto;
}

@media (max-width: 767px) {
  .privacycheck {
    background: #f5f5f5;
    margin: 30px auto 10px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 15px 0;

  }
}

.formread {
  font-size: 12px;
  line-height: 130%;
  margin: 30px 0 20px;
}

.telArea {
  display: flex;
  padding: 20px 60px;
  text-align: center;
}

.telArea .text1 {
  font-size: 18px;
  display: block;
}

.telArea .teltext {
  font-size: 36px;
  display: block;
  font-weight: bold;
}

.telArea .text2 {
  font-size: 16px;
  display: block;
}

.telArea .telbox {
  text-align: left;
}

.telico {
  padding-top: 20px;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .telArea {
    display: block;
    padding: 20px 20px;
    text-align: center;
  }

  .telArea .text1 {
    font-size: 14px;
    display: block;
    text-align: center;
  }

  .telArea .teltext {
    font-size: 28px;
    display: flex;
    font-weight: bold;
    align-items: center;
    gap: 2px;
    text-align: center;
    justify-content: center;
  }

  .telArea img {
    width: 26px;
  }

  .telArea .text2 {
    font-size: 12px;
    display: block;
    text-align: center;
  }

  .telArea .telbox {
    text-align: left;
  }

  .telico {
    padding-top: 0;
    margin-right: 5px;
  }
}

.formback {
  margin-top: 30px;
}

.topbackbtn {
  margin: 30px 0 60px;
  text-align: center;
}

.completedtxt {
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

@media all and (max-width: 767px) {
  .completedtxt {
    font-size: 14px;
  }

  .topbackbtn .btn.white {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }
}

/* ===== 追従ボタン ===== */
.floating-btn {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  display: none;
}

.floating-btn .btn {
  width: 360px;
  text-align: center;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .floating-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 10px;
  }

  .floating-btn .btn {
    width: 130px;
    text-align: center;
    margin-right: 10px;
    font-size: 14px;
  }

  .contact {
    text-align: center;
    font-size: 10px;
    line-height: 200%;
  }

  .tel {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    padding-left: 3px;
  }

  .telLink img {
    width: 18px;
    height: auto;
  }
}

/* ===== SNS ===== */
.sns_area {
    padding: 30px;
    text-align: center;
    background: #ffffff;
}
.sns_area a {
    display: inline-block;
}
.tw_btn, .fb_btn {
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    background: url(../img/logo_x.png) no-repeat;
    background-size: 40px auto;
    margin-right: 12px;
}

.fb_btn {
    background: url(../img/logo_fb.png) no-repeat;
    background-size: 40px auto;
}

/* ===== モジュール ===== */
.textC {
  text-align: center;
}

.textC img {
  margin: 0 auto;
}

.textN {
  font-weight: normal;
}

.textB {
  font-weight: bold;
}

.mt10 {
  margin-top: 10px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb30 {
  margin-bottom: 30px;
}

.noteTxt {
  font-size: 11px;
  color: #999999;
  font-weight: normal;
  line-height: 130%;
}

.textRed {
  color: #da2828;
}

.h2mgnb {
  margin-bottom: 40px !important;
}

.img100 {
  width: 100%;
  height: auto;
}

.img100 img {
  width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}