@charset "UTF-8";

/* ==========================================================================
  Base
  ========================================================================== */
* {
  box-sizing: border-box;
}

/* webkit specific styles */
input[type='color']::-webkit-color-swatch {
  border: none;
}

input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: inherit;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ==========================================================================
   追加
   ========================================================================== */
body {
  color: #222;
  font-family: sans-serif;
  /* font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif; */
  /* font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */
  line-height: 1.5;
}

a {
  color: #0069ff;
}

img {
  max-width: 100%;
  vertical-align: top;
}

/* ==========================================================================
  Grid
  ========================================================================== */

/* ==========================================================================
  fonts
  ========================================================================== */

/* ==========================================================================
  Element Modules
  ========================================================================== */
.el_btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  transition: .25s;
}

.el_btn:focus,
.el_btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.el_btn.el_btn__arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.el_btn.el_btn__arrowRight::after {
  content: "";
  position: absolute;
  top: 50%;
  right: .6em;
  width: 1.12em;
  height: 1.12em;
  transform: translateY(-50%);
  /* Safariはmaskで矢印の色を変える */
  background: url("arrow-right-solid.svg") no-repeat;
}

_::-webkit-full-page-media, _:future, :root .el_btn.el_btn__arrowRight::after {
  background: #fff;
  mask: url("arrow-right-solid.svg") no-repeat center center / contain;
  -webkit-mask: url("arrow-right-solid.svg") no-repeat center center / contain;
}

_::-webkit-full-page-media, _:future, :root .el_btn.el_btn__arrowRight:focus::after,
_::-webkit-full-page-media, _:future, :root .el_btn.el_btn__arrowRight:hover::after {
  background: #e25c00;
}

.el_btn__large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 1.375rem;
}

.el_btn.el_btn__yellow {
  background-color: #f1de00;
  color: #222;
}

.el_btn.el_btn__yellow:focus,
.el_btn.el_btn__yellow:hover {
  background-color: #fff;
  border-color: #f1de00;
}

.el_beforeIcon::before {
  display: inline-block;
  margin-right: .3em;
  color: #e25c00;
  /* font-family: "Font Awesome 6 Free"; */
  /* font-weight: 400; */
}

.el_beforeIcon.el_beforeIcon__csv::before {
  content: "";
  width: 1.12em;
  height: 1.12em;
  transform: translateY(20%);
  background: url("file-csv-solid.svg") no-repeat;
}

.el_beforeIcon.el_beforeIcon__chevLeft::before {
  content: "";
  width: .375em;
  height: .375em;
  border-bottom: .125em solid #e25c00;
  border-left: .125em solid #e25c00;
  transform: rotate(45deg) translateY(-30%);
}

.el_afterIcon::after {
  display: inline-block;
  margin-left: .3em;
  color: #e25c00;
  /* font-family: "Font Awesome 6 Free"; */
  /* font-weight: 400; */
}

.el_afterIcon.el_afterIcon__chevRight::after {
  content: "";
  width: .375em;
  height: .375em;
  border-top: .125em solid #e25c00;
  border-right: .125em solid #e25c00;
  transform: rotate(45deg);
}

.el_footerCopyright {
  display: block;
  color: #ddd;
  font-size: 12px;
  text-align: center;
}

/* ==========================================================================
  Layout
  ========================================================================== */
.ly_header {
  padding-top: 20px;
  border-bottom: 1px solid #ddd;
}

.ly_header__inner {
  max-width: 1230px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.ly_footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #222;
}

.ly_footer_inner {
  max-width: 1230px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.ly_cont {
  max-width: 1230px;
  padding: 60px 15px;
  margin-right: auto;
  margin-left: auto;
}

.ly_cont.ly_cont_col {
  display: flex;
  justify-content: space-between;
}

.ly_cont_main {
  flex: 1;
  margin-right: 3.25203%;
}

.ly_cont_side {
  flex: 0 0 260px;
}

@media screen and (max-width: 768px) {
  .ly_cont.ly_cont_col {
    flex-direction: column;
  }

  .ly_cont_main {
    margin-right: 0;
    margin-bottom: 60px;
  }
}

/* ==========================================================================
  Helper
  ========================================================================== */
.lg_only {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .lg_only {
    display: none !important;
  }
}

.md_only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .md_only {
    display: block !important;
  }
}

.hp_mb20 {
  margin-bottom: 20px !important;
}

.lg_mb40 {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 768px) {
  .md_mb20 {
    margin-bottom: 20px !important;
  }
}

/* Border
========================================================================== */
.hp_btGray {
  border-top: 1px solid #777 !important;
}

/* ==========================================================================
  Test
  ========================================================================== */
.test {
  border-top: 1px solid #777 !important;
}