@charset "UTF-8";
/* ===================================
Foundation
=================================== */
/*
 * _setting.scss
 */
/* -----------------------------------
Color
------------------------------------ */
/*
 * _mixin.scss
 */
/* -----------------------------------
media query print
------------------------------------ */
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
transition
------------------------------------ */
/* -----------------------------------
clearfix
------------------------------------ */
/* -----------------------------------
formFocus
------------------------------------ */
/*
 * _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: #000;
  font-size: 1.4rem;
  line-height: 1.6;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"游ゴシック",YuGothic,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  letter-spacing: 0.01em;
  max-height: 999999px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

@media print {
  body {
    background: none;
  }
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  }
}

@media print {
  html, body {
    height: auto;
  }
}

body {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

body.is-visible {
  opacity: 1;
}

p {
  text-align: justify;
}

a {
  color: #00A0FF;
}

a:hover {
  text-decoration: none;
}

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

::selection {
  background: #00A0FF;
  color: #fff;
}

::-moz-selection {
  background: #00A0FF;
  color: #fff;
}

/* ===================================
Layout
=================================== */
/*
 * _layout.scss
 */
/* -----------------------------------
wrapper
------------------------------------ */
.l-wrapper {
  position: relative;
  width: 100%;
  min-width: 1200px;
}

@media screen and (max-width: 768px) {
  .l-wrapper {
    min-width: 100%;
  }
}

/* -----------------------------------
header
------------------------------------ */
.l-header {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  height: 100px;
  width: 100%;
  min-width: 1200px;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .l-header {
    min-width: 100%;
    height: 60px;
  }
}

.l-header_in {
  position: relative;
  height: 100px;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-header_in {
    height: 60px;
  }
}

.l-header_logo {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 503px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .l-header_logo {
    width: 300px;
  }
}

@media screen and (max-width: 374px) {
  .l-header_logo {
    width: 250px;
  }
}

/* -----------------------------------
content
------------------------------------ */
.l-content {
  position: relative;
  z-index: 0;
  padding-top: 100px;
}

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

/* -----------------------------------
footer
------------------------------------ */
.l-footer {
  background: #00A0FF;
  color: #fff;
}

.l-footer_in {
  position: relative;
  padding: 30px 0;
}

.l-footer_box {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.l-footer_box_left {
  font-size: 2.5rem;
  line-height: 1;
  text-align: center;
}

.l-footer_box_right {
  display: inline-block;
  text-align: left;
  margin-top: 20px;
  font-size: 1.5rem;
}

.l-footer_box_right_address {
  text-align: left;
}

.l-footer_box_right_tel li {
  display: inline-block;
}

.l-footer_box_right_tel li a {
  color: #fff;
  text-decoration: none;
}

.l-footer_copyright {
  margin-top: 26px;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer_in {
    padding: 20px 0 15px;
  }
  .l-footer_box {
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }
  .l-footer_box_left {
    font-size: 2.0rem;
    text-align: center;
  }
  .l-footer_box_right {
    margin-top: 15px;
    font-size: 1.2rem;
  }
  .l-footer_copyright {
    margin-top: 10px;
    font-size: 1.0rem;
  }
}

/* -----------------------------------
section
------------------------------------ */
.l-sec {
  padding: 80px 0 10px;
}

@media screen and (max-width: 768px) {
  .l-sec {
    padding: 20px 0 10px;
  }
}

.l-sec_in {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-sec_in {
    max-width: 500px;
    padding: 0 4%;
  }
}

.l-sec_in.-fullWidth {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .l-sec_in.-fullWidth {
    max-width: 500px;
    padding: 0;
  }
}

/* ===================================
Object
=================================== */
/* -----------------------------------
Component
------------------------------------ */
/*
 * _component.scss
 */
/* -----------------------------------
title
------------------------------------ */
.c-secTitle {
  position: relative;
  margin-top: 20px;
  padding: 10px;
  background: #00A0FF;
  border-radius: 4px;
  text-align: center;
}

.c-secTitle img {
  height: 25px;
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .c-secTitle.-policy img {
    margin-left: 80px;
  }
  .c-secTitle.-about img {
    margin-left: 120px;
  }
  .c-secTitle.-report img {
    margin-left: 80px;
  }
  .c-secTitle.-sns img {
    margin-left: 140px;
  }
  .c-secTitle.-contact img {
    margin-left: 90px;
  }
}

@media screen and (max-width: 768px) {
  .c-secTitle {
    padding: 8px;
  }
  .c-secTitle img {
    height: 18px;
  }
}

.c-secTitle2 {
  position: relative;
  max-width: 1000px;
  margin: 20px auto 30px;
  text-align: center;
  overflow: hidden;
}

.c-secTitle2 span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  background: #fff;
  color: #00A0FF;
  font-size: 1.9rem;
}

