@charset "utf-8";

@charset "UTF-8";
/* ---------------------------------------------------
 # Core
--------------------------------------------------- */
/* ---------------------------------------------------
 # Foundation
--------------------------------------------------- */
/*
## Sanitize
----------------------------------------------- */
:root {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

audio:not([controls]) {
  display: none;
}

button {
  overflow: visible;
}

details {
  display: block;
}

input[type="number"] {
  width: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
}

summary {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

template {
  display: none;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}

*,
::before,
::after {
  box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

*,
::before,
::after {
  border-style: solid;
  border-width: 0;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  box-sizing: border-box;
  cursor: default;
  text-rendering: optimizeLegibility;
}

html {
  background-color: #fff;
  color: #000;
}

a {
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

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

textarea {
  resize: vertical;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #4c2b03;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #4c2b03;
  text-shadow: none;
}

[aria-busy="true"] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

/*
## Base
----------------------------------------------- */
html,
body {
  overflow: hidden;
  font-size: 100%;
}

html {
  background: #fff;
}

body {
  height: 100%;
  color: #333;
  background: #fff;
  word-wrap: break-word;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}

address {
  font-style: normal;
}

a {
  cursor: pointer;
  color: #1473e6;
  text-decoration: underline;
}

a:link {
  color: #1473e6;
}

a:hover, a:focus, a:active {
  text-decoration: none;
}

main * + * {
  margin-top: 1.5rem;
}

li,
dt,
dd,
br,
th,
td,
div {
  margin-top: 0;
}

input[type="radio"] {
  margin-left: 2rem;
  margin-right: 1rem;
}

/*
## Animations
----------------------------------------------- */
@keyframes fade-in-100 {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-100 {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fade-in-60 {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: .6;
  }
}

@-webkit-keyframes fade-in-60 {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: .6;
  }
}

@keyframes fade-out-100 {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fade-out-100 {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade-out-60 {
  0% {
    opacity: .6;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fade-out-60 {
  0% {
    opacity: .6;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes bgAnimation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes bgAnimation {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

/* ---------------------------------------------------
 # Layout
--------------------------------------------------- */
/* footer
--------------------------------------------------------- */
.l-footer {
  background: #fff !important;
  align-items: center;
  justify-content: center;
  display: flex;
  -webkit-flow: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 4rem 2rem;
  background: #e4e7ed;
}

.l-footer h1,
.l-footer h2,
.l-footer h3,
.l-footer h4,
.l-footer h5,
.l-footer p {
  margin: 0;
}

.l-footer__inner {
  position: relative;
  width: 100%;
  max-width: 67.5rem;
  text-align: center;
  font-size: 12px;
}

/* header
--------------------------------------------------------- */
.l-header {
  background: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  -webkit-flow: wrap;
  flex-wrap: wrap;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #e6e6e6;
  padding: 0 1em;
}

.l-header h1,
.l-header h2,
.l-header h3,
.l-header h4,
.l-header h5,
.l-header p {
  margin: 0;
}

.l-header.is-top {
  background: none;
  border: 0;
  position: absolute;
  transition: all 0.3s;
}

.l-header.is-top img {
  transition: all 0.3s;
  width: 200px;
}

.l-header.is-top.is-scrolled {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding-top: 0;
  position: fixed;
  transition: all 0.3s;
}

.l-header.is-top.is-scrolled img {
  transition: all 0.3s;
  width: 160px;
}

.l-header__inner {
  position: relative;
  width: 100%;
  max-width: 67.5rem;
}

.l-header__inner img {
  width: 160px;
}

@media (min-width: 56rem) {
  .l-header {
    height: 80px;
  }
  .l-header img {
    width: 200px;
  }
  .l-header.is-top img {
    width: 280px;
  }
  .l-header.is-top.is-scrolled img {
    width: 200px;
  }
}

/* wrapper
--------------------------------------------------------- */
.l-wrapper {
  padding: 2rem 0;
}

@media (min-width: 56rem) {
  .l-wrapper {
    padding: 2rem 0;
  }
}

/* ---------------------------------------------------
 # Object
--------------------------------------------------- */
/*
# Component
----------------------------------------------- */
/*
# btn
 */
.c-btn {
  display: block;
  align-items: center;
  height: 70px;
  line-height: 70px;
  border: 0;
  touch-action: manipulation;
  cursor: pointer;
  padding: 0;
  font-weight: 800;
  max-width: 420px;
  text-align: center;
  font-size: 1.5rem;
  outline: none;
  position: relative;
  background: #ce0500;
  color: #fff;
  transition: all 0.5s;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.27), 0 6px 13px 9px rgba(0, 0, 0, 0.13);
}

@media (max-width: 1200px) {
  .c-btn {
    font-size: calc(1.275rem + 0.3vw) ;
  }
}

.c-btn:link, .c-btn:active, .c-btn:hover, .c-btn:visited {
  color: #fff;
  text-decoration: none;
}

.c-btn:hover {
  background: #9b0400;
  transform: translateY(-2px);
}

.c-btn.disabled, .c-btn[disabled],
fieldset[disabled] .c-btn {
  cursor: not-allowed;
}

.c-btn .fas {
  margin-left: 1rem;
}

.c-btn--light {
  background: #820300;
}

.c-btn--light:link, .c-btn--light:active, .c-btn--light:hover, .c-btn--light:visited {
  color: #fff;
  text-decoration: none;
}

.c-btn--light:hover {
  background: #9c0400;
}

.c-btn--light.disabled, .c-btn--light[disabled],
fieldset[disabled] .c-btn--light {
  cursor: not-allowed;
}

.c-btn--block {
  display: block;
  width: 100%;
}

#page_top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}

.c-page-top {
  width: 44px;
  height: 44px;
  background: #3e3231;
  text-align: center;
  display: block;
  line-height: 44px;
  font-size: 24px;
  border-radius: 40px;
}

.c-page-top:link, .c-page-top:active, .c-page-top:hover, .c-page-top:visited {
  color: #fff;
  text-decoration: none;
}

.c-page-top:hover {
  opacity: 0.9;
}

.c-page-top.disabled, .c-page-top[disabled],
fieldset[disabled] .c-page-top {
  cursor: not-allowed;
}

@media (min-width: 56rem) {
  .c-btn {
    height: 90px;
    line-height: 90px;
  }
  #page_top {
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  .c-page-top {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
  }
}

/*
# card
*/
.c-card {
  display: block;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.c-card__content {
  padding: 2rem;
}

/*
# container
*/
.c-container {
  margin: 0 1rem 1.5rem;
}

.c-container--section {
  margin: 0;
  padding: 4rem 0;
  position: relative;
  z-index: 100;
}

.c-container--small {
  margin: 0 1.5rem 1.5rem;
}

.c-container--x-small {
  margin: 0 2rem 1.5rem;
}

.c-container--full {
  margin: 0 0 1.5rem;
}

/*
# drawer
*/
.c-drawer {
  position: fixed;
  top: 0;
  z-index: 1000;
  padding-top: 58px;
  width: 100vw;
  max-width: 100%;
  height: 100%;
  background: #4f0200;
  visibility: hidden;
}

.c-drawer.is-right {
  right: -100vw;
  top: -100%;
  transition: transform 0.3s;
  transition-property: box-shadow, transform, visibility;
  transform: translate3d(0, 0, 0);
}

.c-drawer.is-left {
  left: -100vw;
  transition: transform 0.3s;
  transition-property: box-shadow, transform, visibility;
  transform: translateX(0);
}

.c-drawer.is-open {
  visibility: visible;
  height: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.c-drawer.is-left.is-open {
  transition: transform 0.3s;
  transform: translate3d(100vw, 0, 0);
}

.c-drawer.is-right.is-open {
  transition: transform 0.3s;
  transform: translate3d(-100vw, 100%, 0);
}

.c-drawer-inner {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.c-drawer-overlay {
  position: fixed;
  top: 0;
  z-index: 900;
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
}

.c-drawer-overlay.is-fadein {
  display: block;
  opacity: 0.2;
}

.c-drawer-btn {
  background: #fff;
  width: 3rem;
  height: 3rem;
  position: fixed;
  top: 0.8rem;
  right: 1rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 40px;
}

.c-drawer-btn.is-right {
  right: 1rem;
}

.c-drawer-btn.is-left {
  left: 1rem;
}

.c-drawer-btn__icon {
  position: relative;
  display: block;
  width: 1.2rem;
  height: 1px;
  border-radius: 3px;
  background: #fff;
  transition: background 0.3s;
}

.c-drawer-btn__icon:before,
.c-drawer-btn__icon:after {
  position: absolute;
  display: block;
  width: 1.2rem;
  height: 1px;
  border-radius: 3px;
  background: #4f0200;
  content: "";
  transition: all 0.3s !important;
  transform: rotate(0deg);
}

.c-drawer-btn__icon:before {
  transform: translateY(0.4rem);
}

.c-drawer-btn__icon:after {
  transform: translateY(-0.4rem);
}

.is-open.c-drawer-btn {
  background: #4f0200;
}

.is-open.c-drawer-btn .c-drawer-btn__icon {
  background: #4f0200;
}

.is-open.c-drawer-btn .c-drawer-btn__icon:before {
  background: #fff;
  transform: translateY(0) rotate(-45deg);
}

.is-open.c-drawer-btn .c-drawer-btn__icon:after {
  background: #fff;
  transform: translateY(0) rotate(45deg);
}

.c-drawer-fixed-bar {
  position: fixed;
  width: 100%;
  height: 56px;
  line-height: 56px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 1100;
  -webkit-transition: -webkit-transform 0.3s;
  transition-property: box-shadow, transform;
}

.c-drawer-fixed-bar.is-open {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.3s;
}

.c-drawer-fixed-bar.is-slideout {
  -webkit-transition: -webkit-transform 0.3s;
  -webkit-transform: translate3d(0, -58px, 0);
}

.c-drawer-navi {
  padding: 2rem 1rem;
  color: #fff;
}

.c-drawer-navi li {
  display: block;
}

.c-drawer-navi li a {
  color: #fff;
  align-items: center;
  padding: 1rem 0;
}

@media (min-width: 56rem) {
  .c-drawer {
    max-width: 50%;
  }
}

/*
# grid
 */
.c-flex {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.c-flex--top {
  align-items: flex-start;
}

.c-flex--middle {
  align-items: center;
}

.c-flex--bottom {
  align-items: flex-end;
}

.c-flex--stretch {
  align-items: stretch;
}

.c-flex--baseline {
  align-items: baseline;
}

.c-flex--left {
  justify-content: flex-start;
}

.c-flex--center {
  justify-content: center;
}

.c-flex--right {
  justify-content: flex-end;
}

.c-flex--between {
  justify-content: space-between;
}

.c-flex--reverse {
  flex-direction: row-reverse;
}

.c-flex--gutters > .c-flex__col {
  margin-left: 3%;
}

.c-flex--gutters > .c-flex__col:first-child {
  margin-left: 0;
}

.c-flex--gutters > .c-flex__col--1of12 {
  width: 5.58333%;
}

.c-flex--gutters > .c-flex__col--2of12 {
  width: 14.16667%;
}

.c-flex--gutters > .c-flex__col--3of12 {
  width: 22.75%;
}

.c-flex--gutters > .c-flex__col--4of12 {
  width: 31.33333%;
}

.c-flex--gutters > .c-flex__col--5of12 {
  width: 39.91667%;
}

.c-flex--gutters > .c-flex__col--6of12 {
  width: 48.5%;
}

.c-flex--gutters > .c-flex__col--7of12 {
  width: 57.08333%;
}

.c-flex--gutters > .c-flex__col--8of12 {
  width: 65.66667%;
}

.c-flex--gutters > .c-flex__col--9of12 {
  width: 74.25%;
}

.c-flex--gutters > .c-flex__col--10of12 {
  width: 82.83333%;
}

.c-flex--gutters > .c-flex__col--11of12 {
  width: 91.41667%;
}

.c-flex--gutters > .c-flex__col--12of12 {
  width: 100%;
}

.c-flex--query > .c-flex__col {
  width: 100%;
  display: block;
}

.c-flex--2to4 > .c-flex__col {
  width: 50% !important;
}

.c-flex--2to4.c-flex--gutters > .c-flex__col {
  margin: 0;
  width: 47.5% !important;
}

.c-flex--query.c-flex--gutters > .c-flex__col {
  margin-left: 0;
}

.c-flex__col {
  box-sizing: border-box;
  flex-shrink: 0;
}

.c-flex__col--full {
  flex-grow: 1;
}

.c-flex__col--1of12 {
  width: 8.33333%;
}

.c-flex__col--2of12 {
  width: 16.66667%;
}

.c-flex__col--3of12 {
  width: 25%;
}

.c-flex__col--4of12 {
  width: 33.33333%;
}

.c-flex__col--5of12 {
  width: 41.66667%;
}

.c-flex__col--6of12 {
  width: 50%;
}

.c-flex__col--7of12 {
  width: 58.33333%;
}

.c-flex__col--8of12 {
  width: 66.66667%;
}

.c-flex__col--9of12 {
  width: 75%;
}

.c-flex__col--10of12 {
  width: 83.33333%;
}

.c-flex__col--11of12 {
  width: 91.66667%;
}

.c-flex__col--12of12 {
  width: 100%;
}

@media (min-width: 640px) {
  .c-flex--2to4 > .c-flex__col {
    width: 25% !important;
  }
  .c-flex--2to4.c-flex--gutters > .c-flex__col {
    width: 22.75% !important;
  }
}

@media (min-width: 56rem) {
  .c-flex--query {
    display: flex;
    flex-wrap: wrap;
  }
  .c-flex--query > .c-flex__col {
    box-sizing: border-box;
    flex-shrink: 0;
    margin-bottom: 0;
    display: inline-block;
    width: auto;
  }
  .c-flex--query > .c-flex__col--1of12 {
    width: 8.33333% !important;
  }
  .c-flex--query > .c-flex__col--2of12 {
    width: 16.66667% !important;
  }
  .c-flex--query > .c-flex__col--3of12 {
    width: 25% !important;
  }
  .c-flex--query > .c-flex__col--4of12 {
    width: 33.33333% !important;
  }
  .c-flex--query > .c-flex__col--5of12 {
    width: 41.66667% !important;
  }
  .c-flex--query > .c-flex__col--6of12 {
    width: 50% !important;
  }
  .c-flex--query > .c-flex__col--7of12 {
    width: 58.33333% !important;
  }
  .c-flex--query > .c-flex__col--8of12 {
    width: 66.66667% !important;
  }
  .c-flex--query > .c-flex__col--9of12 {
    width: 75% !important;
  }
  .c-flex--query > .c-flex__col--10of12 {
    width: 83.33333% !important;
  }
  .c-flex--query > .c-flex__col--11of12 {
    width: 91.66667% !important;
  }
  .c-flex--query > .c-flex__col--12of12 {
    width: 100% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col {
    margin-left: 3%;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col:first-child {
    margin: 0;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--1of12 {
    width: 5.58333% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--2of12 {
    width: 14.16667% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--3of12 {
    width: 22.75% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--4of12 {
    width: 31.33333% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--5of12 {
    width: 39.91667% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--6of12 {
    width: 48.5% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--7of12 {
    width: 57.08333% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--8of12 {
    width: 65.66667% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--9of12 {
    width: 74.25% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--10of12 {
    width: 82.83333% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--11of12 {
    width: 91.41667% !important;
  }
  .c-flex--query.c-flex--gutters > .c-flex__col--12of12 {
    width: 100% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col {
    margin-left: 0;
    margin-right: 3%;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col:first-child {
    margin: 0;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--1of12 {
    width: 5.58333% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--2of12 {
    width: 14.16667% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--3of12 {
    width: 22.75% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--4of12 {
    width: 31.33333% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--5of12 {
    width: 39.91667% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--6of12 {
    width: 48.5% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--7of12 {
    width: 57.08333% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--8of12 {
    width: 65.66667% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--9of12 {
    width: 74.25% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--10of12 {
    width: 82.83333% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--11of12 {
    width: 91.41667% !important;
  }
  .c-flex--query.c-flex--gutters.c-flex--reverse > .c-flex__col--12of12 {
    width: 100% !important;
  }
}

/* link
--------------------------------------------------------- */
.c-link--white {
  color: #fff;
}

.c-link--white:link {
  color: #fff;
  text-decoration: none;
}

.c-link--white:hover, .c-link--white:focus, .c-link--white:active {
  text-decoration: underline;
  color: #f2f2f2;
}

.c-link--footer {
  color: #222;
}

.c-link--footer:link {
  color: #222;
  text-decoration: none;
}

.c-link--footer:hover, .c-link--footer:focus, .c-link--footer:active {
  text-decoration: underline;
  color: #151515;
}

.is-scrolled .c-link--nav,
.c-link--nav {
  color: #333;
  font-weight: bold;
}

.is-scrolled .c-link--nav:link,
.c-link--nav:link {
  color: #333;
  text-decoration: none;
}

.is-scrolled .c-link--nav:hover, .is-scrolled .c-link--nav:focus, .is-scrolled .c-link--nav:active,
.c-link--nav:hover,
.c-link--nav:focus,
.c-link--nav:active {
  background: rgba(27, 45, 70, 0.1);
}

/*
# hero
 */
.c-hero {
  position: relative;
  width: 100%;
  z-index: 0;
  margin: 0 auto;
}

.c-hero > p > img {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: right;
  object-position: right;
  font-family: "object-fit: cover;";
}

.c-hero__inner {
  width: 100%;
  max-width: 67.5rem;
  padding: 0 1rem;
  position: relative;
  z-index: 100;
  display: flex;
  margin: 0 auto;
  align-items: center;
}

.c-hero__inner h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-family: "Garamond", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.c-hero__inner .c-hero__h2 {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.c-hero__inner h2 {
  position: relative;
  text-align: center;
  display: inline-block;
  margin-bottom: 0.2rem;
  line-height: 1.2;
  font-size: 1.25rem;
  font-family: "Garamond", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.c-hero__inner h2 span {
  font-size: 1.75rem;
}

@media (max-width: 1200px) {
  .c-hero__inner h2 span {
    font-size: calc(1.3rem + 0.6vw) ;
  }
}

.c-hero__inner h2 .before {
  position: absolute;
  top: -3rem;
  left: -1rem;
}

.c-hero__inner h2 .after {
  position: absolute;
  bottom: -3rem;
  right: -1rem;
}

.c-hero__item {
  display: flex;
  font-weight: bold;
  background-color: #fef9ea;
  height: 40px;
  border-radius: 40px;
  padding: 0 1rem;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin: 0 1rem 1rem;
  font-size: 0.875rem;
}

.c-hero__icon {
  text-align: center;
  font-size: 45px;
}

.c-hero__content {
  width: 100%;
  max-width: 680px;
  padding: 1rem 0;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  margin-top: -5rem;
}

.c-hero__overlay {
  display: none;
}

.c-hero__ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.c-hero__li {
  width: 50%;
}

@media (max-width: 30rem) {
  .c-hero__li {
    width: 100%;
  }
  .c-hero__item {
    height: 30px;
    border-radius: 30px;
    margin: 0 1rem 0.5rem;
  }
}

@media (min-width: 56rem) {
  .c-hero {
    height: 90vh;
    overflow: hidden;
  }
  .c-hero > p > img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: 90vh;
    width: 110%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-hero__inner {
    height: 90vh;
  }
  .c-hero__inner h1 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .c-hero__inner h1 {
    font-size: calc(1.275rem + 0.3vw) ;
  }
}

@media (min-width: 56rem) {
  .c-hero__inner h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .c-hero__inner h2 {
    font-size: calc(1.275rem + 0.3vw) ;
  }
}

@media (min-width: 56rem) {
  .c-hero__inner h2 span {
    font-size: 2.125rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .c-hero__inner h2 span {
    font-size: calc(1.3375rem + 1.05vw) ;
  }
}

@media (min-width: 56rem) {
  .c-hero__overlay {
    content: "";
    display: block;
    position: absolute;
    height: 90vh;
    width: 50%;
    background: #fff;
    opacity: 0.4;
    top: 0;
    left: 0;
  }
  .c-hero__content {
    width: 49%;
    padding-right: 1%;
    margin: 0;
    background: none;
  }
  .c-hero__item {
    height: 44px;
    border-radius: 44px;
    font-size: 0.875rem;
  }
}

@media (min-width: 70rem) {
  .c-hero {
    height: 90vh;
  }
  .c-hero > p > img {
    height: 90vh;
  }
  .c-hero .c-hero__inner {
    height: 90vh;
  }
  .c-hero__overlay {
    height: 90vh;
  }
}

/*
# nav
 */
.c-nav {
  list-style: none;
}

.c-nav--center {
  text-align: center;
}

.c-nav--right {
  text-align: right;
}

.c-nav__item {
  display: block;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 2.5rem 0 1rem;
}

.c-nav__item a {
  display: flex;
  text-decoration: none;
  align-items: center;
  height: 80px;
  padding: 0 1rem;
}

.c-nav__item a .fa-angle-right {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5em;
}

/*
# title
*/
.c-title {
  position: relative;
}

.c-title--primary {
  font-size: 2.375rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 2rem;
  font-family: "Garamond", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
}

@media (max-width: 1200px) {
  .c-title--primary {
    font-size: calc(1.3625rem + 1.35vw) ;
  }
}

.c-title--primary span {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
}

.c-title--primary:after {
  content: "";
  display: block;
  background: #d6d6d6;
  height: 3px;
  width: 56px;
  position: absolute;
  top: -1rem;
  left: 50%;
  margin-left: -26px;
}

.c-title--secondary {
  font-size: 2rem;
  color: #4f0200;
  font-weight: normal;
  text-align: center;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.2;
  margin: 3rem 0 4rem;
}

@media (max-width: 1200px) {
  .c-title--secondary {
    font-size: calc(1.325rem + 0.9vw) ;
  }
}

.c-title--secondary .sp {
  display: block;
}

@media (min-width: 56rem) {
  .c-title--secondary {
    font-size: 2.5rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .c-title--secondary {
    font-size: calc(1.375rem + 1.5vw) ;
  }
}

@media (min-width: 56rem) {
  .c-title--secondary .sp {
    display: none;
  }
}

/*
# Project
----------------------------------------------- */
.p-access {
  width: 100%;
  background: #fff;
}

.p-access--gray {
  background: #f8f8f8;
}

.p-access__inner {
  width: auto;
  padding: 1rem;
  max-width: 67.5rem;
  margin: 0 auto;
}

.p-access__inner p,
.p-access__inner h2 {
  margin: 0 1rem 0.5rem;
}

.p-access__inner h2 {
  max-width: 420px;
}

.p-access__inner .description {
  margin: 2.5rem 1rem 1.5rem;
}

.p-seminar {
  background: #ded4b6;
  padding: 3rem 0 4rem;
}

.p-seminar--bg {
  background: #f2ecdb;
}

.p-seminar__inner {
  width: auto;
  max-width: 67.5rem;
  margin: 0 auto;
}

.p-seminar__flex {
  flex-wrap: nowrap;
  flex-direction: column-reverse;
}

.p-seminar__flex-reverse {
  flex-wrap: nowrap;
  flex-direction: column-reverse;
}

.p-seminar__sub-content {
  width: 100% !important;
}

.p-seminar__image {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 1rem 1rem 1rem;
}

.p-seminar__image img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  display: inline-block;
  width: 110px;
  height: 110px;
  -o-object-position: top;
  object-position: top;
  border-radius: 10px;
  margin-right: 0.5rem;
}

.p-seminar__image p {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  font-size: 14px;
}

.p-seminar__none {
  width: 0 !important;
  display: none;
}

.p-seminar__title {
  text-align: left;
}

.p-seminar__main-content {
  flex-grow: 3;
  flex: 1;
  padding: 0 1rem;
}

.p-seminar__main-content h3 {
  display: inline-block;
  margin: 0 1rem;
  line-height: 1.2;
  border-bottom: none;
  border-bottom: 1px #4f0200 solid;
  color: #4f0200;
  padding-left: 0.8em;
  text-indent: -0.8em;
  font-weight: 600;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.375rem;
}

@media (max-width: 1200px) {
  .p-seminar__main-content h3 {
    font-size: calc(1.3625rem + 1.35vw) ;
  }
}

.p-seminar__main-content h3 span {
  font-size: 3rem;
  color: #ce0500;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
}

@media (max-width: 1200px) {
  .p-seminar__main-content h3 span {
    font-size: calc(1.425rem + 2.1vw) ;
  }
}

.p-seminar__main-content p {
  margin: 2rem 1rem;
}

.p-seminar__main-content h4 {
  font-size: 1.125rem;
  color: #fff;
  background: #4f0200;
  padding: 0.8rem 1rem;
}

.p-seminar__main-content dl {
  margin: 1rem 1rem 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.p-seminar__main-content dt {
  width: 75px;
  height: 38px;
  font-size: 14px;
  color: #fff;
  background: #4f0200;
  padding: 0.5rem;
  text-align: center;
  display: inline-block;
  margin: 0 1rem 0 0;
}

.p-seminar__main-content dd {
  flex: 1;
  margin-top: 0;
  display: inline-block;
  vertical-align: middle;
}

.p-seminar__info {
  background: #fff;
  margin-bottom: 3rem;
}

.p-seminar__info-box {
  padding-bottom: 1rem;
}

.p-seminar__btn {
  text-align: center;
  padding: 0;
}

.p-seminar__btn > a {
  margin: 0 auto;
}

.p-seminar__flex-reverse .p-seminar__image {
  flex-direction: row-reverse;
}

.p-seminar__flex-reverse .p-seminar__image img {
  margin-right: 0;
  margin-left: 0.5rem;
}

@media (min-width: 56rem) {
  .p-seminar {
    padding: 0 0 5rem;
  }
  .p-seminar__none {
    width: 256px !important;
    display: block;
  }
  .p-seminar__sub-content {
    width: 256px !important;
  }
  .p-seminar__image {
    display: block;
    padding: 0;
    width: auto;
    position: relative;
  }
  .p-seminar__image img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    display: inline-block;
    width: 256px;
    height: auto;
    -o-object-position: top;
    object-position: top;
    border-radius: 0;
    margin: 0 !important;
  }
  .p-seminar__image p {
    display: block;
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    margin: 0;
    vertical-align: middle;
    font-size: 14px;
    background: #4f0200;
    padding: 0.5rem;
    color: #fff;
  }
  .p-seminar__flex {
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .p-seminar__flex-reverse {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }
  .p-seminar__title {
    text-align: left;
  }
  .p-seminar__main-content {
    padding: 0;
  }
  .p-seminar__main-content h3 {
    font-size: 2.875rem;
    margin: 0 2rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .p-seminar__main-content h3 {
    font-size: calc(1.4125rem + 1.95vw) ;
  }
}

@media (min-width: 56rem) {
  .p-seminar__main-content h3 span {
    font-size: 3.5625rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .p-seminar__main-content h3 span {
    font-size: calc(1.48125rem + 2.775vw) ;
  }
}

@media (min-width: 56rem) {
  .p-seminar__main-content h4 {
    font-size: 1.875rem;
    padding: 1rem 2rem;
  }
}

@media (min-width: 56rem) and (max-width: 1200px) {
  .p-seminar__main-content h4 {
    font-size: calc(1.3125rem + 0.75vw) ;
  }
}

@media (min-width: 56rem) {
  .p-seminar__main-content p {
    margin: 2rem;
  }
  .p-seminar__main-content dl {
    margin: 2rem;
  }
  .p-seminar__main-content dt {
    width: 100px;
    padding: 0.5rem 1rem;
    margin: 0 1rem 0 0;
  }
}

/*
# Utility
----------------------------------------------- */




.present_copy {
  text-align: center;
  margin-bottom: 0rem;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Garamond", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


@media (max-width: 895px) {
.present_copy {
  text-align: center;
  margin-bottom: 0rem;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Garamond", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
}
