@charset "UTF-8";
/********************

	_variables.scss

	変数

********************/
/*

	コンテンツ幅

********************/
/*

	z-index を管理

	10単位で増加してるのは、それぞれの間に何か入るかもしれないから

********************/
/*

	色

********************/
/********************

	mixin
	function

********************/
/********************

  _base.scss

  _creativereset.scss で補えない「全ページ共通のスタイルを定義」

********************/
html {
  color: #000;
  font-size: 62.5%;
  line-height: 1.5;
}

body {
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
  position: relative;
  text-align: justify;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  top: 29px;
  font-size: 14px;
  font-size: 1.4rem;
}
body.fixed {
  height: 100%;
  left: 0;
  position: fixed;
  width: 100%;
}
body.page {
  top: 0;
}
@media (max-width: 640px) {
  html {
    font-size: 100%;
  }
  body {
    padding-top: 72px;
    top: 0;
  }
}
ul, li {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

a {
  color: #1600e8;
  text-decoration: underline;
  transition: all 0.1s ease-in;
}
a:hover {
  color: #1600e8;
  text-decoration: underline;
}
a:visited {
  color: #1600e8;
}

img {
  border: 0;
}

img, input {
  max-width: 100%;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.gmoGroupHeader {
  z-index: 999999999 !important;
}

/*! creativereset.css v0.0.2 | MIT License | creative team at GMO Internet, Inc. */
/*

  機能概要
  ==========================================================================
    - デフォルトのスタイルは維持
    - ブラウザごとの異なるスタイルやバグを修正
    - ユーザビリティを改善

  参考
  ==========================================================================
  ■ sanitize.css v6.0.0
      Chrome (last 3)
      Edge (last 3)
      Firefox (last 3)
      Firefox ESR
      Opera (last 3)
      Safari (last 3)
      iOS Safari (last 2)
      Internet Explorer 9+

  ■ normalize.css v8.0.0
      Chrome
      Edge
      Firefox ESR+
      Internet Explorer 10+
      Safari 8+
      Opera
*/
/* ドキュメント（Document）
 * ========================================================================== */
/**
 * box-sizingをすべての要素に適用（全てのブラウザ）
 */
*, ::before, ::after {
  box-sizing: content-box;
}

/**
 * 擬似要素は text-decoration, vertical-alignを継承（全てのブラウザ）
 */
::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/**
 * 1. 全てのブラウザでベースのline-heightを統一
 * 2. フォントサイズの調整を防止(Windows PhoneのIE,iOS)
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* セクション(Sections)
 * ========================================================================== */
/**
 * マージンを削除（全てのブラウザ）
 */
body {
  margin: 0;
}

/* グループコンテンツ(Grouping content)
 * ========================================================================== */
/**
 * 1. 高を修正(Firefox)
 * 2. オーバーフローを修正(Edge,IE)
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * displayの正しいプロパティを追加（IE）
 */
main {
  display: block;
}

/* テキストレベル（Text-level semantics）
 * ========================================================================== */
/**
 * 1. アクティブリンク時の背景グレイを削除(IE10)
 * 2. リンク下線のギャップを削除(iOS 8+ and Safari 8+ )
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * テキストデコレーションを修正（Edge,IE,Opera and Safari）
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * フォントウェイトを修正（Chrome, Edge, and Safari）
 */
b, strong {
  font-weight: bolder;
}

/**
 * 1. フォントサイズの継承とスケーリングを修正（全てのブラウザ）
 * 2. フォントの不規則なサイズを統一（全てのブラウザ）
 */
pre, code, kbd, samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * フォントのサイズを修正（全てのブラウザ）
 */
small {
  font-size: 80%;
}

/**
 * subとsup要素が行の高さに与える影響を阻止（全てのブラウザ）
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 埋め込みコンテント（Embedded content）
 * ========================================================================== */
/**
 * オーバーフローを修正（IE）
 */
svg:not(:root) {
  overflow: hidden;
}

/* 表形式のデータ（Tabular data）
 * ========================================================================== */
/**
 * テーブルのボーダーを削除
 */
table {
  border-collapse: collapse;
}

/* フォーム（Forms）
 * ========================================================================== */
input {
  border-radius: 0;
}

/**
 * マージンを削除（Firefox,Safari）
 */
button, input, optgroup, select, textarea {
  margin: 0;
}

/**
 * テキストのトランスフォームの継承を削除（Edge,IE,Firefox）
 */
button, select {
  text-transform: none;
}

/**
 * クリック可能なタイプをスタイルできない問題を修正（iOS,Safari）
 */
button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/**
 * 前のルールで設定したフォーカスのスタイルを元に戻す(Firefox)
 */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * インナーボーダー（-moz-focus-inner）とpaddingを削除（Firefox）
 */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * padding修正（Firefox）.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. テキスト周りを修正（IE）
 * 2. fieldsetからの色の継承を修正（IE）
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. displayの正しいプロパティを追加
 * 2. vertical-alignの正しい値を追加（Chrome, Firefox, and Opera）
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * テキストのトランスフォームの継承を削除（Firefox）
 */
select {
  text-transform: none;
}

/**
 * 1. デフォルトの垂直スクロールバーを削除（IE10+）
 * 2. 縦方向のみリサイズ（すべてのブラウザ）
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. box-sizingを修正（IE 10-）.
 * 2. paddingを削除（IE 10-）
 */
[type=checkbox], [type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 増減ボタンのカーソルのスタイルを修正（Chrome）
 */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. 不規則な外観を修正（Chrome,Safari）
 * 2. アウトラインのスタイルを修正（Safari）
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 外観を修正（Safari 8）
 */
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 幅を修正（Firefox 36+）
 */
[type=number] {
  width: auto;
}

/**
 * 内側のパディングを削除（macOSのChrome, Safari）
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. クリック可能なタイプをスタイルできない問題を修正（iOSとSafari）
 * 2. フォントのプロパティを「inherit」に変更（Safari）
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* インタラクティブ（Interactive）
 * ========================================================================== */
/*
 * displayの正しいプロパティを追加（Edge,IE）
 */
details {
  display: block;
}

/*
 * 正しいプロパティを追加（Edge,IE,Safari）
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * displayの正しいプロパティを追加（全てのブラウザ）
 */
summary {
  display: list-item;
}

/*
 * displayの正しいプロパティを追加（IE 10-）
 */
[hidden] {
  display: none;
}

/* スクリプト制御される要素（Scripting）
 * ========================================================================== */
/**
 * displayの正しいプロパティを追加（IE 9-）
 */
canvas {
  display: inline-block;
}

/**
 * displayの正しいプロパティを追加（IE）
 */
template {
  display: none;
}

/* ユーザーインタラクション（User interaction）
 * ========================================================================== */
/*
 * 1. タップ反応の遅延を削除（IE10）
 * 2. クリック可能な要素のタップ反応の遅延を削除（全てのブラウザ）
 */
a, area, button, input, label, select, summary, textarea, [tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/********************

  _structure.scss

  ページ（レイアウト）構造を定義

********************/
.heading {
  margin-bottom: 80px;
}
.heading .container h1 {
  border-bottom: 2px solid #fc0;
  line-height: 1.2;
  margin: 0 0 20px 0;
  padding: 30px 0 40px;
  text-align: center;
  font-size: 36px;
  font-size: 3.6rem;
}
.heading .container h1 br {
  display: none;
}
.heading .container_inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 980px;
}
.heading .container_inner p {
  line-height: 1.4;
}
.heading .body {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 980px;
}
.heading .body p {
  line-height: 1.4;
}

.global-footer {
  background-color: #2b3e42;
}
.global-footer-body {
  color: #fff;
  margin: 0 auto;
  max-width: 880px;
  padding: 55px 48px 0 48px;
}
.global-footer-body ul {
  float: left;
  min-width: 440px;
}
.global-footer-body li {
  margin-bottom: 30px;
}
.global-footer-body a {
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
}
.global-footer-body a:hover {
  text-decoration: underline;
}
.global-footer-wrap p.copy {
  color: #fff;
  font-size: 14px;
  height: 65px;
  line-height: 20px;
  padding: 10px 0 0;
  text-align: center;
}
.global-footer_flexbox {
  display: flex;
  height: 66px;
  margin: 30px auto;
  width: 280px;
}
.global-footer_ierae {
  background: #696969;
  height: 100%;
  width: 130px;
}
.global-footer_globalsign {
  background: #696969;
  height: 100%;
  margin-right: 20px;
  width: 130px;
}

@media (max-width: 640px) {
  .heading {
    margin-bottom: 40px;
  }
  .heading .container h1 {
    margin: 0 0 10px 0;
    padding: 15px 0 20px;
    font-size: 26px;
    font-size: 2.6rem;
  }
  .heading .container h1 br {
    display: inline-block;
  }
  .heading .body {
    width: 100%;
  }
}
@media (min-width: 641px) and (max-width: 959px) {
  .heading {
    margin-bottom: 40px;
  }
  .heading .body {
    width: 100%;
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 980px;
}
.container_heading {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.container_heading2 {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.container_heading3 {
  font-size: 30px;
  font-size: 3rem;
  border-bottom: 1px solid #bfbdbd;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 0 7px 0;
  text-align: center;
}
.container_heading4 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
}
.container_lead {
  line-height: 1.4;
}

@media (max-width: 639px) {
  .container {
    width: 100%;
  }
  .container_heading2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .container_heading3 {
    font-size: 20px;
    font-size: 2rem;
  }
  .container_heading4 {
    font-size: 18px;
    font-size: 1.8rem;
    padding-left: 10px;
    padding-right: 10px;
  }
  .container .body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .container .body .container_heading4 {
    padding-left: 0;
    padding-right: 0;
  }
  .container .header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .container .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .container {
    /*
    		&_lead {
    			padding-left: 10px;
    			padding-right: 10px;
    		}
    */
  }
  .main .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .container {
    width: 100%;
  }
}
.globalFooter {
  background-color: #dcdcdc;
}
.globalFooter_tkb {
  column-count: 3;
  column-gap: 0;
  margin-inline: auto;
  padding: 50px 0;
  width: 960px;
}
@media screen and (max-width: 640px) {
  .globalFooter_tkb {
    column-count: 2;
    margin-inline: 20px;
    width: auto;
  }
}
.globalFooter_dl {
  break-inside: avoid;
  margin: 0;
  padding: 0;
  page-break-inside: avoid;
}
.globalFooter_dl + .globalFooter_dl {
  margin-top: 1em;
}
.globalFooter_dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.3em;
  white-space: nowrap;
}
.globalFooter_dl dd {
  font-size: 14px;
  margin-left: 1em;
  white-space: nowrap;
}
.globalFooter_dl dd > a {
  color: #000;
  text-decoration: none;
}
.globalFooter_dl dd > a:hover {
  text-decoration: underline;
}
.globalFooter_gmo {
  border-top: 1px solid #000;
  margin-inline: auto;
  padding: 50px 0;
  width: 960px;
}
@media screen and (max-width: 640px) {
  .globalFooter_gmo {
    margin-inline: 20px;
    width: auto;
  }
}
.globalFooter_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  justify-content: center;
}
.globalFooter_ul > li {
  font-size: 14px;
  white-space: nowrap;
}
.globalFooter_ul > li > a {
  color: #000;
  text-decoration: none;
}
.globalFooter_ul > li > a:hover {
  text-decoration: underline;
}
.globalFooter_seal {
  container-type: inline-size;
  display: flex;
  gap: 0 10px;
  justify-content: center;
  margin: 50px auto;
}
@container (width = 640px) {
  .globalFooter_seal > li {
    zoom: 1.65;
  }
}
.globalFooter_seal > li {
  background: #f0f0f0;
  height: 50px;
  white-space: nowrap;
  width: 100px;
}
.globalFooter_copy {
  font-size: 14px;
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .gmoGroupSecurity {
    max-width: 60vw;
    padding: 18% 0 20%;
    transform: scale(1.68);
  }
}
html {
  font-size: 62.5%;
}

body {
  font-size: 20px;
  font-size: 2rem;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", sans-serif;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 0;
  }
}

.header {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  padding-block: 12px 10px;
  width: 100%;
  z-index: 100000010;
}
.header_inner {
  align-items: center;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  gap: 20px;
  margin-inline: auto;
  max-width: 1080px;
}
@media (max-width: 768px) {
  .header_inner {
    display: block;
    padding-inline: 10px;
    width: 100%;
  }
}
.header_logo {
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  .header_logo {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .header_logo_gmo > img {
    height: auto;
    width: 50px;
  }
}
.header_logo .cross {
  display: block;
  height: 20px;
  margin: 0;
  padding: 0 20px;
  position: relative;
  width: 20px;
}
.header_logo .cross::before, .header_logo .cross::after {
  background: #005bac;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 1px;
}
.header_logo .cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header_logo .cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .header_logo_docomo > img {
    height: auto;
    width: 70px;
  }
}
.header_text {
  color: #6f6f6f;
  margin: 0 0 0 20px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .header_text {
    margin: 5px 0 0 0;
    font-size: 10px;
    font-size: 1rem;
  }
}

.singlepage {
  align-items: center;
  background: #e32920;
  display: flex;
  flex-direction: column;
  height: 120px;
  justify-content: center;
}
@media (max-width: 768px) {
  .singlepage {
    height: auto;
    padding: 24px 15px;
  }
}
.singlepage_inner {
  font-size: 28px;
  font-size: 2.8rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .singlepage_inner {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 0;
  }
}
.section-gray {
  background: #f6f6f6;
}
.section_note {
  margin-block: 60px;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .section_note {
    margin-block: 30px;
    margin-inline: 20px;
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
  width: 960px;
}

.section_inner {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .section_inner {
    border-radius: 14px;
  }
}
.section_inner-white {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .section_inner {
    margin-inline: 10px;
  }
}

.main_formBox {
  margin: 0 auto;
  max-width: 860px;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .main_formBox {
    padding: 40px 20px;
  }
}

.section_heading {
  font-size: 30px;
  font-size: 3rem;
  color: #628fd5;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 auto 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .section_heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.section_heading + .section_note {
  margin: 20px 0 0;
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .section_heading + .section_note {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.section_text {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 768px) {
  .section_text {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.inputBox_table {
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .inputBox_table {
    margin-top: 20px;
  }
}
.inputBox_table > table {
  width: 100%;
}
.inputBox_table > table + table {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .inputBox_table > table + table {
    margin-top: 10px;
  }
}
.inputBox_table > table .req {
  align-items: center;
  background: #e32920;
  color: #fff;
  display: inline-flex;
  font-weight: bold;
  height: 25px;
  padding: 0 5px;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .inputBox_table > table .req {
    height: auto;
    font-size: 10px;
    font-size: 1rem;
  }
}
.inputBox_table > table > tbody > tr.inputBox_note > td {
  border: none;
  color: #6f6f6f;
  padding: 20px 0 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .inputBox_table > table > tbody > tr.inputBox_note > td {
    padding-top: 10px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.inputBox_table > table > tbody > tr > th, .inputBox_table > table > tbody > tr > td {
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  padding: 20px;
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .inputBox_table > table > tbody > tr > th, .inputBox_table > table > tbody > tr > td {
    display: block;
    padding: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.inputBox_table > table > tbody > tr > th {
  background: #f6f6f6;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  width: 25%;
}
.inputBox_table > table > tbody > tr > th label {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
@media (max-width: 768px) {
  .inputBox_table > table > tbody > tr > th label {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .inputBox_table > table > tbody > tr > th {
    text-align: center;
    width: 100%;
  }
}
.inputBox_table > table > tbody > tr > td {
  width: 75%;
}
@media (max-width: 768px) {
  .inputBox_table > table > tbody > tr > td {
    border-top: none;
    width: 100%;
  }
}
.inputBox_table > table + ul.note, .inputBox_table > table + p {
  margin: 20px auto 0;
}

.main_form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23B2B2B2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 20px center;
  background-repeat: no-repeat;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px 40px 10px 10px;
  width: 100%;
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .main_form select {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.main_form input[type=text], .main_form input[type=tel], .main_form input[type=email] {
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  padding: 10px;
  width: -webkit-fill-available;
  width: stretch;
  font-size: 20px;
  font-size: 2rem;
}
.main_form input[type=text]::placeholder, .main_form input[type=tel]::placeholder, .main_form input[type=email]::placeholder {
  color: #dcdcdc;
}
@media (max-width: 768px) {
  .main_form input[type=text], .main_form input[type=tel], .main_form input[type=email] {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.main_form textarea {
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  padding: 10px;
  width: -webkit-fill-available;
  width: stretch;
  font-size: 20px;
  font-size: 2rem;
}
.main_form textarea::placeholder {
  color: #dcdcdc;
}
@media (max-width: 768px) {
  .main_form textarea {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.main_form .input--error {
  background-color: #ffe8ee;
}

ul.note {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.note > li {
  font-size: 14px;
  font-size: 1.4rem;
  color: #6f6f6f;
  line-height: 1.6;
  padding-left: 1.5em;
  text-align: justify;
  text-indent: -1.3em;
}
@media (max-width: 768px) {
  ul.note > li {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
ul.note > li.is-red {
  color: #e32920;
  font-weight: bold;
}
ul.note.is-center > li {
  text-align: center;
}

.linkBtn {
  margin: 80px auto 0;
}
@media (max-width: 768px) {
  .linkBtn {
    margin-top: 40px;
  }
}
.linkBtn > li {
  width: 100%;
}
.linkBtn > li + li {
  margin: 15px auto 0;
}
.linkBtn > li > button {
  align-items: center;
  background: #fff;
  border: 3px solid #e32920;
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  color: #e32920;
  cursor: pointer;
  display: flex;
  font-weight: bold;
  height: 80px;
  justify-content: center;
  line-height: 1.2;
  margin: 0 auto;
  max-width: 450px;
  position: relative;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .linkBtn > li > button {
    height: 56px;
    max-width: 240px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.linkBtn > li > button::before {
  border-right: 2px solid #e32920;
  border-top: 2px solid #e32920;
  bottom: 0;
  content: "";
  height: 9px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(45deg);
  width: 9px;
}
.linkBtn > li > button:hover {
  background: #ffe8ee;
}
.linkBtn-red > li > button {
  background: #628fd5;
  border-color: #628fd5;
  color: #fff;
}
.linkBtn-red > li > button::before {
  border-color: #fff;
}
.linkBtn-red > li > button:hover {
  background: #4d75b4;
  border-color: #4d75b4;
}
.linkBtn-red > li > button:disabled {
  background: #b2b2b2;
  border-color: #b2b2b2;
  cursor: not-allowed;
}
.linkBtn-red > li > button:disabled::before {
  border-color: #fff;
}
.linkBtn-red > li > button:disabled:hover {
  background: #b2b2b2;
  border-color: #b2b2b2;
}

.confirmBox_agreement {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .confirmBox_agreement {
    margin-top: 30px;
  }
}
.confirmBox_agreement > dt {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .confirmBox_agreement > dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.confirmBox_agreement > dd {
  margin-inline: 0;
  margin-top: 10px;
}
.confirmBox_agreement > dd p {
  margin: 0;
}
@media (max-width: 768px) {
  .confirmBox_agreement > dd p {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.confirmBox_agreement > dd p + p {
  margin-top: 20px;
}
.confirmBox_agreement_link a {
  color: #004cbf;
  text-decoration: none;
}
.confirmBox_agreement .checkBox {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .confirmBox_agreement .checkBox {
    margin-top: 30px;
  }
}
.confirmBox_agreement .checkBox input[type=checkbox] {
  height: 20px;
  width: 20px;
}
@media (max-width: 768px) {
  .confirmBox_agreement .checkBox label {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.confirmBox_back {
  margin: 20px auto 0;
  text-align: center;
}
.confirmBox_back .btn-back {
  background: none;
  border: none;
  color: #628fd5;
  cursor: pointer;
  display: inline-flex;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.confirmBox_back .btn-back:hover {
  color: #4d75b4;
}

.error01 {
  color: #e32920;
  font-weight: bold;
  margin: 10px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .error01 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.thanksBox + .footer {
  margin-top: 0;
}

.footer {
  background-color: #6f6f6f;
  color: #fff;
  margin-top: 80px;
  padding-block: 18px 16px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 40px;
  }
}

@media screen and (max-width: 640px) {
  .gmoGroupSecurity {
    max-width: none;
    padding: 0;
    transform: none;
  }
}
/*# sourceMappingURL=this.css.map */