.c-secTitle2 span:before, .c-secTitle2 span:after {
  content: '';
  display: block;
  width: 1000px;
  height: 1px;
  background: #00A0FF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.c-secTitle2 span:before {
  left: -1020px;
}

.c-secTitle2 span:after {
  right: -1020px;
}

@media screen and (max-width: 768px) {
  .c-secTitle2 span {
    font-size: 1.5rem;
  }
}

/* -----------------------------------
pageTop
------------------------------------ */
.c-pageTop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 50px;
  width: 80px;
  height: 80px;
}

.c-pageTop a {
  transition: .4s ease-in-out;
  display: block;
  width: 80px;
  height: 80px;
  background: #00A0FF;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  border: 5px solid rgba(255, 255, 255, 0.7);
}

.c-pageTop a:hover {
  opacity: .7;
}

.c-pageTop a span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .c-pageTop {
    bottom: 90px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
  .c-pageTop a {
    width: 50px;
    height: 50px;
  }
  .c-pageTop a span {
    font-size: 1.0rem;
    margin-top: 3px;
  }
  .c-pageTop a:hover {
    opacity: 1;
  }
}

/* -----------------------------------
btn
------------------------------------ */
.c-btn.-submit {
  text-decoration: none;
}

.c-btn.-submit span {
  transition: .4s ease-in-out;
  display: inline-block;
  padding: 10px 20px;
  min-width: 175px;
  background: #00A0FF;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 1.9rem;
  letter-spacing: .1em;
}

.c-btn.-submit span:hover {
  opacity: .7;
}

/* -----------------------------------
required
------------------------------------ */
.c-required:after {
  content: "＊";
  color: #00A0FF;
}

/* -----------------------------------
colorBlue
------------------------------------ */
.c-colorBlue {
  color: #00A0FF;
}

/* -----------------------------------
privacyTxt
------------------------------------ */
.c-privacyTxt {
  height: 200px;
  overflow-y: scroll;
  border: 1px solid #9fa0a0;
  padding: 10px;
  border-radius: 5px;
}

/* -----------------------------------
input
------------------------------------ */
.c-input {
  transition: .4s ease-in-out;
  padding: 5px 10px;
  width: 100%;
  min-height: 35px;
  border: 1px solid #9fa0a0;
  background: #fff;
  border-radius: 5px;
  line-height: 1.6;
}

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

.c-input:focus {
  outline: none;
  background: #f0fdff;
  border: 1px solid #00A0FF;
  box-shadow: 0px 0px 5px 0px #999;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

.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 #fff inset;
}

/* -----------------------------------
textarea
------------------------------------ */
.c-textarea {
  transition: .4s ease-in-out;
  padding: 5px 10px;
  width: 100%;
  max-width: 100%;
  min-height: 130px;
  border: 1px solid #9fa0a0;
  background: #fff;
  border-radius: 5px;
}

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

