html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
html {
  font-size: 62.5%;
}
body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
table,
input,
textarea,
select,
option {
  line-height: 1.1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
img {
  max-width: 100%;
  vertical-align: top;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}
.c-header {
  height: 100px;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
  transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}
@media only screen and (max-width: 1199px){
  .c-header {
    height: 75px;
  }
}
.c-header.is-show{
  position: absolute;
  width: 100%;
  z-index: 999;
  overflow: hidden;
}
.c-header__inner {
  height: 100%;
}
.c-header__text {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #303030;
  letter-spacing: 5px;
  line-height: 1.75;
}
@media only screen and (max-width: 1199px){
  .c-header__text {
    font-size: 1.3rem;
    letter-spacing: 2px;
  }
}
.c-header__text a {
  position: relative;
}
.c-header.is-show .c-header__text{
  justify-content: flex-start;
  padding-left: 48px;
}
@media only screen and (max-width: 1199px){
  .c-header.is-show .c-header__text{
    display: none;
  }
}
.c-header.is-show .c-header__text a{
  color: #fff;
}
.c-header.is-show .c-header__text a:after{
  background-color: #fff;
}
.c-header__text a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 5px;
  right: auto;
  top: auto;
  z-index: 1;
  height: 1px;
  background-color: #303030;
  width: 0;
  -webkit-transition: width 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: width 250ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.c-header__text a:hover:after {
  width: 100%;
}
.c-header.is-active {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  height: 100px;
  width: 100%;
  left: 0;
}
@media only screen and (max-width: 1199px){
  .c-header.is-active {
    height: 75px;
  }
}
.c-header.is-active .c-header__text {
  width: 20%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 50px;
}
@media only screen and (max-width: 1199px){
  .c-header.is-active .c-header__text {
    display: none;
  }
}
.c-header .c-header__logo {
  display: none;
}
.c-header.is-show .c-header__logo {
  display: none;
}
.c-header.is-active .c-header__logo {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-header .c-header__logo img{
  width: 152px;
}
@media only screen and (max-width: 1199px){
  .c-header.is-active .c-header__logo img{
    width: 90px;
  }
}
.c-header.is-hide {
  position: relative;
  height: 100px;
  width: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.c-headersp {
  position: fixed;
  top: 0;
  width: 50%;
  background-color: #fff;
  z-index: 999;
  right: -100%;
  -webkit-transition: right 1s cubic-bezier(0.42, 0, 0.05, 1.04);
  transition: right 1s cubic-bezier(0.42, 0, 0.05, 1.04);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 12.5vw;
}
@media only screen and (max-width: 1199px){
  .c-headersp {
    width: 100%;
    padding: 0 30px 40px;
    justify-content: flex-start;
  }
}
.c-headersp ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-headersp ul li {
  width: 13.75vw;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px){
  .c-headersp ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px){
  .c-headersp ul li:last-child {
    margin-bottom: 0;
  }
}
.c-headersp ul a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #b9b9b9;
}
@media only screen and (max-width: 1199px){
  .c-headersp ul a {
    color: #030303;
  }
}
.c-headersp ul a:hover {
  color: #303030;
  opacity: 1;
}
.c-headersp ul a span:nth-child(1) {
  font-size: 1.75vw;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 1199px){
  .c-headersp ul a span:nth-child(1) {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.c-headersp ul a span:nth-child(2) {
  font-size: 0.875vw;
  line-height: 1.2;
}
@media only screen and (max-width: 1199px){
  .c-headersp ul a span:nth-child(2) {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
.c-headersp__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10px;
}
@media only screen and (max-width: 1199px){
  .c-headersp__social {
    position: absolute;
    right: 30px;
    bottom: 0;
  }
}
.c-headersp__social a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-headersp__social a:nth-child(1) {
  margin-right: 18px;
  letter-spacing: 2px;
}
.c-headersp__social a:nth-child(1) img {
  width: 20px;
  height: 20px;
}
.c-headersp__social a:nth-child(2) img {
  width: 22px;
  height: 22px;
}
@media only screen and (max-width: 1199px){
  .c-gnavisp{
    position: relative;
    padding: 0 10px;
  }
}
.c-menu {
  position: absolute;
  top: 25px;
  right: 70px;
  z-index: 1502;
  cursor: pointer;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media only screen and (max-width: 1199px){
  .c-menu {
    right: 20px;
    top: 15px;
    width: 40px;
    height: 40px;
  }
}
.c-menu__icon {
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  left: 0;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .c-menu__icon {
    height: 1px;
  }
}
.c-header.is-show .c-menu__icon {
  background-color: #646464;
}
.c-header.is-show.is-active .c-menu__icon {
  background-color: #fff;
}
.c-menu__icon:before {
  content: " ";
  display: block;
  height: 2px;
  background: #646464;
}
.c-header.is-show .c-menu__icon:before {
  background: #fff;
}
.c-header.is-show.is-active .c-menu__icon:before {
  background: #646464;
}
.c-menu:hover span:nth-child(1):before {
  -webkit-animation: linemiddleactive 0.8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s
    1;
  animation: linemiddleactive 0.8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
}
.c-menu:hover span:nth-child(2):before {
  -webkit-animation: linemiddleactive 0.8s cubic-bezier(0.58, 0.3, 0.005, 1)
    0.06s 1;
  animation: linemiddleactive 0.8s cubic-bezier(0.58, 0.3, 0.005, 1) 0.06s 1;
}
.c-menu__icon:nth-child(1) {
  width: 50px;
  top: 19px;
}
@media only screen and (max-width: 1199px){
  .c-menu__icon:nth-child(1) {
    width: 100%;
    top: 17px;
  }
}
.c-menu__icon:nth-child(2) {
  width: 30px;
  top: 27px;
}
@media only screen and (max-width: 1199px){
  .c-menu__icon:nth-child(2) {
    right: 0;
    left: auto;
    width: 25px;
    top: 24px;
  }
}
.is-overlay {
  position: fixed;
  z-index: 998;
  background: #000;
  opacity: 0;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.is-overlay.navOpen {
  display: block;
  opacity: 0.4;
  animation-duration: 0.5s;
  animation-name: ovarlayed;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: ovarlayed;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: ovarlayed;
}
.c-headersp__logo{
  display: none;
}
@media only screen and (max-width: 1199px){
  .c-headersp__logo{
    display: block;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px){
  .c-headersp__logo img{
    width: 100px;
  }
}
body.menu-open .c-headersp {
  right: 0;
}
@media only screen and (max-width: 1199px){
  body.menu-open .c-headersp {
    display: block;
    overflow-y: scroll;
  }
}
body.menu-open .c-menu__icon:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(-18deg);
  -ms-transform: translateY(9px) rotate(-18deg);
  transform: translateY(9px) rotate(-18deg);
  top: 15px;
}
body.menu-open .c-menu__icon:nth-child(2) {
  -webkit-transform: translateY(-10px) rotate(18deg);
  -ms-transform: translateY(-10px) rotate(18deg);
  transform: translateY(-10px) rotate(18deg);
  width: 100%;
  top: 33px;
}
body.menu-open .c-header.is-show .c-menu__icon{
  background-color: #fff;
}
body.menu-open .c-header.is-show .c-menu__icon:before{
  background-color: #646464;
}
@-webkit-keyframes linemiddleactive {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50.01% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes linemiddleactive {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50.01% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes ovarlayed {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 0.4;
  }
}
@keyframes ovarlayed {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 0.4;
  }
}
.c-footer {
  padding-top: 135px;
}
@media only screen and (max-width: 1199px){
  .c-footer {
    padding-top: 85px;
  }
}
.c-footer1 {
  border-bottom: 1px solid #d6d6d6;
}
.c-footer1__inner > p {
  font-size: 1.8rem;
  line-height: 1.75;
  text-align: center;
  color: #000;
  font-weight: 500;
  padding-top: 30px;
}
.c-footer1__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 60px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__cnt {
    padding-top: 30px;
  }
}
.c-footer1__item {
  width: 364px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-top: 10px;
  padding-bottom: 45px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__item {
    width: calc(100% - 40px);
    margin: 0 auto;
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 35px;
  }
}
@media only screen and (max-width: 1199px){
  .c-footer1__item:last-child {
    border-bottom: none;
  }
}
.c-footer1__item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 10px);
  top: 0;
  right: 0;
  background-color: #d6d6d6;
}
@media only screen and (max-width: 1199px){
  .c-footer1__item:before {
    display: none;
  }
}
.c-footer1__item h3 {
  font-size: 1.5rem;
  line-height: 2.8333333333;
}
.c-footer1__item dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__item dl {
    padding-top: 13px;
  }
}
.c-footer1__item dl dt {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #303030;
  font-size: 1.3rem;
  line-height: 1.3461538462;
}
.c-footer1__item dl dd {
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.c-footer1__item:nth-child(2) p {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000;
  font-weight: bold;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__item:nth-child(2) p {
    margin-top: 20px;
  }
}
.c-footer1__item:last-child:before {
  display: none;
}
.c-footer1__phone {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  line-height: 1.75;
  font-weight: bold;
  position: relative;
  padding-left: 32px;
  margin-top: 15px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__phone {
    margin-top: 0;
  }
}
.c-footer1__phone:before {
  content: "";
  position: absolute;
  width: 23px;
  height: 25px;
  background: url("../images/ico-phone.svg") no-repeat;
  left: 0;
  top: 22px;
}
.c-footer1__mail {
  width: 255px;
  height: 55px;
  background-color: #b9b9b9;
  border-radius: 1px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.65625;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 22px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__mail {
    margin-top: 5px;
  }
}
.c-footer1__mail:hover {
  opacity: 1;
  background-color: #303030;
}
.c-footer1__mail img {
  width: 20px;
  height: 15px;
  margin-right: 18px;
}
.c-footer1__line {
  margin-top: 20px;
}
@media only screen and (max-width: 1199px){
  .c-footer1__line {
    margin-top: 10px;
  }
}
.c-footer1__line img{
  width: 125px;
}
.c-footer2 {
  padding-top: 48px;
  padding-bottom: 65px;
}
@media only screen and (max-width: 1199px){
  .c-footer2 {
    padding-top: 15px;
    padding-bottom: 50px;
  }
}
.c-footer2__logo {
  padding-left: 54px;
}
@media only screen and (max-width: 1199px){
  .c-footer2__logo {
    padding-left: 0;
  }
}
.c-footer2__logo a{
  display: flex;
  justify-content: center;
}
.c-footer2__logo img{
  width: 246px;
}
.c-footer2__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-footer2__left {
  width: 410px;
}
@media only screen and (max-width: 1199px){
  .c-footer2__left {
    width: 100%;
  }
}
.c-footer2__right {
  width: calc(100% - 410px);
  padding-right: 80px;
  padding-top: 45px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .c-footer2__right {
    width: 100%;
    padding: 10px 0px 0px;
  }
}
.c-footer2__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex!important;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 10px;
}
@media only screen and (max-width: 1199px){
  .c-footer2__social {
    padding-top: 5px;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 1199px){
  .c-footer2__social.pc-only {
    display: none!important;
  }
}
.c-footer2__social a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-footer2__social a:nth-child(1) {
  margin-right: 18px;
}
.c-footer2__social a:nth-child(1) img {
  width: 20px;
  height: 20px;
}
.c-footer2__social a:nth-child(2) img {
  width: 22px;
  height: 22px;
}
.c-footer2__link {
  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;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #b9b9b9;
  padding-top: 10px;
}
@media only screen and (max-width: 1199px){
  .c-footer2__link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 30px;
    margin-top: 35px;
    color: #010101;
    padding: 0 100px 0 35px;
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
}
.c-footer2__link a:hover {
  color: #303030;
  opacity: 1;
}
@media only screen and (max-width: 1199px){
  .c-footer2__text{
    padding: 0 35px;
  }
}
.c-footer2__text h3 {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 10px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px){
  .c-footer2__text h3 {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }
}
.c-footer2__text h3 span {
  font-size: 1.3rem;
  line-height: 1.75;
  letter-spacing: 3px;
}
@media only screen and (max-width: 1199px){
  .c-footer2__text h3 span {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
}
.c-footer2__text p {
  font-size: 1.2rem;
  line-height: 2.3333333333;
  font-weight: 500;
  letter-spacing: 1px;
}
.c-footer2__copyright {
  font-size: 1.1rem;
  line-height: 1.75;
  text-align: right;
  padding-top: 50px;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .c-footer2__copyright {
    padding-top: 65px;
    text-align: center;
  }
}
.c-sidebar {
  font-size: inherit;
}
/* Breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  margin-bottom: 80px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .c-breadcrumb {
    margin-bottom: 40px;
  }
}
.c-breadcrumb--diff {
  padding-bottom: 0px;
}
.c-breadcrumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cbcbcb;
  bottom: 0px;
  left: 0;
}
@media only screen and (max-width: 1199px) {
  .c-breadcrumb:before {
    bottom: 0px;
  }
}
.c-breadcrumb--diff:before {
  bottom: 0px;
}
.c-breadcrumb__inner {
  padding: 10px 0px 11px;
  color: #4d4d4d;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  font-family: "noto-sans-cjk-jp", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .c-breadcrumb__inner {
    padding: 10px 15px 11px;
  }
}
.c-breadcrumb--subpage .c-breadcrumb__inner{
  color: #cccccc;
}
.c-breadcrumb__inner a {
  padding-right: 30px;
  cursor: pointer;
  position: relative;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 16px;
}
.c-breadcrumb__inner h1{
  font-size: 1.6rem;
    font-weight: 400;
    margin: 0;
  line-height: 1;
}
.c-breadcrumb__inner a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  background: url("../images/ico-right.png") no-repeat;
  background-size: cover;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-breadcrumb--subpage .c-breadcrumb__inner a:before{
  background: url("../images/ico-rightwhite.png") no-repeat;
}
.c-breadcrumb__inner a i {
  font-size: 1.5rem;
}
body {
  color: #303030;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.5;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}
.l-container {
  margin: 0 auto;
  max-width: 100%;
  width: 1200px;
}
.c-btn1 {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #b9b9b9;
  letter-spacing: 2px;
  position: relative;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .c-btn1 {
    padding-right: 20px;
    color: #010101;
  }
}
.c-btn1:hover {
  color: #303030;
  opacity: 1;
}
.c-btn1:hover:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 12px;
  width: 10px;
  height: 11px;
  background: url("../images/ico-righthover.svg") no-repeat;
}
.c-btn1:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 12px;
  width: 10px;
  height: 11px;
  background: url("../images/ico-right.svg") no-repeat;
}
@media only screen and (max-width: 1199px) {
  .c-btn1:before {
    right: 0;
  }
}
.c-btn1.is-hover:before{
  animation: rotate_anime_btn 0.5s linear;
}
.c-btn2{
  max-width: 730px;
  width: 100%;
  height: 130px;
  margin: 0 auto;
  border: 1px dashed rgba(227, 221, 221, 1);
  border-radius: 1px;
  padding: 10px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .c-btn2{
    width: calc(100% - 40px);
  }
}
.c-btn2:before{
  content: "";
  position: absolute;
  height: 56px;
  width: 1px;
  background-color: #808080;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.c-btn2 a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2efef;
  font-size: 1.6rem;
  line-height: 2.125;
  position: relative;
}
.c-btn2 a:hover{
  background-color: #303030;
  color: #fff;
  opacity: 1;
}
.c-btn2 a span{
  position: relative;
}
.c-btn2 a span:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 7px;
  left: 0;
  background-color: #303030;
}
.c-btn2 a:hover span:before{
  background-color: #fff;
}
.c-btn2--1{
  border: 1px dashed rgba(255, 255, 255, 1);
}
@media only screen and (max-width: 1199px) {
  .c-btn2--1{
    width: 100%;
  }
}
.c-btn2--1 a{
  background-color: #fff;
} 
.c-btn__contact {
  width: 50px;
  height: 200px;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  z-index: 1000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.75;
}
.c-btn__contact svg {
  position: absolute;
  width: 13px;
  height: 7px;
  background: url("../images/ico-down.svg") no-repeat;
  bottom: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-btn__contact:hover {
  opacity: 1;
}
.c-btn__contact:hover:before {
  background: #303030;
}
.c-btn__contact:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  z-index: -1;
}
/*.c-btn__contact:hover svg{
  animation: arrowDown 1s ease-in-out;
}*/
.c-btn__top {
  position: absolute;
  right: 35px;
  bottom: 73px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  width: 10px;
  height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #000;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .c-btn__top {
    bottom: 100px;
  }
}
.c-btn__top svg {
  position: absolute;
  width: 9px;
  height: 86px;
  right: -6px;
  top: 0;
}
.c-btn__top svg polyline {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  animation: none;
}
.c-btn__top:hover svg polyline {
  animation: lineAppearDisappear 0.8s ease-in-out forwards;
}
@media only screen and (max-width: 1199px){
  .c-title1{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.c-title1 h2 {
  font-size: 3rem;
  line-height: 1.4166666667;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
}
.c-title1 p {
  font-size: 1.2rem;
  line-height: 1.9375;
  font-weight: 500;
  letter-spacing: 2px;
  padding-top: 5px;
}
.c-title1--1 h2:before {
  content: "";
  position: absolute;
  width: 37px;
  height: 21px;
  background: url("../images/title1-bg.svg") no-repeat;
  top: -15px;
  left: -25px;
}
.c-title1--2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-title1--2 h2:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 38px;
  background: url("../images/title2-bg.svg") no-repeat;
  top: -35px;
  left: -20px;
}
.c-title1--3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 1199px){
  .c-title1--leftsp{
    align-items: flex-start;
  }
}
.c-title2 h2 {
  font-size: 5.2rem;
  line-height: 1.4166666667;
  letter-spacing: 2px;
  font-weight: 400;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .c-title2 h2 {
    font-size: 2.6rem;
  }
}
.c-title2 p {
  font-size: 1.6rem;
  line-height: 1.9375;
  font-weight: 500;
  letter-spacing: 2px;
  padding-top: 5px;
}
@media only screen and (max-width: 1199px){
  .c-title2 p {
    font-size: 1.2rem;
  }
}
.c-title2 h2:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 38px;
  background: url("../images/title2-bg.svg") no-repeat;
  top: -20px;
  left: -45px;
}
@media only screen and (max-width: 1199px){
  .c-title2 h2:before {
    top: -40px;
    left: -5px;
  }
}
.c-title2--1{
  padding-left: 50px;
}
@media only screen and (max-width: 1199px){
  .c-title2--1{
    padding-left: 30px;
  }
}
.c-title2--1 h2:before {
  background: url("../images/ico-heart1.svg") no-repeat;
  top: -15px;
}
@media only screen and (max-width: 1199px){
  .c-title2--1 h2:before {
    top: -35px;
    width: 30px;
    left: -5px;
  }
}
@media only screen and (max-width: 1199px){
  .c-title2--flow{
    padding-left: 30px;
  }
}
.c-title2--flow h2:before{
  width: 40px;
  height: 40px;
  background: url("../images/ico-flow.svg") no-repeat;
}
@media only screen and (max-width: 1199px){
  .c-title2--flow h2:before{
    top: -40px;
    left: -5px;
  }
}
.c-title2--voice{
  padding-left: 45px;
}
@media only screen and (max-width: 1199px){
  .c-title2--voice{
    padding-left: 35px;
  }
}
.c-title2--voice h2:before{
  width: 40px;
  height: 40px;
  top: -15px;
  background: url("../images/ico-voice.svg") no-repeat;
}
@media only screen and (max-width: 1199px){
  .c-title2--voice h2:before{
    top: -40px;
    left: -10px;
  }
}
.c-title2--faq{
  padding-left: 60px;
}
@media only screen and (max-width: 1199px){
  .c-title2--faq{
    padding-left: 40px;
  }
}
.c-title2--faq h2:before{
  display: none;
}
.c-title2--contact{
  padding-left: 15px;
}
@media only screen and (max-width: 1199px){
  .c-title2--contact{
    padding-left: 35px;
  }
}
.c-title2--contact h2:before{
  display: none;
}
.c-title3 h2{
  font-size: 3rem;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 1199px){
  .c-title3 h2{
    font-size: 2.4rem;
  }
}
.c-title4 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  height: 55px;
  background-color: #303030;
  line-height: 1.8;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding-left: 15px;
}
.c-gnav li {
  display: inline-block;
}
.c-gnav li + li {
  margin-left: 30px;
}
.c-gnav a {
  text-transform: capitalize;
}
.c-mv1 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .c-mv1 {
    height: 400px;
  }
  .c-mv1 *{
    height: 100%;
  }
}
@media only screen and (max-width: 1199px){
  .c-mv1--subpage{
    height: 230px;
  }
}
.c-mv1:before {
  content: "";
  position: absolute;
  left: -188px;
  top: -35px;
  background: url("../images/mainvisual-bg2.svg") no-repeat;
  width: 817px;
  height: 193px;
  z-index: 100;
}
@media only screen and (max-width: 1199px){
  .c-mv1:before {
    top: -100px;
  }
}
.c-mv1--subpage .c-mv1__inner:before {
  display: none;
}
.c-mv1--subpage:before{
  display: none;
}
.c-mv1--subpage:after{
  display: none;
}
.c-mv1:after {
  content: "";
  position: absolute;
  right: -280px;
  bottom: 0px;
  background: url("../images/mainvisual-bg3.svg") no-repeat;
  background-size: cover;
  width: 782px;
  height: 188px;
  z-index: 100;
}
@media only screen and (max-width: 1199px){
  .c-mv1:after {
    bottom: -100px;
  }
}
@media only screen and (max-width: 1199px){
  .c-mv1__inner{
    height: 100%;
  }
}
.c-mv1__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/mainvisual-bg1.svg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 100;
}
@media only screen and (max-width: 1199px){
  .c-mv1__inner:before {
    display: none;
  }
}
.c-mv1__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1199px){
  .c-mv1--subpage .c-mv1__inner img {
    object-fit: cover;
  }
}
.c-mv1__slider .slick-slide img{
  -webkit-transition: linear 8s;
  transition: linear 8s;
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
}
.c-mv1__slider .slick-slide.is-moving img{
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.c-mv1__logo{
  position: absolute;
  width: 280px;
  height: 219px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1199px){
  .c-mv1__logo{
    width: 200px;
    height: 157px;
  }
}
.c-post1 {
  text-align: center;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}
@media only screen and (max-width: 1199px){
  .c-post1 {
    width: 100%;
  }
}
.c-post1.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.c-post1__title {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
  padding-top: 40px;
  padding-bottom: 40px;
}
.c-post1__text {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 500;
}
.c-post1:nth-child(2) {
  margin: 0 90px;
}
@media only screen and (max-width: 1199px){
  .c-post1:nth-child(2) {
    margin: 90px 0px;
  }
}
.c-post2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}
@media only screen and (max-width: 1199px){
  .c-post2 {
    padding-right: 40px;
  }
}
.c-post2.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.c-post2:nth-child(1) {
  margin-right: 110px;
}
@media only screen and (max-width: 1199px){
  .c-post2:nth-child(1) {
    margin-right: 0;
    margin-bottom: 105px;
  }
}
.c-post2__cnt {
  display: flex;
}
@media only screen and (max-width: 1199px){
  .c-post2__cnt {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.c-post2__text {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 23px;
}
@media only screen and (max-width: 1199px){
  .c-post2__text {
    width: 100%;
    text-orientation: unset;
    writing-mode: unset;
    padding-right: 0;
    padding-left: 25px;
    justify-content: flex-start;
    padding-top: 15px;
  }
}
.c-post2__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 14px;
}
.c-post2__box p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.c-post2__box p:nth-child(1) {
  width: 33px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: -40px;
}
.c-post2__box p:nth-child(1):before {
  content: "";
  position: absolute;
  width: 34px;
  height: 17px;
  top: 0;
  left: 0;
  background: url("../images/top4-image2.svg") no-repeat;
}
.c-post2__box p:nth-child(1):after {
  content: "";
  position: absolute;
  width: 34px;
  height: 17px;
  bottom: 0;
  left: 0;
  background: url("../images/top4-image3.svg") no-repeat;
}
.c-post2__box p:nth-child(2) {
  width: 33px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  padding-top: 90px;
}
.c-post3 {
  background-color: #fff;
  width: 330px;
  text-align: center;
  padding-bottom: 150px;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}
@media only screen and (max-width: 1199px){
  .c-post3 {
    padding-bottom: 35px;
    width: 100%;
  }
}
.c-post3.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.c-post3--1{
  color: #000;
  background-color: transparent;
}
.c-post3:nth-child(2) {
  margin: 0 36px;
}
@media only screen and (max-width: 1199px){
  .c-post3:nth-child(2) {
    margin: 0;
  }
}
.c-post3__image {
  padding-top: 38px;
  text-align: center;
}
.c-post3__image img {
  width: 32px;
  height: 29px;
}
.c-post3__title {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 500;
  padding-top: 10px;
}
@media only screen and (max-width: 1199px){
  .c-post3__title {
    padding-top: 0;
  }
}
.c-post3--1 .c-post3__title {
  font-size: 1.8rem;
}
.c-post3__text {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 500;
  padding-top: 90px;
  position: relative;
}
.c-post3--1 .c-post3__text {
  text-align: left;
}
.c-post3__text:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 15px;
  background-color: gray;
}
.c-post3--2{
  width: 440px;
  padding: 73px 45px 45px;
  background-color: transparent;
  position: relative;
  z-index: 10;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .c-post3--2{
    width: 100%;
    padding: 53px 40px 25px;
  }
}
.c-post3--2:nth-child(2){
  margin: 0;
}
.c-post3--2:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-post3--2 .c-post3__title{
  font-size: 1.8rem;
  line-height: 1.88888888889;
}
.c-post3--2 .c-post3__title p:first-child{
  font-size: 2.4rem;
  line-height: 1.75;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
}
.c-post3--2 .c-post3__text {
  text-align: left;
  padding-top: 125px;
}
.c-post3--2 .c-post3__text:before{
  top: 35px;
}
.c-post4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #efefef;
  height: 180px;
}
@media only screen and (max-width: 1199px){
  .c-post4 {
    flex-wrap: wrap;
    border-top: none;
    height: auto;
  }
}
.c-post4:hover {
  background: #f2f2f2;
}
@media only screen and (max-width: 1199px){
  .c-post4:nth-child(2){
    margin: 50px 0px;
  }
}
.c-post4:last-child {
  border-bottom: 1px solid #efefef;
}
@media only screen and (max-width: 1199px){
  .c-post4:last-child {
    border-bottom: none;
  }
}
.c-post4:hover {
  opacity: 1;
}
.c-post4__left {
  width: 330px;
}
@media only screen and (max-width: 1199px){
  .c-post4__left {
    width: 100%;
    height: 250px;
  }
}
.c-post4__left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-post4__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 330px);
}
@media only screen and (max-width: 1199px){
  .c-post4__right {
    width: 100%;
    flex-wrap: wrap;
  }
}
.c-post4__box {
  width: 225px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 50px;
}
@media only screen and (max-width: 1199px){
  .c-post4__box {
    width: 100%;
    padding-left: 0;
    padding-top: 25px;
  }
}
.c-post4__box p {
  font-weight: 500;
  line-height: 1.75;
  color: #000;
}
.c-post4__box p:nth-child(1) {
  font-size: 1.1rem;
  position: relative;
}
.c-post4__box p:nth-child(1):before {
  content: "";
  position: absolute;
  width: 58px;
  height: 1px;
  background-color: #000;
  bottom: 3px;
  left: 0;
}
.c-post4__box p:nth-child(2) {
  font-size: 1.6rem;
}
@media only screen and (max-width: 1199px){
  .c-post4__box p:nth-child(2) {
    padding-top: 5px;
    padding-bottom: 15px;
  }
}
.c-post4__text {
  width: calc(100% - 225px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  padding-right: 140px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .c-post4__text {
    width: 100%;
    padding-right: 0;
  }
}
.c-post4__text:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 11px;
  background: url("../images/ico-right.svg") no-repeat;
}
@media only screen and (max-width: 1199px){
  .c-post4__text:before {
    display: none;
  }
}
.c-post4:hover .c-post4__text:before {
  background: url("../images/ico-righthover.svg") no-repeat;
}
.c-post4__text.is-hover:before{
  animation: rotate_anime_btn1 0.5s linear;
}
.c-post4__text p{
  position: relative;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
@media only screen and (max-width: 1199px){
  .c-post4__text p{
    -webkit-line-clamp: none;
  }
}
.c-post5 {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.c-post5:nth-child(2):before{
  content: "";
  position: absolute;
  width: 816px;
  height: 192px;
  right: -350px;
  bottom: -85px;
  background: url(../images/top4-image4.svg) no-repeat;
}
@media only screen and (max-width: 1199px){
  .c-post5:nth-child(2):before{
    display: none;
  }
}
.c-post5:nth-child(2){
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1199px){
  .c-post5:nth-child(2){
    flex-direction: unset;
  }
}
.c-post5 + .c-post5{
  margin-top: 210px;
}
@media only screen and (max-width: 1199px){
  .c-post5 + .c-post5{
    margin-top: 100px;
  }
}
.c-post5__left {
  width: 890px;
}
@media only screen and (max-width: 1199px){
  .c-post5__left {
    width: 100%;
  }
}
.c-post5__right {
  width: calc(100% - 890px);
  padding-top: 15px;
}
@media only screen and (max-width: 1199px){
  .c-post5__right {
    width: 100%;
    padding: 55px 10px 0px;
  }
}
.c-post5__right img{
  width: 100%;
  height: 100%;
}
.c-post5__title{
  padding-left: 45px;
}
@media only screen and (max-width: 1199px){
  .c-post5__title{
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1199px){
  .c-post5__title img{
    width: 100px;
  }
}
.c-post5__title h2{
  padding-left: 93px;
  font-size: 4.4rem;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1199px){
  .c-post5__title h2{
    padding-left: 10px;
    padding-top: 30px;
    font-size: 2rem;
  }
}
.c-post5__text > p{
  font-size: 1.8rem;
  line-height: 1.88888888889;
  color: #000;
}
.c-post5__text{
  padding-left: 190px;
  padding-top: 60px;
}
@media only screen and (max-width: 1199px){
  .c-post5__text{
    padding: 30px 40px 0;
  }
}
.c-post5__txt{
  font-size: 1.4rem;
  line-height: 2.14285714286;
  color: #000;
  padding-top: 35px;
}
@media only screen and (max-width: 1199px){
  .c-post5__txt{
    padding-top: 30px;
  }
}
.c-post5__txt p + p{
  padding-top: 30px;
}
.c-post6 {
  display: flex;
}
.c-post6__left {
  width: 230px;
}
@media only screen and (max-width: 1199px){
  .c-post6__left {
    width: 140px;
  }
}
.c-post6__right {
  width: calc(100% - 230px);
  padding-left: 30px;
  padding-top: 27px;
}
@media only screen and (max-width: 1199px){
  .c-post6__right {
    width: calc(100% - 140px);
    padding-left: 20px;
    padding-top: 25px;
  }
}
.c-post6__title{
  padding-left: 20px;
  position: relative;
}
.c-post6__title:before{
  content: "";
  position: absolute;
  width: 2px;
  height: 37px;
  background-color: #ffb0ba;
  left: 0;
  top: 0;
}
.c-post6__title h2{
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
}
.c-post6__title p{
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ff8c9b;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.c-post6__text{
  font-size: 1.4rem;
  font-weight: 500;
  padding-top: 35px;
}
.c-post7{
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  padding-bottom: 54px;
}
@media only screen and (max-width: 1199px){
  .c-post7{
    width: calc(100% - 20px);
    margin: 0 auto;
    padding-bottom: 30px;
  }
}
.c-post7 + .c-post7{
  margin-top: 80px;
}
.c-post7:before{
  content: "";
  position: absolute;
  width: 1px;
  height: 56px;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #808080;
}
.c-post7--1:before{
  display: none;
}
.c-post7__step{
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 39px;
}
.c-post7 > h3{
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.75;
  color: #000;
  padding-top: 75px;
}
.c-post7__text{
  font-size: 1.5rem;
  line-height: 2;
  color: #000;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1199px){
  .c-post7__text{
    text-align: left;
    padding: 40px 30px 0px;
  }
}
.c-post7__text p + p{
  padding-top: 25px;
}
.c-post7__box{
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  background : rgba(132, 210, 207, 0.15);
  padding-top: 30px;
  padding-bottom: 45px;
}
@media only screen and (max-width: 1199px){
  .c-post7__box{
    width: calc(100% - 20px);
    padding: 27px 20px 25px;
    margin-top: 35px;
  }
}
.c-post7__box h4{
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 600;
  color: #000;
  text-align: center;
}
.c-post7__txt{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-size: 1.4rem;
  line-height: 2.14285714286;
  padding-top: 10px;
}
.c-post7__txt ul li{
  position: relative;
  padding-left: 10px;
}
.c-post7__txt ul li:before{
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 13px;
  left: 0;
  background: url('../images/ico-bullet.svg') no-repeat;
}
.c-post7__txt ul li a{
  text-decoration: underline;
}
.c-post7__txt > p{
  margin-left: -25px;
}
@media only screen and (max-width: 1199px){
  .c-post7__txt > p{
    margin-left: 0;
  }
}
.c-post7__image{
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #d5d5d5;
  padding-top: 20px;
}
@media only screen and (max-width: 1199px){
  .c-post7__image{
    width: calc(100% - 20px);
    margin-top: 35px;
  }
}
.c-post8{
  display: flex;
}
@media only screen and (max-width: 1199px){
  .c-post8{
    flex-wrap: wrap;
  }
}
.c-post8 + .c-post8{
  margin-top: 150px;
}
@media only screen and (max-width: 1199px){
  .c-post8 + .c-post8{
    margin-top: 140px;
  }
}
.c-post8__left{
  width: 395px;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .c-post8__left{
    width: 100%;
    flex-direction: row-reverse;
    padding: 0 25px;
  }
}
.c-post8:nth-child(1) .c-post8__left:before{
  content:"";
  position: absolute;
  width: 816px;
  height: 192px;
  right: 115px;
  top: calc(50% + 70px);
  background: url(../images/top4-image4.svg) no-repeat;
}
@media only screen and (max-width: 1199px){
  .c-post8:nth-child(1) .c-post8__left:before{
    display: none;
  }
}
.c-post8__right{
  width: calc(100% - 395px);
  padding-left: 80px;
  padding-top: 25px;
  padding-bottom: 50px;
  border-left: 1px solid #d6d6d6;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .c-post8__right{
    width: 100%;
    border-left: none;
    padding: 25px;
  }
}
.c-post8:nth-child(1) .c-post8__right:before{
  content: "";
  position: absolute;
  width: 816px;
  height: 192px;
  left: 400px;
  bottom: -115px;
  background: url(../images/top4-image4.svg) no-repeat;
}
@media only screen and (max-width: 1199px){
  .c-post8:nth-child(1) .c-post8__right:before{
    left: 0;
    bottom: -100px;
  }
}
.c-post8__text{
  margin-right: 48px;
}
@media only screen and (max-width: 1199px){
  .c-post8__text{
    margin-right: 0px;
    margin-left: 10px;
    margin-top: -40px;
    padding-right: 13px;
  }
}
.c-post8__text p{
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 2.65625;
  font-weight: 500;
}
.c-post8__text p:nth-child(1){
  width: 33px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  padding-top: 30px;
  padding-bottom: 30px;
}
.c-post8__text p:nth-child(1):before{
  content: "";
  position: absolute;
  width: 34px;
  height: 17px;
  top: 0;
  left: 0;
  background: url(../images/top4-image2.svg) no-repeat;
}
.c-post8__text p:nth-child(1):after{
  content: "";
  position: absolute;
  width: 34px;
  height: 17px;
  bottom: 0;
  left: 0;
  background: url(../images/top4-image3.svg) no-repeat;
}
.c-post8__text p:nth-child(2){
  width: 33px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  padding-top: 30px;
}
.c-post8__box{
  width: calc(100% - 81px);
}
@media only screen and (max-width: 1199px){
  .c-post8__box{
    width: 100%;
  }
}
.c-post8__image img{
  width: 100%;
}
.c-post8__about{
  font-size: 1.3rem;
  line-height: 3.07692307692;
  font-weight: 500;
  padding-top: 25px;
}
@media only screen and (max-width: 1199px){
  .c-post8__about{
    padding-left: 10px;
  }
}
.c-post8__right h3{
  font-size: 2rem;
  line-height: 1.5;
}
.c-post8__txt{
  font-size: 1.5rem;
  line-height: 2;
  padding-top: 30px;
}
.c-post8__txt p + p{
  padding-top: 25px;
}
.c-post9 {
  width: 100%;
  padding: 20px 15px;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: -webkit-box;
  display: flex;
}

.c-post9:nth-child(1) {
  border-top: 1px solid #dddddd;
}

.c-post9__image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-post9__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.c-post9__text {
  width: 150px;
}

.c-post9__date {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.c-post9--1 .c-post9__date{
  color: #ffffff;
}

.c-post9__date:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../images/ico-clock.png) no-repeat;
  width: 16px;
  height: 16px;
}

.c-post9--1 .c-post9__date:before{
  background: url(../images/ico-clockwhite.svg) no-repeat;
  width: 14px;
  height: 14px;
  top: 2px;
}

.c-post9__text a {
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
  line-height: 1.5;
  color: #333333;
}

.c-post9--1 .c-post9__text a {
  color: #ffffff;
}
.inv {
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}
.inv.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    visibility 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s,
    -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.p-top {
  padding-top: 100px;
}
.p-top1 {
  padding-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .p-top1 {
    padding-top: 18px;
  }
}
.p-top1__inner {
  padding-top: 225px;
}
@media only screen and (max-width: 1199px) {
  .p-top1__inner {
    padding: 40px 10px 0px;
  }
}
.p-top1__title {
  text-align: center;
}
.p-top1__title h2 {
  font-size: 3rem;
  letter-spacing: 5px;
  line-height: 1.75;
}
@media only screen and (max-width: 1199px) {
  .p-top1__title h2 {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}
.p-top1__title p {
  font-size: 1.2rem;
  line-height: 1.75;
  padding-top: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .p-top1__title p {
    font-size: 1rem;
    padding-top: 0px;
  }
}
.p-top1__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .p-top1__cnt {
    flex-direction: column-reverse;
  }
}
.p-top1__left {
  width: 47.5%;
  padding-left: 10px;
}
@media only screen and (max-width: 1199px) {
  .p-top1__left {
    width: 100%;
  }
}
.p-top1__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-top1__right {
  width: 52.5%;
  padding-left: 90px;
  padding-top: 90px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .p-top1__right {
    width: 100%;
    padding-left: 0;
    padding-top: 70px;
  }
}
.p-top1__text {
  font-size: 1.4rem;
  line-height: 2.0714285714;
  font-weight: 500;
  padding-top: 65px;
}
@media only screen and (max-width: 1199px) {
  .p-top1__text {
    text-align: center;
  }
}
.p-top1__text p + p {
  padding-top: 25px;
}
.p-top2 {
  padding-top: 200px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 1199px) {
  .p-top2 {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .p-top2__inner {
    padding: 0 20px;
  }
}
.p-top2__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 100px;
}
@media only screen and (max-width: 1199px) {
  .p-top2__cnt {
    flex-wrap: wrap;
  }
}
.p-top2__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 85px;
}
@media only screen and (max-width: 1199px) {
  .p-top3{
    padding: 0 10px;
  }
}
.p-top3 img {
  width: 100%;
}
.p-top4 {
  padding-top: 285px;
  padding-bottom: 125px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .p-top4 {
    padding-top: 135px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .p-top4__inner {
    padding: 0 15px;
  }
}
.p-top4__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-top4__left {
  width: 260px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-top4__left {
    width: 100%;
  }
}
.p-top4__left:before {
  content: "";
  position: absolute;
  width: 816px;
  height: 192px;
  right: 0;
  top: 65px;
  background: url("../images/top4-image4.svg") no-repeat;
}
.p-top4__right {
  width: calc(100% - 260px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1199px){
  .p-top4__right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 130px;
  }
}
.p-top4__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 45px;
  padding-right: 45px;
}
@media only screen and (max-width: 1199px){
  .p-top4__btn {
    padding-right: 25px;
  }
}
.p-top5 {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 45px;
}
@media only screen and (max-width: 1199px){
  .p-top5 {
    padding-top: 105px;
  }
}
.p-top5:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/top5-bg.png") no-repeat;
  z-index: -1;
}
.p-top5:after {
  content: "";
  position: absolute;
  width: 2148px;
  height: 124px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 210px;
  background: url("../images/top5-line.svg") no-repeat;
}
@media only screen and (max-width: 1199px) {
  .p-top5__inner {
    padding: 0 15px;
  }
}
.p-top5__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 130px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px){
  .p-top5__cnt {
    padding-top: 65px;
  }
}
.p-top5__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 10px;
}
@media only screen and (max-width: 1199px){
  .p-top5__btn {
    padding-top: 50px;
    padding-right: 25px;
  }
}
.p-top6 {
  padding-top: 260px;
  padding-bottom: 170px;
}
@media only screen and (max-width: 1199px){
  .p-top6 {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 1199px){
  .p-top6__inner{
    padding: 0 40px;
  }
}
.p-top6__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 25px;
}
.p-top6__cnt {
  padding-top: 65px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-top7 {
  background-color: #f5fbfb;
  padding-top: 90px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1199px){
  .p-top7 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 1199px){
  .p-top7__inner {
    padding: 0px 20px;
  }
}
.p-top7__cnt {
  padding-top: 85px;
}
@media only screen and (max-width: 1199px){
  .p-top7__cnt {
    padding-top: 60px;
  }
}
.p-top7 dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 115px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .p-top7 dl {
    flex-wrap: wrap;
    height: auto;
    padding: 25px 0 35px;
  }
}
.p-top7 dl:before {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  right: 0;
  background-color: #303030;
  top: 0;
}
@media only screen and (max-width: 1199px){
  .p-top7 dl:before {
    width: 100%;
  }
}
.p-top7 dl:last-child:after {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  right: 0;
  background-color: #303030;
  bottom: 0;
}
@media only screen and (max-width: 1199px){
  .p-top7 dl:last-child:after {
    width: 100%;
  }
}
.p-top7 dl dt {
  padding-left: 70px;
  width: 450px;
  font-size: 2rem;
  line-height: 1.75;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-top7 dl dt {
    width: 100%;
    padding-left: 65px;
  }
}
.p-top7 dl dd {
  width: calc(100% - 450px);
  font-size: 1.4rem;
  line-height: 1.75;
}
@media only screen and (max-width: 1199px){
  .p-top7 dl dd {
    width: 100%;
    padding-top: 25px;
    padding-left: 65px;
  }
}
.p-top7__number {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 39px;
  height: 46px;
}
.p-top7__btn {
  padding-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media only screen and (max-width: 1199px){
  .p-top7__btn {
    padding-right: 20px;
  }
}
.p-top8 {
  padding-top: 120px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-top8 {
    padding-top: 65px;
    padding-bottom: 70px;
  }
}
.p-top8:before {
  content: "";
  position: absolute;
  width: 816px;
  height: 192px;
  right: -216px;
  top: 475px;
  background: url(../images/top4-image4.svg) no-repeat;
}
@media only screen and (max-width: 1199px){
  .p-top8:before {
    display: none;
  }
}
.p-top8__cnt {
  padding-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px){
  .p-top8__cnt {
    padding: 40px 20px 0px;
  }
}
.p-top8__left {
  width: 480px;
}
@media only screen and (max-width: 1199px){
  .p-top8__left {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px){
  .p-top8__left img{
    width: 100%;
  }
}
.p-top8__right {
  width: calc(100% - 480px);
  padding-left: 85px;
}
@media only screen and (max-width: 1199px){
  .p-top8__right {
    width: 100%;
    padding: 0 20px;
  }
}
.p-top8__right h2 {
  font-size: 2.8rem;
  line-height: 1.75;
  letter-spacing: 2px;
  padding-top: 15px;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .p-top8__right h2 {
    font-size: 2rem;
  }
}
.p-top8__text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  padding-top: 20px;
  font-weight: 500;
}
.p-top8__txt {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.8666666667;
  padding-top: 60px;
}
@media only screen and (max-width: 1199px){
  .p-top8__txt {
    padding-top: 35px;
  }
}
.p-top8__txt dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-top8__txt dl dt {
  width: 100px;
}
.p-top8__txt dl dd {
  width: calc(100% - 100px);
}
.p-top8__map {
  margin-top: 68px;
  height: 350px;
}
@media only screen and (max-width: 1199px){
  .p-top8__map {
    margin-top: 45px;
  }
}
.p-top9 {
  padding-top: 80px;
  padding-bottom: 65px;
}
@media only screen and (max-width: 1199px){
  .p-top9 {
    padding-top: 65px;
  }
}
@media only screen and (max-width: 1199px){
  .p-top9__inner{
    padding: 0 20px;
  }
}
.p-top9__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 40px;
}
@media only screen and (max-width: 1199px){
  .p-top9__btn {
    padding-top: 30px;
    padding-right: 20px;
  }
}
.p-top10 {
  padding-top: 150px;
  padding-bottom: 133px;
}
@media only screen and (max-width: 1199px){
  .p-top10 {
    padding-top: 40px;
    padding-bottom: 85px;
  }
}
@media only screen and (max-width: 1199px){
  .p-top10__inner {
    padding: 0 20px;
  }
}
.p-top10__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-top10__left {
  width: 275px;
}
@media only screen and (max-width: 1199px){
  .p-top10__left {
    width: 100%;
  }
}
.p-top10__right {
  width: calc(100% - 275px);
}
@media only screen and (max-width: 1199px){
  .p-top10__right {
    width: 100%;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1199px){
  .p-top10__box--flexsp{
    display: flex!important;
    flex-direction: column;
    align-items: center;
  }
}
.p-top10__box p {
  font-size: 1.4rem;
  line-height: 1.3392857143;
  padding-left: 25px;
  padding-top: 95px;
}
@media only screen and (max-width: 1199px){
  .p-top10__box p {
    padding-top: 50px;
    padding-left: 0;
  }
}
.p-top10__box p span {
  position: relative;
}
.p-top10__box p span:before {
  content: "";
  position: absolute;
  width: 21px;
  height: 30px;
  background: url("../images/top10-line1.svg") no-repeat;
  background-size: cover;
  top: 0;
  left: -25px;
}
.p-top10__box p span:after {
  content: "";
  position: absolute;
  width: 21px;
  height: 30px;
  background: url("../images/top10-line2.svg") no-repeat;
  background-size: cover;
  top: 0;
  right: -20px;
}
.p-top10__btn {
  width: 190px;
  height: 62px;
  border: 1px solid #b9b9b9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 2.3112266667;
  font-weight: 600;
  color: #b9b9b9;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px){
  .p-top10__btn {
    color: #010101;
    border: 1px solid #010101;
  }
}
.p-top10__btn:hover {
  border: 1px solid #303030;
  color: #303030;
}
.p-top11 {
  padding-top: 80px;
  padding-bottom: 130px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-top11 {
    padding-bottom: 70px;
  }
}
.p-top11:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/top11-bg.png) no-repeat;
  z-index: -1;
}
.p-top11:after {
  content: "";
  position: absolute;
  width: 1665px;
  height: 101px;
  left: -200px;
  top: 420px;
  background: url(../images/top11-line.svg) no-repeat;
  background-size: cover;
  z-index: -1;
}
.p-top11__cnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-top11__left {
  width: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 1199px){
  .p-top11__left {
    width: 100%;
    padding-left: 30px;
  }
}
.p-top11__right {
  width: calc(100% - 400px);
}
@media only screen and (max-width: 1199px){
  .p-top11__right {
    width: 100%;
    padding-top: 50px;
  }
}
.p-top11__right img {
  width: 100%;
}
@media only screen and (max-width: 1199px){
  .p-top11__box{
    padding: 15px 10px 0px;
  }
}
/* Reason page */
.p-reason1{
  padding-top: 125px;
  padding-bottom: 275px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-reason1{
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
.p-reason1__inner{
  max-width: 1460px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.p-reason1__left{
  padding-left: 190px;
  width: 730px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-reason1__left{
    width: 100%;
    padding-left: 30px;
  }
}
.p-reason1__left:before{
  content: "";
  position: absolute;
  width: 1522px;
  height: 355px;
  right: 100px;
  top: 220px;
  background: url(../images/reason1-bg.svg) no-repeat;
}
@media only screen and (max-width: 1199px){
  .p-reason1__left:before{
    display: none;
  }
}
.p-reason1__right{
  width: calc(100% - 730px);
  padding-top: 120px;
}
@media only screen and (max-width: 1199px){
  .p-reason1__right{
    width: 100%;
    padding: 40px 30px 0px;
  }
}
.p-reason1__right h2{
  font-size: 2.3rem;
  line-height: 2.21739130435;
  color: #303030;
  font-weight: 400;
}
@media only screen and (max-width: 1199px){
  .p-reason1__right h2{
    font-size: 1.6rem;
  }
}
.p-reason1__text{
  font-size: 1.5rem;
  color: #000000;
  line-height: 2.13333333333;
  padding-top: 60px;
}
@media only screen and (max-width: 1199px){
  .p-reason1__text{
    padding-top: 25px;
  }
}
.p-reason1__text p + p{
  padding-top: 25px;
}
.p-reason2{
  overflow: hidden;
}
.p-reason2__inner{
  max-width: 1460px;
  margin: 0 auto;
}
.p-reason3{
  padding-top: 300px;
}
@media only screen and (max-width: 1199px){
  .p-reason3{
    padding-top: 140px;
  }
}
.p-reason3 img{
  width: 100%;
}
.p-reason4{
  margin-top: 28px;
  position: relative;
  padding-top: 220px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px){
  .p-reason4{
    margin-top: 0;
    padding-top: 110px;
  }
}
.p-reason4__inner > p{
  font-size: 2.4rem;
  line-height: 1.75;
  color: #ff7183;
  text-align: center;
  padding-top: 75px;
}
@media only screen and (max-width: 1199px){
  .p-reason4__inner > p{
    padding-top: 35px;
  }
}
.p-reason4:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/top5-bg.png) no-repeat;
  z-index: -1;
}
.p-reason4__box{
  max-width: 1160px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 60px;
  padding-bottom: 65px;
}
@media only screen and (max-width: 1199px){
  .p-reason4__box{
    padding: 30px 30px 35px;
    width: calc(100% - 20px);
  }
}
.p-reason4__box:before{
  content: "";
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 91px;
  height: 73px;
  background: url('../images/ico-triangle.svg') no-repeat;
}
@media only screen and (max-width: 1199px){
  .p-reason4__box:before{
    left: calc(50% + 35px);
  }
}
.p-reason4__left{
  width: 618px;
  display: flex;
  align-items: center;
  padding-left: 100px;
}
@media only screen and (max-width: 1199px){
  .p-reason4__left{
    width: 100%;
    padding-left: 0px;
  }
}
.p-reason4__left h2{
  font-size: 3.2rem;
  line-height: 1.75;
  font-weight: 400;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-reason4__left h2{
    font-size: 2.6rem;
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
  }
}
.p-reason4__left h2:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffb0ba;
  left: 0;
  bottom: -5px;
}
.p-reason4__right{
  width: calc(100% - 618px);
}
@media only screen and (max-width: 1199px){
  .p-reason4__right{
    width: 100%;
    padding-top: 30px;
  }
}
.p-reason4__right li{
  font-size: 1.8rem;
  line-height: 2.16666666667;
  position: relative;
  padding-left: 55px;
}
@media only screen and (max-width: 1199px){
  .p-reason4__right li{
    line-height: 1.75;
    padding-left: 45px;
  }
}
.p-reason4__right li + li{
  margin-top: 10px;
}
.p-reason4__right li:before{
  content: "";
  position: absolute;
  width: 34px;
  height: 25px;
  left: 0;
  top: 8px;
  background: url('../images/ico-check.svg') no-repeat;
}
.p-reason5{
  padding-top: 115px;
}
@media only screen and (max-width: 1199px){
  .p-reason5{
    padding-top: 80px;
  }
}
.p-reason5__table{
  max-width: 1000px;
  margin: 50px auto 0;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .p-reason5__table{
    margin: 30px auto 0;
    padding: 0 20px;
    overflow-x: scroll;
  }
}
.p-reason6{
  padding-top: 180px;
}
@media only screen and (max-width: 1199px) {
  .p-reason6{
    padding-top: 110px;
  }
}
.p-reason6__cnt{
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 65px;
  padding-bottom: 82px;
}
@media only screen and (max-width: 1199px) {
  .p-reason6__cnt{
    flex-direction: column-reverse;
    padding: 40px 40px 40px;
  }
}
.p-reason6__left{
  width: 470px;
}
@media only screen and (max-width: 1199px){
  .p-reason6__left{
    width: 100%;
    padding-top: 20px;
  }
}
.p-reason6__right{
  width: calc(100% - 470px);
  padding-left: 65px;
}
@media only screen and (max-width: 1199px){
  .p-reason6__right{
    width: 100%;
    padding-left: 0;
  }
}
.p-reason6__right > p{
  font-size: 1.6rem;
  text-align: right;
  padding-top: 35px;
  color: #000;
}
.p-reason6__text{
  font-size: 1.4rem;
  line-height: 2.14285714286;
  color: #000;
}
.p-reason6__text p + p{
  padding-top: 30px;
}
@media only screen and (max-width: 1199px){
  .p-reason6__text p + p{
    padding-top: 20px;
  }
}
.p-reason7__inner{
  padding-top: 35px;
  padding-bottom: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px dashed #ff8c9b;
}
@media only screen and (max-width: 1199px){
  .p-reason7__inner{
    width: calc(100% - 40px);
    padding-top: 25px;
  }
}
.p-reason7__title{
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 176, 186, 0.15);
  border-radius: 10px;
}
@media only screen and (max-width: 1199px){
  .p-reason7__title{
    height: 100px;
  }
}
.p-reason7__title h2{
  color: #ff8091;
  font-size: 2.2rem;
  line-height: 1.2;
}
.p-reason7__cnt{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: auto;
  gap: 35px;
  padding-top: 35px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #ff8c9b;
}
@media only screen and (max-width: 1199px){
  .p-reason7__cnt{
    grid-template-columns: repeat(1, 1fr);
    padding-top: 20px;
    padding-bottom: 30px;
    gap: 20px;
  }
}
.p-reason7__box{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  padding: 33px 0px;
  border-bottom: 1px dashed #ff8c9b;
}
@media only screen and (max-width: 1199px){
  .p-reason7__box{
    grid-template-columns: 1fr 1fr;
    padding: 30px 0px;
    gap: 10px;
  }
}
.p-reason7__item{
  background: #fff;
  border: 1px solid rgba(255, 176, 186, 0.35);
  border-radius: 8px;
  padding: 45px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1199px){
  .p-reason7__item{
    padding: 10px;
  }
}
.p-reason7__item--1{
  grid-row: span 2;
  background : rgba(255, 176, 186, 0.15);
  color: #ff8091;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
}
@media only screen and (max-width: 1199px){
  .p-reason7__item--1{
    grid-row: span 1;
    grid-column: span 2;
    height: 100px;
    margin-bottom: 10px;
  }
}
.p-reason7__item--1 h2{
  font-size: 2.2rem;
  letter-spacing: 5px;
}
.p-reason7__item p:first-child{
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1199px){
  .p-reason7__item p:first-child{
    font-size: 1.2rem;
  }
}
.p-reason7__item p:last-child{
  font-size: 5rem;
  line-height: 1;
  color: #ff8c9b;
  padding-top: 5px;
  font-weight: 600;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1199px){
  .p-reason7__item p:last-child{
    font-size: 2.5rem;
  }
}
.p-reason7__item p:last-child span{
  font-size: 3.2rem;
}
@media only screen and (max-width: 1199px){
  .p-reason7__item p:last-child span{
    font-size: 1.6rem;
  }
}
/* Service page */
.p-service1{
  padding-top: 125px;
  padding-bottom: 155px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-service1{
    padding-top: 100px;
    padding-bottom: 35px;
  }
}
.p-service1__inner{
  max-width: 1160px;
  margin: 0 auto;
}
.p-service1__content{
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.p-service1__content.is-active{
  display: block;
  animation: fadeIn 0.5s ease forwards;
}
.p-service1__about{
  position: relative;
  padding-top: 90px;
  padding-bottom: 75px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-service1__about{
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-service1__about--2{
  padding-bottom: 400px;
}
@media only screen and (max-width: 1199px){
  .p-service1__about--2{
    padding-bottom: 200px;
  }
}
.p-service1__about:before{
  content: "";
  position: absolute;
  background: url('../images/service1-bg.png') no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-service1__about--1:before{
  background: url('../images/service1-bg1.png') no-repeat;
}
.p-service1__about--2:before{
  background: url('../images/service1-bg2.png') no-repeat;
}
.p-service1__about:after{
  content: "";
  position: absolute;
  background: url('../images/top5-line.svg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 124px;
  left: 0;
  bottom: 220px;
  z-index: 0;
}
.p-service1__about__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 70px;
}
@media only screen and (max-width: 1199px){
  .p-service1__about__inner{
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-service1__about__inner h3{
  font-size: 2.3rem;
  line-height: 2.21739130435;
  font-weight: 400;
}
@media only screen and (max-width: 1199px){
  .p-service1__about__inner h3{
    font-size: 1.6rem;
    padding: 0 20px;
  }
}
.p-service1__about__cnt{
  display: flex;
  flex-wrap: wrap;
  padding-top: 45px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px){
  .p-service1__about__cnt{
    padding-top: 30px;
  }
}
.p-service1__about--2 .p-service1__about__cnt{
  padding-top: 70px;
}
.p-service1__about--left{
  width: 540px;
  font-size: 1.5rem;
  line-height: 2;
  padding-right: 40px;
  padding-top: 25px;
}
@media only screen and (max-width: 1199px){
  .p-service1__about--left{
    width: 100%;
    padding: 0 20px;
  }
}
.p-service1__about--right{
  width: calc(100% - 540px);
  background-color: #fff;
  padding: 50px 40px 130px 40px;
}
@media only screen and (max-width: 1199px){
  .p-service1__about--right{
    width: 100%;
    margin-top: 25px;
    padding: 40px 20px 35px 20px;
  }
}
.p-service1__about--right > p{
  font-size: 1.8rem;
  line-height: 1.88888888889;
  color: #ff7184;
  padding-top: 22px;
  letter-spacing: 2px;
}
.p-service1__features{
  position: relative;
  padding-top: 50px;
  padding-bottom: 320px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-service1__features{
    padding-bottom: 125px;
  }
}
@media only screen and (max-width: 1199px){
  .p-service1__features--1{
    padding-bottom: 65px;
  }
}
.p-service1__features--2{
  padding-bottom: 20px;
}
@media only screen and (max-width: 1199px){
  .p-service1__features--2{
    padding-top: 90px;
  }
}
.p-service1__features:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../images/service2-bg.png') no-repeat;
  background-size: cover;
  z-index: -1;
}
.p-service1__features:after{
  content: "";
  position: absolute;
  background: url('../images/top5-line.svg') no-repeat;
  background-size: cover;
  width: 100%;
  height: 124px;
  left: 0;
  bottom: 280px;
  z-index: 0;
}
.p-service1__features--1:before{
  background: url('../images/service2-bg1.png') no-repeat;
}
.p-service1__features--2:before{
  background: url('../images/service2-bg2.png') no-repeat;
}
.p-service1__features--2:after{
  bottom: 70px;
}
.p-service1__features > h3{
  text-align: center;
  font-size: 3rem;
  line-height: 1.75;
  font-weight: 400;
}
@media only screen and (max-width: 1199px){
  .p-service1__features > h3{
    font-size: 2.4rem;
  }
}
.p-service1__features__cnt{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
}
@media only screen and (max-width: 1199px){
  .p-service1__features__cnt{
    padding: 40px 20px 0;
  }
}
.p-service1__price{
  margin-top: -140px;
}
@media only screen and (max-width: 1199px){
  .p-service1__price{
    margin-top: 0;
  }
}
.p-service1__price h3{
  font-size: 3rem;
  line-height: 1.75;
  text-align: center;
  font-weight: 400;
}
.p-service1__price p{
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.76923076923;
  color: #000;
  padding-top: 5px;
}
.p-service1__price__cnt{
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px){
  .p-service1__price__cnt{
    padding: 40px 30px 35px;
  }
}
.p-service1__price__cnt li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-service1__price__cnt li + li{
  margin-top: 10px;
}
.p-service1__price__cnt li span:first-child{
  padding-left: 20px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.75;
  font-weight: 600;
}
.p-service1__price__cnt li span:first-child:before{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 12px;
  background: url('../images/ico-bullet.svg') no-repeat;
}
.p-service1__price__cnt li span:first-child:after{
  content: "";
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 6px;
}
.p-service1__price__cnt li span:nth-child(2){
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 8px;
  height: 0;
}
.p-service1__price__cnt li span:last-child{
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: 600;
  padding-left: 10px;
}
.p-service1__price__text{
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px dashed #ff8c9b;
  border-bottom: 1px dashed #ff8c9b;
  padding-top: 45px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1199px){
  .p-service1__price__text{
    width: calc(100% - 40px);
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-service1__price__text h4{
  font-size: 2.6rem;
  line-height: 1.75;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 1199px){
  .p-service1__price__text h4{
    font-size: 2rem;
  }
}
.p-service1__price__text p{
  font-size: 1.6rem;
  line-height: 2.125;
  color: #000;
  padding-top: 10px;
}
.p-service1__fee{
  padding-top: 105px;
}
@media only screen and (max-width: 1199px){
  .p-service1__fee{
    padding: 65px 20px 0px;
  }
}
.p-service1__fee__cnt{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.p-service1__fee__cnt + .p-service1__fee__cnt{
  padding-top: 65px;
}
@media only screen and (max-width: 1199px){
  .p-service1__fee__cnt + .p-service1__fee__cnt{
    padding-top: 55px;
  }
}
.p-service1__fee__cnt h3{
  font-size: 2.2rem;
  line-height: 1.75;
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  margin-bottom: 25px;
}
.p-service1__fee__cnt h3:before{
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  background: #e3dddd;
}
@media only screen and (max-width: 1199px){
  .p-service1__fee__table{
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 1199px){
  .p-service1__fee__item{
    overflow-x: scroll;
    width: 1000px;
  }
}
.p-service1__fee__item dl{
  display: flex;
  flex-wrap: wrap;
}
.p-service1__fee__item dl dt, .p-service1__fee__item dl dd{
  font-size: 1.5rem;
  line-height: 1.73333333333;
  display: flex;
  align-items: center;
  padding: 12px 0px;
}
/*@media only screen and (max-width: 1199px){
  .p-service1__fee__item dl dt, .p-service1__fee__item dl dd{
    font-size: 1.4rem;
  }
}*/
.p-service1__fee__item dl dt{
  width: 300px;
  background-color: #f2efef;
  border-bottom: 1px solid #fff;
  font-weight: 600;
  justify-content: center;
}
/*@media only screen and (max-width: 1199px){
  .p-service1__fee__item dl dt{
    width: 30%;
    padding: 12px 10px;
    text-align: center;
  }
}*/
.p-service1__fee__item dl:first-child dt{
  border-top-left-radius: 6px;
}
.p-service1__fee__item dl:last-child dt{
  border-bottom-left-radius: 6px;
}
.p-service1__fee__item dl dd{
  width: calc(100% - 300px);
  border-top: 1px solid #f2efef;
  border-right: 1px solid #f2efef;
  padding-left: 30px;
}
/*@media only screen and (max-width: 1199px){
  .p-service1__fee__item dl dd{
    width: 70%;
    padding-left: 15px;
    padding-right: 10px;
  }
}*/
.p-service1__fee__item dl dd li{
  padding-left: 10px;
  position: relative;
}
.p-service1__fee__item dl dd li:before{
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: url(../images/ico-bullet.svg) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
/*@media only screen and (max-width: 1199px){
  .p-service1__fee__item dl dd li:before{
    top: 10px;
    transform: none;
  }
}*/
.p-service1__fee__item dl:first-child dd{
  border-top-right-radius: 6px;
}
.p-service1__fee__item dl:last-child dd{
  border-bottom: 1px solid #f2efef;
  border-bottom-right-radius: 6px;
}
.p-service1__precautions{
  max-width: 1000px;
  width: 100%;
  margin: 145px auto 0px;
  background-color: #f2efef;
  border-radius: 6px;
  padding-top: 90px;
  padding-bottom: 190px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions{
    margin: 95px auto 0px;
    padding-top: 60px;
    padding-bottom: 100px;
    overflow: hidden;
  }
}
.p-service1__precautions--1{
  padding-bottom: 170px;
  margin: 145px auto 25px;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions--1{
    margin: 70px auto 25px;
    padding-bottom: 80px;
  }
}
.p-service1__precautions:before{
  content: "";
  position: absolute;
  width: 782px;
  height: 187px;
  left: -145px;
  top: -28px;
  background: url('../images/service1-line1.svg') no-repeat;
  z-index: 1;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions:before{
    top: -100px;
  }
}
.p-service1__precautions:after{
  content: "";
  position: absolute;
  width: 782px;
  height: 187px;
  right: -176px;
  bottom: -26px;
  background: url('../images/service1-line1.svg') no-repeat;
  z-index: 1;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions:after{
    bottom: -100px;
  }
}
.p-service1__precautions h3{
  font-size: 3rem;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
}
.p-service1__precautions__cnt{
  padding: 95px 190px 0px;
  color: #000;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions__cnt{
    padding: 30px 40px 0px;
  }
}
.p-service1__precautions--1 .p-service1__precautions__cnt{
  padding: 80px 190px 0px;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions--1 .p-service1__precautions__cnt{
    padding: 30px 40px 0px;
  }
}
.p-service1__precautions__text{
  font-size: 1.4rem;
  line-height: 1.71428571429;
  padding-bottom: 45px;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions__text{
    padding-bottom: 30px;
  }
}
.p-service1__precautions__cnt dl + dl{
  margin-top: 40px;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions__cnt dl + dl{
    margin-top: 30px;
  }
}
.p-service1__precautions__cnt dl dt{
  font-size: 1.8rem;
  line-height: 1.88888888889;
  display: flex;
  align-items: flex-start;
}
.p-service1__precautions__cnt dl dt span{
  font-size: 1.2rem;
  line-height: 2.5;
  padding-right: 20px;
}
.p-service1__precautions__cnt dl dd{
  font-size: 1.4rem;
  line-height: 1.71428571429;
  padding-top: 8px;
}
.p-service1__precautions__cnt dl dd li{
  padding-left: 10px;
  position: relative;
}
.p-service1__precautions__cnt dl dd li:before{
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: url(../images/ico-bullet.svg) no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media only screen and (max-width: 1199px){
  .p-service1__precautions__cnt dl dd li:before{
    top: 10px;
    transform: none;
  }
}
.p-service1__support{
  margin-top: -40px;
  position: relative;
  padding-top: 290px;
  padding-bottom: 130px;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-service1__support{
    margin-top: 0;
    padding-top: 130px;
    padding-bottom: 65px;
  }
}
.p-service1__support:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/service2-bg.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
.p-service1__support:after{
  content: "";
  position: absolute;
  background: url(../images/top5-line.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 124px;
  left: 0;
  bottom: 280px;
  z-index: 0;
}
.p-service1__support--1:before{
  background: url('../images/service2-bg1.png') no-repeat;
}
.p-service1__support > h3{
  text-align: center;
  font-size: 3rem;
  line-height: 1.75;
  font-weight: 400;
}
@media only screen and (max-width: 1199px){
  .p-service1__support > h3{
    font-size: 2.4rem;
  }
}
.p-service1__support__cnt{
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
}
@media only screen and (max-width: 1199px){
  .p-service1__support__cnt{
    padding-top: 0;
  }
}
.p-service1__info{
  font-size: 1.8rem;
  line-height: 1.88888888889;
  text-align: center;
  padding-top: 70px;
}
@media only screen and (max-width: 1199px){
  .p-service1__info{
    padding-top: 35px;
  }
}
.p-service1__info > p{
  padding-bottom: 50px;
}
/* Flow */
.p-flow1{
  padding-top: 125px;
  padding-bottom: 200px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-flow1{
    padding-top: 90px;
    padding-bottom: 55px;
  }
}
.p-flow1__inner{
  max-width: 1460px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.p-flow1__left{
  padding-left: 190px;
  width: 730px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-flow1__left{
    width: 100%;
    padding-left: 0px;
  }
}
.p-flow1__left:before{
  content: "";
  position: absolute;
  width: 1522px;
  height: 355px;
  right: 100px;
  top: 220px;
  background: url(../images/reason1-bg.svg) no-repeat;
}
@media only screen and (max-width: 1199px){
  .p-flow1__left:before{
    display: none;
  }
}
.p-flow1__right{
  width: calc(100% - 730px);
  padding-top: 120px;
}
@media only screen and (max-width: 1199px){
  .p-flow1__right{
    width: 100%;
    padding: 40px 30px 0px;
  }
}
.p-flow1__right h2{
  font-size: 2.3rem;
  line-height: 2.21739130435;
  color: #303030;
  font-weight: 400;
}
@media only screen and (max-width: 1199px){
  .p-flow1__right h2{
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.p-flow1__text{
  font-size: 1.5rem;
  color: #000000;
  line-height: 2.13333333333;
  padding-top: 60px;
}
@media only screen and (max-width: 1199px){
  .p-flow1__text{
    padding-top: 30px;
  }
}
.p-flow1__text p + p{
  padding-top: 25px;
}
.p-flow2{
  padding-top: 100px;
  padding-bottom: 196px;
  margin-bottom: 60px;
  position: relative;
  background : #f3fbfb;
}
@media only screen and (max-width: 1199px){
  .p-flow2{
    padding-bottom: 135px;
  }
}
.p-flow2__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.p-flow2__cnt h2{
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.75;
  color: #84d2cf;
  letter-spacing: 0.5px;
  background-color: #fff;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius : 4px;
  margin-bottom: 118px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-flow2__cnt h2{
    width: calc(100% - 20px);
    margin: 0 auto 118px;
  }
}
.p-flow2__cnt h2:before{
  content: "";
  position: absolute;
  width: 1px;
  height: 56px;
  bottom: -74px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #808080;
}
.p-flow2__cnt + .p-flow2__cnt{
  margin-top: 66px;
}
.p-flow3{
  padding-top: 270px;
  padding-bottom: 160px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-flow3{
    padding-top: 70px;
    padding-bottom: 45px;
  }
}
.p-flow3:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/service2-bg.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
.p-flow3:after{
  content: "";
  position: absolute;
  background: url(../images/top5-line.svg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 124px;
  left: 0;
  bottom: 280px;
  z-index: 0;
}
.p-flow3__inner h2{
  text-align: center;
  font-size: 3rem;
  line-height: 1.75;
  font-weight: 400;
}
.p-flow3__cnt{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 55px;
  position: relative;
  z-index: 10;
  padding: 100px 70px 145px;
}
@media only screen and (max-width: 1199px){
  .p-flow3__cnt{
    padding: 35px 40px 40px;
  }
}
.p-flow3__cnt:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-flow3__cnt h3{
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.5;
  color: #ff7184;
  text-align: center;
  font-weight: 400;
}
.p-flow3__text{
  font-size: 1.4rem;
  line-height: 1.85714285714;
  color: #000;
  padding-top: 33px;
}
.p-flow3__text p + p{
  padding-top: 25px;
} 
.p-flow4{
  margin-top: -80px;
}
@media only screen and (max-width: 1199px){
  .p-flow4{
    margin-top: 0;
    padding-bottom: 60px;
  }
}
/*Voice*/
.p-voice1{
  padding-top: 125px;
  padding-bottom: 185px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-voice1{
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
.p-voice1__inner{
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.p-voice1__cnt{
  max-width: 1030px;
  margin: 0 auto;
  padding-top: 115px;
}
@media only screen and (max-width: 1199px){
  .p-voice1__cnt{
    padding-top: 70px;
  }
}
/*FAQ*/
.p-faq1{
  padding-top: 125px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-faq1{
    padding-top: 90px;
    padding-bottom: 35px;
  }
}
.p-faq1__inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
/*COMPANY*/
.p-company1{
  padding-top: 125px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-company1{
    padding-top: 90px;
  }
}
.p-company1__inner{
  max-width: 1200px;
  margin: 0 auto;
}
/*CONTACT*/
.p-contact1{
  padding-top: 125px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px){
  .p-contact1{
    padding-top: 90px;
  }
}
.p-contact1__inner{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.p-contact1__text{
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  padding-top: 90px;
}
@media only screen and (max-width: 1199px){
  .p-contact1__text{
    padding: 90px 40px 0;
    text-align: left;
  }
}
.p-contact1__text p + p{
  padding-top: 30px;
}
.p-contact1__box{
  background-color: #f2efef;
  padding: 50px 60px 60px 60px;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 1199px){
  .p-contact1__box{
    grid-template-columns: repeat(1, 1fr);
    padding: 30px 20px 50px 20px;
    width: calc(100% - 40px);
    margin: 40px auto 0;
  }
}
.p-contact1__box h3{
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 3px;
}
.p-contact1__phone{
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5rem;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
}
@media only screen and (max-width: 1199px){
  .p-contact1__phone{
    font-size: 3.6rem;
    padding-top: 15px;
  }
}
.p-contact1__phone a{
  position: relative;
  padding-left: 50px;
}
@media only screen and (max-width: 1199px){
  .p-contact1__phone a{
    padding-left: 35px;
  }
}
.p-contact1__phone a:before{
  content: "";
  position: absolute;
  width: 33px;
  height: 35px;
  background: url(../images/ico-phone.svg) no-repeat;
  left: 0;
  top: 22px;
}
@media only screen and (max-width: 1199px){
  .p-contact1__phone a:before{
    width: 25px;
    height: 27px;
    top: 16px;
  }
}
.p-contact1__box dl{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  justify-content: center;
}
.p-contact1__box dl dt{
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #303030;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3461538462;
}
.p-contact1__box dl dd{
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 1199px){
  .p-contact1__right{
    padding-top: 30px;
  }
}
.p-contact1__line{
  padding-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 1199px){
  .p-contact1__line{
    padding-top: 40px;
  }
}
.p-contact1__line img{
  width: 125px;
} 
.p-contact2{
  padding-top: 110px;
  padding-bottom: 170px;
}
@media only screen and (max-width: 1199px){
  .p-contact2{
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
.p-contact2__inner{
  max-width: 1000px;
  margin: 0 auto;
}
.p-contact2__title{
  display: flex;
  justify-content: center;
  padding-bottom: 67px;
}
@media only screen and (max-width: 1199px){
  .p-contact2__title{
    padding-bottom: 40px;
  }
}
.p-contact2__title h2{
  font-size: 3rem;
  font-weight: 400;
  padding-left: 60px;
  position: relative;
}
@media only screen and (max-width: 1199px){
  .p-contact2__title h2{
    font-size: 2.4rem;
    padding-left: 50px;
  }
}
.p-contact2__title h2:before{
  content: "";
  position: absolute;
  width: 30px;
  height: 22px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url('../images/ico-mailblack.svg') no-repeat;
}
@media only screen and (max-width: 1199px){
  .p-contact2__cnt{
    padding: 0 10px;
  }
}
.p-contact2__item{
  border-top: 1px solid #d6d6d6;
  padding: 40px;
}
@media only screen and (max-width: 1199px){
  .p-contact2__item{
    padding: 35px 30px 40px;
  }
}
.p-contact2__item dl{
  display: flex;
}
@media only screen and (max-width: 1199px){
  .p-contact2__item dl{
    flex-wrap: wrap;
  }
}
.p-contact2__item dl + dl{
  margin-top: 40px;
}
@media only screen and (max-width: 1199px){
  .p-contact2__item dl + dl{
    margin-top: 30px;
  }
}
.p-contact2__item dl dt, .p-contact2__item dl dd{
  font-size: 1.6rem;
}
.p-contact2__item dl dt{
  width: 360px;
  line-height: 1.625;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px){
  .p-contact2__item dl dt{
    width: 100%;
    padding-bottom: 10px;
  }
}
.p-contact2__item--1 dl dt{
  align-items: flex-start;
  padding-top: 15px;
}
@media only screen and (max-width: 1199px){
  .p-contact2__item--1 dl dt{
    padding-top: 0;
  }
}
.p-contact2__item dl dd{
  width: calc(100% - 360px);
  line-height: 2;
}
@media only screen and (max-width: 1199px){
  .p-contact2__item dl dd{
    width: 100%;
  }
}
.p-contact2__item dl dd input[type="text"], .p-contact2__item dl dd input[type="email"]{
  width: 100%;
  height: 50px;
  background: #f2efef;
  padding: 15px;
  border: 1px solid #d6d6d6;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Zen Old Mincho", serif;
}
.p-contact2__item dl dd textarea{
  width: 100%;
  background: #f2efef;
  padding: 10px 15px;
  border: 1px solid #d6d6d6;
  height: 180px;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Zen Old Mincho", serif;
}
.p-contact2__input{
  width: 275px;
  float: left;
}
@media only screen and (max-width: 1199px){
  .p-contact2__input{
    width: 48%;
  }
}
.p-contact2__item dl dd .p-contact2__age input{
  width: 140px;
}
.p-contact2__age span:last-child{
  margin-left: 20px;
}
.p-contact2__input:nth-child(1){
  margin-right: 10px;
}
@media only screen and (max-width: 1199px){
  .p-contact2__input:nth-child(1){
    margin-right: 4%;
  }
}
.p-contact2__submit{
  border-top: 1px solid #d6d6d6;
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
.p-contact2__submit p{
  position: relative;
}
.wpcf7-spinner{
  position: absolute;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  bottom: -40px;
}
.wpcf7-not-valid-tip{
  font-size: 1.4rem;
}
.p-contact2__item dl dd input.wpcf7-not-valid{
  border: 1px solid #ff0000;
}
.p-contact2__checkbox .wpcf7-list-item{
  position: relative;
  padding-left: 30px;
}
.p-contact2__checkbox .wpcf7-list-item:first-child{
  margin: 0;
}
.p-contact2__checkbox .wpcf7-list-item + .wpcf7-list-item{
  margin-left: 40px;
}
.p-contact2__checkbox .wpcf7-list-item .wpcf7-list-item-label:before{
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  height: 20px;
  width: 20px;
  border-radius: 1px;
  border: 1px solid #838383;
  background-color: #ffffff;
}
.p-contact2__checkbox .wpcf7-list-item input:checked~.wpcf7-list-item-label:before{
  background-color: #838383;
}
.p-contact2__checkbox .wpcf7-list-item .wpcf7-list-item-label:after{
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 5px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
.p-contact2__checkbox .wpcf7-list-item input:checked~.wpcf7-list-item-label:after{
  display: block;
}
.p-contact2__submit input{
  background-color: #303030;
  width: 255px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 2.65625;
  color: #fff;
  border: none;
  font-family: "Zen Old Mincho", serif;
  cursor: pointer;
}
::-webkit-input-placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
  font-family: "Zen Old Mincho", serif;
}
:-ms-input-placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
  font-family: "Zen Old Mincho", serif;
}
::-ms-input-placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
  font-family: "Zen Old Mincho", serif;
}
::placeholder { 
  font-size: 1.6rem;
  line-height: 1.625;
  color: #b2b2b2;
  font-family: "Zen Old Mincho", serif;
}
input[type="checkbox"]{
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: auto;
}
.p-contact3__inner{
  background-color: #f2efef;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 60px 65px;
}
@media only screen and (max-width: 1199px){
  .p-contact3__inner{
    width: calc(100% - 20px);
    padding: 40px 20px 55px;
  }
}
.p-contact3__inner > p{
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.88888888889;
  padding-bottom: 55px;
}
/*Blog*/
.p-blog2__left {
  width: 830px;
  margin-right: 70px;
}
@media only screen and (max-width: 1500px){
  .p-blog2__left {
    width: 65%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 1220px){
  .p-blog2__left {
    width: 100%;
    margin-right: 0;
  }
}
.p-blog2__inner {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.p-blog2__image {
  position: relative;
  overflow: hidden;
  padding-top: 56.26%;
  margin-bottom: 20px;
}
.p-blog2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
}
.p-blog2__box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.p-blog2__box span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #303030;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  height: 24px;
  padding: 0 24px;
  text-transform: capitalize;
}
.p-blog2__box p {
  font-size: 14px;
  line-height: 1.75;
  font-family: "Arial";
  margin-left: 13px;
  padding-left: 25px;
  position: relative;
}
.p-blog2__box p::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 15px;
  background: url(../images/ico-clock.png) no-repeat;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p-blog2__title {
  padding-top: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #303030;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
  color: #4d4d4d;
}
.p-blog2__cnt {
  padding: 40px 0 40px 0;
  font-size: 16px;
  line-height: 1.8em;
  color: #333;
}
.p-blog2__cnt p {
  display: block;
  min-height: 28px;
}
.p-blog2__cnt img{
  width: 100%;
  height: auto;
}
.p-blog2__cnt h2.u-mt {
  margin-top: 31px;
}
.p-blog2__cnt .highlight,
.p-blog2__cnt mark {
  display: inline;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #ffffff),
    color-stop(50%, #ffff00)
  );
  background-image: -webkit-linear-gradient(#ffffff 50%, #ffff00 50%);
  background-image: linear-gradient(#ffffff 50%, #ffff00 50%);
  background-size: auto 100%;
  font-style: normal;
}
.p-blog2__cnt ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.p-blog2__cnt ul li {
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}
.p-blog2__cnt ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background: #303030;
    position: absolute;
    top: 11px;
    left: 3px;
}
.p-blog2__cnt ul.index {
  padding: 15px 27px 12px 17px;
  border: 1px solid #ccc;
}
.p-blog2__cnt ul.index li::before{
  background: #00a99d;
}
.p-blog2__cnt h1 {
  margin: 44px 0 36px 0;
  padding: 10px 15px;
  border-left: 15px solid #00a99d;
  font-size: 18px;
  color: #333;
  text-align: left;
}
.p-blog2__cnt h2 {
  padding: 10px 15px;
  border-left: 15px solid #00a99d;
  font-size: 18px;
  color: #333;
  text-align: left;
}
.p-blog2__cnt h3 {
  padding: 5px 0 5px 0;
  border-bottom: 1px solid #00a99d;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  color: #4d4d4d;
  margin-bottom: 10px;
}
.p-blog2__cnt > h4 {
  margin: 24px 0 9px 0;
  padding: 5px 0 5px 0;
  border-color: #00a99d;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
  color: #4d4d4d;
}
.p-blog2__cnt h5 {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.7142857143;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 35px 0px 35px;
}
.p-blog2__cnt ol {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 25px 0px 30px;
}
.p-blog2__cnt ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding-left: 27px;
  font-size: 1.5rem;
  line-height: 1.2;
}
.p-blog2__cnt ol li + li {
  margin-top: 10px;
}
.p-blog2__cnt ol li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: #f7931e;
  line-height: 1.2;
  font-weight: bold;
}
.p-blog2__cnt ol li h4 {
  font-size: 1.6rem;
  color: #1b1464;
  line-height: 2;
  font-family: "noto-sans-cjk-jp", sans-serif;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1199px){
  .p-blog1__notfound{
    padding-bottom: 30px;
  }
}
.c-line span {
  position: relative;
}
.c-line span:before {
  content: "";
  position: absolute;
  bottom: 4px;
  height: 11px;
  width: 100%;
  left: 0;
  background-color: #fcee21;
  z-index: -1;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}
.archive_wrap{
  position: relative;
}
.archive_inner {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px){
  .archive_inner {
    padding: 0 15px 60px;
  }
}
.archive_inner--1 {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  color: #ffffff;
}
.archive_main {
  width: 830px;
  margin-right: 70px;
}
@media only screen and (max-width: 1500px){
  .archive_main {
    margin-right: 5%;
    width: 65%;
  }
}
@media only screen and (max-width: 1199px){
  .archive_main {
    margin-right: 0;
    width: 100%;
  }
}
.archive_side{
  width: 300px;
}
@media screen and (max-width: 1500px) {
  .archive_side{
    width: 30%;
  }
}
@media screen and (max-width: 1199px) {
  .archive_side{
      width: 100%;
  }
}
.c-widget + .c-widget{
  margin-top: 50px;
}
.c-widget form {
  margin-bottom: 50px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.c-widget form input[type="search"] {
  width: 100%;
  border: none;
  background: #f2f2f2;
  height: 40px;
  padding: 0px 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 40px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  outline: none;
}
.c-form__search {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #222222;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.c-form__search input[type="submit"] {
  border: 0;
  background: url(../images/ico-search.png) no-repeat;
  text-indent: 40px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.c-widget__cnt ul li a {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 5px 0px;
  display: block;
  font-weight: 500;
  text-transform: capitalize;
  color: #333333;
  padding: 11px 20px 11px 20px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  box-sizing: border-box;
}
.archive_side--1 .c-widget__cnt ul li a {
  color: #ffffff;
}
.c-widget--modify2 .c-widget__cnt ul {
  padding: 0;
}
.c-widget--modify2 .c-widget__cnt ul li a {
  padding: 10px 18px;
  border-top: none;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: block;
}
.c-widget--modify2 .c-widget__cnt ul li:nth-child(1) a {
  border-top: 1px solid #dddddd;
}
.blog_wrap {
  width: 100%;
  overflow: auto;
  position: relative;
  display: flex;
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (max-width: 767px){
.blog_wrap {
    flex-direction: column;
  }
}
.blog_wrap:first-child {
  padding-top: 0px;
}
.blog_img {
  width: 35%;
  height: 100%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px){
  .blog_img {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
}
.blog_img a{
  display: block;
  position: relative;
  padding-top: 75%;
}
.blog_txt {
  width: 60%;
  position: relative;
  padding-bottom: 50px;
  position: relative;
}
@media only screen and (max-width: 767px){
  .blog_txt {
    width: 100%;
    max-width: 100%;
    margin-top: 25px;
  }
}
.blog__title {
  line-height: 1.2;
  text-align: left;
  font-size: 21px;
  color: #4d4d4d;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.blog_wrap--1 .blog__title a{
  color: #ffffff;
}
.blog_txt_top {
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333333;
  font-weight: 500;
  max-height: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  text-align: justify;
  display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.blog_wrap--1 .blog_txt_top{
  color: #ffffff;
}
.blog_txt_bottom {
  display: flex;
  position: absolute;
  bottom: 0px;
}
.blog_cat {
  background-color: #303030;
  font-size: 1.2rem;
  line-height: 0.5714;
  padding: 0 20px;
  height: 25px;
  margin-right: 12px;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
.blog_cat a {
  color: #ffffff;
}
.blog_date {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #333333;
  font-weight: 500;
  padding-left: 20px;
}
.blog_wrap--1 .blog_date{
  color: #ffffff;
}
.blog_date::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 4px;
  background: url(../images/ico-clock.png) no-repeat;
  width: 16px;
  height: 16px;
}
.blog_wrap--1 .blog_date:before{
  background: url(../images/ico-clockwhite.svg) no-repeat;
  width: 14px;
  height: 14px;
  top: 6px;
}
.blog__title a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #4d4d4d;
  font-weight: 600;
}
.blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.c-pagination{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
  position: relative;
}
.c-pagination a, .c-pagination a:hover, .c-pagination span{
  padding: 16px 19.5px;
  line-height: 100%;
  margin: 0;
  display: block;
  margin: 0 8px 0px 0;
  border: 1px solid #303030;
  color: #333333;
}
@media only screen and (max-width: 1199px){
  .c-pagination a, .c-pagination a:hover, .c-pagination span{
    font-size: 1.4rem;
    margin: 0 4px 0px 0;
    padding: 14px 17.5px;
  }
}
.c-pagination a small{
  font-size: 1.8rem;
}
@media only screen and (max-width: 1199px){
  .c-pagination a small{
    display: none;
  }
}
.c-pagination .current{
  background-color: #303030;
  color: #fff;
}
.c-pagination a:hover{
  background-color: #303030;
  color: #ffffff;
}
.c-pagination .prev, .c-pagination .next{
  background-color: #ffffff;
  border: none;
  display: flex!important;
  align-items: center;
  justify-content: center;
  padding: 0!important;
  margin-bottom: 0;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 1199px){
  .c-pagination .prev span img, .c-pagination .next span img{
    width: 7px;
  }
}
.c-pagination .prev:hover, .c-pagination .next:hover{
  background-color: transparent;
  border: none;
  color: inherit;
}
.c-pagination .prev span, .c-pagination .next span{
  background-color: #303030;
}
@media only screen and (max-width: 1199px){
  .c-pagination .prev span, .c-pagination .next span{
    margin: 0;
  }
}
.c-pagination .next span{
  margin: 0 0 0 8px;
}
.c-pagination .prev{
  left: 0;
}
.c-pagination .next{
  right: 0;
}
.c-line{
  position: relative;
}
.c-pages {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  font-family: "Arial", serif;
  font-weight: 500;
  color: #534741;
}
.c-pages li span{
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #303030;
}
.c-pages li.prev_link span{
  margin-right: 15px;
}
.c-pages li.next_link span{
  margin-left: 15px;
}
.c-pages li a {
  color: #333;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
/*Policy*/
.p-policy1 {
  padding-top: 100px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1 {
    padding-top: 50px;
  }
}
.p-policy1__cnt {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__cnt {
    padding-top: 50px;
    padding-bottom: 85px;
  }
}
.p-policy1__desc {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  color: #333;
  font-weight: 500;
  padding-bottom: 85px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__desc {
    font-size: 1.5rem;
    padding-bottom: 45px;
  }
}
.p-policy1__text h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #4b6974;
  border-bottom: 1px solid #4b6974;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__text h3 {
    font-size: 2rem;
    padding-bottom: 16px;
  }
}
.p-policy1__text + .p-policy1__text {
  padding-top: 75px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__text + .p-policy1__text {
    padding-top: 50px;
  }
}
.p-policy1__item {
  padding-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item {
    padding-top: 30px;
  }
}
.p-policy1__item h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #4b6974;
  padding-bottom: 18px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item h4 {
    font-size: 1.7rem;
  }
}
.p-policy1__item p {
  font-size: 1.6rem;
  line-height: 1.6666666667;
  color: #333;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item p {
    font-size: 1.5rem;
  }
}
.p-policy1__item ul {
  font-size: 1.6rem;
  line-height: 1.6666666667;
  color: #333;
  font-weight: 500;
  list-style: decimal;
  padding-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item ul {
    font-size: 1.5rem;
    padding-left: 15px;
  }
}
.p-policy1__item ul.p-policy1__disc {
  list-style: disc;
  padding-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item ul.p-policy1__disc {
    padding-top: 18px;
  }
}
.p-policy1__item ul.p-policy1__disc--1 {
  padding-bottom: 35px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item ul.p-policy1__disc--1 {
    padding-bottom: 18px;
  }
}
.p-policy1__item ul.p-policy1__decimal {
  padding-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__item ul.p-policy1__decimal {
    padding-top: 18px;
  }
}
.p-policy1__edit {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.75;
  text-align: right;
  padding-top: 120px;
  font-weight: 500;
}
@media only screen and (max-width: 1199px) {
  .p-policy1__edit {
    font-size: 1.5rem;
    padding-top: 70px;
  }
}
/*Table*/
.c-table1 {
  width: 100%;
  border-collapse: separate;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
  border-spacing: 0;
}
@media only screen and (max-width: 1199px) {
  .c-table1 {
    width: 1000px;
    overflow-x: scroll;
  }
}
.c-table1 thead th {
  color: #333;
  padding: 25px;
  font-weight: 600;
  font-size: 1.9rem;
  border-left: 1px solid #b1b1b1;
  border-top: 1px solid #b1b1b1;
}
.c-table1 thead th:first-child {
  border-top-left-radius: 5px;
  position: relative;
  width: 200px;
}
.c-table1 thead th:first-child:before {
  content: "";
  position: absolute;
  width: 174px;
  height: 64px;
  background: url('../images/ico-lineskew.svg') no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-table1 thead th:nth-child(2) {
  background : rgba(255, 176, 186, 0.35);
  width: 400px;
}
.c-table1 thead th:last-child {
  border-top-right-radius: 5px;
  border-right: 1px solid #b1b1b1;
  background : rgba(189, 184, 184, 0.15);
  width: 400px;
}
.c-table1 tbody th {
  font-weight: 600;
  padding: 17px;
  width: 20%;
  text-align: center;
  border-left: 1px solid #b1b1b1;
  border-top: 1px solid #b1b1b1;
  font-size: 1.7rem;
}
.c-table1 tbody tr:last-child th{
  border-bottom: 1px solid #b1b1b1;
  border-bottom-left-radius: 5px;
}
.c-table1 td {
  padding: 17px 14px;
  border-left: 1px solid #b1b1b1;
  border-top: 1px solid #b1b1b1;
  vertical-align: middle;
}
.c-table1 tbody tr td:nth-child(2){
  background : rgba(255, 176, 186, 0.35);
}
.c-table1 tbody tr td:last-child{
  border-right: 1px solid #b1b1b1;
  background : rgba(189, 184, 184, 0.15);
}
.c-table1 tbody tr:last-child td{
  border-bottom: 1px solid #b1b1b1;
}
.c-table1 tbody tr:last-child td:last-child{
  border-bottom-right-radius: 5px;
}
.c-table1 tr:nth-child(even) td {
  background-color: #fffafc;
}
/*List*/
.c-list1 {
  padding-top: 70px;
}
.c-list1--1 {
  padding-top: 130px;
}
@media only screen and (max-width: 1199px) {
  .c-list1--1 {
    padding: 70px 15px 0px;
  }
}
.c-list1 dl {
  border-top: 1px solid #ef95af;
  padding: 27px 0 45px 0px;
}
@media only screen and (max-width: 1199px) {
  .c-list1 dl {
    padding: 17px 0 25px 0;
  }
}
.c-list1--1 dl {
  border-top: 1px solid #d6d6d6;
  padding: 37px 50px 45px 50px;
}
@media only screen and (max-width: 1199px) {
  .c-list1--1 dl {
    padding: 32px 10px 37px 10px;
  }
}
.c-list1 dl:last-child {
  border-bottom: 1px solid #ef95af;
}
.c-list1--1 dl:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.c-list1 dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 18px;
}
@media only screen and (max-width: 1199px) {
  .c-list1 dl dt {
    align-items: flex-start;
  }
}
.c-list1__image{
  width: 39px;
}
.c-list1__image img{
  width: 100%;
}
.c-list1 dl dt p {
  margin-left: 35px;
  font-size: 2rem;
  line-height: 1.75;
  color: #ff5b70;
  font-weight: 600;
  width: calc(100% - 74px);
}
@media only screen and (max-width: 1199px) {
  .c-list1 dl dt p {
    margin-left: 25px;
    width: calc(100% - 64px);
    line-height: 1.5;
  }
}
.c-list1--1 dl dt p {
  font-weight: 500;
}
.c-list1 dl dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-list1 dl dd p {
  margin-left: 35px;
  font-size: 1.5rem;
  line-height: 1.75;
  color: #000;
  font-weight: 500;
  width: calc(100% - 74px);
}
@media only screen and (max-width: 1199px) {
  .c-list1 dl dd p {
    margin-left: 25px;
    width: calc(100% - 64px);
  }
}
.c-list1--1 dl dd p {
  font-weight: 400;
}
.c-list1 dl dd a{
  color: #de2229;
  text-decoration: underline;
}
.c-list2 {
  padding-top: 105px;
}
@media only screen and (max-width: 1199px) {
  .c-list2 {
    padding-top: 75px;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}
.c-list2 dl{
  display: flex;
  border-bottom: 1px solid #d6d6d6;
  padding: 35px 0px;
}
@media only screen and (max-width: 1199px) {
  .c-list2 dl{
    flex-wrap: wrap;
    padding: 30px 0px;
  }
}
.c-list2 dl dt, .c-list2 dl dd{
  font-size: 1.6rem;
  line-height: 1.75;
}
.c-list2 dl dt{
  width: 350px;
  padding-left: 65px;
  font-weight: 600;
}
@media only screen and (max-width: 1199px) {
  .c-list2 dl dt{
    width: 100%;
    padding-left: 40px;
  }
}
.c-list2 dl dd{
  width: calc(100% - 350px);
}
@media only screen and (max-width: 1199px) {
  .c-list2 dl dd{
    width: 100%;
    padding-left: 40px;
    padding-top: 10px;
  }
}
/*Tabs*/
.c-tabs1{
  padding-left: 45px;
  padding-top: 80px;
}
@media only screen and (max-width: 1199px) {
  .c-tabs1{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 75px;
  }
}
.c-tabs1 ul{
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .c-tabs1 ul{
    justify-content: center;
  }
}
.c-tabs1 ul li{
  width: 33.33%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.75;
  position: relative;
  padding-bottom: 30px;
  color: #b2b2b2;
  cursor: pointer;
}
@media only screen and (max-width: 1199px) {
  .c-tabs1 ul li{
    font-size: 1.3rem;
    width: auto;
    padding: 0 15px 10px;
    line-height: 1.5;
  }
}
.c-tabs1 ul li.is-active{
  color: #303030;
}
.c-tabs1 ul li.is-active:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: #303030;
  width: calc(100% - 50px);
}
@media only screen and (max-width: 1199px) {
  .c-tabs1 ul li.is-active:before{
    width: calc(100% - 30px);
  }
}
.c-tabs1 ul li:after{
  content: "";
  position: absolute;
  width: 1px;
  height: 36px;
  right: 0;
  background-color: #e4e4e4;
  bottom: 15px;
}
.c-tabs1 ul li:last-child:after{
  display: none;
}

/* Preloader */
.preloader-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  background: #fff;
  z-index: 1600;
}

.percentage {
  z-index: 100;
  border: 1px solid #ccc;
  text-align: center;
  color: #fff;
  line-height: 30px;
  font-size: 15px;
}

.preloader-logo {
  position: absolute;
  top: calc(50% - 45px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1002;
}
.preloader-logo img{
  width: 152px;
}
@media only screen and (max-width: 1199px) {
  .preloader-logo img{
    width: 140px;
  }
}
.loader,.percentage {
  height: 2px;
  max-width: 200px;
  border-radius: 20%;
  font-weight: 300;
  position: absolute;
  top: 0;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1001;
}
@media only screen and (max-width: 1199px) {
  .loader,.percentage {
    height: 1px;
    max-width: 150px;
    bottom: -30px;
  }
}

.loader:after,
.percentage:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
  background: #303030;
  opacity: 0.4;
}

.trackbar {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  opacity: 0.99;
  z-index: 1002;
}

.loadbar {
  width: 0%;
  height: 100%;
  background: #303030;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: flicker 5s infinite;
  animation: flicker 5s infinite;
  overflow: hidden;
  z-index: 1002;
}

.glow {
  width: 0%;
  height: 0%;
  border-radius: 20px;
  position: absolute;
  bottom: -5px;
  -webkit-animation: animation 5s infinite;
  animation: animation 5s infinite;
}

@-webkit-keyframes animation {
  10% {
    opacity: 0.9;
  }
  30% {
    opacity: 0.86;
  }
  60% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.75;
  }
}

@keyframes animation {
  10% {
    opacity: 0.9;
  }
  30% {
    opacity: 0.86;
  }
  60% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.75;
  }
}

.wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.wrap .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  z-index: 999;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-color: #211112;
}

.wrap .loader-section.section-left {
  left: 0;
}

.loaded.wrap .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.wrap .loader-section.section-right {
  right: 0;
}

.loaded.wrap .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*Check*/
.c-check1 ul li{
  font-size: 1.6rem;
  line-height: 2.125;
  padding-left: 50px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .c-check1 ul li{
    line-height: 1.75;
  }
}
.c-check1 ul li:before{
  content: "";
  position: absolute;
  width: 34px;
  height: 25px;
  left: 0;
  top: 8px;
  background: url(../images/ico-check.svg) no-repeat;
}
@media only screen and (max-width: 1199px) {
  .c-check1 ul li:before{
    top: 50%;
    transform: translateY(-50%);
  }
}
.c-check1 ul li + li{
  margin-top: 10px;
}
.c-pink{
  color: #ff7184;
}
@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}
@keyframes rotate_anime_btn {
  0% {
    transform: rotateX(0deg);
  }
  25% {
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-180deg);
  }
  75% {
    transform: rotateX(-270deg);
  }
  100% {
    transform: rotateX(-360deg);
  }
}
@keyframes rotate_anime_btn1 {
  0% {
    transform: translateY(-50%) rotateX(0deg);
  }
  25% {
    transform: translateY(-50%) rotateX(-90deg);
  }
  50% {
    transform: translateY(-50%) rotateX(-180deg);
  }
  75% {
    transform: translateY(-50%) rotateX(-270deg);
  }
  100% {
    transform: translateY(-50%) rotateX(-360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lineAppearDisappear {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes arrowDown {
  0% {
    transform: translate(-50%, -5px);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%, 0);
    opacity: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .c-pl40sp{
    padding-left: 40px;
  }
  .c-pl25sp{
    padding-left: 25px;
  }
  .c-pl20sp{
    padding-left: 20px;
  }
  .c-pr25sp{
    padding-right: 25px;
  }
}
.p-404 {
  line-height: 1.8;
  font-size: inherit;
  text-align: center;
}
.p-404__heading {
  font-size: 4rem;
  font-weight: 700;
}
.p-404__content {
  font-size: 2rem;
  margin-bottom: 20px;
}
.u-sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: initial;
  }
}

.pc-only{
  display: block;
}
.sp-only{
  display: none;
}
@media only screen and (max-width: 1199px){
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
}
