@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
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;
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

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 {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}
/*------------------------------------------------------------
	End-Reset
------------------------------------------------------------*/

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .ipadp{
    display: none;
  }
}

.p-top{
	position: relative;
	z-index: 100;
}

.only-ipad-sp{
	display: none;
}
@media only screen and (max-width: 812px) and (orientation: portrait) {
 	.only-ipad-sp{
		display: block;
	}
}

@media only screen and (max-width: 480px){
 	.only-ipad-sp{
		display: block;
	}
}

.overflow {
  overflow: hidden;
}

.hidden{
	display: none !important;
}

.sp-only {
  display: none !important;
}

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

.only-ipadprop {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .only-ipadprop {
    display: block;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .only-ipadprop {
    display: none;
  }
}

.only-ipadl {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .only-ipadl {
    display: block;
  }
}

.only-ipadp {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .only-ipadp {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .only-ipadp {
    display: none;
  }
}

.only-sp {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .only-sp {
    display: block;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  padding: 40px 60px 43px 70px;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 200;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 1;
	position: fixed;
}

.pTopHeader {
  opacity: 0;
}

.c-header.is-show {
  opacity: 1;
}

.c-header--hidden {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
   
@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .c-header {
     padding: 42px 60px 42px 70px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header {
    padding: 28px 35px 26px 45px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-header {
    padding: 35px 33px 26px 46px;
  }
}

@media only screen and (max-width: 480px) {
  .c-header {
    padding: 30px 17px 26px 28px;
  }
}

.c-header.sticky {
  position: fixed;
}

.c-header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  width: 100vw;
  height: 100%;
  opacity: 0;
  -webkit-transition: 500ms ease-in-out 500ms;
  transition: 300ms ease-in-out 500ms;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
}

.c-header .overlay__show {
  opacity: 0.5;
  display: block;
	transition: all 0.3s linear;
	pointer-events: all;
}

.c-header .c-header__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
}

.c-header .c-header__wrapper .c-header__logo {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.c-header .c-header__wrapper .c-header__logo .logo {
  margin-right: 51px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__logo .logo {
    margin-right: 28px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-header .c-header__wrapper .c-header__logo .logo {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-header__logo .logo {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__logo .logo img {
    width: 92.5%;
  }
}

.c-header .c-header__wrapper .c-header__logo .only-ipadp {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-header .c-header__wrapper .c-header__logo .only-ipadp {
    display: block;
    margin-right: 29px;
  }
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-header__logo .only-ipadp {
    display: none;
  }
}

.c-header .c-header__wrapper .c-header__logo .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-header__logo .only-sp {
    display: block;
    margin-right: 20px;
  }
}

.c-header .c-header__wrapper .c-header__logo .logo-text {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 28px;
  opacity: 0;
  transition: 0.3s linear;
  pointer-events: none;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__logo .logo-text {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-header .c-header__wrapper .c-header__logo .logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.7px;
  }
}
@media only screen and (max-width: 812px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__logo .logo-text {
    font-size: 1.0rem;
    line-height: 1.3;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-header__logo .logo-text {
    font-size: 1.0rem;
    line-height: 1.3;
    letter-spacing: 0px;
  }
}

.c-header .c-header__wrapper .c-header__logo .logo-text__show {
  opacity: 1;
  pointer-events: all;
}

.c-header .c-header__wrapper .c-header__inner {
	margin-left: auto;
	display: flex;
    align-items: center;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-header__inner .c-nav {
    display: none;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-header .c-header__wrapper .c-header__inner .c-nav {
    display: none;
  }
}

.c-header .c-header__wrapper .c-header__inner .c-nav ul {
  display: -webkit-box;
  display: flex;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 28px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__inner .c-nav ul {
    font-size: 1.3rem;
  }
}

.c-header .c-header__wrapper .c-header__inner .c-nav ul li {
    width: auto;
    text-align: left;
    margin-right: 30px;
}

/*@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__inner .c-nav ul li {
    width: 79.5px;
  }
}*/

.c-header .c-header__wrapper .c-header__inner .c-nav ul li a {
  padding: 8px 0 5px 0;
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}

.c-header .c-header__wrapper .c-header__inner .c-nav ul li .effect::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: black;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.c-header .c-header__wrapper .c-header__inner .c-nav ul li .effect:hover::after {
  width: 100%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__inner .c-nav ul .u-m17 {
    width: 133px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__inner .c-nav ul .u-m18 {
    width: 52px;
  }
}

.c-header .c-header__wrapper .c-header__inner .c-toggle {
  text-align: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  margin-left: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-header .c-header__wrapper .c-header__inner .c-toggle {
    margin-left: 27px;
  }
}

.c-header .c-header__wrapper .c-header__inner .c-toggle .burger {
  height: 20px;
  width: 43px;
  margin: auto;
}

.c-header .c-header__wrapper .c-header__inner .c-toggle .burger1,
.c-header .c-header__wrapper .c-header__inner .c-toggle .burger2,
.c-header .c-header__wrapper .c-header__inner .c-toggle .burger3 {
  width: 25px;
  height: 2px;
  background-color: #3F3B3A;
  margin: 4px auto;
  border-radius: 10px;
}

.c-header .c-header__wrapper .c-header__inner .burger-active .burger2 {
   opacity: 0;
   transition: all 0.3s linear;
}

.c-header .c-header__wrapper .c-header__inner .burger-active .burger1 {
  -webkit-transform: rotate(45deg) translateX(3px) translateY(3px);
  transform: rotate(45deg) translateX(3px) translateY(3px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header .c-header__wrapper .c-header__inner .burger-active .burger3 {
  -webkit-transform: rotate(-45deg) translateX(1px) translateY(-1px);
  transform: rotate(-45deg) translateX(5px) translateY(-5px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header .c-header__wrapper .c-header__inner .burger-back {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.c-header .c-header__wrapper .c-header__inner .burger-back .burger2 {
   opacity: 1;
   transition: all 0.3s linear;
}

.c-header .c-header__wrapper .c-header__inner .burger-back .burger1 {
  -webkit-transform: rotate(0deg) translateX(0px) translateY(0px);
  transform: rotate(0deg) translateX(0px) translateY(0px);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.c-header .c-header__wrapper .c-header__inner .burger-back .burger3 {
  -webkit-transform: rotate(0deg) translateX(0px) translateY(0px);
  transform: rotate(0deg) translateX(0px) translateY(0px);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.c-header .c-header__wrapper .c-navsp {
  max-width: 767px;
  background-color: whitesmoke;
  padding: 0 80px 0 80px;
  position: fixed;
  top: 0;
  right: -100%;
  -webkit-transition: right 0.5s ease-in-out;
  transition: right 0.5s ease-in-out;
  z-index: 9;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.c-header .c-header__wrapper .c-navsp__inner {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  padding: 80px 0 60px;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-navsp {
    width: 100%;
    padding: 0 29px 0 30px;
  }
  .c-header .c-header__wrapper .c-navsp__inner {
    padding: 76px 0 53px;
  }
}

.c-header .c-header__wrapper .c-navsp ul {
  width: 356px;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-navsp ul {
    width: 100%;
  }
}

.c-header .c-header__wrapper .c-navsp ul li {
  margin-bottom: 19px;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-navsp ul li {
    margin-bottom: 14px;
  }
}

.c-header .c-header__wrapper .c-navsp ul li a span:first-of-type {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  padding-right: 10px;
  letter-spacing: 1.6px;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-navsp ul li a span:first-of-type {
    font-size: 2rem;
    padding-right: 10px;
    letter-spacing: 1.2px;
  }
}

.c-header .c-header__wrapper .c-navsp ul li a span:last-of-type {
  font-size: 1.3rem;
  opacity: 0.7;
}

.c-header .c-header__wrapper .c-navsp .button {
  margin: 68px 0 63px 0;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-navsp .button {
    margin: 48px 0 49px 0;
  }
}

.c-header .c-header__wrapper .c-navsp .button .button1,
.c-header .c-header__wrapper .c-navsp .button .button2,
.c-header .c-header__wrapper .c-navsp .button .button3 {
  display: block;
  padding: 15px 0;
  border: 2px solid;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  width: 100%;
  margin: 0 auto 13px auto;
  background-color: whitesmoke;
  box-sizing: border-box;
}

.c-header .c-header__wrapper .c-navsp .button .button1:hover,
.c-header .c-header__wrapper .c-navsp .button .button2:hover,
.c-header .c-header__wrapper .c-navsp .button .button3:hover {
  background-color: black !important;
  color: #fff;
  border-color: black;
}

.c-header .c-header__wrapper .c-navsp .scoial-network {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
}

.c-header .c-header__wrapper .c-navsp .scoial-network span {
  width: 50%;
  font-size: 1.6rem;
font-family: quasimoda, sans-serif;
}

@media only screen and (max-width: 480px) {
  .c-header .c-header__wrapper .c-navsp .scoial-network span {
    font-size: 1.4rem;
  }
}

.c-header .c-header__wrapper .c-navsp .scoial-network .social-icon {
  width: 50%;
  text-align: right;
}

.c-header .c-header__wrapper .c-navsp .scoial-network .social-icon a:hover{
  opacity: 1;
}

.c-header .c-header__wrapper .c-navsp .scoial-network .social-icon img {
  width: 16%;
  opacity: 0.3;
  transition: 0.3s linear;
}

.c-header .c-header__wrapper .c-navsp .scoial-network .social-icon img:hover {
  opacity: 1;
  transition: 0.3s linear;
}

.c-header .c-header__wrapper .c-navsp .scoial-network .social-icon img:first-of-type {
  margin-left: 5px;
}

.c-header .c-header__wrapper .c-navsp__show {
  right: 0;
	overflow: auto;
}

.c-header .c-header__wrapper .c-navsp__show .c-navsp__inner {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.loading {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 20;
  overflow: hidden;
  opacity: 1;
  z-index: 9999;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.wrap_loading  {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.loading .loading-img {
  width: 60px;
  -webkit-animation: rotation 2s infinite linear;
  animation: rotation 2s infinite linear;
}

@media only screen and (max-width: 480px) {
  .loading .loading-img {
	width: 40px;
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer .c-footer__background {
  background-color: #F4F4F4;
  padding: 66px 0 40px 0;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background {
    padding: 50px 0 30px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background {
    padding: 49px 0 30px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background {
    padding: 46px 0 30px 0;
  }
}

.c-footer .c-footer__background .l-container .c-footer__nav {
  margin-bottom: 53px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__nav {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__nav {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .c-footer__nav {
    margin-bottom: 24px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__nav ul {
  display: -webkit-box;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__nav ul {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__nav ul {
    font-size: 1.4rem;
    font-weight: bold;
  }
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .c-footer__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: bold;
    flex-direction: column;
  }
}

.c-footer .c-footer__background .l-container .c-footer__nav ul li {
  width: 300px;
  border-right: 1px solid #c9c7c7;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__nav ul li {
    width: 232px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__nav ul li {
    width: 211.5px;
  }
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .c-footer__nav ul li {
    border-right: none;
    width: 100%;
    margin-bottom: 19px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__nav ul li a {
  padding: 10px 10px 5px 10px;
}

.c-footer .c-footer__background .l-container .c-footer__nav ul li:last-of-type {
  border-right: none;
}

.c-footer .c-footer__background .l-container .social-icon {
  text-align: center;
  margin-bottom: 59px;
}

.c-footer .c-footer__background .l-container .social-icon a:hover {
opacity: 1;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .social-icon {
    margin-bottom: 51px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .social-icon {
    margin-bottom: 50px;
  }
}

.c-footer .c-footer__background .l-container .social-icon img {
  width: 3%;
  opacity: 0.3;
}
.c-footer .c-footer__background .l-container .social-icon img:hover {
  opacity: 1;
}


@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .social-icon img {
    width: 2.6%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .social-icon img {
    width: 4%;
  }
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .social-icon img {
    width: 7%;
  }
}

.c-footer .c-footer__background .l-container .social-icon .u-m9 {
  margin-right: 10px;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .social-icon .u-m9 {
    margin-right: 6px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__logo {
  margin-bottom: 42px;
  text-align: center;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__logo {
    display: none;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__logo {
    display: none;
  }
}

.c-footer .c-footer__background .l-container .only-ipadl {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .only-ipadl {
    display: block !important;
    margin-bottom: 33px;
  }
}

.c-footer .c-footer__background .l-container .only-ipadp {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .only-ipadp {
    display: block;
    margin: 0 auto 32px;
    width: 123px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__contact {
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 53px;
  letter-spacing: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__contact {
    font-size: 1.2rem;
    margin-bottom: 26px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__contact {
    margin-bottom: 26px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__contact {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .c-footer__contact {
    margin-bottom: 26px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__contact span:first-of-type {
  display: block;
  margin-bottom: 3px;
  letter-spacing: 0.1px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__contact span:first-of-type {
    margin-bottom: 2px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__contact span:first-of-type {
    margin-bottom: 3px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__contact span:last-of-type {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__contact span:last-of-type {
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__contact span:last-of-type {
    letter-spacing: 0px;
  }
}

.c-footer .c-footer__background .l-container .c-footer__coppyright {
  font-size: 1.3rem;
  opacity: 0.5;
  letter-spacing: 0px;
  text-align: center;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .c-footer .c-footer__background .l-container .c-footer__coppyright {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .c-footer .c-footer__background .l-container .c-footer__coppyright {
    font-size: 1rem;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .c-footer__coppyright {
    line-height: 17px;
  }
}

.c-footer .c-footer__background .l-container .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .c-footer .c-footer__background .l-container .only-sp {
    display: block;
  }
}

.back-to-top {
  position: fixed;
  bottom: 4%;
  right: 2%;
  opacity: 0;
  cursor: pointer;
  z-index:9998;
}
.back-to-top__hidden {
	opacity: 0 !important;
}

@media only screen and (max-width: 480px) {
  .back-to-top {
    display: none;
  }
}

.back-to-top .wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.back-to-top .wrapper::before {
  content: '▲';
  font-size: 1.2rem;
}

.back-to-top .wrapper i {
  font-size: 2.5rem;
}

.back-to-top .wrapper span {
  margin-top: 8px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: quasimoda, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  margin-right: 0;
}

.back-to-top_show {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  pointer-events: all;
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic Pro", YuMincho, "游ゴシック", "ヒラギノ角ゴ Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  z-index: 100;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
body.fadeout::after {
  opacity: 1;
}

@media only screen and (max-width: 480px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .l-container {
    max-width: 100%;
    width: auto;
  }
}

.primary-title span:first-of-type {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  font-style: normal;
  display: block;
  line-height: 32px;
  z-index: -1;
  letter-spacing: 2.3px;
  margin-bottom: 5px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .primary-title span:first-of-type {
    letter-spacing: 2.2px;
    line-height: 19px;
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .primary-title span:first-of-type {
    font-size: 2.2rem;
    line-height: 22px;
    letter-spacing: 2.2px;
  }
}

@media only screen and (max-width: 480px){
  .primary-title span:first-of-type {
    line-height: 21px;
  }
}

.primary-title span:last-of-type {
  font-size: 1.4rem;
  color: #707070;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .primary-title span:last-of-type {
    letter-spacing: 0.9px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .primary-title span:last-of-type {
    font-size: 1.3rem;
  }
}

.popupPC {
  background-color: #fff;
  padding: 100px 113px 100px 130px;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .popupPC{
	flex-direction: column;
    padding: 77px 60px 60px 60px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .popupPC{
    padding: 124px 37px 124px 60px;
  }
}

@media only screen and (max-width: 480px) {
  .popupPC {
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    overflow-y: auto;
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 480px) {
  .popupPC {
    padding: 50px 20px;
  }
}

.popupPC .popupPC--left {
  width: 32%;
  margin-top: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .popupPC .popupPC--left {
    width: 100%;
    margin-bottom: 117px;
  }
}

@media only screen and (max-width: 480px) {
  .popupPC .popupPC--left {
    width: 100%;
    margin-bottom: 50px;
  }
}

.popupPC .popupPC--left span:first-of-type {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .popupPC .popupPC--left span:first-of-type {
	font-size: 1.8rem;
  }
}

.popupPC .popupPC--left span:last-of-type {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 31px;
}


.popupPC .popupPC--left p {
  font-size: 1.5rem;
  line-height: 28px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .popupPC .popupPC--left p {
    width: 51%;
  }
}
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .popupPC .popupPC--left p {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.popupPC .popupPC--right {
  width: 55%;
  position: relative;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .popupPC .popupPC--right {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .popupPC .popupPC--right {
    width: 63%;
  }
}

@media only screen and (max-width: 480px) {
  .popupPC .popupPC--right {
    width: 100%;
  }
}

.popupPC .popupPC--right .slider3 .slider-img {
  text-align: center;
}

/* Displayed on IE */
.frame7ie{
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 50%;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .popupPC .popupPC--right .slider3 .slider-img {
  		text-align: center;
  }
}

.popupPC .popupPC--right .slider3 .slider-img img {
  width: 100%;
  height: 661px;
  object-fit: contain;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .popupPC .popupPC--right .slider3 .slider-img img {
    width: 100%;
    height: 904px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .popupPC .popupPC--right .slider3 .slider-img img {
    height: 519px;
    object-fit: contain;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .popupPC .popupPC--right .slider3 .slider-img img {
    width: 60%;
  }
}

.popupPC .popupPC--right .arrow2 .arrow2-prev,
.popupPC .popupPC--right .arrow2 .arrow2-next {
  cursor: pointer;
  max-width: 2%;
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
}

.popupPC .popupPC--right .arrow2 .arrow2-prev img,
.popupPC .popupPC--right .arrow2 .arrow2-next img {
  width: 100%;
}

.popupPC .popupPC--right .arrow2 .arrow2-prev {
  left: 4%;
}

.popupPC .popupPC--right .arrow2 .arrow2-next {
  right: 4%;
}

@media only screen and (max-width: 480px) {
  .popupPC .popupPC--right .arrow2 .arrow2-prev {
    left: 0%;
  }
}

@media only screen and (max-width: 480px) {
  .popupPC .popupPC--right .arrow2 .arrow2-next {
    right: 0%;
  }
}

.popupPC .popupPC--right .arrow2__hidden {
  display: none;
}

.popupPC .button-close {
  position: absolute;
  top: 5%;
  right: 3.8%;
  font-size: 2.5rem;
  cursor: pointer;
  width: 23px;
  height: 23px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
	.popupPC .button-close {
    	right: 5%;
	}
}

.popupPC .button-close img {
  width: 18px;
}

@media only screen and (max-width: 480px) {
  .popupPC .button-close img {
    width: 33%;
  }
}

.popupPC__show {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
 overflow: auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .popupPC__show {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.popupSP {
  background-color: #fff;
  padding: 50px 20px;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.popupSP {
		padding: 67px 45px 46px 45px;
	}
}

@media only screen and (max-width: 480px) {
  .popupSP {
    padding: 60px 28px 45px;
  }
}

.popupSP .popupSP__content {
  margin-bottom: 40px;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.popupSP .popupSP__content {
    	margin-bottom: 65px;
  	}	
}

@media only screen and (max-width: 480px) {
  .popupSP .popupSP__content {
    	margin-bottom: 65px;
  }
}

.popupSP .popupSP__content span:first-of-type {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.popupSP .popupSP__content span:first-of-type {
	  display: block;
	  font-size: 1.8rem;
	  font-weight: 600;
	}
}

@media only screen and (max-width: 480px) {
  .popupSP .popupSP__content span:first-of-type {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 2px;
  }
}

.popupSP .popupSP__content span:last-of-type {
  display: block;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .popupSP .popupSP__content span:last-of-type {
    margin-bottom: 33px;
  }
}

.popupSP .popupSP__content p {
  font-size: 1.6rem;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.popupSP .popupSP__content p {
 		 font-size: 1.4rem;
 		 line-height: 24px;
	}

}

@media only screen and (max-width: 480px) {
  .popupSP .popupSP__content p {
    line-height: 26px;
  }
}

.popupSP .popupSP__img .slider-img img {
  width: 380px;
  height: 534px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.popupSP .popupSP__img .slider-img img {
	  width: 100%;
	  height: auto;
	  -o-object-fit: cover;
	  object-fit: cover;
	  margin: 0 auto;
	  margin-bottom: 40px;
	}
}

@media only screen and (max-width: 480px) {
	.popupSP .popupSP__img .slider-img img {
	  margin-bottom: 28px;
	}
}

.popupSP .button-close2 {
  text-align: right;
  position: fixed;
  top: 3%;
  right: 4%;
  line-height: 1;
  cursor: pointer;
  width: 15px;
}
.popupSP .button-close2 img {
    width: 15px;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.popupSP .button-close2 img {
   		 width: 15px;
	}
}

.popupSP .popupSP__img {
    text-align: center;
}

@media only screen and (max-width: 480px) {
  .popupSP .button-close2 {
    top: 4%;
    right: 8%;
  }
}

.popupSP .u-m5 {
  text-align: center;
}

.popupSP .u-m5 i {
  margin-right: 5px;
}

.popupSP .u-m5 span {
  font-weight: 600;
}

.popupSP__show {
  overflow-y: auto;
  opacity: 1;
  pointer-events: all;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.p-content1 {
  padding: 0;
  position: relative;
  padding-bottom: 250px;
	background-color: #fff;
	position: relative;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content1 {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 {
    padding-bottom: 132px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 {
    padding-bottom: 121px;
  }
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
  .p-content1 {
    padding-bottom: 132px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content1 {
    padding-bottom: 121px;
  }
}

.p-content1__over {
  position: absolute;
  height: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  top: 0;
left: 0;
right: 0;
}

.p-content1__over img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-content1__over.is-hide {
  opacity: 0;
}

.p-content1 .slide-img {
  height: 100%;
}

.p-content1 .slide-imgie {
   position: relative;
   background-size: cover;
   background-position: center center;
}

.p-content1 .swiper-container span {
  color: #fff;
  position: absolute;
  bottom: 24px;
  right: 27px;
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.7;
}

@media only screen and (max-width:1024px) and (orientation: portrait)   {
	.p-content1 .swiper-container span {
		right: 30px;
	}
}

@media only screen and (max-width:1024px) and (orientation: landscape)   {
	.p-content1 .swiper-container span {
		bottom: 20px;
		right: 23px;
		font-size: 1.1rem;
	}
}

@media only screen and (max-width:812px) and (orientation: portrait)   {
	.p-content1 .swiper-container span {
		right: 23px;
    bottom: 20px;
		font-size: 1.1rem;
    	font-weight: 400;
	}
}

@media only screen and (max-width:812px) and (orientation: landscape)   {
  .p-content1 .swiper-container span {
	bottom: 10px;
   	right: 13px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content1 .swiper-container span {
	bottom: 10px;
    right: 15px;
  } 
}

.p-content1 .p-content1__background {
  padding: 0;
  padding-left: 26%;
  padding-top: 126px;
  position: relative;
  height: 100%;
}

/* @-webkit-keyframes MoveUpDown {
  0% {
    opacity: 0;
    bottom: -50px;
  }
  50% {
    opacity: 0;
    bottom: -25px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}

@keyframes MoveUpDown {
  0% {
    opacity: 0;
    bottom: -50px;
  }
  50% {
    opacity: 0;
    bottom: -25px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
} */

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content1 .p-content1__background {
    padding-left: 13.8%;
	padding-top: 261px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background {
    padding-left: 17%;
    padding-top: 130px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 .p-content1__background {
    padding-left: 15.5%;
	padding-top: 215px;
  }
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
  .p-content1 .p-content1__background {
    padding-left: 24.5%;
	padding-top: 95px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content1 .p-content1__background {
	padding-top: 178px;
    padding-left: 13.5%;
  }
}

.p-content1 .p-content1__background .p-content1__text {
  position: absolute;
  bottom: 62px;
  left: 5%;
  z-index: 99;
  opacity: 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text {
    top: 150px;
    left: 7%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text {
    position: absolute;
   bottom: 5.9%;
    left: 4.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text {
    top: 140px;
    left: 5.9%;
    bottom: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text {
    bottom: 8%;
    left: 5.6%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content1 .p-content1__background .p-content1__text {
    top: 105px;
    left: 7%;
  }
}

.p-content1 .p-content1__background .p-content1__text p:first-of-type {
  font-size: 1.8rem;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 0.4px;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  opacity: 1;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 55%;
}

.p-content1 .p-content1__background .p-content1__text p:first-of-type .block {
  height: 50px;
  width: 0%;
  background: #000000;
  position: absolute;
  display: -webkit-box;
  display: flex;
  top: 0;
}

@media only screen and (max-width: 480px) {
  .p-content1 .p-content1__background .p-content1__text p:first-of-type .block {
    height: 36px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text p:first-of-type {
    font-size: 1.3rem;
    line-height: 18px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text p:first-of-type {
    font-size: 1.3rem;
    line-height: 19px;
    margin-bottom: 20px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px){
  .p-content1 .p-content1__background .p-content1__text p:first-of-type {
    margin-bottom: 18px;
    width: 50%;
  }
}

.p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) {
  font-size: 4.8rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 3.7px;
  line-height: 55px;
  margin-bottom: 22px;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  opacity: 1;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) .block {
  height: 165px;
  width: 0%;
  background: #000000;
  position: absolute;
  display: -webkit-box;
  display: flex;
  top: 0;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) .block {
    height: 90px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) .block {
    height: 165px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) .block {
    height: 100px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) .block {
    height: 100px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) {
    font-size: 2.8rem;
    line-height: 32px;
    margin-bottom: 13px;
    letter-spacing: 2px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) {
    font-size: 2.8rem;
    line-height: 32px;
    margin-bottom: 11px;
    letter-spacing: 2px;
  }
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text p:nth-of-type(2) {
    letter-spacing: 2.2px;
  }
}

.p-content1 .p-content1__background .p-content1__text p:last-of-type {
  font-size: 1.9rem;
  font-family: quasimoda, sans-serif;
  font-style: italic;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  opacity: 1;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 70%;
  margin-left: 0;
}

.p-content1 .p-content1__background .p-content1__text p:last-of-type .block {
  height: 28px;
  width: 0%;
  background: #000000;
  position: absolute;
  display: -webkit-box;
  display: flex;
 top: 5px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text p:last-of-type .block {
    height: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content1 .p-content1__background .p-content1__text p:last-of-type .block {
    height: 18px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content1 .p-content1__background .p-content1__text p:last-of-type {
    font-size: 1.3rem;
    width: 75%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content1 .p-content1__background .p-content1__text p:last-of-type {
    font-size: 1.3rem;
    width: 75%;
  }
}

.p-content1 .p-content1__background .p-content1__text .text {
  opacity: 0;
}

.p-content1 .p-content1__background .p-content1__text .text.is-show {
  opacity: 1;
}

.p-content1 .p-content1__background .p-content1__text.is-show {
  opacity: 1;
}

.p-content1 .p-content1__background .p-content1__text.is-show p:first-of-type .block {
  -webkit-animation: mainBlock 1.6s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation: mainBlock 1.6s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
}

.p-content1 .p-content1__background .p-content1__text.is-show p:nth-of-type(2) .block {
  -webkit-animation: mainBlock 1.7s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation: mainBlock 1.7s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
}

.p-content1 .p-content1__background .p-content1__text.is-show p:last-of-type .block {
  -webkit-animation: mainBlock 1.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation: mainBlock 1.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
}

@-webkit-keyframes mainBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes mainBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@-webkit-keyframes secBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes secBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@-webkit-keyframes mainFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* @keyframes mainFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes secFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes secFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
} */

.p-content2 .p-content2__background {
	position: relative;
    z-index: -1;
	height: 100vh;
}

.p-content2 .p-content2__background img {
	    height: 100%;
	width: 100%;
	object-fit: cover;
}

.p-content2 .p-content2__background .p-content2__text {
  color: #fff;
  width: 80%;
  z-index: 8;
  position: absolute;
  top: 28%;
  left: 10.5%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text {
    top: 17.8%;
    left: 6.6%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape){
  .p-content2 .p-content2__background .p-content2__text {
	top: 18.1%;
    left: 8%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait){
  .p-content2 .p-content2__background .p-content2__text {
	top: 18.7%;
    left: 8%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content2 .p-content2__background .p-content2__text {
    top: 13%;
    width: 100%;
	margin: 0 auto;
	left: 0;
	padding: 0 6%;
  }
}



.p-content2 .p-content2__background .p-content2__text p:first-of-type {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  line-height: 36px;
  text-transform: uppercase;
  margin-bottom: 17px;
  letter-spacing: 1.7px;
  margin-left: 3px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text p:first-of-type {
    letter-spacing: 2px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content2 .p-content2__background .p-content2__text p:first-of-type {
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text p:first-of-type {
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 1.3px;
  }
}

.p-content2 .p-content2__background .p-content2__text p:nth-of-type(2) {
  font-size: 3.6rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 48px;
  margin-bottom: 43px;
  margin-left: 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text p:nth-of-type(2) {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content2 .p-content2__background .p-content2__text p:nth-of-type(2) {
    font-size: 2.2rem;
    line-height: 33px;
    margin-bottom: 42px;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text p:nth-of-type(2) {
    font-size: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 33px;
    margin-bottom: 39px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content2 .p-content2__background .p-content2__text p:nth-of-type(2) {
    font-size: 2.2rem;
    line-height: 33px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content2 .p-content2__background .p-content2__text .only-pc {
    display: none;
  }
}

.p-content2 .p-content2__background .p-content2__text p:last-of-type {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 36px;
  margin-left: 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text p:last-of-type {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content2 .p-content2__background .p-content2__text p:last-of-type {
    font-size: 1.4rem;
    line-height: 26px;
    width: 73%;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content2 .p-content2__background .p-content2__text p:last-of-type {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

.p-content3 {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 151px 0 143px 0;
	background-color: #fff;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content3 {
    padding: 151px 0 142px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content3 {
    padding: 124px 0 112px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content3 {
    padding: 125px 0 188px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content3 {
    padding: 150px 0 122px 0;
  }
}

.p-content3 .primary-title {
  text-align: center;
  margin-bottom: 37px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content3 .primary-title {
    margin-bottom: 37px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content3 .primary-title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content3 .primary-title {
    margin-bottom: 22px;
  }
}

.p-content3 .slider {
  display: -webkit-box;
  display: flex;
  overflow: hidden;
  z-index: 5;
}

.p-content3 .slider .slider-img1 {
  text-align: center;
  cursor: pointer;
  width: 500px;
  margin: 0 40px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content3 .slider .slider-img1 {
    width: 500px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content3 .slider .slider-img1 {
    width: 414px;
    margin: 0 15px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content3 .slider .slider-img1 {
    width: 414px;
    margin: 0 15px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content3 .slider .slider-img1 {
	width: 414px;
    height: 483px;
    margin: 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content3 .slider .slider-img1 .slider-wrapper {
	position: relative;
	padding-top: 100%;
	margin-bottom: 25px;
  }
}

.p-content3 .slider .slider-img1 img {
  height: 500px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto 27px auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content3 .slider .slider-img1 img {
    margin-bottom: 26px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content3 .slider .slider-img1 img {
    height: 414px;
    margin: 0 auto 25px auto;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content3 .slider .slider-img1 img {
    height: 414px;
    margin: 0 auto 25px auto;
  }
}

@media only screen and (max-width: 480px) {
  .p-content3 .slider .slider-img1 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
  }
}

.p-content3 .slider .slider-img1.slick-center img {
  opacity: 1;
}

.p-content3 .slider .slider-img1 div span:first-of-type {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.3px;
  line-height: 24px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content3 .slider .slider-img1 div span:first-of-type {
    font-size: 1.4rem;
    letter-spacing: 0.2px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content3 .slider .slider-img1 div span:first-of-type {
    font-size: 1.4rem;
    letter-spacing: 0.2px;
  }
}

@media only screen and (max-width: 480px){
  .p-content3 .slider .slider-img1 div span:first-of-type {
    font-size: 1.4rem;
    font-weight: 600;
	letter-spacing: 0px;
	line-height: 23px
  }
}

.p-content3 .slider .slider-img1 div span:last-of-type {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content3 .slider .slider-img1 div span:last-of-type {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content3 .slider .slider-img1 div span:last-of-type {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 480px){
  .p-content3 .slider .slider-img1 div span:last-of-type {
    font-size: 1.3rem;
  }
}

.p-content3 .slider__hidden {
  z-index: -1;
}

.p-content3 .arrow .arrow-prev,
.p-content3 .arrow .arrow-next {
  top: 51.4%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  width: 23px;
  z-index: 10;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.p-content3 .arrow .arrow-prev,
	.p-content3 .arrow .arrow-next {
	  top: 47%;
	  -webkit-transform: translateY(-50%);
	  transform: translateY(-50%);
	  cursor: pointer;
      width: 10px;
	}
}

@media only screen and (max-width: 480px) {
  .p-content3 .arrow .arrow-prev,
  .p-content3 .arrow .arrow-next {
    top: 50%;
	width: 30px;
    height: 20px;  
	display: flex;
  }
}

@media only screen and (max-width: 480px) {
  .p-content3 .arrow .arrow-prev > img,
  .p-content3 .arrow .arrow-next > img {
	width: 38%;
  }
}

.p-content3 .arrow .arrow-prev i,
.p-content3 .arrow .arrow-next i {
  font-size: 5rem;
}

@media only screen and (max-width: 480px) {
  .p-content3 .arrow .arrow-prev i,
  .p-content3 .arrow .arrow-next i {
    font-size: 4rem;
  }
}

.p-content3 .arrow .arrow-prev {
  position: absolute;
  left: 3%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
	.p-content3 .arrow .arrow-prev {
	  left: 4%;
	}
}

@media only screen and (max-width: 480px) {
  .p-content3 .arrow .arrow-prev {
    background-color: transparent;
    left: 6%;
	justify-content: flex-start;
  }
}

.p-content3 .arrow .arrow-prev i {
  padding-left: 10px;
}

.p-content3 .arrow .arrow-prev__hidden {
  display: none;
}

.p-content3 .arrow .arrow-next {
  position: absolute;
  right: 3%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
	.p-content3 .arrow .arrow-next {
	  right: 4%;
	}
}

@media only screen and (max-width: 480px) {
  .p-content3 .arrow .arrow-next {
    background-color: transparent;
	right: 6%;
	justify-content: flex-end;
  }
}

.p-content3 .arrow .arrow-next__hidden {
  display: none;
}

.p-content3__hidden {
  position: static;
}

.p-content4 .p-content4__background {
  background-color: #F4F4F4;
  padding: 173px 0 26px 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background {
    padding: 141px 0 33px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background {
    padding: 114px 0 27px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background {
    padding: 114px 0 50px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background {
    padding: 123px 0 59px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container {
    width: 100%;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 0 12px;
	position: relative;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 0;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left {
  width: 28%;
  height: 400px ;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left {
    width: 31%;
    margin-right: auto;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left {
    padding-bottom: 44px;
	  height: 103px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left {
    height: auto;
	width: 100%;
	padding-left: 0;
	 padding-bottom: 0px;  
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner {
	  position: relative !important;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner {
	padding-left: 37px;
    margin: 10px auto 0 auto;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner {
	padding-left: 26px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner {
	  position: static !important;
	  padding-left: 33px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner {
    width: 100%;
    margin: 0 auto;
	padding-left: 0px;
	padding-bottom: 43px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above,
.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below {
  width: 100%;
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .primary-title,
.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .primary-title {
  margin-bottom: 75px;
  margin-left: 21px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .primary-title,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .primary-title {
    margin-bottom: 74px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .primary-title,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .primary-title {
    margin-bottom: 26px;
    margin-top: 12px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .primary-title,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .primary-title {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .primary-title span:first-of-type,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .primary-title span:first-of-type {
    line-height: 13px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .primary-title,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .primary-title {
    width: unset;
    margin-left: 28px;
	display: inline-block;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title {
    display: none;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title a,
.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title a {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  padding-left: 21px;
  margin-bottom: 15px;
  position: relative;
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title a::before,
.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title a::before {
content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s linear;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title a::before,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title a::before {
	top: 12px;
    left: 1px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title a.is-active::before{
	opacity: 1;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title a,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title a {
	line-height: 29px;
	font-size: 1.4rem;
	font-weight: 600;
	display: block;
	padding-left: 21px;
	position: relative;
	margin-bottom: 0;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title a i,
.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title a i {
  font-size: 0.2rem;
  height: inherit;
  margin-right: 14px;
  color: #707070;
  opacity: 0;
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title .is-active,
.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title .is-active {
  	opacity: 1;
	transition: 0.3s linear
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above .content-title .is-active,
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .below .content-title .is-active {
	opacity: 1;
    transition: 0.3s linear;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .only-pc {
    display: none;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__left .p-content4__inner .above {
    width: 100%;
    margin: 0;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right {
  width: 69.6%;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right {
    width: 63.8%;
    margin-right: 5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right {
    width: 100%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right {
    width: 91%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right {
    width: 100%;
    padding-left: 28px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right h3 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 47px;
  margin-bottom: 64px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right h3 {
    line-height: 46px;
    padding-top: 3px;
    margin-bottom: 66px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right h3 {
    font-size: 2.0rem;
    line-height: 30px;
    letter-spacing: 0px;
    margin-bottom: 29px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right h3 {
    font-size: 2rem;
    line-height: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 0px;
	padding-top: 5px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .desc {
  padding-bottom: 107px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 34px;
  text-align: justify;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .desc {
    width: 91%;
    padding-bottom: 108px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .desc {
    line-height: 26px;
    font-size: 1.4rem;
    letter-spacing: 0;
    padding-bottom: 87px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .desc {
    font-size: 1.4rem;
    line-height: 26.5px;
    padding-bottom: 62px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .desc {
    width: 100%;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right img {
  margin-bottom: 43px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right img {
    width: 91.7%;
    margin-bottom: 44px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right img {
    width: 100%;
    margin-bottom: 31px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right img {
    width: 100%;
    margin-bottom: 28px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right img {
    max-width: 100%;
	margin-bottom: 30px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:first-of-type {
  display: block;
  font-size: 2rem;
  color: #707070;
  font-family: quasimoda, sans-serif;
  line-height: 32px;
  margin-left: 2px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:first-of-type {
    line-height: 30px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:first-of-type {
    font-size: 1.6rem;
    line-height: 26px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:first-of-type {
    font-size: 1.6rem;
    line-height: 26px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:last-of-type {
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  margin-bottom: 25px;
  font-feature-settings: "palt" 1;
  letter-spacing: 2.0px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:last-of-type {
    margin-bottom: 27px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:last-of-type {
    font-size: 1.8rem;
    letter-spacing: 0px;
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner span:last-of-type {
    font-size: 1.8rem;
    line-height: 31px;
    margin-bottom: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner p {
  font-size: 1.6rem;
  line-height: 34px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner p {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner p {
    font-size: 1.4rem;
    line-height: 27.5px;
    margin-bottom: 85px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .content-inner p {
    line-height: 26.5px;
    margin-bottom: 0px;
    letter-spacing: 0;
    padding-right: 28px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m22 {
    margin-bottom: 0px !important;
	   padding-bottom: 61px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m22 {
    margin-bottom: 0px !important;
	padding-bottom: 60px;
  }
}

.p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m7 {
  letter-spacing: 0;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m7 {
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m7 {
    letter-spacing: 0px;
    padding-right: 28px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m11 {
    margin-bottom: 0px;
	  padding-bottom:61px !important;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m11 {
    margin-bottom: 0px !important;
  }
}

@media only screen and (max-width: 480px) {
  .p-content4 .p-content4__background .l-container .p-content4__wrapper .p-contetn4__right .u-m11 {
    letter-spacing: 0px;
    margin-bottom: 0px !important;
  }
}

.p-content5 {
  padding: 155px 0 118px 0;
  background-color: #fff;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 {
    padding: 146px 0 141px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 {
    padding: 123px 0 94px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 {
    padding: 126px 0 114px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 {
    padding: 120px 0 119px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container {
    width: 100%;
  }
}

.p-content5 .l-container .primary-title {
  text-align: center;
  margin-bottom: 87px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .primary-title {
    margin-bottom: 51px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .primary-title {
    text-align: left;
    padding-left: 44px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .primary-title {
    width: 90%;
    margin-left: 28px;
    padding-left: 0;
  }
}

.p-content5 .l-container .p-content5__desc {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 36px;
  margin-bottom: 110px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__desc {
    width: 86%;
    margin: 0 auto 108px auto;
    text-align: center;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__desc {
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 57px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__desc {
    font-size: 1.4rem;
    line-height: 26px;
    width: 88%;
    margin: 0 auto 31px auto;
	text-align: left;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__desc {
    width: 100%;
    margin-left: 28px;
    text-align: left;
    letter-spacing: 0px;
    margin: 0 auto 59px auto;
	font-size: 1.4rem;
	padding: 0 28px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .only-ipadp {
    display: none;
  }
}

.p-content5 .l-container .time-line {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto 95px auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .time-line {
    width: 86%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .time-line {
    width: 88%;
    margin: 0 auto 54px auto;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .time-line {
    width: 88%;
    margin-bottom: 43px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .time-line {
    width: 100%;
    margin-bottom: 43px;
  }
}

.p-content5 .l-container .time-line .effect {
  width: 25%;
  padding: 18px 0 21px 0;
  border-bottom: 3px solid #acaaaa;
  font-size: 1.8rem;
  font-style: italic;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  justify-content: flex-end;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .time-line .effect {
   	padding: 18px 0 22px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .time-line .effect {
    padding: 10px 0 15px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .time-line .effect {
    width: 25%;
    padding: 10px 0 15px 0;
    border-bottom: 3px solid #acaaaa;
    font-size: 1.8rem;
    font-style: italic;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    cursor: pointer;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .time-line .effect {
    padding: 10px 0 15px 0;
  }
}

.p-content5 .l-container .time-line .effect span {
  display: block;
  width: 100%;
  text-align: center;
  font-family: quasimoda, sans-serif;
  font-size: 2rem;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .time-line .effect span {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .time-line .effect span {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .time-line .effect span {
    line-height: 16px;
    font-size: 1.5rem;
  }
}

.p-content5 .l-container .time-line .effect span .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .time-line .effect span .only-sp {
    display: block;
  }
}

.p-content5 .l-container .time-line .effect i {
  font-size: 1.3rem;
}
.p-content5 .l-container .time-line .effect svg {
  margin-right: -3px;
}

.p-content5 .l-container .time-line .effect__show {
  border-bottom: 3px solid;
}

.p-content5 .l-container .time-line .effect__show span {
  font-weight: 500;
}

.p-content5 .l-container .p-content5__content {
  display: block;
	height: 0;
	overflow: hidden;
  width: 95%;
  margin: 0 auto;

}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content {
    width: 86%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content {
    width: 88.5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content {
    width: 86.5%;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-top: 5px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper {
    margin: 0 auto;
    width: 93%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left {
  width: 40%;
  height: 200px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left {
    height: auto;
    width: 39%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left {
    width: 100%;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 {
  margin-bottom: 54px;
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 {
    margin-bottom: 37.5px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 {
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 {
    margin-bottom: 20px;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:first-of-type {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  margin-right: 18px;
  font-weight: 600;
  letter-spacing: 2.2px;
  font-family: quasimoda, sans-serif;
  width: 100px;
  height: 35px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 3px 5px 5px 9px;
  font-size:1.6rem;
  letter-spacing: 2px;
}

.u-m26{
	width: 145px !important;
}
@media only screen and (max-width: 480px) {
  .u-m26{
	width: 125px !important;
  }
}
@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:first-of-type {
    width: 98px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:first-of-type {
    width: 84px;
    height: 28px;
    padding: 8px 16px 9px 19px;
    margin-right: 16px;
	font-size:1.3rem;
	font-weight: bold;
	letter-spacing: 1px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:first-of-type {
    padding: 11px 11px 11px 15px;
    margin-right: 9px;
    width: 86px;
    height: 29px;
    font-weight: bold;
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 480px){
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:first-of-type {
    margin-right: 17px;
    width: 85px;
    padding-bottom: 13px;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:last-of-type {
  font-weight: bold;
  font-size: 2rem;
  line-height: 34px;
  margin-left: 10px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:last-of-type {
    font-size: 1.6rem;
    margin-left: 5px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:last-of-type {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 27px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 span:last-of-type {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 0px;
    margin-left: 2px;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .text1 .u-m6 {
  font-weight: 500;
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:first-of-type {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:first-of-type {
    margin-bottom: 20px;
  }
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .pc-only {
		display: none;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:first-of-type {
    margin-bottom: 28px;
    font-size: 1.8rem;
    line-height: 28px;
    letter-spacing: 0.4px;
  }
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .pc-only {
		display: none;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:first-of-type {
    margin-bottom: 34px;
    font-size: 1.8rem;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px){
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:first-of-type {
    font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 32px;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:last-of-type {
  margin-bottom: 40px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 28px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:last-of-type {
    margin-bottom: 34px;
    font-size: 1.4rem;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left p:last-of-type {
    margin-bottom: 23px;
    font-size: 1.4rem;
    line-height: 25px;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left a {
  padding-bottom: 5px;
  border-bottom: 2px solid;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0px;
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .only-pc {
    display: none;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .only-pc {
    display: none;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__left .only-sp {
    display: block;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right {
  width: 50%;
  position: relative;
  align-self: flex-start;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right {
    width: 100%;
    margin-bottom: 6px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right {
    width: 100%;
    margin-bottom: 0;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2 .slider2-img {
  position: relative;
}


/* Displayed on IE */
.frame6ie {
   position: relative;
   background-size: cover;
   background-position: center center;
   width: 100%;
   height: 379px;
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2 .slider2-img img {
  height: 379px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2 .slider2-img img {
    height: 294px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2 .slider2-img img {
    height: 297px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2 .slider2-img img {
    height: 453px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2 .slider2-img img {
    height: 239px;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .slider2__hidden {
  z-index: -1;
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right span {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right span {
    bottom: 6.2%;
    left: 6.2%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right span {
    bottom: 3%;
    left: 4%;
	   font-size: 1.2rem;
  font-weight: 600;

  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right span {
   	bottom: 1.8%;
    left: 2.7%;;
	font-size: 1.2rem;
    font-weight: 600;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right span {
    bottom: 3.5%;
    left: 4.5%;
    font-size: 1.2rem;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide {
  cursor: pointer;
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev,
.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev,
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    top: 47%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev,
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    top: 47%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev,
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    top: 48%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev,
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    top: 46.5%;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev {
  left: 5%;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev {
    left: 4%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev {
    left: 6.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev {
    left: 2.5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-prev {
    left: 5%;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
  right: 5%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    right: 6%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    right: 4%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    right: 3%;
  }
}

@media only screen and (max-width: 480px){
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .arrow-slide .arrow3-next {
    right: 5%;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .u-m2 {
  margin-bottom: 30px;
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .u-m2 {
    display: block;
  }
}

.p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .u-m3 {
  border: none;
  background-color: transparent;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  font-weight: 500;
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .p-content5__wrapper .p-content5__right .u-m3 {
    display: block;
  }
}

.p-content5 .l-container .p-content5__content .only-ipad1 {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .only-ipad1 {
    display: block;
    margin-bottom: 21px;
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content5 .l-container .p-content5__content .only-ipad1 {
    display: block;
    margin-bottom: 25px;
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0px;
  }
}

.p-content5 .l-container .p-content5__content .only-ipad2 {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content5 .l-container .p-content5__content .only-ipad2 {
    display: inline-block;
    padding-bottom: 0px;
    border-bottom: 2px solid;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0;
    width: fit-content;
    text-align: left;
    line-height: 1.6;
  }
}

.p-content5 .l-container .active {
  height: auto;
  transition: height 0.3s linear
}

.p-content5__right .slick-dots {
	display: none;
}

.p-content6 {
  background-color: #F4F4F4;
  padding: 153px 0 109px 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 {
    padding: 148px 0 140px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 {
    padding: 127px 0 113px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 {
    padding: 129px 0 102px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 {
    padding: 125px 0 113px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container {
    width: 100%;
  }
}

.p-content6 .l-container .primary-title {
  text-align: center;
  margin-bottom: 52px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container .primary-title {
    margin-bottom: 52px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .primary-title {
    margin-bottom: 56px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .primary-title {
    text-align: left;
    padding-left: 44px;
    margin-bottom: 52px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .primary-title {
    width: 90%;
    margin-left: 28px;
    padding-left: 0;
  }
}

.p-content6 .l-container img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 95%;
  margin: 0px auto 116px auto;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container img {
    display: none;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container img {
    display: none;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container img {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container img {
    display: none;
  }
}

.p-content6 .l-container .only-ipadpro {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container .only-ipadpro {
    display: block;
    width: 87%;
    margin: 0px auto 112px auto;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .only-ipadpro {
    display: none;
  }
}

.p-content6 .l-container .only-ipadl {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .only-ipadl {
    display: block;
    width: 88.5%;
    margin: 0px auto 47px auto;
  }
}

.p-content6 .l-container .only-ipad {
  display: none;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .only-ipad {
    display: block;
    width: 88.5%;
    margin: 0px auto 49px auto;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .only-ipad {
    display: none;
  }
}

.p-content6 .l-container .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .only-sp {
    display: block;
    width: 86.5%;
    margin: 0px auto 52px auto;
  }
}

.p-content6 .l-container .p-content6__content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin: 0 auto;
  width: 95%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content {
    width: 86.5%;
    padding-bottom: 42px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content {
    width: 88%;
    padding-bottom: 9px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content {
    width: 88%;
    padding-bottom: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-bottom: 2px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 86%;
    padding-bottom: 50px;
  }
}

.p-content6 .l-container .p-content6__content .p-contetn6__left,
.p-content6 .l-container .p-content6__content .p-contetn6__right {
  width: 46.5%;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left,
  .p-content6 .l-container .p-content6__content .p-contetn6__right {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left,
  .p-content6 .l-container .p-content6__content .p-contetn6__right {
    width: 100%;
  }
}

.p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner,
.p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner {
  margin-bottom: 67px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner {
    margin-bottom: 67px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner {
    margin-bottom: 44px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner {
    margin-bottom: 41px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner {
    margin-bottom: 42px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner:last-child {
    margin-bottom: 0px;
  }
}

.p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner span:first-of-type,
.p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner span:first-of-type {
  display: block;
  font-size: 1.6rem;
  font-family: quasimoda, sans-serif;
  color: #9e9d9d;
  line-height: 30px;
  margin-left: 1px;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner span:first-of-type,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner span:first-of-type {
    line-height: 31px;
  }
}

.p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner span:last-of-type,
.p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner span:last-of-type {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  display: block;
  font-feature-settings: "palt" 1;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner span:last-of-type,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner span:last-of-type {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 26px;
    display: block;
    letter-spacing: 0px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner span:last-of-type,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner span:last-of-type {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 26px;
    display: block;
    letter-spacing: 0px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 480px){
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner span:last-of-type,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner span:last-of-type {
    margin-bottom: 27px;
  }
}

.p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner .desc,
.p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner .desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 28px;
  text-align: justify;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner .desc,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner .desc {
    font-size: 1.4rem;
    line-height: 26px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner .desc,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner .desc {
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner .desc,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner .desc {
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content .p-contetn6__left .content-inner .u-m23,
  .p-content6 .l-container .p-content6__content .p-contetn6__right .content-inner .u-m23 {
    margin-bottom: 50px;
  }
}

.p-content6 .l-container .p-content6__content2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding-top: 109px;
  margin: 0 auto;
  width: 95%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content2 {
    width: 86.5%;
    padding-top: 111px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content2 {
    padding-top: 51px;
    margin: 0 auto;
    width: 88%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 53px;
    width: 88%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding-top: 52px;
    width: 86%;
  }
}

.p-content6 .l-container .p-content6__content2 p:first-of-type {
  width: 29%;
  font-weight: bold;
  font-size: 2rem;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content2 p:first-of-type {
    font-size: 1.8rem;
    font-weight: bold;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content2 p:first-of-type {
    width: 100%;
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content2 p:first-of-type {
    margin-bottom: 24px;
    width: 100%;
  }
}

.p-content6 .l-container .p-content6__content2 p:last-of-type {
  width: 70.3%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 32px;
  padding-top: 5px;
  text-align: justify;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content2 p:last-of-type {
    width: 76%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content2 p:last-of-type {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content6 .l-container .p-content6__content2 p:last-of-type {
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0px;
    margin-top: 6px;
    width: 71.3%;
    padding-top: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content6 .l-container .p-content6__content2 p:last-of-type {
    width: 100%;
    font-size: 1.4rem;
    line-height: 26px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content6 .l-container .p-content6__content2 p:last-of-type {
    letter-spacing: 0px;
  }
}

.p-content7 {
  padding: 150px 0 90px 0px;
	background-color: #fff;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 {
    padding: 150px 0 99px 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 {
    padding: 124px 0 70px 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 {
    padding: 133px 0 65px 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 {
    padding: 123px 0 101px 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .l-container {
    width: 90%;
  }
}

.p-content7 .l-container .primary-title {
  text-align: center;
  margin-bottom: 53px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .l-container .primary-title {
    margin-bottom: 36px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .l-container .primary-title {
    margin-bottom: 54px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .l-container .primary-title {
    text-align: left;
    padding-left: 44px;
    margin-bottom: 53px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .l-container .primary-title {
    width: 90%;
    margin-left: 7px;
    padding-left: 0;
    margin-bottom: 53px;
  }
}

.p-content7 .p-content7__wrapper {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper {
    width: 88%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper {
    width: 88%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper {
    width: 96%;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content {
  width: calc(100%/4 - 23px);
  margin-bottom: 47px;
  margin-right: 30px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content {
    width: calc(100%/3 - 20px);
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content {
    width: calc(100%/4 - 16px);
    margin-bottom: 24px;
    margin-right: 21px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content {
    width: calc(100%/3 - 15px);
    margin-bottom: 30px;
    margin-right: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content {
    width: calc(100%/2 - 10px);
    margin-right: 20px;
    margin-bottom: 24px;
  }
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(even) {
    margin-right: 0px;
  }
}

.p-content7__content .frame {
	margin-bottom: 18px;
}

/* Displayed on IE */
.frameie{
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 349px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .frameie{
	height: 365px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .frameie{
	height: 281px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .frameie{
	height: 281px;
  }
}

@media only screen and (max-width: 480px){
  .frameie{
	height: 225px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content img {
  margin-bottom: 20px;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content img {
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content img {
    margin-bottom: 21px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content img {
    width: 100%;
	margin-bottom: 17px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content .only-ipadprop {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content .only-ipadprop {
    display: block;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content .p-content7__text {
  line-height: 1.6;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text {
    line-height: 1.4;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:first-of-type {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  line-height: 27px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:first-of-type {
    font-size: 1.4rem;
    line-height: 16px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:first-of-type {
    font-size: 1.4rem;
    line-height: 16px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(2) {
  font-size: 1.4rem;
  opacity: 0.5;
  display: block;
  margin-bottom: 15px;
  line-height: 27px;
  font-family: quasimoda, sans-serif;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(2) {
    font-size: 1.2rem;
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(2) {
    font-size: 1.2rem;
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(2) {
    margin-bottom: 12px;
	 line-height: 27px;
  }
}

@media only screen and (max-width: 480px)  {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(2) {
    margin-bottom: 10px;
    line-height: 22px;
    letter-spacing: 0.5px;
    margin-left: 1px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(3) {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(3) {
    font-size: 1.2rem;
    line-height: 19px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(3) {
    font-size: 1.2rem;
    line-height: 12px;
    letter-spacing: 0px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 480px){
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:nth-of-type(3) {
     margin-bottom: 5px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:last-of-type {
  font-size: 1.3rem;
  font-weight: 500;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:last-of-type {
    font-size: 1.2rem;
    letter-spacing: 0px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:last-of-type {
    font-size: 1.2rem;
    letter-spacing: 0px;
    display: block;
    line-height: 23px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content .p-content7__text span:last-of-type {
    line-height: 19px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(2) {
    margin-right: 0px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content:nth-child(4) {
  margin-right: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(4) {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(4) {
    margin-right: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(4) {
    margin-right: 0px;
  }
}

.p-content7 .p-content7__wrapper .p-content7__content:nth-child(8) {
  margin-right: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(8) {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(8) {
    margin-right: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(8) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(3) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(3) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(3) {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(6) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(6) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(6) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(9) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(9) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(9) {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(10) {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(10) {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(10) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(12) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(12) {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content7 .p-content7__wrapper .p-content7__content:nth-child(12) {
    margin-right: 0px;
  }
}

.p-content8 {
  padding-bottom: 87px;
	background-color: #fff;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 {
    padding-bottom: 95px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 {
    padding-bottom: 41px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 {
    padding-bottom: 78px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 {
    padding-bottom: 31px;
  }
}

.p-content8 .p-content8__background {
  background-image: url(../img/facilities_01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 224px 0 214px 0;
}

@media only screen and (max-width: 1024px) and (orientation:  portrait) {
  .p-content8 .p-content8__background {
    padding: 223px 0 214px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .p-content8__background {
    padding: 190px 0 176px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .p-content8__background {
     padding: 189px 0 175px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .p-content8__background {
    padding: 190px 0 174px 0;
  }
}

.p-content8 .p-content8__background .primary-title {
  color: #fff;
  text-align: center;
}

.p-content8 .p-content8__background .primary-title span:last-of-type {
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container {
    width: 100%;
  }
}

.p-content8 .l-container .p-content8__desc {
  margin: 73px auto 139px auto;
  padding-left: 30px;
  padding-right: 20px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc {
    padding: 0;
    width: 90%;
    margin: 72px auto 138px auto;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__desc {
    width: 88%;
    margin: 53px auto 97px auto;
    padding-left: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc {
    width: 88%;
    margin: 29px auto 72px auto;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__desc {
	width: 100%;
    padding: 0 28px;  
    margin: 29px auto 98px auto;
  }
}

.p-content8 .l-container .p-content8__desc div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__desc div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.p-content8 .l-container .p-content8__desc div span {
  width: 26%;
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div span {
    padding-left: 20px;
    padding-top: 5px;
    line-height: 31px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__desc div span {
    font-size: 1.6rem;
    font-weight: bold;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div span {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 25px;
    padding-left: 0;
	   width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__desc div span {
    width: 100%;
    margin-bottom: 30px;
	padding-top: 7px;
  }
}

.p-content8 .l-container .p-content8__desc div .only-ipapprop {
  display: none;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div .only-ipapprop {
    display: block;
    line-height: 33px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div .only-ipapprop {
    display: none;
  }
}

.p-content8 .l-container .p-content8__desc div p {
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  line-height: 32px;
  padding-top: 4px;
  padding-left: 108px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div p {
    width: 72%;
    padding-top: 5px;
    padding-left: 5px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__desc div p {
    font-size: 1.4rem;
    width: 71%;
    letter-spacing: 0px;
    line-height: 26px;
    margin-top: 0px;
    padding-left: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__desc div p {
    font-size: 1.4rem;
    width: 100%;
    letter-spacing: 0px;
    line-height: 26px;
    margin-top: 0px;
    padding-top: 0px;
    padding-left: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__desc div p {
    width: 100%;
    letter-spacing: 0;
  }
}

.p-content8 .l-container .p-content8__content {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__content {
    width: 88%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content {
    width: 88%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
  }
}

.p-content8 .l-container .p-content8__content .p-content8__item {
  width: calc(100%/3 - 29.67px);
  margin-bottom: 53px;
  margin-right: 44px;
}

.p-content8 .l-container .p-content8__content .p-content8__item .frame2{
	 margin-bottom: 17px;
}

/* Displayed on IE */
.frame2ie{
            position: relative;
            background-size: cover;
            background-position: center center;
			width: 100%;
	 		height: 233px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .frame2ie{
	 height: 279px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .frame2ie{
	height: 187px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .frame2ie{
    height: 215px;
  }
}

@media only screen and (max-width: 480px) {
  .frame2ie{
	height: 213px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item {
    width: calc(100%/2 - 22.67px);
    margin-bottom: 52px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__content .p-content8__item {
    width: calc(100%/3 - 21.67px);
    margin-bottom: 49px;
    margin-right: 31px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item {
    width: calc(100%/2 - 14.67px);
    margin-bottom: 29px;
    margin-right: 29px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__content .p-content8__item {
    width: 100%;
  }
}

.p-content8 .l-container .p-content8__content .p-content8__item img {
  text-align: center;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__content .p-content8__item img {
    margin-bottom: 21px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item img {
    margin-bottom: 19px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__content .p-content8__item img {
    height: 400px;
	 margin-bottom: 18px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__content .p-content8__item img {
    height: auto;
  }
}

.p-content8 .l-container .p-content8__content .p-content8__item span {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  margin-bottom: 13px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__content .p-content8__item span {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item span {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__content .p-content8__item span {
    margin-bottom: 14px;
  }
}

.p-content8 .l-container .p-content8__content .p-content8__item p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 24px;
  text-align: justify;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content8 .l-container .p-content8__content .p-content8__item p {
    letter-spacing: 0px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item p {
    letter-spacing: 0px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content8 .l-container .p-content8__content .p-content8__item p {
    width: 100%;
  }
}

.p-content8 .l-container .p-content8__content .p-content8__item:nth-child(3) {
  margin-right: 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(3) {
    margin-right: 44px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(3) {
    margin-right: 29px;
  }
}

.p-content8 .l-container .p-content8__content .p-content8__item:nth-child(6) {
  margin-right: 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(6) {
    margin-right: 44px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(2) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(2) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(4) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(4) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(6) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(6) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(8) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content8 .l-container .p-content8__content .p-content8__item:nth-child(8) {
    margin-right: 0;
  }
}

.p-content9 .p-content9__wrapper {
  background-color: #F4F4F4;
  padding: 152px 0 141px 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper {
    padding-bottom: 143px;
	padding-top: 148px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper {
    padding: 126px 0 117px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper {
    padding: 126px 0 110px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper {
    padding: 131px 0 112px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container {
    width: 100%;
  }
}

.p-content9 .p-content9__wrapper .l-container .primary-title {
  margin-bottom: 67px;
  text-align: center;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .primary-title {
    margin-bottom: 42px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .primary-title {
    text-align: left;
    padding-left: 44px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .primary-title {
    width: 90%;
    margin-left: 27px;
    padding-left: 0;
  }
}

.p-content9 .p-content9__wrapper .l-container .p-content9__desc {
  text-align: center;
  margin-bottom: 102px;
  font-size: 1.8rem;
  letter-spacing: 0.4px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__desc {
    font-size: 1.4rem;
    margin-bottom: 78px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__desc {
    font-size: 1.4rem;
    margin-bottom: 60px;
    padding-left: 44px;
    text-align: left;
    line-height: 24px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__desc {
    margin-right: 28px;
    margin-left: 28px;
    padding-left: 0;
    letter-spacing: 0;
    margin-bottom: 60px;
  }
  .p-content9 .p-content9__wrapper .l-container .p-content9__desc .sp-none {
    display: none;
  }
}

.p-content9 .p-content9__wrapper .l-container .p-content9__info {
  width: 86.5%;
  margin: 0 auto 24px auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info {
    width: 88%;
    margin: 0 auto 18px auto;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info {
    width: 88%;
    margin: 0 auto 0px auto;
  }
}
@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info {
    width: 100%;
    padding: 0 28px;
  }
}

.p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 25px 0px 25px 25px;
  border-top: 1px solid #cccccc;
  line-height: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text:last-child {
  border-bottom: 1px solid #cccccc;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text {
    padding: 23.5px 0 27px 27px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text {
    padding: 20px 0 23px 20px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text {
    padding: 20.5px 0px 25.5px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 20px 0px 20px 0px;
  }
}

.p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:first-of-type {
  font-size: 1.5rem;
  font-weight: bold;
  width: 25%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:first-of-type {
    padding-left: 0;
    width: 30%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:first-of-type {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:first-of-type {
    font-size: 1.3rem;
    width: 100%;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:first-of-type {
    width: 100%;
    margin-bottom: 5px;
    line-height: 1.6;
  }
}

.p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:last-of-type {
  width: 70%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:last-of-type {
    width: 65%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:last-of-type {
    font-size: 1.2rem;
    letter-spacing: 0px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:last-of-type {
    font-size: 1.2rem;
    width: 100%;
    letter-spacing: 0px;
    line-height: 19px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .p-content9__text p:last-of-type {
    width: 100%;
  }
}

.p-content9 .p-content9__wrapper .l-container .p-content9__info .u-m8 {
  padding: 24px 80px 45px 27px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .u-m8 {
    padding: 20px 80px 30px 16px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .u-m8 {
    padding: 24px 0px 12px 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .p-content9__info .u-m8 {
    padding: 22px 0 8px 0px;
  }
}

.p-content9 .p-content9__wrapper .l-container .u-m1 {
  text-align: right;
  font-size: 1.5rem;
  display: block;
  width: 86.5%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .u-m1 {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content9 .p-content9__wrapper .l-container .u-m1 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content9 .p-content9__wrapper .l-container .u-m1 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 480px) {
  .p-content9 .p-content9__wrapper .l-container .u-m1 {
    width: 100%;
    padding: 0 28px;
    margin-top: 15px;
  }
}

.p-content10 {
  position: relative;
  background-color: #fff;
  padding-bottom: 5px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 {
	  padding-bottom: 10px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 {
	  padding-bottom: 9px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content10 {
    padding: 125px 0 89px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content10 .l-container {
    width: 90%;
  }
}

.p-content10 .l-container .primary-title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .p-content10 .l-container .primary-title {
    width: 90%;
    margin-left: 7px;
    padding-left: 0;
    margin-bottom: 22px;
  }
}

.p-content10 .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content10 .only-sp {
    display: block;
  }
}

.p-content10 .sec-links {
  display: block;
  position: relative;
}

.p-content10 .sec-links:hover {
  opacity: 1;
}

.p-content10 .sec-links img {
  transition: 1000ms ease;
}

.p-content10 .sec-links:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.p-content10 .p-content10__above {
  color: #fff;
  position: absolute;
  z-index: 9;
  top: 60px;
  right: 70px;
  padding-bottom: 71px;
  text-align: right;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content10 .p-content10__above {
	top: 62px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__above {
	top: 40px;
    right: 45px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__above {
	top: 40px;
    right: 45px;
  }
}

.p-content10 .p-content10__num {
  position: absolute;
  z-index: 99;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  top: 20px;
  left: 25px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
  .p-content10 .p-content10__above {
    display: none;
  }
  .p-content10 .p-content10__num {
    display: block;
	top: 20px;
    right: 26px;
    left: auto;
  }
}

.p-content10 .p-content10__above p:first-of-type {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  text-transform: uppercase;
  display: block;
  line-height: 32px;
  letter-spacing: 2.4px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__above p:first-of-type {
    font-size: 2rem;
    letter-spacing: 3px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__above p:first-of-type {
    font-size: 2rem;
    letter-spacing: 3.3px;
    line-height: 32px;
  }
}

.p-content10 .p-content10__above p:last-of-type {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 18px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__above p:last-of-type {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__above p:last-of-type {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}

.p-content10 .p-content10__above a {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  color: rgba(230, 227, 227, 0.721);
  margin-left: 12px;
  letter-spacing: 1.0px;
}

.p-content10 .p-content10__above a.is-active {
  color: #fff;
}

.p-content10 .p-content10__background {
  background-color: #acaaaa;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.p-content10__backgroundie {
	width: 100%;
	height: 500px;
	position: relative;
    background-size: cover;
    background-position: center center;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__background {
    height:414px;
  }
}
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__background {
  	height:413px;
  }
}

.p-content10 .p-content10__background strong {
	font-size: 2rem;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__background strong {
	font-size: 1.4rem;
	font-weight: 600;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__background strong {
	font-size: 1.4rem;
	font-weight: 600;
  }
}

@media only screen and (max-width: 480px) {
  .p-content10 .p-content10__background strong {
	font-size: 1.4rem;
  }
}

.p-content10 .p-content10__background img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-content10 .p-content10__background .p-content10__below {
  text-align: left;
  color: #fff;
  position: absolute;
  left: 70px;
  bottom: 58px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__background .p-content10__below {
	left: 45px;
	bottom: 35px;
  }
}
@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__background .p-content10__below {
	left: 45px;
	bottom: 35px;
  }
}
	
@media only screen and (max-width: 480px) {
  .p-content10 .p-content10__background .p-content10__below {
    left: 27px;
    bottom: 23px;
  }
}

.p-content10 .p-content10__background .p-content10__below p:first-of-type {
  font-size: 2.8rem;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  line-height: 41px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__background .p-content10__below p:first-of-type {
    font-size: 1.8rem;
    line-height: 25px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__background .p-content10__below p:first-of-type {
    font-size: 1.8rem;
    line-height: 25px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content10 .p-content10__background .p-content10__below p:first-of-type {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 26px;
    margin-bottom: 10px;
  }
}

.p-content10 .p-content10__background .p-content10__below p:last-of-type {
  font-size: 1.6rem;
  font-weight: 500;
}

.p-content10 .p-content10__background .p-content10__below p:last-of-type span {
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__background .p-content10__below p:last-of-type span {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .p-content10__background .p-content10__below p:last-of-type {
	font-size: 1.2rem;
  }
  .p-content10 .p-content10__background .p-content10__below p:last-of-type span {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .p-content10__background .p-content10__below p:last-of-type {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 480px) {
  .p-content10 .p-content10__background .p-content10__below p:last-of-type {
    font-size: 1.2rem;
  }
}

.p-content10 .background {
  margin-bottom: 10px;
}

.p-content10 .u-p1 {
  padding: 305px 72px 59px 72px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content10 .u-p1 {
    padding: 306px 72px 57px 72px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content10 .u-p1 {
    padding: 285px 43px 37px 55px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content10 .u-p1 {
    padding: 285px 43px 42px 55px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content10 .u-p1 {
    padding: 299px 27px 24px 55px;
  }
}

.p-content11 {
  padding: 136px 0 200px 0;
	background-color: #fff;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content11 {
    padding-bottom: 201px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content11 {
	padding: 101px 0 156px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content11 {
    padding: 103px 0 154px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content11 {
     padding: 21px 0 155px 0;
  }
}

.p-content11 .l-container img {
  width: 95%;
  margin: 0 auto;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content11 .l-container img {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content11 .l-container img {
    width: 88.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content11 .l-container img {
    width: 88.5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-content11 .l-container img {
    display: none;
  }
}

.p-content11 .l-container .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-content11 .l-container .only-sp {
    display: block;
    width: 86.5%;
  }
}
.p-content12{
	background-color: #fff;
}

.p-content12 .primary-title {
  margin-bottom: 53px;
  text-align: center;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content12 .primary-title {
    margin-bottom: 54px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content12 .primary-title {
    margin-bottom: 39px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .primary-title {
    margin-bottom: 36px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content12 .primary-title {
    margin-bottom: 38px;
  }
}

.p-content12 .p-content12__img {
  margin-bottom: 20px;
	pointer-events: none;
}

/* Dispalyed on IE */
.frame3ie{
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 233px;
  margin: 0 2px;
  overflow: hidden;
}

.p-content12 .p-content12__img img {
	object-fit: cover;
}

/*@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .p-content12__img img {
    max-height: 238px;
  }
}*/

@media only screen and (max-width: 480px) {
  .p-content12 .l-container {
    width: 100%;
  }
}

.p-content12 .l-container .p-content12__desc {
  width: 95%;
  margin: 0 auto;
  padding:  60px 0 140px 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc {
    width: 86.5%;
	padding:  57px 0 172px 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content12 .l-container .p-content12__desc {
    width: 88%;
	padding:  41px 0 145px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc {
    width: 88%;
    padding: 27px 0 113px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-content12 .l-container .p-content12__desc {
    width: 86.5%;
	padding: 24px 0 142px 0;
  }
}

.p-content12 .l-container .p-content12__desc .p-content12__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

@media only screen and (max-width: 480px) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.p-content12 .l-container .p-content12__desc .p-content12__inner .img {
  width: 14%;
  height: 48%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner .img {
    width: 18%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner .img {
    width: 16%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner .img {
    width: 21%;
    margin: 0 auto;
    margin-bottom: 54px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner .img {
    width: 40%;
    margin: 0 auto;
    margin-bottom: 46px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner .img img {
    text-align: center;
    display: block;
  }
}

.p-content12 .l-container .p-content12__desc .p-content12__inner p {
  width: 70.2%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 32px;
  padding-top: 0;
  margin-top: -5px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner p {
    width: 72.2%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner p {
    width: 70.5%;
    font-size: 1.4rem;
    line-height: 24px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-content12 .l-container .p-content12__desc .p-content12__inner p {
    width: 100%;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 26px;
    letter-spacing: 0.6px;
  }
}

.p-essay img {
  display: block;
  margin: 130px auto 120px;
  width: 79%;
}

@media only screen and (max-width: 1024px) {
  .p-essay img {
    width: 86.5%;
    margin: 120px auto 70px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay img {
    display: none;
  }
}

.p-essay .only-sp {
  display: none;
}

@media only screen and (max-width: 480px){
  .p-essay .only-sp {
    display: block;
    width: 100%;
    margin: 120px auto 80px auto;
    padding: 0 28px;
  }
}

.p-essay .l-container .p-eassay__wrapper {
  width: 67%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper {
    width: 62.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper {
    width: 88.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper {
    width: 86.5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper {
    width: 100%;
    padding: 0 28px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-essay__text {
  font-size: 1.6rem;
  line-height: 36px;
  margin-bottom: 100px;
  font-weight: 500;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__text {
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__text {
    font-size: 1.4rem;
    line-height: 26.5px;
    margin-bottom: 80px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__text {
    margin-bottom: 60px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-essay__text p {
  margin-bottom: 36px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__text p {
    letter-spacing: 0px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__text p {
    margin-bottom: 27px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__text p {
    margin-bottom: 23px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-essay__title {
  font-size: 2.4rem;
  line-height: 37px;
  margin-bottom: 65px;
  font-weight: 500;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__title {
    font-size: 1.7rem;
    line-height: 26px;
    margin-bottom: 53px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__title {
    font-size: 1.7rem;
    line-height: 26px;
    margin-bottom: 53px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-essay__img {
  width: 100%;
  margin-bottom: 142px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__img {
    display: block;
    margin-bottom: 145px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__img {
    display: block;
    margin-bottom: 78px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__img {
    display: block;
    margin-bottom: 76px;
  }
}

.p-essay .l-container .p-eassay__wrapper .u-m10 {
  margin-bottom: 137px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .u-m10 {
    margin-bottom: 124px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .u-m10 {
    margin-bottom: 122px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .u-m10 {
    margin-bottom: 120px;
  }
}

.p-essay .l-container .p-eassay__wrapper .u-m11 {
  margin-bottom: 137px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .u-m11 {
    margin-bottom: 125px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .u-m11 {
    margin-bottom: 122px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .u-m11 {
    margin-bottom: 122px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-color: #F4F4F4;
  margin-bottom: 149px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info {
    margin-bottom: 79px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info {
    margin-bottom: 79px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 28px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left {
  width: 45%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left {
    width: 40.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left {
    width: 42%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left {
    width: 40%;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left {
    width: 100%;
    margin-bottom: 18px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left img {
  margin: 0;
  width: 100%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left img {
    display: block;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__left img {
    display: block;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right {
  width: 49%;
  margin-top: 0;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right {
    width: 54%;
    margin-top: 0;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right {
    width: 53%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right {
    width: 56%;
    margin-top: 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right {
    width: 100%;
    margin-top: 0px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right span {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right span {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right span {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right span {
    margin-bottom: 14px;
    line-height: 30px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right span span {
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0;
}

.p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right p {
  font-size: 1.3rem;
  line-height: 22px;
  width: 86%;
  letter-spacing: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right p {
    font-size: 1.3rem;
    line-height: 24px;
    width: 91%;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right p {
    width: 91%;
    line-height: 23px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-esay__info .p-esay__right p {
    width: 100%;
    line-height: 23px;
    letter-spacing: 0px;
  }
}

.p-essay .l-container .p-eassay__wrapper .p-essay__link {
  display: block;
  text-align: center;
  padding: 15px 40px;
  border: 1px solid;
  width: 33.5%;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__link {
    width: 30.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__link {
    margin-bottom: 79px;
    border: 2px solid;
    width: 43%;
    margin-bottom: 120px;
    letter-spacing: 0px;
    padding: 13px 40px 15px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__link {
    margin-bottom: 79px;
    border: 2px solid;
    width: 40%;
    margin-bottom: 120px;
    letter-spacing: 0px;
    padding: 13px 40px 15px;
  }
}

@media only screen and (max-width: 480px) {
  .p-essay .l-container .p-eassay__wrapper .p-essay__link {
    width: 76%;
  }
}

.p-article {
	overflow: hidden;
}

.p-article .p-article__background {
  position: relative;
  z-index: -1;
  color: #fff;
  margin-bottom: 120px;
}

.p-article .p-article__background > img {
  padding-top: 120px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
	.p-article .p-article__background {
	    margin-bottom: 90px;
	}
	.p-article .p-article__background > img {
	    padding-top: 90px;
	}
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
	.p-article .p-article__background {
	    margin-bottom: 95px;
	}
	.p-article .p-article__background > img {
	    padding-top: 95px;
	}
}

@media only screen and (max-width: 812px) and (orientation: landscape) {
	.p-article .p-article__background > img {
	    padding-top: 99px;
	}
}
@media only screen and (max-width: 480px) {
	.p-article .p-article__background {
	    margin-bottom: 60px;
	}
	.p-article .p-article__background > img {
	    padding-top: 85px;
	}
}

@media only screen and (orientation: portrait) {
	.p-article .p-article__background .pc-only {
		display: none !important;
	}
	.p-article .p-article__background .sp-only {
		display: block !important;
	}
}

@media only screen and (orientation: landscape) {
	.p-article .p-article__background .pc-only {
		display: block !important;
	}
	.p-article .p-article__background .sp-only {
		display: none !important;
	}
}

.p-article .p-article__background > img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.p-article .p-article__background .p-article__text1 {
  font-size: 2rem;
  position: absolute;
  bottom: 65px;
    left: 70px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__background .p-article__text1 {
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__background .p-article__text1 {
    bottom: 40px;
    left: 45px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__background .p-article__text1 {
    bottom: 40px;
    left: 45px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__background .p-article__text1 {
    bottom: 25px;
    left: 28px;
  }
}

.p-article .p-article__background .p-article__text1 span {
  display: block;
}

.p-article .p-article__background .p-article__text1 span:first-of-type {
  font-size: 2.8rem;
  line-height: 42px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__background .p-article__text1 span:first-of-type {
    font-size: 2.2rem;
    line-height: 29px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__background .p-article__text1 span:first-of-type {
    font-size: 2.2rem;
    line-height: 29px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__background .p-article__text1 span:first-of-type {
    font-size: 2.0rem;
    line-height: 28px;
    margin-bottom: 15px;
  }
}

.p-article .p-article__background .p-article__text1 span:last-of-type {
  font-size: 1.7rem;
  letter-spacing: 0.2px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__background .p-article__text1 span:last-of-type {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__background .p-article__text1 span:last-of-type {
    font-size: 1.4rem;
    letter-spacing: 0.3;
  }
}

.p-article__text1 strong {
	font-size: 2rem;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article__text1 strong {
	font-size: 1.6rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article__text1 strong {
	font-size: 1.6rem;
  }
}

.p-article .p-article__background .p-article__text2 {
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  top: 190px;
  right: 62px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: quasimoda, sans-serif;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__background .p-article__text2 {
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__background .p-article__text2 {
    font-size: 2.0rem;
    font-weight: bold;
    position: absolute;
    letter-spacing: 1px;
    top: 140px;
    right: 40px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__background .p-article__text2 {
    font-size: 2.0rem;
    font-weight: bold;
    letter-spacing: 1px;
    top: 140px;
    right: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__background .p-article__text2 {
    top: 120px;
    right: 23px;
  }
}

.p-article .p-article__background .p-article__text2 span:first-of-type {
  margin-bottom: 15px;
  letter-spacing: 2px;
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__background .p-article__text2 span:first-of-type {
    margin-bottom: 10px;
    letter-spacing: 2.6px;
  }
}

.p-article .p-article__background .scroll {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  position: absolute;
  bottom: 60px;
  right: 70px;
  font-family: quasimoda, sans-serif;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__background .scroll {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__background .scroll {
    font-size: 1.4rem;
    font-weight: bold;
    position: absolute;
    bottom: 40px;
    right: 45px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__background .scroll {
    font-size: 1.4rem;
    font-weight: bold;
    position: absolute;
    bottom: 40px;
    right: 45px;
    letter-spacing: 0.8px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__background .scroll {
    display: none;
  }
}

.p-article .p-article__background .scroll span:first-of-type {
  margin-bottom: 10px;
  display: inline-block;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__background .scroll span:first-of-type {
    margin-bottom: 4px;
    letter-spacing: 1.5px;
  }
}

.p-article .p-article__background .scroll img {
  width: 15px;
  vertical-align: initial;
  margin-left: -1px;
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__background .scroll img {
    width: 14px;
    margin-left: -2px;
  }
}

.p-article .l-container .p-article__wrapper {
  width: 67%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper {
    width: 62.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper {
    width: 88.5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper {
    width: 86.5%;
  }
}

.p-article .l-container .p-article__wrapper .p-article__intro {
  padding: 96px 0 96px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 114px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__intro {
    padding: 56px 0 58px;
    margin-bottom: 55px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__intro {
    padding: 56px 0 57px;
    border-bottom: 2px solid #ececec;
    margin-bottom: 55px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__intro {
    padding: 56px 0 54px;
    border-bottom: 2px solid #ececec;
    margin-bottom: 57px;
  }
}

.p-article .l-container .p-article__wrapper .p-article__intro p {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 62px;
  line-height: 32px;
  letter-spacing: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__intro p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 62px;
    line-height: 27px;
    letter-spacing: 0px;
    margin-bottom: 41px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__intro p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 62px;
    line-height: 27px;
    letter-spacing: 0px;
    margin-bottom: 40px;
  }
}

.p-article .l-container .p-article__wrapper .p-article__intro span {
  font-size: 1.4rem;
  opacity: 0.5;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__intro span {
    font-size: 1.3rem;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__intro span {
    font-size: 1.3rem;
    letter-spacing: 0px;
  }
}

.p-article .l-container .p-article__wrapper h1 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 36px;
  margin-bottom: 71px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper h1 {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 26px;
    margin-bottom: 42px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper h1 {
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 26px;
    margin-bottom: 42px;
  }
}

.p-article .l-container .p-article__wrapper > img {
  margin-bottom: 19px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper > img {
    margin-bottom: 8px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper > img {
    margin-bottom: 6px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper > img {
    margin-bottom: 8px;
  }
}

.p-article .l-container .p-article__wrapper h6 {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 114px;
  text-align: left;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper h6 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 57px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper h6 {
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 55px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper h6 {
    font-weight: bold;
    letter-spacing: 0px;
  }
}

.p-article .l-container .p-article__wrapper h2 {
  font-size: 1.6rem;
  margin-bottom: 70px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: start;
  font-weight: normal;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper h2 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper h2 {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper h2 {
    margin-bottom: 40px;
  }
}

.p-article .l-container .p-article__wrapper h2 .line {
  display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #000;
    margin-right: 15px;
    opacity: 0.3;
    margin-top: 12px;
}
@media only screen and (max-width: 1024px) and (orientation: landscape) {
.p-article .l-container .p-article__wrapper h2 .line {
    margin-top: 10px;
}
}
@media only screen and (max-width: 480px) {
.p-article .l-container .p-article__wrapper h2 .line {
    margin-top: 10px;
    width: 30px;
    margin-right: 10px;
}
}

.p-article .l-container .p-article__wrapper p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 70px;
}
.p-article .l-container .p-article__wrapper p img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper p {
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 50px;
    font-weight: bold;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper p {
    font-size: 1.4rem;
    line-height: 26px;
    margin-bottom: 45px;
    font-weight: bold;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper p {
    margin-bottom: 40px;
  }
}

.p-article .l-container .p-article__wrapper p span:first-of-type {
  margin-bottom: 33px;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper p span:first-of-type {
    margin-bottom: 28px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper p span:first-of-type {
    margin-bottom: 26px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper p span:first-of-type {
    margin-bottom: 29px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper p span:last-of-type {
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper p span:last-of-type {
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .u-m13 {
    margin-bottom: 122px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .u-m13 {
    margin-bottom: 122px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .u-m13 {
    margin-bottom: 125px;
  }
}

.p-article .p-article__img {
  margin-bottom: 24px;
  display: block;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__img {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__img {
    margin-bottom: 8px;
  }
}

.p-article .p-article__img .img1 img,
.p-article .p-article__img .img2 img,
.p-article .p-article__img .img3 img {
  width: 99.5%;
  height: 534px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__img .img1 img,
  .p-article .p-article__img .img2 img,
  .p-article .p-article__img .img3 img {
    height: 400px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__img .img1 img,
  .p-article .p-article__img .img2 img,
  .p-article .p-article__img .img3 img {
    height: 400px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__img .img1 img,
  .p-article .p-article__img .img2 img,
  .p-article .p-article__img .img3 img {
    height: 239px;
  }
}

.p-article .p-article__img .img1,
.p-article .p-article__img .img3 {
  width: 20.7%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__img .img1,
  .p-article .p-article__img .img3 {
    width: 9%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__img .img1,
  .p-article .p-article__img .img3 {
    width: 19.7%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__img .img1,
  .p-article .p-article__img .img3 {
    width: 7%;
  }
}

.p-article .p-article__img .img2 {
  width: 56%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__img .img2 {
    width: 78%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__img .img2 {
    width: 58.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__img .img2 {
    width: 83%;
  }
}

.p-article .p-article__img .slick-list {
	overflow: visible;
}

.p-article h6 {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-bottom: 113px;
  text-align: center;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .u-m15 {
    font-size: 1.2rem;
    margin-bottom: 77px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .u-m15 {
    font-size: 1.2rem;
    margin-bottom: 77px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .u-m15 {
    font-size: 1.1rem;
    margin-bottom: 75px;
    letter-spacing: 0px;
    font-weight: normal;
  }
}

.p-article .l-container .p-article__wrapper {
  width: 67%;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper {
    width: 62.5%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper {
    width: 88.5%;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper {
    width: 86.5%;
  }
}

.p-article .l-container .p-article__wrapper .p-article__info {
  display: -webkit-box;
  display: flex;
  background-color: #F4F4F4;
  margin-bottom: 122px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info {
    margin-bottom: 119px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__info {
    margin-bottom: 81px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info {
    margin-bottom: 79px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__info {
    margin-bottom: 81px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 29px 29px 40px 29px;
  }
}

.p-article .l-container .p-article__wrapper .p-article__info .p-article__left {
  width: 45%;
  flex: 0 0 45%;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__left {
    width: 41%;
  	flex: 0 0 41%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__left {
    width: 42%;
  	flex: 0 0 42%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__left {
    width: 40%;
  	flex: 0 0 40%;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__left {
    width: 100%;
    margin-bottom: 19px;
  }
}

.p-article .l-container .p-article__wrapper .p-article__info .p-article__left img {
  margin: 0;
  width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-article .l-container .p-article__wrapper .p-article__info .p-article__right {
	width: 100%;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px 50px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right {
    width: 54%;
    margin-top: -2px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right {
    width: 53%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right {
    width: 56%;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right {
    width: 100%;
    margin-top: 0;
	  padding: 0;
  }
}

.p-article .l-container .p-article__wrapper .p-article__info .p-article__right span {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: block;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right span {
    margin-bottom: 13px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right span {
    margin-bottom: 29px;
    line-height: 1px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right span {
    margin-bottom: 13px;
    line-height: 30px;
  }
}

.p-article .l-container .p-article__wrapper .p-article__info .p-article__right span span {
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0;
    margin-right: 17px;
}

.p-article .l-container .p-article__wrapper .p-article__info .p-article__right p {
  font-size: 1.3rem;
  line-height: 22px;
  letter-spacing: 0px;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right p {
    font-size: 1.3rem;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right p {
    font-size: 1.3rem;
    line-height: 23px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__info .p-article__right p {
    font-size: 1.3rem;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.p-article .l-container .p-article__wrapper .p-article__link {
  display: block;
  text-align: center;
  padding: 15px 40px;
  border: 2px solid;
  width: 33.5%;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 150px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__link {
    width: 30.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .p-article__link {
    width: 43.5%;
    margin-bottom: 120px;
    letter-spacing: 0px;
    padding: 15px 40px;
    border: 2px solid;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__link {
    width: 40.5%;
    margin-bottom: 120px;
    letter-spacing: 0px;
    padding: 15px 40px;
    border: 2px solid;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .p-article__link {
    width: 40.5%;
    margin-bottom: 120px;
    letter-spacing: 0px;
    padding: 15px 40px;
    border: 2px solid;
  }
}
@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .p-article__link {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
  }
}

.p-article .l-container .p-article__wrapper .u-m16 {
  margin-bottom: 138px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .u-m16 {
    margin-bottom: 106px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .l-container .p-article__wrapper .u-m16 {
    margin-bottom: 124px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .l-container .p-article__wrapper .u-m16 {
    margin-bottom: 121px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .l-container .p-article__wrapper .u-m16 {
    margin-bottom: 126px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 {
    padding: 5px 0 100px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .l-container {
    width: 90%;
  }
}

.p-article .p-article__content4 .l-container .primary-title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .l-container .primary-title {
    width: 90%;
    margin-left: 7px;
    padding-left: 0;
    margin-bottom: 29px;
  }
}

.p-article .p-article__content4 .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .only-sp {
    display: block;
  }
}

.p-article .p-article__content4 .p-content4__background {
  background-color: #acaaaa;
  padding: 59px 72px 69px 72px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background {
    padding: 58px 72px 69px 72px;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .p-content4__background {
    padding: 39px 45px 43px 45px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background {
    padding: 39px 45px 43px 45px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .p-content4__background {
    padding: 15px 30px;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__above {
  color: #fff;
  margin-bottom: 134px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above {
    margin-bottom: 142px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above {
    margin-bottom: 142px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above {
    margin-bottom: 238px;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__above p:first-of-type {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  text-transform: uppercase;
  display: block;
  line-height: 35px;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above p:first-of-type {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above p:first-of-type {
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 34px;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__above p:last-of-type {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 27px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above p:last-of-type {
    font-weight: normal;
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above p:last-of-type {
    font-weight: normal;
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__above span {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  color: rgba(230, 227, 227, 0.721);
}

.p-article .p-article__content4 .p-content4__background .p-content4__above span:first-of-type {
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  margin-right: 10px;
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above span:first-of-type {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .p-content4__background .p-content4__above .sp {
    display: none !important;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__below {
  text-align: right;
  color: #fff;
}

.p-article .p-article__content4 .p-content4__background .p-content4__below p:first-of-type {
  font-size: 2.8rem;
  font-weight: bold;
  font-family: quasimoda, sans-serif;
  display: block;
  text-transform: uppercase;
  line-height: 43px;
  margin-bottom: 15px;
  letter-spacing: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .p-content4__background .p-content4__below p:first-of-type {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 28px;
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background .p-content4__below p:first-of-type {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 28px;
    margin-bottom: 12px;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__below p:last-of-type {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .p-content4__background .p-content4__below p:last-of-type {
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .p-content4__background .p-content4__below p:last-of-type {
    font-size: 1.25rem;
  }
}

.p-article .p-article__content4 .p-content4__background .p-content4__below p:last-of-type span {
  font-size: 2rem;
  font-weight: bold;
}

.p-article .p-article__content4 .background {
  background-image: url(../img/pc-img28.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__content4 .background {
    background-image: url(../img/ipadprop-img4.png);
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .background {
    background-image: url(../img/ipadl-img8.png);
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .background {
    background-image: url(../img/ipadp-img4.png);
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .background {
    background-image: url(../img/sp-img6.png);
    padding: 26px 29px 26px 27px;
  }
}

.p-article .p-article__content4 .u-p1 {
  padding: 300px 72px 72px 72px;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content4 .u-p1 {
    padding: 286px 47px 42px 70px;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content4 .u-p1 {
    padding: 286px 47px 42px 70px;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content4 .u-p1 {
    padding: 299px 29px 27px 51px;
  }
}

.p-article .p-article__content5 {
  padding: 149px 0 152px 0;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content5 {
    padding: 122px 0 152px 0;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content5 {
    padding: 121px 0 120px 0;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content5 {
    padding: 20px 0 120px 0;
  }
}

.p-article .p-article__content5 .l-container img {
  width: 95%;
  margin: 0 auto;
  display: block;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .p-article .p-article__content5 .l-container img {
    width: 86.5%;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .p-article .p-article__content5 .l-container img {
    width: 88%;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .p-article .p-article__content5 .l-container img {
    width: 88%;
  }
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content5 .l-container img {
    display: none;
  }
}

.p-article .p-article__content5 .l-container .only-sp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .p-article .p-article__content5 .l-container .only-sp {
    display: block;
    width: 86.5%;
  }
}

/* custom slick */
.slick-dots li button:before {
  content: none !important;
}

.slick-dots li button {
  background-color: #fff !important;
  width: 30px !important;
  height: 2px !important;
  padding: 1.5px !important;
}

@media only screen and (max-width: 1024px) and (orientation: portrait){
  .slick-dots li button {
	width: 30px !important;
	height: 0px !important;
	padding: 1px !important;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape){
  .slick-dots li button {
	 width: 20px !important;
	 height: 0px !important;
	 padding: 1px !important;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait){
  .slick-dots li button {
	width: 20px !important;
	height: 0px !important;
	padding: 1px !important;
  }	
}

.slick-dots li {
  width: 25px !important;
  height: 0px !important;
  opacity: 0.3;
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .slick-dots li {
	margin: 0 0px !important;
  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .slick-dots li {
	margin: 0 0px !important;
  }
}

.slick-dots {
  position: absolute;
  bottom: 22px !important;
  right: 0% !important;
  display: block;
  width: 29% !important;
}

@media only screen and (max-width: 1024px) and (orientation: portrait) {
  .slick-dots {
    bottom: 21px !important;
    right: 3.3% !important;
  }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .slick-dots {
    bottom: 5px !important;
	width: 23% !important;

  }
}

@media only screen and (max-width: 812px) and (orientation: portrait) {
  .slick-dots {
    bottom: 10px !important;
	width: 15% !important;
  }
}

@media only screen and (max-width: 480px) {
  .slick-dots {
    width: 28% !important;
    bottom: 9px !important;
	right: 0% !important;
  }
}

.slick-next {
  right: 8px !important;
}

.slick-prev {
  left: 6px !important;
  z-index: 100;
}

.p-article__img .slick-list .slick-slide {
  opacity: 1 !important;
}

.p-article__img .slick-list .slick-cloned {
  opacity: 1 !important;
}

.p-article__img .slick-list .slick-active {
  opacity: 1 !important;
}

.p-content5__right .slider2 .slick-dots .slick-active{
	 opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.p-article__img .slick-prev:before, 
.p-article__img .slick-next:before {
  font-size: 0px;
}

.p-content12__img .slick-prev:before, 
.p-content12__img .slick-next:before {
  font-size: 0px;
}

.p-content8__content .slick-prev:before, 
.p-content8__content .slick-next:before {
  font-size: 0px;
}
/* end custom slick */


/* custom animation */
@-webkit-keyframes moveUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moveUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-transition: 1500ms cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: 1500ms cubic-bezier(0.25, 0.1, 0.25, 1);
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

/* show objects being animated */
.animated {
  visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

/* .swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img,
.swiper-slide-next .slide-img{
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
}
 */

.slick-list, .slick-track {
	height: 100%;
}

/*.swiper-slide .slide-img.zoom{
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
}*/

.swiper-slide {
  width: 100%;
  height: 100%;
}
/* end custom animation */

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  display: inline-block;
  padding: 10px 50px;
  font-size: 1.6rem;
  border: 2px solid #fff;
  border-radius: 20px;
  line-height: 1;
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top {
  line-height: 2;
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-about {
  line-height: 2;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform,-webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s opacity;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s top,.2s -webkit-transform;
  transition: .2s top,.2s -webkit-transform;
  -webkit-transition: .2s transform,.2s top;
  transition: .2s transform,.2s top;
  -webkit-transition: .2s transform,.2s top,.2s -webkit-transform;
  transition: .2s transform,.2s top,.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s left,.2s -webkit-transform;
  transition: .2s left,.2s -webkit-transform;
  -webkit-transition: .2s transform,.2s left;
  transition: .2s transform,.2s left;
  -webkit-transition: .2s transform,.2s left,.2s -webkit-transform;
  transition: .2s transform,.2s left,.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s right,.2s -webkit-transform;
  transition: .2s right,.2s -webkit-transform;
  -webkit-transition: .2s transform,.2s right;
  transition: .2s transform,.2s right;
  -webkit-transition: .2s transform,.2s right,.2s -webkit-transform;
  transition: .2s transform,.2s right,.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

/*Plugin CSS*/
.str_wrap {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  position: relative;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #f6f6f6;
  white-space: nowrap;
}

.str_wrap.str_active {
  background: #f1f1f1;
}

.str_move {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  cursor: move;
	transition: 0.2s linear;
}

.str_move_clone {
  display: none;
  vertical-align: top;
  position: absolute;
  left: 100%;
  top: 0;
  transition: 0.2s linear;
}

.str_origin {
	display: none;
	transition: 0.2s linear;
}

.p-content12__img .str_origin:first-child{
	display: block;
}

.str_vertical .str_move_clone {
  left: 0;
  top: 100%;
  transition: 0.2s linear;
}

.str_down .str_move_clone {
  left: 0;
  bottom: 100%;
	transition: 0.2s linear;
}

.str_vertical .str_move,
.str_down .str_move {
  white-space: normal;
  width: 100%;
}

.str_static .str_move,
.no_drag .str_move,
.noStop .str_move {
  cursor: inherit;
}

.str_wrap img {
  max-width: none !important;
}

.swiper-container {
  height: 100%;
}

.swiper-container img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-content1__bg {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */



	
	
/* custom sdie-scrolling for content8 in sp */
.p-content8 .l-container .p-content8__contentSP {
	overflow: hidden;
}

@media only screen and (max-width: 480px){
  .p-content8 .l-container .p-content8__contentSP {
	overflow: auto;
	overflow-x: auto !important;
	display: flex;
	flex-wrap: nowrap;
	scroll-behavior: smooth;
	flex-direction: row;
  }
  .p-content8 .l-container .p-content8__contentSP::-webkit-scrollbar  {
	display: none;
  }
}

.p-content8 .l-container .p-content8__contentSP .p-content8__item {
	width: 290px;
}	
	
.p-content8 .l-container .p-content8__contentSP .p-content8__item:nth-child(2), 
.p-content8 .l-container .p-content8__contentSP .p-content8__item:nth-child(4) ,
.p-content8 .l-container .p-content8__contentSP .p-content8__item:nth-child(6){
	margin-right: 29px;
}

@media only screen and (max-width: 480px){
 .p-content8 .l-container .p-content8__contentSP .p-content8__item {
	width: 78%;
	padding: 0;
	margin-right: 28px;
	flex-shrink: 0;
	flex-basis: auto;
 }
 .p-content8 .l-container .p-content8__contentSP .p-content8__item:nth-child(1) {
   margin-left: 28px; 
 }
 .p-content8 .l-container .p-content8__contentSP .p-content8__item:nth-child(7) img {
   margin-right: 28px; 
 }
}
/* end - custom sdie-scrolling for content8 in sp */

/* custom img 3:2 */
.inner{
  position: relative;
  padding-top: 66.67%;
  height: 100%;
  margin: 0 1px;
}
.inner img{
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
/* end - custom img 3:2 */

/* background-img fixed */
.img-fixed{
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

.img-fixed.sp{
	display: none;
}

.frame4ie{
	 position: fixed;
     background-size: cover;
     background-position: center center;
	 width: 100%;
	 height: 100vh;
	 z-index: -1;
}

@media only screen and (max-width: 480px){
  .img-fixed{
	display: none;
  }
	
  .frame5ie{
	 position: fixed;
     background-size: cover;
     background-position: center center;
	 width: 100%;
	 height: 100vh;
	 z-index: -1;
  }

  .img-fixed.sp{
	display: block;
  }
}
/* end - background-img fixed */

.p-content2 .p-content2__background .p-content2__text .only-sp{
	display: none;
}

@media only screen and (max-width: 480px){
  .p-content2 .p-content2__background .p-content2__text .only-sp{
	display: block;
  }
}

@media only screen and (max-width: 480px){
  .p-content2 .p-content2__background .p-content2__text .sp-hidden{
	display: none;
  }
}


/*IE*/
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .p-content10 .sec-links:hover img {
	 opacity: 0;
	 transform: none;
  }
  .popupPC .popupPC--right .slider3 .slider-img img{
	width: 50%;
	height: 100%;
  }
  .swiper-slide .slide-img.zoom{
	 -webkit-animation: none;
	 animation: none;
  }
  .p-content5 .l-container .p-content5__content .only-ipad2{
	 width: 26%;
	 text-align: center;
  }
}
@supports (-ms-accelerator:true) {
    /* Edge 12+ CSS */
}
@supports (-ms-ime-align:auto) {
    /* Edge 16+ CSS */ 
}
/* for chrome */
@media screen and (-webkit-min-device-pixel-ratio: 0) {}
/* for firefox */
@-moz-document url-prefix() {}





