@charset "UTF-8";
/* ==========================================================================
グローバル変数
=========================================================================*/
/*-==========================================================================
mixin
==========================================================================*/
/*-==========================================================================
ブレイクポイント
==========================================================================*/
/* less_than_xx */
/* more_than_xx */
/*-==========================================================================
特定の画面幅で表示・非表示するクラス（CSSの順番の上書きの関係で、utilityフォルダには置かず、こちらに記載)
==========================================================================*/
@media screen and (min-width: 1401px) {
  .f-visible_1400 {
    display: block;
  }
}
@media screen and (max-width: 1400px) {
  .f-visible_1400 {
    display: none !important;
  }
}

@media screen and (min-width: 1201px) {
  .f-visible_1400pc {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  .f-visible_1400pc {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible_1400pclp {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  .f-visible_1400pclp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible_lp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .f-visible_lp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .f-visible_lp {
    display: none !important;
  }
}

@media screen and (min-width: 993px) {
  .f-visible_lptbsp {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .f-visible_lptbsp {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .f-visible_tb {
    display: none !important;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .f-visible_tb {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible_tb {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .f-visible_tbsp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .f-visible_tbsp {
    display: block;
  }
}

@media screen and (min-width: 577px) {
  .f-visible_1400pclptb {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .f-visible_1400pclptb {
    display: none !important;
  }
}

@media screen and (min-width: 577px) {
  .f-visible_sp {
    display: none !important;
  }
}
@media screen and (max-width: 576px) {
  .f-visible_sp {
    display: block;
  }
}

/* ==========================================================================
コンテナーボックス
=========================================================================*/
.l-container,
.l-container_small,
.l-container_large {
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6%;
  padding-right: 6%;
}
@media screen and (max-width: 992px) {
  .l-container,
  .l-container_small,
  .l-container_large {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 576px) {
  .l-container,
  .l-container_small,
  .l-container_large {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.l-container {
  max-width: 980px;
}

.l-container_small {
  max-width: 720px;
}

.l-container_large {
  max-width: 1120px;
}

/* ==========================================================================
リスト
=========================================================================*/
.c-list_num {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list_num li {
  position: relative;
  padding-left: 1.5rem;
}
.c-list_num li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #FFF5D2;
  font-weight: 700;
  margin-left: -1.5rem;
}

.c-list_num_divider {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.c-list_num_divider li {
  border-bottom: 1px solid #EDF4FB;
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.c-list_num_divider li:before {
  content: counter(number);
  counter-increment: number;
  position: absolute;
  display: inline-block;
  color: #FFA50A;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-left: -2rem;
}

.c-list_dot li {
  text-indent: -1em;
  margin-left: 1em;
}
.c-list_dot li:before {
  content: "・";
  color: #FFF5D2;
  font-weight: 700;
}

/* ==========================================================================
テーブル
=========================================================================*/
.c-tb_pattern1 {
  border-collapse: collapse;
  box-sizing: border-box;
  text-align: left;
  width: 100%;
}
.c-tb_pattern1 tr {
  border-bottom: 1px solid #cccccc;
}
.c-tb_pattern1 tr:first-child {
  border-top: 1px solid #cccccc;
}
.c-tb_pattern1 tr th,
.c-tb_pattern1 tr td {
  padding: 1rem 1.5rem;
  line-height: 2em;
}
@media screen and (max-width: 576px) {
  .c-tb_pattern1 tr th,
  .c-tb_pattern1 tr td {
    line-height: 1.7;
  }
}
.c-tb_pattern1 tr th {
  font-weight: 700;
  vertical-align: top;
  width: 20%;
  color: #FFA50A;
  padding-left: 3rem;
}
@media screen and (max-width: 576px) {
  .c-tb_pattern1 tr th {
    text-align: left;
    padding-left: 1rem;
  }
}

.c-tb_pattern2 {
  border: 1px solid #EDF4FB;
}
@media screen and (max-width: 576px) {
  .c-tb_pattern2 tr {
    border-top: 1px solid #EDF4FB;
  }
  .c-tb_pattern2 tr:first-child {
    border: none;
  }
}
.c-tb_pattern2 tr th,
.c-tb_pattern2 tr td {
  border: 1px solid #EDF4FB;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 576px) {
  .c-tb_pattern2 tr th,
  .c-tb_pattern2 tr td {
    display: block;
    border: none;
    line-height: 1.7;
  }
}
.c-tb_pattern2 tr th {
  color: #FFA50A;
  background-color: #f6f6f6;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  width: 30%;
}
@media screen and (max-width: 576px) {
  .c-tb_pattern2 tr th {
    width: 100%;
    padding: 1rem 0;
  }
}
.c-tb_pattern2 tr td dl {
  margin: 0;
}
.c-tb_pattern2 tr td dl dt {
  color: #FFF5D2;
  font-weight: 700;
  float: left;
  width: 50px;
  min-width: 50px;
}
.c-tb_pattern2 tr td dl dd {
  margin-left: 50px;
}

.c-tb_pattern3 {
  overflow: auto;
}
@media screen and (max-width: 576px) {
  .c-tb_pattern3 {
    max-height: 445px;
  }
}
.c-tb_pattern3::-webkit-scrollbar {
  width: 8px;
  background: #EDF4FB;
}
.c-tb_pattern3::-webkit-scrollbar:horizontal {
  height: 8px;
  background: #EDF4FB;
}
.c-tb_pattern3::-webkit-scrollbar-thumb {
  background: #FFA50A;
  border-radius: 4px;
}
.c-tb_pattern3::-webkit-scrollbar-thumb:horizontal {
  background: #FFA50A;
  border-radius: 4px;
}
.c-tb_pattern3 table {
  width: 100%;
  min-width: 720px;
}
.c-tb_pattern3 table th,
.c-tb_pattern3 table td {
  border: solid 1px #cccccc;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
}
.c-tb_pattern3 table th {
  color: #FFA50A;
  background-color: #EDF4FB;
}
.c-tb_pattern3 table td {
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.c-tb_pattern3 table .first {
  background-color: #f6f6f6;
  font-weight: 700;
}

/* ==========================================================================
モーダルウィンドウ
=========================================================================*/
.c-modal {
  display: none;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal_bg {
  background: rgba(51, 51, 51, 0.7);
  height: 100vh;
  width: 100%;
}

.c-modal_content {
  color: #fff;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 80%;
  max-width: 720px;
}
@media screen and (max-width: 1200px) {
  .c-modal_content {
    width: 90%;
  }
}

.c-modal_content_inner {
  position: relative;
}
.c-modal_content_inner .c-modal_close {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 0;
  position: absolute;
  top: -1.5rem;
  right: 0;
}

.c-modal_open {
  display: block;
  position: relative;
  transition: 0.3s;
}
.c-modal_open:hover {
  opacity: 0.7;
}
.c-modal_open:before {
  content: "+";
  display: block;
  color: #FFA50A;
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  text-align: center;
  line-height: 0.8;
  padding: 0.25rem;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* ==========================================================================
メールフォーム
=========================================================================*/
.c-form_wrap table {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}
.c-form_wrap table tr {
  border-bottom: 1px solid #EDF4FB;
}
.c-form_wrap table tr th,
.c-form_wrap table tr td {
  padding: 1.25rem 0;
}
@media screen and (max-width: 992px) {
  .c-form_wrap table tr th,
  .c-form_wrap table tr td {
    display: block;
  }
}
.c-form_wrap table tr th {
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  position: relative;
  width: 33.3333333334%;
}
@media screen and (max-width: 992px) {
  .c-form_wrap table tr th {
    padding: 1.25rem 0 0;
    width: 100%;
  }
}
.c-form_wrap table tr th.c-form_required:after {
  content: "必須";
  display: inline-block;
  background-color: #FFA50A;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2;
  padding: 0 0.5rem;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}
@media screen and (max-width: 992px) {
  .c-form_wrap table tr th.c-form_required:after {
    right: 0;
  }
}
@media screen and (max-width: 992px) {
  .c-form_wrap table tr td {
    padding: 0.5rem 0 1.25rem 0;
  }
}
.c-form_wrap div.c-form_required {
  text-align: center;
  text-indent: -9%;
  position: relative;
}
.c-form_wrap div.c-form_required::after {
  content: "必須";
  display: inline-block;
  background-color: #FFA50A;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2;
  padding: 0 0.5rem;
  position: absolute;
  top: 0.45rem;
  margin-left: 0.5rem;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .c-form_wrap div.c-form_required::after {
    top: 0.35rem;
    margin-left: 0.2rem;
    font-size: 8px;
    font-size: 0.5rem;
  }
}

.c-form_radio,
.c-form_checkbox {
  display: inline-block;
  border: 3px solid #cccccc;
  margin: -0.25rem 0.5rem 0 0;
  height: 1.5rem;
  width: 1.5rem;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form_radio:not(:disabled),
.c-form_checkbox:not(:disabled) {
  cursor: pointer;
}

.c-form_radio {
  border-radius: 50%;
}
.c-form_radio:checked {
  border: 7px solid #FFF5D2;
}

.c-form_checkbox {
  background-color: #fff;
}
.c-form_checkbox:checked:before {
  content: "✔";
  color: #FFF5D2;
  font-size: 2rem;
  line-height: 0;
}

.c-form_input,
.c-form_textarea {
  display: inline-block;
  background-color: #f6f6f6;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 0.875rem;
  vertical-align: middle;
  padding: 0.25rem 0.5rem;
  max-width: 480px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .c-form_input,
  .c-form_textarea {
    max-width: 100%;
  }
}

.c-form_input {
  height: 40px;
}

.c-form_privacy {
  background-color: #f6f6f6;
  margin-top: 2.5rem;
  padding: 2.5rem;
}
@media screen and (max-width: 576px) {
  .c-form_privacy {
    padding: 2rem 5%;
  }
}
.c-form_privacy .c-form_privacy_panel {
  background-color: #fff;
  border: 1px solid #cccccc;
  font-size: 14px;
  font-size: 0.875rem;
  max-width: 850px;
  height: 180px;
  margin-top: 1rem;
  padding: 1.5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

.p-form_privacy_checkbox {
  cursor: pointer;
}

/*-==========================================================================
背景
==========================================================================*/
.c-bg_white {
  background-color: #fff !important;
}

.c-bg_lightgray {
  background-color: #EDF4FB !important;
}

.c-bg_silver {
  background-color: #cccccc !important;
}

.c-bg_gray {
  background-color: #676767 !important;
}

.c-bg_black {
  background-color: #333 !important;
}

.c-bg_main {
  background-color: #FFA50A !important;
}

.c-bg_sub {
  background-color: #FFF5D2 !important;
}

.c-bg_hover {
  background-color: #71b8d2 !important;
}

.c-bg_whitesmoke {
  background-color: #f6f6f6 !important;
}

.c-bg_selection_txt {
  background-color: #525252 !important;
}

.c-bg_selection_bg {
  background-color: #ffd0c4 !important;
}

.c-bg_blue {
  background-color: #004a94 !important;
}

/* ==========================================================================
ボタン
=========================================================================*/
.c-btn_main,
.c-btn_main--white {
  text-align: center;
  max-width: 290px;
}
.c-btn_main a,
.c-btn_main button,
.c-btn_main--white a,
.c-btn_main--white button {
  display: block;
  color: #FFA50A;
  background-color: #fff;
  background-image: url(/resource/images/ico_arrow_white.svg);
  background-size: 6px auto;
  background-position: center right 1.375rem;
  background-repeat: no-repeat;
  border: 1px solid #FFA50A;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 4.5;
  width: 100%;
  transition: 0.3s;
  border-radius: 5px;
}
.c-btn_main a:hover,
.c-btn_main button:hover,
.c-btn_main--white a:hover,
.c-btn_main--white button:hover {
  background-color: #FFA50A;
  color: #fff;
}

.c-btn_main--white a,
.c-btn_main--white button {
  color: #FFA50A;
  background-color: #fff;
  background-image: url(/resource/images/ico_arrow_main.svg);
}
.c-btn_main--white a:hover,
.c-btn_main--white button:hover {
  color: #fff;
  background-image: url(/resource/images/ico_arrow_white.svg);
}

.c-btn_card,
.c-btn_card--tmb {
  border: 4px solid #EDF4FB;
  padding: 2rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .c-btn_card,
  .c-btn_card--tmb {
    padding: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .c-btn_card,
  .c-btn_card--tmb {
    padding: 1.5rem;
  }
}
.c-btn_card .c-btn_card__ttl,
.c-btn_card--tmb .c-btn_card__ttl {
  margin-bottom: 0.5rem;
}
.c-btn_card .c-btn_card__txt,
.c-btn_card--tmb .c-btn_card__txt {
  color: #676767;
}
.c-btn_card .c-btn_card__txt span,
.c-btn_card--tmb .c-btn_card__txt span {
  color: #FFF5D2;
}
.c-btn_card a,
.c-btn_card--tmb a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  transition: 0.3s;
}
.c-btn_card a:hover,
.c-btn_card--tmb a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.c-btn_card--tmb {
  border: 1px solid #EDF4FB;
  padding: 0;
}
.c-btn_card--tmb .c-btn_card--tmb__txt {
  font-size: 14px;
  font-size: 0.875rem;
}
.c-btn_card--tmb .c-btn_card--tmb__txt span {
  color: #FFF5D2;
}

.c-btn_pdf {
  text-align: left;
  line-height: 1;
  text-indent: -2.2em;
  padding-left: 2.2em;
}
.c-btn_pdf a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 35px;
  vertical-align: middle;
  background: url(/resource/images/ico_pdf.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 0.45em;
}
.c-btn_pdf a span {
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
  line-height: 1.2;
  position: relative;
  top: -0.5rem;
}
.c-btn_pdf:hover {
  opacity: 0.6;
}

/* ==========================================================================
テキスト・タイトル
=========================================================================*/
/* テキスト
----------------------------------------------------------------- */
.c-txt_en {
  font-family: "Oswald", sans-serif;
}

.c-txt_bold {
  font-weight: 700;
}

.c-txt_base {
  font-size: 1rem;
}

.c-txt_small {
  font-size: 14px;
  font-size: 0.875rem;
}

.c-txt_large {
  font-size: 20px;
  font-size: 1.25rem;
}

.c-txt_link {
  color: #FFA50A;
  text-decoration: underline;
}
.c-txt_link:hover {
  color: #71b8d2;
  text-decoration: none;
}

.c-txt_center {
  text-align: center !important;
}

.c-txt_left {
  text-align: left !important;
}

.c-txt_right {
  text-align: right !important;
}

.c-txt_white {
  color: #fff !important;
}

.c-txt_lightgray {
  color: #EDF4FB !important;
}

.c-txt_silver {
  color: #cccccc !important;
}

.c-txt_gray {
  color: #676767 !important;
}

.c-txt_black {
  color: #333 !important;
}

.c-txt_main {
  color: #FFA50A !important;
}

.c-txt_sub {
  color: #FFF5D2 !important;
}

.c-txt_hover {
  color: #71b8d2 !important;
}

.c-txt_whitesmoke {
  color: #f6f6f6 !important;
}

.c-txt_selection_txt {
  color: #525252 !important;
}

.c-txt_selection_bg {
  color: #ffd0c4 !important;
}

.c-txt_blue {
  color: #004a94 !important;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

h2 {
  font-size: 30px;
  font-size: 1.875rem;
}

h3 {
  font-size: 26px;
  font-size: 1.625rem;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
}

.c-txt_lead {
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}

/* 見出し・タイトル
----------------------------------------------------------------- */
.c-ttl_main_bg {
  background-color: #FFA50A;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.75rem 5%;
}
@media screen and (max-width: 576px) {
  .c-ttl_main_bg {
    padding: 2.5rem 5%;
  }
}

.c-ttl_main {
  color: #fff;
  text-align: center;
}
.c-ttl_main span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

.c-ttl_sub {
  color: #FFA50A;
  padding-bottom: 0.5rem;
  font-family: source-han-sans-japanese, sans-serif;
  text-align: center;
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.c-ttl_sub span {
  font-size: 1rem;
  display: block;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-top: 0.5rem;
}

form .privacy_tit {
  font-size: 1.525rem;
  color: #FFA50A;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
}

/* 電話番号
----------------------------------------------------------------- */
.c-txt_tel {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  .c-txt_tel {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-txt_tel img {
  margin-right: 0.25rem;
  width: 21px;
  vertical-align: baseline;
}
@media screen and (max-width: 992px) {
  .c-txt_tel img {
    width: 14px;
  }
}
.c-txt_tel a[href^="tel:"] {
  color: #FFA50A;
  display: inline-block;
  pointer-events: none;
}
@media screen and (max-width: 576px) {
  .c-txt_tel a[href^="tel:"] {
    pointer-events: auto;
  }
  .c-txt_tel a[href^="tel:"]:hover {
    color: #71b8d2;
  }
}

/* ==========================================================================
マージン・パディング
=========================================================================*/
/* マージン
----------------------------------------------------------------- */
.u-margin_auto {
  margin: auto;
}

.u-margin_remove {
  margin: 0 !important;
}

.u-margin_remove_top {
  margin-top: 0 !important;
}

.u-margin_xsmall_top {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .u-margin_xsmall_top {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin_xsmall_top {
    margin-top: 0.7142857143rem;
  }
}

.u-margin_small_top {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .u-margin_small_top {
    margin-top: 1.2857142857rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin_small_top {
    margin-top: 1rem;
  }
}

.u-margin_medium_top {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .u-margin_medium_top {
    margin-top: 2.2857142857rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin_medium_top {
    margin-top: 1.7142857143rem;
  }
}

.u-margin_large_top {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .u-margin_large_top {
    margin-top: 3.4285714286rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin_large_top {
    margin-top: 2.8571428571rem;
  }
}

.u-margin_xlarge_top {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .u-margin_xlarge_top {
    margin-top: 4.5714285714rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin_xlarge_top {
    margin-top: 4rem;
  }
}

.u-margin_xxlarge_top {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .u-margin_xxlarge_top {
    margin-top: 5.7142857143rem;
  }
}
@media screen and (max-width: 576px) {
  .u-margin_xxlarge_top {
    margin-top: 5.1428571429rem;
  }
}

.u-margin_small_bottom {
  margin-bottom: 1.5rem;
}

/* パディング
----------------------------------------------------------------- */
.u-padding_remove {
  padding: 0 !important;
}

.u-padding_small {
  padding: 1.5rem;
}

.u-padding_medium {
  padding: 2.5rem;
}

.u-padding_large {
  padding: 4rem;
}
@media screen and (max-width: 576px) {
  .u-padding_large {
    padding: 2.8571428571rem;
  }
}

.u-padding_small_bottom {
  padding-bottom: 1.5rem;
}/*# sourceMappingURL=main.css.map */