@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/* -----------------------------------
Color
------------------------------------ */
/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
ie
------------------------------------ */
/* -----------------------------------
dropshadow
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
/*
 * _fonts.scss
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,700;1,700&display=swap");
/*
 * _reset.scss
 */
/* -----------------------------------
reset
------------------------------------ */
html,
body {
  height: 100%;
}

html {
  overflow-y: scroll;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

form {
  display: inline;
}

pre,
textarea {
  overflow: auto;
}

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

details,
main,
summary {
  display: block;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  vertical-align: middle;
}

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;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 60%;
  line-height: 0;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.15em;
}

textarea {
  resize: vertical;
}

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

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

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

ol,
ul {
  list-style: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select option {
  background-color: #fff;
  color: #333;
}

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

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

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

fieldset {
  border: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 15px 0;
  padding: 0;
}

/*
 * _base.scss
 */
/* -----------------------------------
base Setting
------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  color: #686868;
  font-size: 1.2rem;
  line-height: 2.0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  background: #fff;
  max-height: 999999px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #EA5C0C;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

::-moz-selection {
  background: #EA5C0C;
  color: #fff;
}

::selection {
  background: #EA5C0C;
  color: #fff;
}

::-moz-selection {
  background: #EA5C0C;
  color: #fff;
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
/* -----------------------------------
wrapper
------------------------------------ */
/* -----------------------------------
header
------------------------------------ */
.l-header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.l-header_in {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  position: relative;
}

@media screen and (min-width: 769px) {
  .l-header_in {
    height: 70px;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .l-header_in {
    background-color: #fff;
    height: 50px;
  }
}

.l-header_logo {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-header_logo a {
  display: inline-block;
}

.l-header_logo a img {
  width: auto;
  height: 44px;
}

@media screen and (max-width: 768px) {
  .l-header_logo a img {
    height: 25px;
  }
}

@media screen and (min-width: 769px) {
  .l-header_gnav {
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .l-header_gnav {
    display: block;
    position: fixed;
    top: -300px;
    top: 50px;
    width: 100%;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  .l-header_gnav.is-visible {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
}

@media screen and (min-width: 769px) {
  .l-header_gnav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header_gnav ul li a {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0 25px;
}

@media screen and (min-width: 769px) {
  .l-header_gnav ul li a {
    background: #141414;
    line-height: 70px;
  }
}

@media screen and (max-width: 768px) {
  .l-header_gnav ul li a {
    line-height: 40px;
    background-color: rgba(20, 20, 20, 0.8);
    border-top: 1px solid #fff;
  }
  .l-header_gnav ul li a:after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}

@media screen and (min-width: 769px) {
  .l-header_gnav ul li a:before {
    content: "|";
    display: inline-block;
    position: absolute;
    left: 0;
  }
}

@media screen and (min-width: 769px) {
  .l-header_gnav ul li a:hover {
    opacity: .7;
  }
}

.l-header_gnav ul li[data-nav='top'] {
  display: none;
}

body#top .l-header_gnav ul li[data-nav='page'] {
  display: none;
}

body#top .l-header_gnav ul li[data-nav='top'] {
  display: block;
}

.l-header_gnav ul li[data-nav='top'] a:before, .l-header_gnav ul li[data-nav='page'] a:before {
  display: none;
}

.l-header_gnav div a {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0 25px;
  padding-right: 40px;
}

@media screen and (min-width: 769px) {
  .l-header_gnav div a {
    line-height: 70px;
    background: #EA5C0C;
  }
}

@media screen and (max-width: 768px) {
  .l-header_gnav div a {
    line-height: 40px;
    border-top: 1px solid #fff;
    background-color: rgba(234, 92, 12, 0.8);
  }
}

.l-header_gnav div a:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 769px) {
  .l-header_gnav div a:hover {
    opacity: .7;
  }
}

.l-header_btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-header_btn {
    display: block;
    position: absolute;
    z-index: 10000;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
    right: 15px;
    width: 30px;
    height: 30px;
  }
}

.l-header_btn span {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 80%;
  height: 2px;
  position: absolute;
  background: #141414;
  left: 10%;
}

.l-header_btn span:nth-of-type(1) {
  top: 15%;
}

.l-header_btn span:nth-of-type(2) {
  top: 48%;
}

.l-header_btn span:nth-of-type(3) {
  bottom: 16%;
}

.l-header_btn.is-visible span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.l-header_btn.is-visible span:nth-of-type(2) {
  opacity: 0;
  left: 100%;
}

.l-header_btn.is-visible span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.l-header_btn.is-visible span:nth-of-type(1) {
  margin-top: 2px;
  margin-left: 4px;
}

.l-header_btn.is-visible span:nth-of-type(3) {
  margin-top: -2px;
  margin-left: 4px;
}

/* -----------------------------------
content
------------------------------------ */
.l-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  .l-content {
    padding-top: 50px;
  }
}

/* -----------------------------------
section
------------------------------------ */
/*.l-sec {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
}*/

/*@media screen and (max-width: 768px) {
  .l-sec {
    padding: 50px 10%;
  }
}*/

/*.l-sec_in {
  max-width: 1000px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-sec_in {
    max-width: 500px;
  }
}*/

/* -----------------------------------
footer
------------------------------------ */
.l-footer_copyright {
  display: block;
  text-align: center;
  line-height: 40px;
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
/* -----------------------------------
.c-titleStyle
------------------------------------ */
.c-titleStyle1 {
  margin-bottom: 45px;
  font-size: 2.5rem;
  line-height: 1;
  color: #EA5C0C;
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-titleStyle1 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 2.0rem;
  }
}

@media screen and (min-width: 769px) {
  .c-titleStyle1.-tr {
    text-align: right;
  }
}

.c-titleStyle2 {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .c-titleStyle2.-sp_center ._jp, .c-titleStyle2.-sp_center ._en {
    text-align: center;
  }
}

.c-titleStyle2 ._jp {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #141414;
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 ._jp {
    font-size: 1.6rem;
  }
}

.c-titleStyle2 ._jp.-movie {
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 ._jp.-movie {
    padding-left: 25px;
  }
}

.c-titleStyle2 ._jp.-movie:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url(../img/common/ico_movie.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 ._jp.-movie:before {
    width: 18px;
    height: 18px;
  }
}

.c-titleStyle2 ._jp.-pamphlet {
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 ._jp.-pamphlet {
    padding-left: 25px;
  }
}

.c-titleStyle2 ._jp.-pamphlet:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url(../img/common/ico_pamphlet.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 ._jp.-pamphlet:before {
    width: 18px;
    height: 18px;
  }
}

.c-titleStyle2 ._en {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #EA5C0C;
}

@media screen and (max-width: 768px) {
  .c-titleStyle2 ._en {
    font-size: 1.1rem;
  }
}

/* -----------------------------------
.c-txtStyle
------------------------------------ */
.c-txtStyle1 {
  margin-bottom: 25px;
  font-size: 2.0rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #141414;
}

@media screen and (max-width: 768px) {
  .c-txtStyle1 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}

.c-txtStyle2 {
  display: none;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .c-txtStyle2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}

.c-txtStyle2.-orange {
  color: #EA5C0C;
}

.c-txtStyle2.-green {
  color: #009529;
}

.c-txtStyle3 {
  /*text-align: center;*/
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-txtStyle3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: left;
  }
}

/* -----------------------------------
.c-icoPlay
------------------------------------ */
.c-icoPlay {
  position: relative;
}

.c-icoPlay::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url(../img/common/ico_play.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* -----------------------------------
.c-indent1
------------------------------------ */
.c-indent1 li {
  margin-left: 1em;
  text-indent: -1em;
}

.c-indent1h li {
  margin-left: 1.5em;
  text-indent: -1.5em;
}

/* -----------------------------------
hover
------------------------------------ */
/* -----------------------------------
c-btn
------------------------------------ */
.c-btnWrap {
  margin-top: 80px;
  text-align: center;
}

.c-btnStyle1 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  min-width: 200px;
  width: 100%;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.c-btnStyle1:hover {
  opacity: .7;
}

.c-btnStyle1.-medium {
  width: 300px;
}

.c-btnStyle1 span {
  position: relative;
  display: block;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
  background: #EA5C0C;
  line-height: 1;
  letter-spacing: .1em;
  padding: 15px 20px;
  border-radius: 50px;
}

.c-btnStyle1 span:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* -----------------------------------
.c-icoTxt
------------------------------------ */
.c-icoTxt:after {
  display: inline-block;
  text-align: center;
  padding: 4px 10px 5px;
  line-height: 1;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .c-icoTxt:after {
    font-size: 1.1rem;
  }
}

.c-icoTxt.-require:after {
  content: '必 須';
  color: #EA5C0C;
  border: 1px solid #EA5C0C;
}

.c-icoTxt.-optional:after {
  content: '任 意';
  color: #686868;
  border: 1px solid #E1E1E1;
}

/* -----------------------------------
.c-inputList
------------------------------------ */
.c-inputList li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
}

/* -----------------------------------
.c-formSubItem
------------------------------------ */
.c-formSubItem {
  margin-top: 5px;
}

/* -----------------------------------
.c-nameList
------------------------------------ */
@media screen and (min-width: 769px) {
  .c-nameList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-nameList > li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0!important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-nameList > li > span:first-child {
  display: inline-block;
  margin-right: 10px;
  margin-top: 12px;
  font-size: 1.5rem;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .c-nameList > li > span:first-child {
    font-size: 1.2rem;
  }
}

/* -----------------------------------
.c-address
------------------------------------ */
@media screen and (min-width: 769px) {
  .c-address > dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-address > dl + dl {
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .c-address > dl > dt {
    -webkit-flex-basis: 100px;
        -ms-flex-preferred-size: 100px;
            flex-basis: 100px;
    max-width: 100px;
    padding-right: 15px;
    text-align: right;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .c-address > dl > dt {
    font-size: 1.2rem;
  }
}

.c-address > dl > dd {
  -webkit-flex-basis: calc(100% - 100px);
      -ms-flex-preferred-size: calc(100% - 100px);
          flex-basis: calc(100% - 100px);
}

/* -----------------------------------
input
------------------------------------ */
.c-input {
  display: inline-block;
  padding: 8px 15px;
  width: 100%;
  border: 1px solid #E1E1E1;
  background: #E1E1E1;
  line-height: 1.6;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c-input {
    padding: 5px 12px;
  }
}

.c-input.-name {
  width: 250px;
}

.c-input.-zip {
  width: 150px;
}

.c-input:focus {
  -webkit-transition: .3s;
  transition: .3s;
  outline: none;
  background: #F9EBE1;
  border: 1px solid #EA5C0C;
  -webkit-box-shadow: 0px 0px 5px 0px #999;
          box-shadow: 0px 0px 5px 0px #999;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.c-input::-webkit-input-placeholder {
  color: #bbb;
}

.c-input:-ms-input-placeholder {
  color: #bbb;
}

.c-input::-ms-input-placeholder {
  color: #bbb;
}

.c-input::placeholder {
  color: #bbb;
}

.c-input::-ms-input-placeholder {
  color: #bbb;
}

.c-input:-ms-input-placeholder {
  color: #bbb;
}

.c-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #E1E1E1 inset;
}

/* -----------------------------------
textarea
------------------------------------ */
.c-textarea {
  padding: 10px 15px;
  width: 100%;
  min-height: 150px;
  border: 1px solid #E1E1E1;
  background: #E1E1E1;
  line-height: 1.6;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .c-textarea {
    padding: 5px 12px;
  }
}

.c-textarea:focus {
  -webkit-transition: .3s;
  transition: .3s;
  outline: none;
  background: #F9EBE1;
  border: 1px solid #EA5C0C;
  -webkit-box-shadow: 0px 0px 5px 0px #999;
          box-shadow: 0px 0px 5px 0px #999;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.c-textarea::-webkit-input-placeholder {
  color: #bbb;
}

.c-textarea:-ms-input-placeholder {
  color: #bbb;
}

.c-textarea::-ms-input-placeholder {
  color: #bbb;
}

.c-textarea::placeholder {
  color: #bbb;
}

.c-textarea::-ms-input-placeholder {
  color: #bbb;
}

.c-textarea:-ms-input-placeholder {
  color: #bbb;
}

.c-textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #E1E1E1 inset;
}

/* -----------------------------------
.c-select
------------------------------------ */
.c-select {
  position: relative;
  display: inline-block;
}

.c-select:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #141414;
  border-right: 2px solid #141414;
  position: absolute;
  /*top: 50%;*/
  top: 1.5em;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  margin-top: -2px;
}

.c-select select {
  display: block;
  width: 100%;
  border: 1px solid #E1E1E1;
  font-size: 16px;
  background-color: #E1E1E1;
  padding: 5px 50px 5px 10px;
}

.c-select select:focus {
  -webkit-transition: .3s;
  transition: .3s;
  outline: none;
  background: #F9EBE1;
  border: 1px solid #EA5C0C;
  -webkit-box-shadow: 0px 0px 5px 0px #999;
          box-shadow: 0px 0px 5px 0px #999;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.c-select select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #E1E1E1 inset;
}

/* -----------------------------------
radio
------------------------------------ */
.c-radio label {
  position: relative;
  padding: 4px 0;
  margin: 3px 3px 3px 0px;
}

.c-radio label > input[type=radio] {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}

.c-radio label > span {
  padding-left: 30px;
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .c-radio label > span {
    font-size: 1.2rem;
  }
}

.c-radio label > span:before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #E1E1E1;
}