.c-textarea:focus {
  outline: none;
  background: #f0fdff;
  border: 1px solid #00A0FF;
  box-shadow: 0px 0px 5px 0px #999;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

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

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

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

/* -----------------------------------
select
------------------------------------ */
.c-select {
  transition: .4s ease-in-out;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-select {
    display: block;
  }
}

.c-select::after {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background: url(../img/common/ico_arw_b.png) no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  right: 10px;
  pointer-events: none;
  transform: translateY(-50%) rotate(90deg);
}

.c-select select {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 40px 10px 15px;
  min-height: 35px;
  border: 1px solid #9fa0a0;
  background: #fff;
  border-radius: 5px;
  line-height: 1;
  cursor: pointer;
}

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

.c-select select:focus {
  outline: none;
  background: #f0fdff;
  border: 1px solid #00A0FF;
  box-shadow: 0px 0px 5px 0px #999;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

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

.c-radio > input[type=radio] {
  display: none;
}

.c-radio > span {
  padding-left: 30px;
  position: relative;
}

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

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

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

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

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

.c-checkbox > input[type=checkbox] {
  display: none;
}

.c-checkbox > span {
  padding-left: 25px;
  position: relative;
}

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

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

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

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

/* -----------------------------------
Project
------------------------------------ */
/*
 * _project.scss
 */
/* -----------------------------------
.p-gnav
------------------------------------ */
.p-gnav ul {
  position: absolute;
  right: 10px;
  bottom: 20px;
  letter-spacing: -.4em;
}

.p-gnav ul li {
  position: relative;
  display: inline-block;
  letter-spacing: normal;
  padding-left: 10px;
  margin-left: 10px;
  padding-left: 7px;
  margin-left: 7px;
}

.p-gnav ul li:before {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background: #9fa0a0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-gnav ul li:first-child, .p-gnav ul li:last-child {
  padding-left: 0;
  margin-left: 0;
}

.p-gnav ul li:first-child:before, .p-gnav ul li:last-child:before {
  display: none;
}

.p-gnav ul li a {
  display: block;
  padding: 5px 10px;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  border-radius: 3px;
  transition: .4s ease-in-out;
}

.p-gnav ul li a:hover {
  color: #00A0FF;
}

.p-gnav ul li a.-contact {
  background: #00A0FF;
  padding: 5px 15px;
  color: #fff;
  letter-spacing: .1em;
  margin-left: 15px;
}

.p-gnav ul li a.-contact:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .p-gnav {
    transition: .4s ease-out;
    top: -350px;
    position: fixed;
    left: 0;
    width: 100%;
    background: rgba(0, 160, 255, 0.9);
  }
  .p-gnav.is-open {
    top: 0;
  }
  .p-gnav ul {
    position: static;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .p-gnav ul li {
    display: block;
    margin-left: 0;
    padding-left: 0;
  }
  .p-gnav ul li a {
    display: block;
    padding: 10px 15px !important;
    margin-left: 0 !important;
    font-size: 1.4rem;
    color: #fff;
    border-radius: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.p-gnavBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-gnavBtn {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 3%;
    width: 40px;
    height: 40px;
    z-index: 100;
    transform: translateY(-50%);
  }
  .p-gnavBtn span {
    transition: .4s ease-in-out;
    position: absolute;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #666;
  }
  .p-gnavBtn span:nth-of-type(1) {
    top: 25%;
  }
  .p-gnavBtn span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
  }
  .p-gnavBtn span:nth-of-type(3) {
    bottom: 25%;
  }
  .p-gnavBtn.is-open span {
    position: absolute;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #fff;
  }
  .p-gnavBtn.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(-45deg);
    transform: translateY(9px) translateX(0) rotate(-45deg);
  }
  .p-gnavBtn.is-open span:nth-of-type(2) {
    display: none;
  }
  .p-gnavBtn.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) translateX(0) rotate(45deg);
    transform: translateY(-9px) translateX(0) rotate(45deg);
  }
}

.p-secMain {
  padding: 0;
}

