@charset "UTF-8";
/* ----------------------------
	Common Style Setting
	Create Date: 25.04.23
----------------------------*/
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type='checkbox'] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type='radio'] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type='button'][disabled],
[type='reset'][disabled],
[type='submit'][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in 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;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type='search'] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*   Common Setting
----------------------------*/
/* 変数定義 */
:root {
  --black90: #1c1a1b;
  --black80: #303030;
  --black70: #433b3b;
  --black60: #555555;
  --black30: #cccccc;
  --black5: #f8f8f8;
  --orange: #f5a100;
  --ffjp: 'Hiragino Sans ProN', 'ヒラギノ角ゴシック ProN', 'Hiragino Sans Pro', 'Yu Gothic UI', '游ゴシック',
    'MSゴシック', 'メイリオ', Meiryo, Osaka, sans-serif;
  --ffNoto: 'Noto Sans JP', sans-serif;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

body {
  position: relative;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',
    'Helvetica', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  margin: 0px;
  padding: 0px;
  color: #000000;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
}

.contents-wrap {
  font-family: var(--ffjp);
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

/**================================= Global Header =================================**/
.global-header {
  height: 50px;
  border-top: var(--orange) solid 5px;
  padding: 0 10px;
  background-color: white;
}
.global-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.global-header__link {
  font-size: 0.875rem;
}
.global-header__link a {
  text-decoration: underline;
  color: var(--black80);
}

.site-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  font-size: 0.75rem;
  color: var(--black70);
  font-weight: 600;
  line-height: 1.2;
}
.site-title img {
  width: 86px;
  margin-right: 10px;
}

/**================================= Contents =================================**/
/* HERO 
--------------------*/
.hero-area {
  position: relative;
  background: url(../img/fv_bgimg_sp.jpg) no-repeat center top/cover;
  padding: 55px 0 31px;
}
.hero-area__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-area__feature-box-wrap {
  display: flex;
  flex-direction: column-reverse;
}
.hero-area__feature-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  /* margin-top: 19px; */
  padding: 0 20px;
}
.hero-area__feature-box li {
  width: 144px;
}
.hero-area__feature-box li img {
  width: 144px;
}
.hero-area__copy01 {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-family: var(--ffNoto);
  color: #fff;
  font-size: 14.577px;
  font-weight: 700;
  line-height: 37px;
  padding: 0 40px 0 25px;
  margin-bottom: 20px;
}
.hero-area__copy01::before {
  content: '';
  z-index: -1;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -18px;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-24deg);
  transform: skewX(-24deg);
  background-color: var(--orange);
}
.hero-area__copy-wrap {
  padding: 0 20px;
}
.hero-area__copy02 {
  display: flex;
  align-items: center;
  font-family: var(--ffNoto);
  color: #f56e00;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-area__copy02 span {
  font-size: 13px;
  border: 1px solid #f56e00;
  padding: 3px 20px;
}
.hero-area__copy02 span + span {
  margin-left: 5px;
}
.hero-area__copy02 span:last-child {
  margin-right: 8px;
}
.hero-area__copy03 {
  font-family: var(--ffNoto);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero-area__copy03 strong {
  color: #fa6e00;
  font-weight: 700;
}
.hero-area__copy03 span {
  white-space: nowrap;
}
.hero-area__copy04 {
  display: block;
  width: 100%;
  font-family: var(--ffNoto);
  color: #fff;
  background-color: #fa6e00;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-top: 22px;
}

.hero-area__regist_login-box {
  padding: 20px 20px 0;
}
.regist_login_box {
  display: flex;
  flex-direction: column-reverse;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: clamp(20px, 5.3vw, 40px);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
}
.regist_login_box .formbox input[type='text'] {
  width: 100%;
  border: #bbbbbb solid 1px;
  background-color: white;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  border-radius: 5px;
  padding: 0 10px;
}
.regist_login_box .formbox input[type='text']::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.regist_login_box .formbox input[type='text']::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}
.regist_login_box .formbox input[type='text']:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.regist_login_box .formbox input[type='text']::-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.regist_login_box .formbox input[type='text']::placeholder {
  color: #000;
  opacity: 0.5;
}
.regist_login_box .formbox input[type='text']:focus::-webkit-input-placeholder {
  opacity: 0;
}
.regist_login_box .formbox input[type='text']:focus::-moz-placeholder {
  opacity: 0;
}
.regist_login_box .formbox input[type='text']:focus:-ms-input-placeholder {
  opacity: 0;
}
.regist_login_box .formbox input[type='text']:focus::-ms-input-placeholder {
  opacity: 0;
}
.regist_login_box .formbox input[type='text']:focus::placeholder {
  opacity: 0;
}
.regist_login_box .formbox .form_input dt {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
.regist_login_box .formbox .form_input dd .att_txt {
  display: block;
}
.regist_login_box .formbox .form_input dd .errormsg {
  display: block;
  margin: 5px 0 0 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.regist_login_box .formbox .register_btnbox {
  margin-top: 15px;
  text-align: center;
}
.regist_login_box .formbox .reg_btn01_txt {
  color: #646464;
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
}
.regist_login_box .formbox .reg_btn01_txt a {
  text-decoration: underline;
}
.regist_login_box .formbox .reg_btn01_wrap {
  display: block;
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.regist_login_box .formbox .reg_btn01_wrap::before {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.regist_login_box .formbox .reg_btn01_wrap::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: #f65757 solid 2px;
  border-bottom: #f65757 solid 2px;
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  z-index: 1;
}
.regist_login_box .formbox .reg_btn01 {
  width: 100%;
  height: 50px;
  font-size: 17.1px;
  font-weight: bold;
  color: white;
  background-color: #f65757;
  border-radius: 30px;
  padding-right: 10px;
  -webkit-box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.16);
}
.regist_login_decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 auto 8px;
}
.regist_login_decoration::before,
.regist_login_decoration::after {
  content: '';
  width: 18px;
  height: 1px;
  background-color: #000;
}
.regist_login_decoration::before {
  transform: rotate(55deg);
}
.regist_login_decoration::after {
  transform: rotate(-55deg);
}
.regist_login_box .regist_login_tltle {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.regist_login_box .has_account_btn_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.regist_login_box .has_account_btn_box .has_account_btn_item {
  width: calc(50% - 6px);
}
.regist_login_box .has_account_btn_box .has_account_btn_item a {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 38px;
  border: var(--black30) solid 1px;
  border-radius: 5px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.facebook {
  border-color: #0866ff;
  color: #0866ff;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.facebook::before {
  background: url(../img/logo_fb.svg) no-repeat center center/contain;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.google {
  border-color: #1f1f1f;
  color: #1f1f1f;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.google::before {
  background: url(../img/logo_google.svg) no-repeat center center/80% auto;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.line {
  border-color: #06c755;
  color: #06c755;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.line::before {
  background: url(../img/logo_line.svg) no-repeat center center/contain;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.yahoo {
  font-size: 12px;
  border-color: #ff0033;
  color: #ff0033;
}
.regist_login_box .has_account_btn_box .has_account_btn_item a.yahoo::before {
  background: url(../img/logo_yahoo.png) no-repeat center center/contain;
}

.register_btmbox {
  text-align: center;
}

.register_contents {
  padding: 30px 20px;
}
.register_contents .reg_txt02 {
  text-align: center;
  font-size: 0.8125rem;
}
.register_contents .telbox {
  background-color: var(--black5);
  border-radius: 5px;
  padding: 20px 30px;
  margin-top: 20px;
  text-align: center;
  display: inline-block;
  max-width: 370px;
}
.register_contents .telbox li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.5;
  font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',
    'Helvetica', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.register_contents .telbox span {
  color: var(--black60);
}
.register_contents .telbox span.tel_area {
  font-size: 16px;
  font-weight: bold;
}
.register_contents .telbox span.tel_area::after {
  content: '：';
}
.register_contents .telbox span.tel_num {
  font-size: 20px;
}
.regist_login_note {
  color: #646464;
  font-size: 11px;
  line-height: 1.3;
  margin: 23px auto 0;
}
.or_line {
  font-size: 0.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 16px 0;
}
.or_line span {
  z-index: 1;
  position: relative;
  background-color: #fff;
  padding: 0 13px;
}
.or_line::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.or_line::before {
  left: 0;
}

/* Contents Tel */
/**================================= Global Footer =================================**/
.global-footer {
  border-top: var(--black30) solid 1px;
}

.footer_address {
  font-size: 10pt;
  line-height: 1.8;
}

.tel_box {
  clear: both;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 5px;
  text-align: left;
  padding: 10px;
}

.tel_box .pmark {
  position: static;
  width: 100%;
  text-align: right;
  margin-top: 10px;
}

.tel_box .pmark img {
  width: 75px;
}

.tel_box li {
  margin: 7px 0px;
}

.tel_box span {
  display: inline-block;
  width: 50px;
  color: #f5a100;
  text-align: left;
  font-weight: bold;
  font-size: 10pt;
  padding: 2px 0px;
}

.tel_box a {
  color: #646464;
  margin-left: 10px;
  font-size: 11pt;
}

/* Copyright */
.copyWrap {
  position: relative;
  clear: both;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  width: 100%;
  z-index: 97;
  background: #f8f8f8;
}

.copy {
  font-size: 9pt;
  padding: 7px 0 15px;
  color: #a7a7a7;
  text-align: center;
}

.footer_links .link_list a {
  text-decoration: underline;
}

.footer_links {
  margin-bottom: 20px;
}

.errormsg {
    font-size: 14px;
    color: #F00;
    margin-top: 5px;
}

.errormsg-social {
    font-size: 14px;
    color: #F00;
    margin-top: 5px;
    margin-bottom: 15px;
}

@media screen and (max-width: 896px) {
  .pcOnly {
    display: none;
  }
  .footer_address {
    display: block;
    width: 100%;
    margin: 20px auto 10px;
    position: relative;
  }
  .address_box {
    position: relative;
    padding-left: 1em;
  }
  .tel_box:last-child {
    background: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .tel_box {
    display: block;
    background: #f1f1f1;
    margin-bottom: 0;
    padding: 20px 10px;
  }
  .tel_box .pmark {
    position: static;
    width: 100%;
    text-align: right;
  }
}
@media screen and (min-width: 897px) {
  .spOnly {
    display: none;
  }
  /**================================= Global Header =================================**/
  .global-header {
    height: 98px;
    border-top-width: 8px;
  }
  .global-header__link {
    font-size: 1rem;
  }
  .global-header__link a:hover {
    text-decoration: none;
  }
  .site-title {
    font-size: 1.125rem;
  }
  .site-title img {
    width: 145px;
    margin-right: 23px;
  }
  /**================================= Contents =================================**/
  /* HERO 
  --------------------*/
  .hero-area {
    position: relative;
    background-image: url(../img/fv_bgimg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 108px 20px 63px 20px;
  }
  .hero-area__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-area__feature-box-wrap {
    display: flex;
    flex-direction: column;
  }
  .hero-area__feature-box {
    max-width: 1200px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    margin: 30px auto 0;
    padding: 0 21px;
  }
  .hero-area__feature-box li {
    width: auto;
    height: auto;
    min-height: auto;
  }
  .hero-area__feature-box li img {
    width: 359px;
  }
  .hero-area__copy01 {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    font-family: var(--ffNoto);
    color: #fff;
    font-size: 25px;
    line-height: 74px;
    padding: 0 70px 0 43px;
    margin-bottom: 40px;
  }
  .hero-area__copy01::before {
    content: '';
    z-index: -1;
    display: inline-block;
    position: absolute;
    top: 0;
    left: -18px;
    width: 100%;
    height: 100%;
    -webkit-transform: skewX(-24deg);
    transform: skewX(-24deg);
    background-color: var(--orange);
  }
  .hero-area__copy-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .hero-area__copy02 {
    display: flex;
    align-items: center;
    font-family: var(--ffNoto);
    color: #f56e00;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .hero-area__copy02 span {
    font-size: 24px;
    border: 1px solid #f56e00;
    padding: 6px 26px;
  }
  .hero-area__copy02 span + span {
    margin-left: 5px;
  }
  .hero-area__copy02 span:last-child {
    margin-right: 8px;
  }
  .hero-area__copy03 {
    font-family: var(--ffNoto);
    font-size: 98px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal;
    margin-bottom: 22px;
  }
  .hero-area__copy03 strong {
    color: #fa6e00;
    font-weight: 700;
    margin-right: 20px;
  }
  .hero-area__copy03 span {
    white-space: nowrap;
  }
  .hero-area__copy04 {
    display: block;
    width: 100%;
    font-family: var(--ffNoto);
    color: #fff;
    background-color: #fa6e00;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    padding: 12px;
  }
  .hero-area__regist_login-box {
    padding: 0;
  }
  .regist_login_box {
    max-width: 1200px;
    margin: 28px auto 0;
    padding: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .regist_login_box .formbox input[type='text'] {
    max-width: 470px;
    text-align: left;
  }
  .regist_login_box .formbox .form_input dt {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .regist_login_box .formbox .form_input dd {
    text-align: center;
  }
  .regist_login_box .formbox .form_input dd .errormsg {
    display: block;
    text-align: left;
    margin: 5px auto 0 auto;
    padding: 0;
    max-width: 470px;
    width: 100%;
    box-sizing: border-box;
  }
  .regist_login_box .formbox .reg_btn01_txt {
    color: #646464;
    margin-bottom: 6px;
    font-size: 12px;
  }
  .regist_login_box .regist_login_box_item {
    width: calc(50% - 40px);
  }
  .regist_login_box .regist_login_box_item:nth-child(n + 2) {
    margin-top: 0;
  }
  .regist_login_decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    line-height: 1.2;
    margin: 0 auto 8px;
  }
  .regist_login_decoration::before,
  .regist_login_decoration::after {
    content: '';
    width: 22px;
    height: 1px;
    background-color: #000;
  }
  .regist_login_decoration::before {
    transform: rotate(55deg);
  }
  .regist_login_decoration::after {
    transform: rotate(-55deg);
  }
  .regist_login_box .regist_login_tltle {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
  .regist_login_box .has_account_btn_box {
    gap: 16px;
  }
  .regist_login_box .has_account_btn_box .has_account_btn_item {
    width: calc(50% - 8px);
  }
  .regist_login_box .has_account_btn_box .has_account_btn_item a {
    height: 45px;
    line-height: 43px;
    font-size: 1rem;
  }
  .regist_login_box .has_account_btn_box .has_account_btn_item a.yahoo {
    font-size: 1rem;
    border-color: #ff0033;
    color: #ff0033;
  }
  .regist_login_box .has_account_btn_box .has_account_btn_item a.yahoo::before {
    background: url(../img/logo_yahoo.png) no-repeat center center/contain;
  }
  .regist_login_note {
    max-width: 1200px;
    color: #505050;
    font-size: 13px;
    margin: 22px auto 0;
  }
  .or_line {
    font-size: 0.875rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin: 0;
  }
  .or_line::before,
  .or_line:after {
    content: '';
    width: 1px;
    height: calc(50% - 15px);
    background-color: black;
    position: absolute;
    left: 50%;
  }
  .or_line::before {
    top: 0;
    transform: translateY(0);
  }
  .or_line::after {
    bottom: 0;
  }
  /**================================= Global Footer =================================**/
  .global-footer {
    border-top: none;
  }
  .footer_address {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1040px;
    margin: 30px auto 10px;
    padding: 0 20px;
  }
  .address_box img {
    float: left;
  }
  .address_box {
    padding: 10px 0;
  }
  .address_box p {
    float: right;
    margin-left: 20px;
    margin-top: 15px;
  }
  .tel_box {
    margin-left: auto;
  }
  .tel_box ul {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-auto-rows: auto;
    column-gap: 24px;
    row-gap: 6px;
    width: max-content;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    justify-items: start;
    text-align: left;
    margin-left: auto;
  }
  .tel_box li {
    margin: 0 0 6px 0;
  }
  .tel_box img {
    margin-left: 100px;
  }
} /*# sourceMappingURL=style.css.map */