.c-radio label > span:after {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: #EA5C0C;
  opacity: 0;
}

.c-radio label > span:hover:after {
  opacity: .2;
}

.c-radio label > input[type=radio]:checked + span:after {
  opacity: 1;
}

/* -----------------------------------
checkbox
------------------------------------ */
.c-checkbox label {
  position: relative;
  padding: 2px 0;
  margin: 3px 15px 3px 0px;
}

.c-checkbox label > input[type=checkbox] {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}

.c-checkbox label > span {
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  padding-left: 25px;
  position: relative;
  font-size: 1.5rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .c-checkbox label > span {
    font-size: 1.2rem;
  }
}

.c-checkbox label > span:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #ddd;
  background: #E1E1E1;
}

.c-checkbox label > span:after {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  content: '';
  display: block;
  width: 20px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #009529;
  border-left: 3px solid #009529;
  opacity: 0;
  margin-top: -4px;
}

.c-checkbox label > span:hover:after {
  opacity: .2;
}

.c-checkbox label > input[type=checkbox]:checked + span:after {
  opacity: 1;
}

/* -----------------------------------
submit
------------------------------------ */
.c-submit {
  display: inline-block;
}

.c-submit input[type=submit] {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  background: #EA5C0C !important;
  line-height: 1;
  letter-spacing: .1em;
  padding: 20px 100px;
  border-radius: 50px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.c-submit input[type=submit]:hover {
  opacity: .7;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 10px 10px 10px 0 !important;
}

.has-error {
  background: #fce3e2 !important;
  border: 1px solid #b42320 !important;
}

.has-error ~ .wpcf7-list-item-label::before {
  background: #fce3e2 !important;
  border: 1px solid #b42320 !important;
}

.photo .has-error {
  padding: 15px !important;
}

@media screen and (max-width: 768px) {
  .wpcf7-list-item {
    margin: 5px 10px 5px 0 !important;
  }
}

.wpcf7-spinner {
  display: none !important;
}

/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
 */
/* -----------------------------------
.p-secMainv
------------------------------------ */
.p-secMainv {
  position: relative;
  z-index: 2;
}

.p-secMainv_cnt {
  position: absolute;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .p-secMainv_cnt {
    width: 40%;
    top: 15%;
    left: 10%;
  }
}

@media screen and (max-width: 768px) {
  .p-secMainv_cnt {
    width: 80%;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-secMainv_cnt ._txt {
  text-align: center;
  margin-top: 2%;
  width: 90%;
}

.p-secMainv_img img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .p-secMainv_img img {
    height: calc(100vh - 70px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 768px) {
  .p-secMainv_img img {
    height: 80vh;
    height: 70vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}

.p-secMainv_bnr {
  position: absolute;
  left: 50%;
  bottom: 110px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 490px;
}

@media screen and (max-width: 768px) {
  .p-secMainv_bnr {
    bottom: 75px;
    width: 80%;
  }
}

@media screen and (min-width: 769px) {
  .p-secMainv_bnr_items_item {
    margin: 0 25px;
    width: 195px !important;
  }
}

@media screen and (max-width: 768px) {
  .p-secMainv_bnr_items_item {
    padding: 0 5px;
  }
}

.p-secMainv_bnr_items_item a, .p-secMainv_bnr_items_item span {
  width: 100%;
  display: block;
}

.p-secMainv_bnr_items_item a img, .p-secMainv_bnr_items_item span img {
  width: 100%;
}

.p-secMainv_bnr_items_item a {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.p-secMainv_bnr_items_item a:hover {
  opacity: .7;
}

.p-secMainv_arrow {
  display: block;
  background: url(../img/common/obj_arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 1;
  left: 50%;
}

@media screen and (min-width: 769px) {
  .p-secMainv_arrow {
    bottom: -35px;
    width: 145px;
    height: 69px;
    margin-left: -72px;
  }
}

@media screen and (max-width: 768px) {
  .p-secMainv_arrow {
    width: 74px;
    height: 38px;
    bottom: -19px;
    margin-left: -37px;
  }
}

/* -----------------------------------
.p-secNews
------------------------------------ */
@media screen and (min-width: 769px) {
  .p-secNews_cnt {
    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;
  }
}

@media screen and (min-width: 769px) {
  .p-secNews_cnt_title {
    -webkit-flex-basis: 205px;
        -ms-flex-preferred-size: 205px;
            flex-basis: 205px;
  }
}

.p-secNews_cnt_title ._txt1 {
  display: block;
  font-size: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-secNews_cnt_title ._txt1 {
    text-align: center;
  }
}

@media screen and (min-width: 769px) {
  .p-secNews_cnt_body {
    -webkit-flex-basis: calc(100% - 205px);
        -ms-flex-preferred-size: calc(100% - 205px);
            flex-basis: calc(100% - 205px);
    border-left: 1px solid #c5c5c5;
    padding-left: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-secNews_cnt_body {
    margin-top: 20px;
  }
}

.p-secNews_cnt_body.is-scroll {
  overflow-y: scroll;
}

@media screen and (min-width: 769px) {
  .p-secNews_cnt_body.is-scroll {
    max-height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .p-secNews_cnt_body.is-scroll {
    max-height: 200px;
  }
}

.p-secNews_cnt_body dl {
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .p-secNews_cnt_body dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-secNews_cnt_body dl + dl {
  margin-top: 10px;
}

.p-secNews_cnt_body dl dt {
  -webkit-flex-basis: 100px;
      -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-secNews_cnt_body dl dt {
    color: #EA5C0C;
  }
}

.p-secNews_cnt_body dl dd {
  -webkit-flex-basis: calc(100% - 100px);
      -ms-flex-preferred-size: calc(100% - 100px);
          flex-basis: calc(100% - 100px);
  color: initial;
  padding-right: 20px;
}

.p-secNews_cnt_body dl dd a {
  position: relative;
  display: inline-block;
  color: initial;
  text-decoration: none;
}

.p-secNews_cnt_body dl dd a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  -webkit-text-decoration-color: #EA5C0C;
          text-decoration-color: #EA5C0C;
}

/* -----------------------------------
.p-secCompany
------------------------------------ */
.p-secCompany {
  position: relative;
  z-index: 1;
  padding-right: 0;
  padding-left: 0;
}

@media screen and (min-width: 769px) {
  .p-secCompany {
    padding-top: 0;
    padding-bottom: 215px;
  }
}

.p-secCompany_arrow {
  content: '';
  display: block;
  background: url(../img/common/obj_arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 0;
}

@media screen and (min-width: 769px) {
  .p-secCompany_arrow {
    width: 956px;
    height: 450px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-left: -200px;
  }
}

@media screen and (max-width: 768px) {
  .p-secCompany_arrow {
    width: calc(956px / 2);
    height: calc(450px / 2);
    bottom: 300px;
    left: 0;
  }
}

@media screen and (min-width: 769px) {
  .p-secCompany_cnt {
    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;
  }
}

.p-secCompany_cnt_title {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .p-secCompany_cnt_title {
    -webkit-flex-basis: 45%;
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 50px;
    padding-right: 50px;
    padding-left: 110px;
  }
}

@media screen and (max-width: 768px) {
  .p-secCompany_cnt_title {
    margin: 0 auto 40px;
    max-width: 500px;
    padding: 0 10%;
  }
}

.p-secCompany_cnt_title p {
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-secCompany_cnt_title p {
    max-width: 320px;
  }
}

.p-secCompany_cnt_title p:after {
  content: '';
  display: block;
  width: 107px;
  height: 51px;
  background: url(../img/common/obj_arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .p-secCompany_cnt_title p:after {
    bottom: -80px;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-secCompany_cnt_title p:after {
    width: calc( 107px / 2);
    height: calc( 51px / 2);
    left: 50%;
    bottom: -50px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.p-secCompany_cnt_img {
  position: relative;
  z-index: 0;
  -webkit-flex-basis: 55%;
      -ms-flex-preferred-size: 55%;
          flex-basis: 55%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.p-secCompany_cnt_img ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.p-secCompany_cnt_img ul li {
  -webkit-flex-basis: 33.33%;
      -ms-flex-preferred-size: 33.33%;
          flex-basis: 33.33%;
}

.p-secCompany_cnt_img ul li img {
  width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 769px) {
  .p-secCompany_data {
    margin-top: 95px;
    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;
  }
}

@media screen and (max-width: 768px) {
  .p-secCompany_data {
    margin: 40px auto 40px;
    max-width: 500px;
    padding: 0 10%;
  }
}

.p-secCompany_data > div {
  position: relative;
  -webkit-flex-basis: 48%;
      -ms-flex-preferred-size: 48%;
          flex-basis: 48%;
}

.p-secCompany_data > div ._img {
  background: #141414;
  -webkit-box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
}

.p-secCompany_data > div ._img > a, .p-secCompany_data > div ._img > div {
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.p-secCompany_data > div ._img > a img, .p-secCompany_data > div ._img > div img {
  position: absolute;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 769px) {
  .p-secCompany_data > div ._img > a:hover img, .p-secCompany_data > div ._img > div:hover img {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    opacity: .8;
  }
}

.p-secCompany_data_movie ._time {
  position: absolute;
  margin-top: -2.5em;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #141414;
}

@media screen and (max-width: 768px) {
  .p-secCompany_data_pamphlet {
    margin-top: 40px;
  }
}

.p-secCompany_data_pamphlet ._shoulder {
  position: absolute;
  top: 7px;
  right: -78px;
  width: 155px;
}

@media screen and (max-width: 768px) {
  .p-secCompany_data_pamphlet ._shoulder {
    top: 34px;
    width: 90px;
    right: -38px;
  }
}

/* -----------------------------------
.p-secWork
------------------------------------ */
@media screen and (min-width: 769px) {
  .p-secWork {
    padding-bottom: 354px;
    margin-top: -120px;
    position: relative;
  }
}

.p-secWork_arrow {
  content: '';
  display: block;
  background: url(../img/common/obj_arrow.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 0;
}

@media screen and (min-width: 769px) {
  .p-secWork_arrow {
    width: 1435px;
    height: 676px;
    bottom: 0;
    left: 50%;
    margin-left: -235px;
  }
}

@media screen and (max-width: 768px) {
  .p-secWork_arrow {
    width: calc(1435px / 2);
    height: calc(676px / 2);
    top: 600px;
    left: 50px;
  }
}

.p-secWork_title {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .p-secWork_title {
    width: 320px;
  }
}

@media screen and (min-width: 769px) {
  .p-secWork_img {
    position: absolute;
    z-index: 0;
    top: -50px;
    right: -160px;
    width: 735px;
  }
}

@media screen and (max-width: 768px) {
  .p-secWork_img {
    margin: 20px -5% 0;
  }
}

.p-secWork_cnt1 {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-secWork_cnt1 {
    margin-top: -50px;
  }
}

@media screen and (min-width: 769px) {
  .p-secWork_cnt1 ul {
    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;
  }
}

.p-secWork_cnt1 ul li {
  -webkit-flex-basis: 32%;
      -ms-flex-preferred-size: 32%;
          flex-basis: 32%;
  background: #fff;
  -webkit-box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 30px;
}

@media screen and (max-width: 768px) {
  .p-secWork_cnt1 ul li + li {
    padding: 15px 20px;
    margin-top: 20px;
  }
}

.p-secWork_cnt1 ul li ._title {
  font-size: 2.1rem;
  color: #EA5C0C;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .p-secWork_cnt1 ul li ._title {
    font-size: 1.8rem;
  }
}

.p-secWork_cnt1 ul li ._title span {
  display: inline-block;
  margin-right: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}

.p-secWork_cnt1 ul li ._body {
  margin-top: 15px;
}

.p-secWork_cnt1 ul li ._youtube {
  margin-top: 15px;
  border: 1px solid #E1E1E1;
  cursor: pointer;
  background: #141414;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 54.25%;
}

.p-secWork_cnt1 ul li ._youtube img {
  position: absolute;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-secWork_cnt1 ul li ._youtube:hover img {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  opacity: .8;
}

/* -----------------------------------
.p-secOfifce
------------------------------------ */
@media screen and (min-width: 769px) {
  .p-secOfifce {
    margin-top: -350px;
    padding-bottom: 0;
  }
}

.p-secOfifce .l-sec_in {
  position: static;
}

.p-secOfifce_title {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

@media screen and (min-width: 769px) {
  .p-secOfifce_title {
    width: 320px;
  }
}

@media screen and (min-width: 769px) {
  .p-secOfifce_img {
    position: absolute;
    width: 100%;
    height: 838px;
    left: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-secOfifce_img {
    margin: 0 -11%;
  }
}

@media screen and (min-width: 769px) {
  .p-secOfifce_img ._building {
    position: absolute;
    width: 756px;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .p-secOfifce_img ._building {
    text-align: center;
  }
  .p-secOfifce_img ._building img {
    width: 366px;
  }
}

.p-secOfifce_img ._bg {
  background: #EAF1F1;
  padding-top: 348px;
}

@media screen and (max-width: 768px) {
  .p-secOfifce_img ._bg {
    display: none;
  }
}

.p-secOfifce_img ._bg img {
  width: 100%;
  height: 490px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-secOfifce_cnt1 {
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-secOfifce_cnt1 {
    height: 838px;
  }
}

@media screen and (max-width: 768px) {
  .p-secOfifce_cnt1 {
    margin-top: -175px;
  }
}

@media screen and (min-width: 769px) {
  .p-secOfifce_cnt1 ul li {
    position: absolute;
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(1) {
    top: -17%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(2) {
    top: 5%;
    left: -7%;
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(3) {
    top: 5%;
    right: -7%;
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(4) {
    top: 36%;
    right: -7%;
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(5) {
    top: 36%;
    left: -7%;
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(6) {
    top: 55%;
    left: 23%;
  }
  .p-secOfifce_cnt1 ul li:nth-of-type(7) {
    top: 55%;
    left: 52%;
  }
}

@media screen and (max-width: 768px) {
  .p-secOfifce_cnt1 ul li {
    margin-top: 30px;
  }
}

.p-secOfifce_cnt1 ul li > div {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  padding: 15px 25px;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 769px) {
  .p-secOfifce_cnt1 ul li > div {
    width: 250px;
  }
}

@media screen and (min-width: 769px) {
  .p-secOfifce_cnt1 ul li > div:hover ._img img {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
    opacity: .9;
  }
}

.p-secOfifce_cnt1 ul li > div ._txt {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #686868;
}

.p-secOfifce_cnt1 ul li > div ._img {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  background: #141414;
  width: 100%;
  height: 0;
  padding-bottom: 57.5%;
}

.p-secOfifce_cnt1 ul li > div ._img:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url(../img/common/ico_popup.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-secOfifce_cnt1 ul li > div ._img img {
  position: absolute;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-secOfifce_cnt1 ul li > div ._title {
  margin-top: 10px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #EA5C0C;
}

.p-office {
  background: #fff;
  border-radius: 10px;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .p-office {
    padding: 20px;
  }
}

.p-office ._title {
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-office ._title {
    text-align: center;
  }
}

.p-office ._title h3 {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: #EA5C0C;
}

@media screen and (max-width: 768px) {
  .p-office ._title h3 {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}

.p-office ._title span {
  display: inline-block;
  border-radius: 20px;
  background: #ECECEC;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .p-office ._title span {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-office ._title span {
    padding: 7px 15px;
    font-size: 1.2rem;
  }
}

.p-office ._img {
  margin-top: 20px;
}

.p-office ._img img {
  width: 100%;
}

.p-office ._body {
  margin-top: 20px;
}

/* -----------------------------------
.p-secInformation
------------------------------------ */
@media screen and (min-width: 769px) {
  .p-secInformation {
    padding-bottom: 200px;
  }
}

@media screen and (min-width: 769px) {
  .p-secInformation:after {
    content: '';
    display: block;
    width: 100%;
    height: 400px;
    background: url(../img/index/information_bg.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

@media screen and (min-width: 769px) {
  .p-secInformation_cnt1 > ul {
    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;
  }
}

.p-secInformation_cnt1 > ul > li {
  position: relative;
  -webkit-flex-basis: 22%;
      -ms-flex-preferred-size: 22%;
          flex-basis: 22%;
}

.p-secInformation_cnt1 > ul > li:nth-of-type(4) ._title > div > span {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .p-secInformation_cnt1 > ul > li + li {
    margin-top: 60px;
  }
}

@media screen and (min-width: 769px) {
  .p-secInformation_cnt1 > ul > li ._title > a:hover,
  .p-secInformation_cnt1 > ul > li ._title > a:hover, .p-secInformation_cnt1 > ul > li ._title > div._movie:hover {
    opacity: .7;
  }
  .p-secInformation_cnt1 > ul > li ._title > a:hover > div,
  .p-secInformation_cnt1 > ul > li ._title > a:hover > div, .p-secInformation_cnt1 > ul > li ._title > div._movie:hover > div {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

.p-secInformation_cnt1 > ul > li ._title > a, .p-secInformation_cnt1 > ul > li ._title > div {
  position: relative;
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 14px;
  padding: 20px 10px 10px;
  -webkit-box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.p-secInformation_cnt1 > ul > li ._title > a h4, .p-secInformation_cnt1 > ul > li ._title > div h4 {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #EA5C0C;
  font-size: 1.4rem;
}

.p-secInformation_cnt1 > ul > li ._title > a div, .p-secInformation_cnt1 > ul > li ._title > div div {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  margin-top: 10px;
  text-align: center;
}

.p-secInformation_cnt1 > ul > li ._title > a div img, .p-secInformation_cnt1 > ul > li ._title > div div img {
  max-width: 80px;
  max-height: 80px;
}

.p-secInformation_cnt1 > ul > li ._title > a span, .p-secInformation_cnt1 > ul > li ._title > div span {
  position: relative;
  margin-top: 10px;
  padding-right: 20px;
  display: block;
  text-align: right;
  color: #EA5C0C;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

.p-secInformation_cnt1 > ul > li ._title > a span:after, .p-secInformation_cnt1 > ul > li ._title > div span:after {
  content: "\0bb";
  font-size: 2.4rem;
  display: inline-block;
  position: absolute;
  top: -8px;
  right: 0;
}

.p-secInformation_cnt1 > ul > li ._title > a:before, .p-secInformation_cnt1 > ul > li ._title > div:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 4px solid #141414;
  border-right: 4px solid #141414;
  position: absolute;
}

@media screen and (min-width: 769px) {
  .p-secInformation_cnt1 > ul > li ._title > a:before, .p-secInformation_cnt1 > ul > li ._title > div:before {
    top: 50%;
    left: -24px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 768px) {
  .p-secInformation_cnt1 > ul > li ._title > a:before, .p-secInformation_cnt1 > ul > li ._title > div:before {
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(135deg);
            transform: translateX(-50%) rotate(135deg);
  }
}

.p-secInformation_cnt1 > ul > li:first-child ._title > a:before,
.p-secInformation_cnt1 > ul > li:first-child ._title > div:before {
  display: none;
}

.p-secInformation_cnt1 > ul > li ._list {
  margin-top: 20px;
}

.p-secInformation_cnt1 > ul > li ._list div + ul {
  margin-top: 25px;
}

.p-secInformation_cnt1 > ul > li ._list ul li {
  padding-left: 40px;
  font-size: 1.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #141414;
}

.p-secInformation_cnt1 > ul > li ._list ul li span {
  display: inline-block;
  margin-right: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #EA5C0C;
}

.p-secInformation_cnt1 > ul > li ._list div {
  margin-top: 10px;
}

/* -----------------------------------
.p-secContact
------------------------------------ */
.p-secContact_cnt1 {
  /*background: #F6F6F6;*/
  background: white;
  padding: 40px 60px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #141414;
}

@media screen and (max-width: 768px) {
  .p-secContact_cnt1 {
    margin: 0 -12%;
    padding: 20px 20px;
    text-align: center;
  }
}

.p-secContact_cnt1 p:nth-of-type(1) {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .p-secContact_cnt1 p:nth-of-type(1) {
    font-size: 1.6rem;
  }
}

.p-secContact_cnt1 p:nth-of-type(2) {
  margin-top: 5px;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .p-secContact_cnt1 p:nth-of-type(2) {
    font-size: 1.2rem;
  }
}

.p-secContact_cnt1 ul {
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .p-secContact_cnt1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-secContact_cnt1 ul li {
  margin-right: 30px;
}

.p-secContact_cnt1 ul li a {
  text-decoration: none;
  color: inherit;
}

.p-secContact_cnt1 ul li a:hover {
  text-decoration: underline;
  color: #EA5C0C;
}

/* ---------------------------------------
p-youtube
--------------------------------------- */
.p-youtubeCover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.p-youtubeCover.is-visible {
  display: block;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.p-youtube {
  display: none;
  max-width: 1000px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-youtube_in {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.p-youtube_in iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-youtube_close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -50px;
  right: 0;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
}

.p-youtube_close:hover {
  opacity: .7;
}

.p-youtube_close span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-youtube_close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-youtube_close span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-youtube.is-visible {
  display: block;
  -webkit-animation-name: slide-up;
          animation-name: slide-up;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

@-webkit-keyframes slide-up {
  from {
    opacity: 0;
    margin-top: 50px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    margin-top: 50px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* ---------------------------------------
p-popup
--------------------------------------- */
.p-popupCover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.p-popupCover.is-visible {
  display: block;
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.p-popup {
  display: none;
  max-width: 900px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-popup_in {
  position: relative;
}

.p-popup_close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
}

.p-popup_close:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .p-popup_close {
    top: 20px;
    right: 20px;
  }
}

.p-popup_close span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #686868;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-popup_close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-popup_close span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-popup.is-visible {
  display: block;
  -webkit-animation-name: slide-up;
          animation-name: slide-up;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

@keyframes slide-up {
  from {
    opacity: 0;
    margin-top: 50px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* -----------------------------------
.p-secHead
------------------------------------ */
.p-secHead {
  position: relative;
}

.p-secHead_title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body#survey .p-secHead_title img {
  width: 324px;
  height: 48px;
}

body#entry .p-secHead_title img {
  width: 337px;
  height: 65px;
}

.p-secHead_img {
  position: relative;
  z-index: 0;
}

.p-secHead_img img {
  width: 100%;
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------
.p-form
------------------------------------ */
.p-form {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .p-form_item {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E0F3E3;
  }
}

.p-form_item > dt {
  position: relative;
  font-size: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-form_item > dt {
    font-size: 1.3rem;
    padding-right: 50px;
  }
  .p-form_item > dt.c-icoTxt:after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-form_item > dt span {
  display: inline-block;
  color: #009529;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .p-form_item > dt span {
    margin-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-form_item > dd {
    padding-top: 15px;
  }
}

@media screen and (min-width: 769px) {
  .p-form_item.-type1 {
    margin-top: 30px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-form_item.-type1 > dt {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
  }
  .p-form_item.-type1 > dt.c-icoTxt:after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .p-form_item.-type1 > dd {
    -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
            flex-basis: 70%;
    max-width: 70%;
    padding-left: 20px;
  }
}

@media screen and (min-width: 769px) {
  .p-form_item.-type2 {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E0F3E3;
  }
  .p-form_item.-type2 > dt.c-icoTxt:after {
    margin-left: 20px;
  }
  .p-form_item.-type2 > dd {
    padding-top: 20px;
    padding-left: 45px;
  }
}

.p-form_privacy {
  margin-top: 40px;
  text-align: center;
}

.p-form_privacy a {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #009529;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #009529;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .p-form_privacy a {
    font-size: 1.2rem;
  }
}

.p-form_agree {
  margin-top: 35px;
  text-align: center;
}

.p-form_submit {
  margin-top: 45px;
  text-align: center;
}

/* ---------------------------------------
animation top
--------------------------------------- */
.js-animation-top_child.-copy {
  -webkit-transition: 1.1s ease-in-out;
  transition: 1.1s ease-in-out;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

.js-animation-top_child.-copy.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.js-animation-top_child.-txt {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
}

.js-animation-top_child.-txt.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}

.js-animation-top_child.-arrow {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
}

.js-animation-top_child.-arrow.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.js-animation-top_child.-bnr {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  -webkit-transform: translate(-50%, 40px);
          transform: translate(-50%, 40px);
  opacity: 0;
}

.js-animation-top_child.-bnr.is-animation {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}

.js-animation-top_child.-img {
  -webkit-transition: opacity 1.4s ease-in-out;
  transition: opacity 1.4s ease-in-out;
  opacity: 0;
}

.js-animation-top_child.-img.is-animation {
  opacity: 1;
}

/* ---------------------------------------
animation common
--------------------------------------- */
.js-animation.-fadein {
  -webkit-transition: opacity .6s ease-out;
  transition: opacity .6s ease-out;
  opacity: 0;
}

.js-animation.-fadein.is-animation {
  opacity: 1;
}

.js-animation.-slideup {
  -webkit-transition: .6s ease-out;
  transition: .6s ease-out;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

.js-animation.-slideup.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js-animation.-slideup_m {
  -webkit-transition: .6s ease-out;
  transition: .6s ease-out;
  opacity: 0;
  margin-top: 40px;
}

.js-animation.-slideup_m.is-animation {
  opacity: 1;
  margin-top: 0;
}

@media screen and (min-width: 769px) {
  .js-animation.-delay1 {
    -webkit-transition-delay: .1s;
            transition-delay: .1s;
  }
  .js-animation.-delay2 {
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
  }
  .js-animation.-delay3 {
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
  }
  .js-animation.-delay4 {
    -webkit-transition-delay: .4s;
            transition-delay: .4s;
  }
  .js-animation.-delay5 {
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .js-animation.-delay6 {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .js-animation.-delay7 {
    -webkit-transition-delay: .7s;
            transition-delay: .7s;
  }
  .js-animation.-delay8 {
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
  }
  .js-animation.-delay9 {
    -webkit-transition-delay: .9s;
            transition-delay: .9s;
  }
  .js-animation.-delay10 {
    -webkit-transition-delay: 1.0s;
            transition-delay: 1.0s;
  }
}

/* -----------------------------------
.lazy
------------------------------------ */
.lazy {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.lazyloaded {
  opacity: 1;
}

/* -----------------------------------
Utility
------------------------------------ */
/*
 * _utility.scss
 */
/* -----------------------------------
print
------------------------------------ */
@media print {
  .u-printHidden {
    display: none;
  }
}

.u-printVisible {
  display: none;
}

@media print {
  .u-printVisible {
    display: block;
  }
}

/* -----------------------------------
font
------------------------------------ */
.u-fwb {
  font-weight: bold !important;
}

.u-fwn {
  font-weight: normal !important;
}

/* -----------------------------------
align
------------------------------------ */
.u-tc {
  text-align: center !important;
}

.u-tl {
  text-align: left !important;
}

.u-tr {
  text-align: right !important;
}

/* -----------------------------------
padding
------------------------------------ */
.u-mt0 {
  margin-top: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

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

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

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

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

/* -----------------------------------
font-size rem
------------------------------------ */
.u-fz10px {
  font-size: 1.0rem;
}

.u-fz11px {
  font-size: 1.1rem;
}

.u-fz12px {
  font-size: 1.2rem;
}

.u-fz13px {
  font-size: 1.3rem;
}

.u-fz14px {
  font-size: 1.4rem;
}

/* -----------------------------------
font-size em
------------------------------------ */
.u-fz09em {
  font-size: 0.9em;
}

.u-fz10em {
  font-size: 1.0em;
}

.u-fz11em {
  font-size: 1.1em;
}

.u-fz12em {
  font-size: 1.2em;
}

.u-fz13em {
  font-size: 1.3em;
}

.u-fz14em {
  font-size: 1.4em;
}

/* -----------------------------------
clerfix
------------------------------------ */
.sec::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* -----------------------------------
display
------------------------------------ */
.u-d_b {
  display: block !important;
}

.u-d_n {
  display: none !important;
}

.u-d_ib {
  display: inline-block !important;
}

/* -----------------------------------
display adjust
------------------------------------ */
.u-smhide, .u-sphide, .u-middlehide, .u-tablethide, .u-basehide {
  display: block;
}

.u-smblock, .u-spblock, .u-middleblock, .u-tabletblock, .u-baseblock {
  display: none;
}

@media screen and (max-width: 1499px) {
  .u-baseblock {
    display: block;
  }
  .u-basehide {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .u-tabletblock {
    display: block;
  }
  .u-tablethide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-middleblock {
    display: block;
  }
  .u-middlehide {
    display: none !important;
  }
}

@media screen and (max-width: 589px) {
  .u-spblock {
    display: block;
  }
  .u-sphide {
    display: none !important;
  }
}

@media screen and (max-width: 374px) {
  .u-smblock {
    display: block;
  }
  .u-smhide {
    display: none !important;
  }
}
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  margin-bottom: 0!important;
}
.echo-text {
  font-size: 1.5rem!important;
  font-weight: 500;
  line-height: 1.3;
}
.btn-back {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  background: #999 !important;
  line-height: 1;
  letter-spacing: .1em;
  margin-right: 15px;
  padding: 20px 100px;
  border-radius: 50px;
  transition: .3s ease-in-out;
}
/*# sourceMappingURL=style.css.map */