@media screen and (min-width: 769px) {
  .p-secMain {
    background: url(../img/index/main_bg.png) no-repeat center;
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .p-secMain {
    background: url(../img/index/main_bg_sp.jpg) no-repeat center;
    background-size: cover;
  }
}

.p-secMain .l-sec_in {
  padding: 0;
  height: 640px;
  max-width: 1100px;
}

.p-secMain_img1 {
  width: calc(1438px / 2);
  padding-top: 40px;
}

.p-secMain_img2 {
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 625px;
}

.p-secMain_img3 {
  width: calc(1198px / 2);
  margin-top: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #000;
}

.p-secMain_txt1 {
  margin-top: 15px;
  width: 600px;
  font-size: 1.3rem;
}

.p-secMain_img4 {
  width: calc(324px / 2);
  margin-top: 25px;
}

.p-secMain_txt2 {
  margin-top: 5px;
  width: 600px;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .p-secMain .l-sec_in {
    height: auto;
    max-width: 500px;
    padding: 0 4%;
  }
  .p-secMain_img1 {
    width: 100%;
    padding-top: 20px;
  }
  .p-secMain_img2 {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .p-secMain_img3 {
    width: 100%;
    margin-top: 15px;
    padding-bottom: 15px;
  }
  .p-secMain_txt1 {
    margin-top: 15px;
    width: 100%;
  }
  .p-secMain_img4 {
    width: 140px;
  }
  .p-secMain_txt2 {
    width: 100%;
    padding-bottom: 20px;
  }
}

.p-secMessage_img1 {
  padding-top: 10px;
  text-align: center;
}

.p-secMessage_img1 img {
  width: calc(1629px / 2);
}

.p-secMessage_txt1 {
  margin-top: 55px;
  text-align: center;
  font-size: 2.0rem;
  line-height: 2.5;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-secMessage_img1 img {
    width: auto;
    height: 60px;
  }
  .p-secMessage_txt1 {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: left;
  }
}

.p-secPolicy_slider {
  margin-top: 40px;
}

.p-secPolicy_cnt {
  margin-top: 50px;
}

.p-secPolicy_cnt dl {
  max-width: 800px;
  margin: 0 auto;
}

.p-secPolicy_cnt dl dt {
  text-align: center;
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 2.7rem;
}

.p-secPolicy_cnt dl dt span {
  position: relative;
  top: -2px;
  display: inline-block;
  width: 27px;
  height: 27px;
  color: #fff;
  line-height: 27px;
  font-weight: bold;
  background: #00A0FF;
  margin-right: 5px;
  border-radius: 50%;
  font-size: 1.6rem;
  vertical-align: middle;
}

.p-secPolicy_cnt dl dd {
  padding: 35px 60px;
  background: #EDF8FF;
  border-radius: 5px;
}

.p-secPolicy_cnt dl dd ul li {
  position: relative;
  padding-left: 25px;
  font-size: 1.6rem;
  padding-bottom: 18px;
  border-bottom: 1px dotted #00a0ff;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}

.p-secPolicy_cnt dl dd ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.p-secPolicy_cnt dl dd ul li:before {
  content: '';
  display: block;
  width: 11px;
  height: 16px;
  background: url(../img/common/ico_arw_b.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 5px;
  left: 0px;
}

.p-secPolicy_cnt dl + dl {
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .p-secPolicy_slider {
    margin-top: 20px;
  }
  .p-secPolicy_cnt {
    margin-top: 30px;
  }
  .p-secPolicy_cnt dl {
    max-width: 800px;
    margin: 0 auto;
  }
  .p-secPolicy_cnt dl dt {
    padding-bottom: 20px;
    font-size: 1.8rem;
  }
  .p-secPolicy_cnt dl dt span {
    top: -2px;
    width: 23px;
    height: 23px;
    line-height: 23px;
    font-size: 1.4rem;
  }
  .p-secPolicy_cnt dl dd {
    padding: 15px 20px;
  }
  .p-secPolicy_cnt dl dd ul li {
    padding-left: 18px;
    font-size: 1.4rem;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .p-secPolicy_cnt dl dd ul li:before {
    width: 8px;
    height: 11px;
  }
  .p-secPolicy_cnt dl + dl {
    margin-top: 30px;
  }
}

.p-secAbout_main {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
}

.p-secAbout_main_img1 {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 85px;
  transform: translateX(-50%);
  width: calc(1596px / 2);
}

.p-secAbout_txt1 {
  margin-top: 55px;
  text-align: center;
  font-size: 2.0rem;
  line-height: 2.0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-secAbout_main {
    margin-top: 20px;
  }
  .p-secAbout_main_img1 {
    position: static;
    z-index: 1;
    left: 50%;
    top: 85px;
    transform: translateX(0);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .p-secAbout_main_img1 img {
    width: auto;
    height: 60px;
  }
  .p-secAbout_txt1 {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: left;
  }
}

.p-movieWrap {
  background: #efefef;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

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

.p-movie {
  max-width: 1060px;
  margin: 0 auto;
}

.p-movie .slick-list {
  overflow: visible;
}

.p-movie_item {
  position: relative;
  background: #fff;
  margin-bottom: 55px;
  width: 470px;
  margin: 0 30px;
}

.p-movie_item:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #dcdddd;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: -1;
}

.p-movie_item_movie {
  position: relative;
  padding-bottom: 55%;
  overflow: hidden;
  cursor: pointer;
}

.p-movie_item_movie_in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-movie_item_movie_in:before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/common/ico_play.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  opacity: .75;
}

.p-movie_item_movie_in img {
  transition: .4s ease-in-out;
  width: 100%;
}

.p-movie_item_movie_in:hover img {
  transform: scale(1.05, 1.05);
}

.p-movie_item_title {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 95px;
  padding: 0px 0 15px;
  border-bottom: 1px dotted #000;
  margin: 20px 30px 15px;
  color: #00A0FF;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.p-movie_item_title p {
  flex-basis: 100%;
  text-align: center;
}

.p-movie_item_title_txt1 {
  font-size: 2.2rem;
}

.p-movie_item_title_txt2 {
  font-size: 1.8rem;
}

.p-movie_item_title_txt3 {
  font-size: 1.4rem;
}

.p-movie_item_title span {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 22px;
  top: 5px;
  left: 0;
  border-radius: 50%;
  font-size: 1.0rem;
}

.p-movie_item_txt {
  font-size: 1.6rem;
  margin: 0 30px 15px;
  min-height: 120px;
}

@media screen and (max-width: 768px) {
  .p-movie_item {
    margin: 0 25px;
  }
  .p-movie_item_movie_in:before {
    width: 40px;
    height: 40px;
  }
  .p-movie_item_title {
    min-height: 90px;
    padding: 0px 0 10px;
    margin: 10px 15px 10px;
  }
  .p-movie_item_title_txt1 {
    font-size: 1.6rem;
  }
  .p-movie_item_title_txt2 {
    font-size: 1.4rem;
  }
  .p-movie_item_title_txt3 {
    font-size: 1.2rem;
  }
  .p-movie_item_title span {
    top: 0px;
    font-size: 0.9rem;
  }
  .p-movie_item_txt {
    font-size: 1.4rem;
    margin: 0 15px 15px;
    min-height: 100px;
  }
}

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

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

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

.p-youtube {
  display: none;
  max-width: 1000px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 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;
  transition: .4s;
  cursor: pointer;
}

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

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

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

.p-secSns_txt1 {
  margin-top: 40px;
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
}

.p-secSns_txt2 {
  margin-top: 30px;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.9;
}

.p-secSns_txt3 {
  margin-top: 50px;
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-secSns_txt1 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
  .p-secSns_txt2 {
    margin-top: 20px;
    font-size: 1.3rem;
  }
  .p-secSns_txt3 {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}

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

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

.p-facebookLink a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: .4s ease-in-out;
}

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

.p-facebookLink a img {
  width: 117px;
}

@media screen and (max-width: 768px) {
  .p-facebookLink a img {
    width: 80px;
  }
}

.p-facebookLink a p {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}

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

.p-snsLink {
  margin-top: 35px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.p-snsLink_item {
  margin: 0 40px;
}

.p-snsLink_item a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: .4s ease-in-out;
}

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

.p-snsLink_item a img {
  width: 90px;
}

.p-snsLink_item a p {
  margin-top: 10px;
  text-align: center;
}

.p-snsLink_item a p strong {
  font-size: 1.5rem;
  font-weight: bold;
}

.p-snsLink_item a p span {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .p-snsLink {
    margin: 30px auto 0;
    max-width: 260px;
    display: block;
  }
  .p-snsLink_item {
    margin: 0 0 20px;
  }
  .p-snsLink_item a {
    display: flex;
  }
  .p-snsLink_item a img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
  .p-snsLink_item a p {
    margin-top: 8px;
    text-align: left;
  }
  .p-snsLink_item a p strong {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .p-snsLink_item a p span {
    font-size: 1.3rem;
  }
}

.p-secReport_txt {
  margin: 40px auto;
  font-size: 1.8rem;
}

.p-secReport_box {
  display: flex;
  justify-content: space-between;
}

.p-secReport_box_facebook {
  flex-basis: 485px;
}

.p-secReport_box_facebook p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00A0FF;
  line-height: 1;
  margin-bottom: 20px;
}

.p-secReport_box_facebook > div {
  border: 1px solid #ddd;
}

.p-secReport_box_img {
  flex-basis: 485px;
}

.p-secReport_box_img img {
  vertical-align: top;
}

.p-secReport_box_img_img2 {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-secReport_txt {
    margin: 20px auto;
    font-size: 1.4rem;
  }
  .p-secReport_box {
    display: block;
  }
  .p-secReport_box_facebook {
    padding: 0% 40px;
  }
  .p-secReport_box_facebook p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .p-secReport_box_img {
    margin-top: 20px;
  }
  .p-secReport_box_img_img2 {
    margin-top: 20px;
  }
}

.p-secContact_txt {
  max-width: 800px;
  margin: 40px auto;
  font-size: 1.8rem;
  text-align: center;
}

.p-secContact_form {
  max-width: 800px;
  margin: 0 auto;
}

.p-secContact_form_title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  padding: 15px;
  border-top: 1px solid #000;
  border-bottom: 1px dotted #231815;
  line-height: 1;
  color: #00A0FF;
}

.p-secContact_form_title2 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  color: #00A0FF;
}

.p-secContact_form_caution {
  margin-top: 40px;
}

.p-secContact_form_txt {
  margin-top: 40px;
  font-size: 1.8rem;
}

.p-secContact_form_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.5rem;
}

.p-secContact_form_box dl {
  flex-basis: 100%;
  margin-top: 35px;
}

.p-secContact_form_box dl.-col2 {
  flex-basis: 48%;
}

.p-secContact_form_box dl.-col3 {
  flex-basis: 22%;
}

.p-secContact_form_box dl dt {
  padding-bottom: 10px;
}

.p-secContact_form_box.-confirm dl dt {
  color: #9fa0a0;
}

.p-secContact_form_box.-confirm dl dd {
  padding-bottom: 10px;
  border-bottom: 1px solid #9fa0a0;
}

.p-secContact_form_mailcaution {
  margin-top: 40px;
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.p-secContact_form_btn {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-secContact_txt {
    margin: 20px auto;
    font-size: 1.4rem;
    text-align: left;
  }
  .p-secContact_form_title {
    font-size: 1.6rem;
    padding: 10px;
  }
  .p-secContact_form_title2 {
    font-size: 1.6rem;
  }
  .p-secContact_form_caution {
    margin-top: 20px;
  }
  .p-secContact_form_txt {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .p-secContact_form_box {
    display: block;
    font-size: 1.5rem;
  }
  .p-secContact_form_box dl {
    margin-top: 25px;
  }
  .p-secContact_form_box.-confirm dl dt {
    color: #9fa0a0;
  }
  .p-secContact_form_box.-confirm dl dd {
    padding-bottom: 10px;
    border-bottom: 1px solid #9fa0a0;
  }
  .p-secContact_form_mailcaution {
    margin-top: 20px;
    text-indent: -1.5em;
    margin-left: 1.5em;
  }
  .p-secContact_form_btn {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* ---------------------------------------
animation
--------------------------------------- */
.js-animation {
  transition: 1.2s ease-in-out;
  opacity: 0;
}

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

.js-animation.-slideup {
  transition: 1.2s ease-out;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}

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

.js-top-animation {
  opacity: 0;
}

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

.js-top-animation.-delay1 {
  transition: opacity 0.6s ease-in-out;
  transition-delay: .2s;
}

.js-top-animation.-delay2 {
  transition: opacity 1.4s ease-in-out;
  transition-delay: .9s;
}

.js-top-animation.-delay3 {
  transition: opacity 0.8s ease-in-out;
  transition-delay: 1.4s;
}

.js-top-animation.-delay4 {
  transition: opacity 0.8s ease-in-out;
  transition-delay: 1.2s;
}

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

/* ===================================
Page
=================================== */
/*
 * _page.scss
 */
/* -----------------------------------
#top
------------------------------------ */

/*# sourceMappingURL=style.css.map */
