@charset "utf-8";
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

h1 {
  margin: 0.67em 0;
}

pre {
  white-space: pre-wrap;
}

hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  max-width: 100%;
}

canvas,
img,
svg,
video {
  height: auto;
}

audio {
  width: 100%;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

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

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
  
del {
    text-decoration: line-through;
}
  
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
  
table {
    border-collapse: collapse;
    border-spacing: 0;
}
  
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
  
input,
select {
    vertical-align: middle;
}
  
*,
*::before,
*::after {
    box-sizing: border-box;
}
  
html {
    background: #fff;
}

@media screen and (max-width: 920px) {
    html {
        font-size: calc(100vw / 35.5);
    }
}

@media screen and (max-width: 767px) {
    html {
      font-size: calc(100vw / 37.5);
    }
}

@media screen and (min-width: 900px) {
    main {
        overflow: hidden;
    }
}
  
body {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
}

@media screen and (max-width: 920px) {
    body {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    body {
      font-size: 1.6rem;
    }
}

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    color: #000;
    text-decoration: none;
}

ul {
    list-style: none;
}

ol {
    list-style-type: none;
}

.splash {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #fff;
    text-align: center;
    color: #fff;
}

.splash-logo {
    position: absolute;
    top: 40%;
    left: 41.5%;
    transform: translateY(-50%);
}

.splash-logo img {
    width: 300px;
}

@media screen and (max-width: 1100px) {
    .splash-logo {
        left: 35.5%;
    }
}

@media screen and (max-width: 920px) {
    .splash-logo {
        left: 31%;
    }
}

@media screen and (max-width: 767px) {
    .splash-logo {
        left: 26%;
    }

    .splash-logo img {
        width: 200px;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.imageItemWrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header {
    width: 100%;
    position: relative;
    z-index: 5;
}

@media screen and (max-width: 767px) {
    .header-logo {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.header-logo {
    width: 150px;
    height: 92px;
    position: absolute;
    top: 5.384vw;
    left: 5.384vw;
    z-index: 4;
}

@media screen and (max-width: 1100px) {
    .header-logo {
        width: 200px;
        top: 100px;
        left: 70px;
    }
}

@media screen and (max-width: 920px) {
    .header-logo {
        top: 65px;
        left: 40px;
    }
}

@media screen and (max-width: 767px) {
    .header-logo {
        width: 20.666vw;
        height: 12.8vw;
        margin:20px 0 0 20px;
        top: 50px;
        left: 50px;
    }
}

@media screen and (max-width: 1100px) {
    .contact-input .header-logo {
        width: 200px;
    }
}

@media screen and (max-width: 920px) {
    .contact-input .header-logo {
        width: 150px;
        top: 80px;
    }
}

@media screen and (max-width: 767px) {
    .contact-input .header-logo {
        width: 100px;
        top: 50px;
        left: 60px;
    }
}

.header-text {
    color: #fff;
    display: block;
    font-size: 25px;
    letter-spacing: 1.8px;
    position: absolute;
    top: 90px;
    right: 90px;
    z-index: 1;
}

@media screen and (max-width: 1100px) {
    .header-text {
        top: 105px;
        right: 70px;
        font-size: 25px;
    }
}

@media screen and (max-width: 920px) {
    .header-text {
        top: 70px;
        right: 20px;
    }
}

.black {
    color: #000;
}

@media screen and (max-width: 920px) {
    .contact-input .header-text {
        top: 80px;
    }
}

@media screen and (max-width: 767px) {
    .contact-input .header-text {
        top: 45px;
    }
}

@media screen and (max-width: 767px) {
    .header-text {
        top: 45px;
        right: 20px;
        font-size: 1rem;
    }
}

.p-top-video {
    width: 100%;
    height: 100vh;
    position:absolute;
    z-index:0;
}

.p-top-mv__video {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-top-mv {
    width: 100%;
    height: 100vh;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1) 1px, transparent 16.666%), rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

@media screen and (max-width: 1100px) {
    .p-top-mv {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .p-top-mv {
        width: 100%;
        margin-bottom: 15.333vw;
        justify-content: flex-start;
        align-items: center;
        flex-direction: row;
        overflow: visible;
    }
}

.p-top-mv-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
}

.p-top-mv-title {
    color: #fff;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-top-mv-title {
        left: 8.8vw;
    }
}

.p-top-mv-title-lg {
    display: block;
    font-size: 4.234vw;
    font-weight: 300;
    letter-spacing: -3.32px;
    line-height: 1.13;
    margin-left: -0.3%;
}

.p-top-mv-title-split {
    position: absolute;
    right: 50px;
    display: block;
}

@media screen and (max-width: 767px) {
    .p-top-mv-title-split {
        position: absolute;
        right: 30px;
    }
}

.p-top-mv-title-split .word {
    overflow: hidden;
    display: block;
}

.p-top-mv-title-split .word.inline {
    display: inline-block;
}

.p-top-mv-title-split .word:not(:last-child) {
    margin-right: 0.25em;
}

.p-top-mv-title-split .word .string {
    transform: translateY(120%);
    display: inline-block;
}

.p-top-mv-title-split .word .string.is-show {
    transform: translateY(0);
    display: block;
}

.p-top-mv-title-split .word .string {
    -webkit-animation: anime_top-mv_string 0.74s cubic-bezier(0.54, 0, 0, 0.99) 1s forwards;
    animation: anime_top-mv_string 0.74s cubic-bezier(0.54, 0, 0, 0.99) 1s forwards;
}

@-webkit-keyframes anime_top-mv_string {
    0% {
        transform: translateY(120%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes anime_top-mv_string {
    0% {
        transform: translateY(120%);
    }
    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 1100px) {
    .p-top-mv-title-lg {
        font-size: 4rem;
    }
}

@media screen and (max-width: 920px) {
    .p-top-mv-title-lg {
        font-size: 2.2rem;
        line-height: 1;
    }
}

@media screen and (max-width: 767px) {
    .p-top-mv-title-lg {
        font-size: 2.6rem;
        letter-spacing: -1.84px;
        margin-left: 0;
    }
}

.p-top-mv-title-sm {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1.2px;
    padding-left: 5px;
    font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1100px) {
    .p-top-mv-title-sm {
        font-size: 30px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-mv-title-sm {
        font-size: 25px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-mv-title-sm {
        font-size: 1.2rem;
        letter-spacing: 0.96px;
    }
}

.p-top-main-inner {
    background-color: #fff;
}

.p-top-intro {
    width: 100%;
}

.p-top-intro-inner {
    padding-bottom: 8vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-inner {
        margin-top: 70px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-intro-inner {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-intro-inner {
        background: linear-gradient(#292929, #292929 77.5%, #f3f3f3 77.5%, #f3f3f3) #292929;
        padding-bottom: 244px;
    }
}

.p-top-intro-child-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-child-inner {
        display: block;
    }
}

.p-top-intro-left {
    height: 100%;
    width: 50%;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-left {
        width: 100%;
    }
}

.p-top-intro-left-pho {
    width: 100%;
    height: 100%;
    margin-top: 13.23vw;
    padding-left: 50px;
    overflow: hidden;
}

iframe {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-left-pho {
        margin-bottom: 10vw;
        padding: 30px 50px 0 50px;
    }

    .imageItemWrap .YT iframe {
        height: 250px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-intro-left-pho {
        padding: 20px 30px;
    }
}

.p-top-intro-left-pho img {
    transform: scale(1.05);
}

.p-top-intro-content {
    width: 50%;
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-1px);
}

@media screen and (max-width: 1100px) {
    .p-top-intro-content {
        width: 94%;
        height: auto;
        background: #fff;
        margin: -10vw 0 0 0;
        position: relative;
        z-index: 3;
    }
}

.p-top-intro-content-inner {
    padding: 10.23vw 8vw 0 8vw;
    border-top: 1px solid #f3f3f3;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-content-inner {
        padding: 40px 0 40px 60px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-intro-content-inner {
        padding: 40px 35px 40px 35px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-intro-content-inner {
        padding: 7.666vw 10.666vw 13.333vw;
        border-top: none;
    }
}

.p-top-intro-content-heading {
    color: #444;
    font-size: 3vw;
    font-weight: 100;
    line-height: 1.47;
    letter-spacing: 4.5px;
    margin-bottom: 1vw;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-content-heading {
        font-size: 45px;
        margin-bottom: 1vw;
        padding-left: 33px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-intro-content-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-intro-content-heading {
        font-size: 2.4rem;
        line-height: 1.5;
        padding-left: 0;
    }
}

.text-split .word {
    overflow: hidden;
    display: block;
}

@media screen and (max-width: 1100px) {
    .text-split .word {
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    .text-split .word {
        display: block;
    }
}

.text-split .word .string {
    transform: translateY(120%);
    display: inline-block;
}

.text-split .word .string.is-show {
    -webkit-animation: anime_top-mv__string 0.74s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
    animation: anime_top-mv__string 0.75s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
}

@-webkit-keyframes anime_top-mv__string {
    0% {
        transform: translateY(120%);

    }
    100% {
        transform: translateY(0);
    }
}

@keyframes anime_top-mv__string {
    0% {
        transform: translateY(120%);
    }
    100% {
        transform: translateY(0);
    }
}

.p-top-intro-content-text {
    color: #707070;
    font-size: 15px;
    line-height: 2.29;
}

@media screen and (max-width: 1100px) {
    .p-top-intro-content-text {
        font-size: 22px;
        padding: 0 35px;
        margin-top: -15px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-intro-content-text {
        margin-top: -10px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-intro-content-text {
        font-size: 1.2rem;
        line-height: 2;
        padding: 0;
        margin-top: 0;
    }
}

.p-top-farm {
    width: 100%;
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .p-top-farm {
        margin-top: -30%;
    }
}

.p-top-farm-inner {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 1100px) {
    .p-top-farm-inner {
        background: #f3f3f3;
        flex-direction: column-reverse;
    }
}

.p-top-farm-content {
    width: 50%;
    height: auto;
    background: #fff;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-farm-content {
        width: 92vw;
        margin-top: -6vw;
        z-index: 3;
    }
}

.p-top-farm-photo {
    width: 50%;
    height: auto;
}

@media screen and (max-width: 1100px) {
    .p-top-farm-photo {
        width: 100%;
        height: auto;
    }
}

.p-top-farm-inner img {
    height: 60%;
    object-fit: cover;
}

.p-top-farm-content-inner {
    padding: 0 6vw 0;
}

@media screen and (max-width: 1100px) {
    .p-top-farm-content-inner {
        padding: 30px 50px 58px 70px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-farm-content-inner {
        padding: 80px 60px 60px 70px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-farm-content-inner {
        padding: 13.333vw 10.666vw;
    }
}

.p-top-sec-heading {
    margin-bottom: 2vw;
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-top-sec-heading {
        margin-bottom: 2vw;
    }
}

.p-top-sec-heading-sm {
    color: #292929;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding-left: 3px;
    margin-bottom: 1vw;
}

@media screen and (max-width: 767px) {
    .p-top-sec-heading-sm {
        font-size: 1.1rem;
        letter-spacing: 0.55px;
    }
}

.p-top-sec-heading-md {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.28px;
}

.p-top-sec-heading-lg {
    color: #444;
    font-size: 3vw;
    font-weight: 100;
    line-height: 1.47;
}

@media screen and (max-width: 1100px) {
    .p-top-sec-heading.text-split .word.p-top-sec-heading-lg {
        display: inline-block;
    }

    .p-top-sec-heading-lg {
        font-size: 45px;
    }

    .p-top-sec-heading-md {
        font-size: 22px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-sec-heading-lg {
        font-size: 38px;
    }

    .p-top-sommelier .p-top-sec-heading-lg {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-sec-heading-lg {
        font-size: 2.4rem;
        line-height: 1.5;
    }

    .p-top-sommelier .p-top-sec-heading-lg {
        font-size: 2.6rem;
    }

    .p-top-sec-heading-lg.next {
        margin-top: -10px;
    }

    .p-top-sec-heading-md {
        font-size: 16px;
    }
}

.p-top-sec-heading.text-split .word {
    display: block;
}

.p-top-sec-text {
    color: #707070;
    font-size: 15px;
    line-height: 2.29;
}

@media screen and (max-width: 1100px) {
    .p-top-sec-text {
        font-size: 22px;
        margin-top: -10px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-sec-text {
        margin-top: -20px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-sec-text {
        font-size: 1.2rem;
        line-height: 2;
        margin-top: -10px;
    }
}

.p-top-products {
    width: 100%;
    margin-top: 13.5vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-products {
        margin-top: 110px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-products {
        margin-top: 16vw;
    }
}

.p-top-products::before {
    width: 100%;
    height: 10vw;
    background: repeating-linear-gradient(90deg, #e8e8e8, #e8e8e8 1px, transparent 1px, transparent 16.666%), linear-gradient(90deg, #fff, #fff 16.666%, #f3f3f3 16.666%, #f3f3f3);
    content: "";
    position: absolute;
    top: -10vw;
}

@media screen and (max-width: 1100px) {
    .p-top-products::before {
        height: 110px;
        top: -110px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-products::before {
        height: 16vw;
        background: #f3f3f3;
        top: -16vw;
    }
}

.p-top-products-inner {
    display: flex;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-products-inner {
        display: block;
    }
}

.p-top-products-content {
    width: 50%;
    height: 600px;
    background: #fff;
    margin: 10.5vw 0 0 -9.615vw;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1100px) {
    .p-top-products-content {
        width: 92vw;
        height: auto;
        margin: -9vw 0 0 auto;
    }
}

.p-top-products-content-inner {
    padding: 5.461vw 0 0 6.5vw;
}

@media screen and (max-width: 1100px) {
    .p-top-products-content-inner {
        padding: 60px 40px 40px 60px;
    }

    .p-top-products .p-top-sec-heading-lg {
        font-size: 45px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-products-content-inner {
        padding: 60px 40px;
    }

    .p-top-products .p-top-sec-heading-lg {
        font-size: 38px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-products-content-inner {
        padding: 13.866vw 10.666vw 11.466vw;
    }
    .p-top-products .p-top-sec-heading-lg {
        font-size: 2.8rem;
    }
}

.p-top-products-pho {
    width: 50vw;
    height: 60%;
    position: relative;
}

.p-top-products-pho img {
    height: 60%;
}

@media screen and (max-width: 1100px) {
    .p-top-products-pho {
        width: 100%;
        height: auto;
    }

    .p-top-products-pho img {
        height: 45%;
    }
}

.p-top-sommelier {
    width: 100%;
    margin: 6vw 0 5vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-sommelier {
        margin: 80px 0 120px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-sommelier {
        background: #f3f3f3;
        margin: 16vw 0 0;
        padding-bottom: 24vw;
    }
}

.p-top-sommelier-inner {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    .p-top-sommelier-inner {
        flex-direction: column-reverse;
    }
}

.p-top-sommelier-content {
    width: 50%;
    height: 48.077vw;
}

@media screen and (max-width: 1100px) {
    .p-top-sommelier-content {
        width: 92vw;
        background: #fff;
        margin: -9vw auto 0 0;
        z-index: 3;
        height: auto;
    }
}

.p-top-sommelier-content-inner {
    padding: 10.307vw 7.461vw 0 8.153vw;
}

@media screen and (max-width: 1100px) {
    .p-top-sommelier-content-inner {
        padding: 60px 50px 0 70px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-sommelier-content-inner {
        padding: 50px 40px 0 45px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-sommelier-content-inner {
        padding: 13.866vw 10.666vw 11.466vw;
    }
}

.p-top-sommelier-pho {
    width: 50%;
    height: calc(100vw / 6 * 2);
    overflow: hidden;
}

.p-top-sommelier-pho::after {
    display: block;
    content: "";
    width: 100%;
    position:absolute;
    height: 2px;
    bottom: -1px;
    background-color: #fff;
}

@media screen and (max-width: 1100px) {
    .p-top-sommelier-pho {
        width: 100%;
        height: auto;
        margin-top: 0;
    }
}

.p-top-pf {
    width: 100%;
    height: auto;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 16.666%) #292929;
    position: relative;
    padding-bottom: 100px;
}

@media screen and (max-width: 1100px) {
    .p-top-pf {
        background: #292929;
        padding: 2vw 0 10.5vw 10vw;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf {
        padding: 2vw 0 10.5vw 13vw;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf {
        padding: 10vw 0 10.5vw 8vw;
    }
}

.p-top-pf::before {
    color: #fff;
    content: "Processed food";
    font-family: "Poppins", sans-serif;
    font-size: 8vw;
    font-weight: 100;
    letter-spacing: -8.22px;
    line-height: 0.8;
    opacity: 0.06;
    position: absolute;
    top: -5vw;
    left: 0.5vw;
    transform: rotate(90deg);
    transform-origin: left bottom;
}

@media screen and (max-width: 1100px) {
    .p-top-pf::before {
        letter-spacing: 0;
        font-size: 100px;
        top: 0;
        left: 5px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf::before {
        display: none;
    }
}

.p-top-pf-heading {
    height: 14.5vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-heading {
        height: 160px; 
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-heading {
        height: auto;
        position: static;
        margin-bottom: 10vw;
    }
}

.p-top-pf-heading-primary,
.p-top-pf-heading-secondary {
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .p-top-pf-heading-primary,
    .p-top-pf-heading-secondary {
        top: 0;
        transform: translateY(0);
    }
}

.p-top-pf-heading-primary {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.28px;
    position: absolute;
    left: 10%;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-heading-primary {
        font-size: 30PX;
        left: 2%;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf-heading-primary {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-heading-primary {
        font-size: 1.3rem;
        letter-spacing: 1.2px;
        line-height: 1.33;
        margin-bottom: 4vw;
        position: static;
        left: 0;
    }
}

.p-top-pf-heading-secondary {
    color: #777;
    font-size: 20px;
    letter-spacing: 0.7px;
    position: absolute;
    left: 19%;
    font-weight: 400;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-heading-secondary {
        font-size: 30PX;
        left: 23%;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf-heading-secondary {
        font-size: 25px;
        left: 25%;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-heading-secondary {
        font-size: 1.3rem;
        letter-spacing: 0.65px;
        line-height: 2.15;
        position: relative;
        left: 20px;
    }
}

.p-top-pf-content {
    background: #fff;
    display: flex;
    margin-left: calc(100vw / 10 * 1);
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content {
        display: block;
        margin: 0 0 0 auto;
        height: auto;
    }
}

.p-top-pf-content-tabs {
    width: 13%;
    height: 49vw;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-tabs {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf-content-tabs {
        justify-content: end;
    }
}

.p-top-pf-content-tab {
    width: 100%;
    height: 25%;
    background: #4b4b4b;
    cursor: pointer;
    display: block;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-tab {
        width: 50%;
        height: 15vw;
        border-top: 1px solid #292929;
        padding-left: 12vw;
        text-align: left;
    }
}

.p-top-pf-content-tab._active {
    background: #4bcba7;
    transition: 0.3s;
}

.p-top-pf-content-tab._active .p-top-pf-content-tab-text {
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-tab._active .p-top-pf-content-tab-text::after {
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        content: "";
        position: absolute;
        left: -3.538vw;
        top: 51%;
        transform: translateY(-49%);
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-tab._active::after {
        transform: translateY(-50%) rotate(0);
        transition: 0.3s;
    }
}

@media screen and (min-width: 768px) {
    .p-top-pf-content-tab::before {
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        content: "";
        transform-origin: left top;
        transform: scale(1, 0);
        transition: transform 0.3s;
        position: absolute;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-tab::before,
    .p-top-pf-content-tab::after {
        display: none;
    }
}

.p-top-pf-content-tab::after {
    transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 768px) {
    body:not(.-is-touchDevice) .p-top-pf-content-tab:hover::before {
        transform-origin: left bottom;
        transform: scale(1, 1);
    }
}

.p-top-pf-content-tab-text {
    color: #fff;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 1.12px;
    line-height: 1.72;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
    z-index: 2;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-tab-text {
        font-size: 27px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-tab-text {
        display: block;
        font-size: 1.3rem;
        letter-spacing: 1.04px;
        left: 8vw;
        transform: translate(0, -50%);
        text-align: left;
    }

    .tab1-text {
        text-align: center;
    }
}

.p-top-pf-content-bodyWrap {
    flex: 1;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-bodyWrap {
        height: 160vw;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf-content-bodyWrap {
        height: 195vw;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-bodyWrap {
        height: 220vw;
    }
}

.p-top-pf-content-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
}

.p-top-pf-content-body._active {
    display: block;
    opacity: 1;
    transition: opacity 1s ease;
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-body {
        display: none;
        position: relative;
        opacity: 1;
    }
}

.p-top-pf-content-body-inner {
    padding: 50px;
    height: 100%;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-body-inner {
        padding: 80px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf-content-body-inner {
        padding: 50px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-body-inner {
        padding: 30px;
    }
}

.p-top-pf-content-body-inner-flex {
    display: flex;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-body-inner-flex {
        flex-direction: column;
    }
}

.p-top-pf-content-child-body {
    width: 62.63%;
    transform: translateY(50px);
    transition: 0.5s ease;
}

.p-top-pf-content-body._active .p-top-pf-content-child-body {
    transform: translateY(0);
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-child-body {
        width: 100%;
        transform: translateY(0);
    }
}

.p-top-pf-content-child-body-inner {
    padding: 0 4vw;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-child-body-inner {
        padding: 30px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-child-body-inner {
        padding: 20px 0 0 0;
    }
}

.p-top-pf-content-child-body-title {
    color: #444;
    font-size: 32px;
    font-weight: 100;
    letter-spacing: 3.2px;
    line-height: 2.06;
}

#tab2 .p-top-pf-content-child-body-title,
#tab4 .p-top-pf-content-child-body-title {
    position: relative;
    left: -5px;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-child-body-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-pf-content-child-body-title {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-child-body-title {
        color: #414141;
        font-size: 1.8rem;
        line-height: 1.5;
        margin-bottom: 2.333vw;
    }
}
.p-top-pf-content-child-body-text {
    color: #707070;
    font-size: 14px;
    line-height: 2;
    font-size: 17px;
    padding-left: 15px;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-child-body-text {
        font-size: 18px;
    }

    #tab1 .p-top-pf-content-child-body-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 920px) {
    #tab1 .p-top-pf-content-child-body-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-child-body-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    #tab1 .p-top-pf-content-child-body-text {
        font-size: 1rem;
    }
}

.p-top-pf-content-child-body-item {
    color: #707070;
    font-size: 14px;
    line-height: 1.7;
    margin-top: 30px;
}

.item + .item {
    margin-top: 10px;
}

@media screen and (max-width: 1100px) {
    .item + .item {
        margin-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    .item + .item {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-child-body-item {
        font-size: 16px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-pf-content-child-body-item {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-top: 0;
        padding: 4.533vw 0;
    }
}

.item-title {
    font-size: 17px;
    font-weight: 100;
    font-family: "Poppins", sans-serif;
}

.pf-item-text {
    padding-left: 15px;
}

@media screen and (max-width: 1100px) {
    .item-title {
        display: block;
        font-size: 25px;
    }

    #tab3 .item-title {
        font-size: 30px;
    }

    .pf-item-text {
        margin-top: -15px;
        font-size: 20px;
    }

    #tab3 .pf-item-text {
        font-size: 20px;
    }

}

@media screen and (max-width: 767px) {
    .item-title {
        font-size: 1.5rem;
        display: inline-block;
    }

    #tab3 .item-title {
        font-size: 1.5rem;
    }

    .pf-item-text {
        font-size: 1.1rem;
        margin-top: 0;
    }

    #tab3 .pf-item-text {
        font-size: 1.1rem;
    }
}

.p-top-pf-content-body-pho {
    width: 37.37%;
}

.p-top-pf-content-body-pho img {
    object-fit: cover;
}

@media screen and (max-width: 1100px) {
    .p-top-pf-content-body-pho {
        width: 100%;
    }
}

.p-top-commitment {
    width: 100%;
    margin-top: 10vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment {
        margin-top: 110px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment {
        background: #f3f3f3;
        margin-top: 0;
    }
}

.p-top-commitment::before {
    width: 100%;
    height: 10vw;
    content: "";
    position: absolute;
    top: -10vw;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment::before {
        height: 110px;
        top: -110px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment::before {
        display: none;
    }
}

.p-top-commitment-inner {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-inner {
        margin-top: 9ch;
        flex-direction: column-reverse;
    }
}

.p-top-commitment-content {
    width: 45%;
    height: auto;
    background: #fff;
    margin: 30.615% -18% 0 8%;
    z-index: 1;
    position: relative;
}

.p-top-commitment-content .p-top-sec-heading {
    top: -13px;
    color: #292929;
    margin-bottom: 0;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-content .p-top-sec-heading {
        margin-bottom: 0;
        padding-left: 15px;
        height: auto;
    }

    .p-top-commitment-content .p-top-sec-heading::before {
        left: 8px;
        top: 25px;
    }
    .p-top-commitment-content {
        height: auto;
        width: 90%;
        margin: 0;
        position: relative;
        bottom: 70px;
        left: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-content {
        bottom: 35px;
    }
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-content {
        width: 90vw;
        height: auto;
    }

    .p-top-commitment .p-top-sec-heading {
        padding-left: 10px;
        margin-bottom: 20px;
        top: 0;
    }

    .p-top-commitment-content .p-top-sec-heading::before {
        left: -12px;
        top: -5px;
    }

    .p-top-commitment .p-top-sec-heading-md {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment .p-top-sec-heading {
        margin-bottom: 0;
    }

    .p-top-commitment .p-top-sec-heading-md {
        font-size: 16px;
    }
}

.p-top-commitment-content-inner {
    padding: 10.994% 0 6% 5.471%;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-content-inner {
        padding: 5% 7%;
    }
}

@media screen and (max-width: 920px) {
    .p-top-commitment-content-inner {
        padding: 5% 0 5% 7%;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-content-inner {
        padding: 3vw 3vw 5vw 3vw;
    }
}

.p-top-commitment-content-list {
    display: block;
    flex-wrap: wrap;
    margin-top: 1.876vw;
    height: auto;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-content-list {
        margin-top: 0;
        padding-left: 15px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-content-list {
        margin-top: 1vw;
    }
}

.p-top-commitment-content-item {
    margin-bottom: 10px;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-content-item {
        margin-bottom: 20px;
    }

    .p-top-commitment-content-item:nth-child(6) {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 920px) {
    .p-top-commitment-content-item {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-content-item {
        margin-bottom: 3vw;
    }
}

.p-top-commitment-content-item-text {
    color: #707070;
    font-size: 16px;
    letter-spacing: 0.7px;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-content-item-text {
        font-size: 22px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-commitment-content-item-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-content-item-text {
        font-size: 10px;
    }
}

.p-top-commitment-pho {
    width: 55%;
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-pho {
        width: 100%;
        position: relative;
        top: 0px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-pho {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .p-top-commitment-pho .imageItemWrap {
        height: 85%;
    }
}

@media screen and (max-width: 767px) {
    .p-top-commitment-pho .imageItemWrap {
        height: 100%;
    }
}
.slider {
    position: relative;
    z-index: 0;
    height: 80vh;
}

.slider-item01 {
    background: url(59627ed3-e0bb-41e3-8140-8c935eab1a96.JPG);
}

.slider-item02 {
    background-image: url(IMG_9785\ 2.JPG);
}

.slider-item03 {
    background: url(3dcbfd87-901a-4d01-a37c-ef0b78ad95fb.JPG);
}

.slider-item04 {
    background: url(IMG_0213\ 2.JPG);
}

.slider-item05 {
    background: url(IMG_9944.JPG);
}

.slider-item06 {
    background: url(IMG_0289.JPG);
}

.slider-item {
    width: 66.692%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slick-prev,
.slick-next {
    position: absolute;
    z-index: 3;
    top: 55%;
    cursor: pointer;
    outline: none;
    border-top: 8px solid #fff;
    border-right: 8px solid #fff;
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 1100px) {
    .slick-prev,
    .slick-next {
        top: 48%;
        border-top: 10px solid #fff;
        border-right: 10px solid #fff;
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 920px) {
    .slick-prev,
    .slick-next {
        top: 45%;
    }
}

@media screen and (max-width: 767px) {
    .slick-prev,
    .slick-next {
        top: 43%;
        border-top: 7px solid #fff;
        border-right: 7px solid #fff;
        width: 40px;
        height: 40px;
    }
}

.slick-prev {
    left: 2.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: 2.5%;
    transform: rotate(45deg);
}

.slick-dots {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: -50px 0 0 0;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #fff;
}

.slick-dots .slick-active button {
    background: #333;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.p-top-news {
    width: 100%;
    background: repeating-linear-gradient(90deg, #e8e8e8, #e8e8e8 1px, transparent 1px, transparent 16.666%), linear-gradient(90deg, #fff, #fff 16.666%, #f3f3f3 16.666%, #f3f3f3);
    padding: 10vw 0;
    margin: 10vw 0;
    position: relative;
}

@media screen and (max-width: 920px) {
    .p-top-news {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news {
        width: 100%;
        background: #f3f3f3;
        margin: 0;
        padding: 20vw 0;
    }
}

.p-top-news::before {
    width: 100%;
    height: 7.153vw;
    content: "";
    position: absolute;
    top: -7.153vw;
}

@media screen and (max-width: 1100px) {
    .p-top-news::before {
        height: 79px; 
        top: -79px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news::before {
        display: none;
    }
}

.p-top-news::after {
    width: 100%;
    height: 17vw;
    content: "";
    position: absolute;
    bottom: -17vw;
}

@media screen and (max-width: 1100px) {
    .p-top-news::after {
        height: 187px;
        bottom: -187px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news::after {
        display: none;
    }
}

.p-top-news .p-top-sec-heading-lg {
    text-align: center;
    margin-bottom: 30px;
}

@media screen and (max-width: 1100px) {
    .p-top-news .p-top-sec-heading-lg {
        margin-bottom: 0;
    }
}

.p-top-news-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -45px;
}

@media screen and (max-width: 1100px) {
    .p-top-news-inner {
        display: block;
    }
}

.p-top-news-pho {
    width: 50%;
    padding-left: 50px;
}

@media screen and (max-width: 1100px) {
    .p-top-news-pho {
        width: 100%;
        padding-left: 0;
    }
}

.p-top-news-content {
    width: 50%;
    background: #fff;
    position: relative;
    z-index: 1;
}

.p-top-news-content .p-top-sec-heading {
    color: #292929;
}

.p-top-news-content .p-top-sec-heading::before {
    left: -17vw;
    top: -13vw;
}

@media screen and (max-width: 1100px) {
    .p-top-news-content {
        width: 84vw;
        margin: -5vw auto 0;
        position: relative;
        z-index: 1;
    }
    .p-top-news-content .p-top-sec-heading::before {
        left: -12px;
        top: -5px;
    }
}

.p-top-news-content-inner {
    padding: 2.5vw 4vw 2.5vw;
}

@media screen and (max-width: 1100px) {
    .p-top-news-content-inner {
        padding: 71px 55px 46px 68px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-news-content-inner {
        padding: 40px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news-content-inner {
        padding: 8vw 8vw 10.666vw;
    }
}

.box {
    width: 100%;
    height: 100px;
    overflow-y: scroll;
    overflow: auto;
}

.js-news-wrap {
    display: none;
}

.p-top-news-content-list {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .p-top-news-content-list {
        border-top: 1px solid #efefef;
    }
}

.p-top-news-content-item {
    border-bottom: 1px solid #efefef;
    color: #707070;
    font-size: 20px;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .p-top-news-content-item {
        display: block;
        font-size: 1.2rem;
        padding: 4.266vw 0;
    }
}

.p-top-news-content-item-head {
    width: 12.069%;
    padding: 2.307vw 0;
    text-align: left;
    font-weight: 400;
    color: #444;
}

@media screen and (max-width: 767px) {
    .p-top-news-content-item-head {
        width: 100%;
        display: block;
        font-weight: 400;
        line-height: 1.8;
        padding: 0;
    }
}

.p-top-news-content-item-text {
    width: 32.4675%;
}

@media screen and (max-width: 767px) {
    .p-top-news-content-item-text {
        width: 100%;
        display: block;
        line-height: 1.8;
    }
}

.p-top-news-content-more {
    width: 100%;
    height: 6.923vw;
    background: #4bcba7;
    color: #fff;
    display: block;
    margin-top: 2.307vw;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: ease 0.2s;
}

@media screen and (max-width: 1100px) {
    .p-top-news-content-more {
        height: 76px; 
        margin-top: 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news-content-more {
        height: 21.333vw;
        margin-top: 8vw;
    }
}

.p-top-news-content-more.js-btn-more::before {
    width: 100%;
    height:0;
    content: "";
    background: #4bcba7;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.p-top-news-content-more.js-btn-more:hover::before {
    height: 100%;
    background: #41ac8e;
}

.p-top-news-content-more-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 6.923vw;
    position: relative;
    z-index: 4;
}

@media screen and (max-width: 1100px) {
    .p-top-news-content-more-text {
        line-height: 76px;
    }
}

@media screen and (max-width: 920px) {
    .p-top-news-content-more-text {
        position: relative;
        bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .p-top-news-content-more-text {
        font-size: 1.4rem;
        letter-spacing: 0.7px;
        line-height: 21.333vw;
        top: 2px;
    }
}

.p-top-news-content-more.js-btn-close {
    display: none;
}

.p-top-news-content-more.js-btn-close::before {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: #4bcba7;
    width: 100%;
    height: 0;
    transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.p-top-news-content-more.js-btn-close:hover::before {
    height: 100%;
    background: #41ac8e;
}

.gridMaskWrap {
    position: relative;
    overflow: hidden;
}

.footer {          
    width: 100%;
    height: 100vh;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 16.666%), rgba(34, 34, 34, 0.86);
    overflow: hidden;
    position: relative;
}

.footer__video {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    height: 100%;
}
  
@media screen and (max-width: 767px) {
    .footer__video {
      display: none;
    }
}

.footer-inner {
    padding: 6.153vw 6.153vw 0 6.153vw;

}

@media screen and (max-width: 1100px) {
    .footer-inner {
        padding: 68px 68px 0 68px;
    }
}

@media screen and (max-width: 767px) {
    .footer-inner {
        padding: 7.666vw 8vw 0;
    }
}

.footer-logo {
    width: 200px;
    height: 4.23vw;
}

@media screen and (max-width: 920px) {
    .footer-logo {
        width: 150px;
        height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .footer-logo {
        width: 25.8vw;
        height: 8.666vw;
        margin: 30px 0 30px;
    }
}

.footer-body {
    display: flex;
    padding: 10.076vw 0 0 10.2%;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .footer-body {
        padding: 70px 0 138px 50px;
        display: block;
    }
}

@media screen and (max-width: 920px) {
    .footer-body {
        padding: 40px 0 40px 30px;
    }
}

@media screen and (max-width: 767px) {
    .footer-body {
        padding: 2vw 0 0 15px;
    }
}

.footer-company {
    display: block;
}

@media screen and (max-width: 1100px) {
    .footer-company {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 800px) {
    .footer-company {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    .footer-company {
        margin-bottom: 40px;
    }
}

.footer-title {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 3.384vw;
}

@media screen and (max-width: 1100px) {
    .footer-title {
        font-size: 32px;
        margin-top: 37px;
    }
}

@media screen and (max-width: 920px) {
    .footer-title {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .footer-title {
        font-size: 15px;
        letter-spacing: 0.6px;
        margin-top: 0;
        margin-bottom:5.333vw;
    }
}

.footer-company-item {
    display: flex;
    margin-bottom: 2.307vw;
}

@media screen and (max-width: 1100px) {
    .footer-company-item {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 920px) {
    .footer-company-item {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .footer-company-item {
        margin-bottom: 7vw;
    }
}

.footer-company-item-title {
    min-width: 8.769vw;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.12px;
    opacity: 0.5;
}

@media screen and (max-width: 1100px) {
    .footer-company-item-title {
        font-size: 32px;
        min-width: 200px;
        margin-right: 35px;
    }
}

@media screen and (max-width: 920px) {
    .footer-company-item-title {
        font-size: 22px;
        min-width: 130px;
    }
}

@media screen and (max-width: 767px) {
    .footer-company-item-title {
        font-size: 15px;
        min-width: 90px;
        margin-right: -20px;
    }
}

.footer-company-item-text {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1.12px;
    line-height: 2;
    opacity: 0.8;
}

@media screen and (max-width: 1100px) {
    .footer-company-item-text {
        font-size: 30px;
        position: relative;
        left: 50px;
    }
}

@media screen and (max-width: 920px) {
    .footer-company-item-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer-company-item-text {
        font-size: 15px;
        position: relative;
        left: 35px;
    }
}

.footer-contact {
    position: absolute;
    left:64.5%;
}

@media screen and (max-width: 1100px) {
    .footer-contact {
        position: static;
    }
}

.footer-contact .footer-company-item {
    display: block;
}

.footer-contact .footer-company-item-title {
    margin-bottom: 1.15vw;
}

.footer-contact-button {
    width: 19.23vw;
    height: 5.4vw;
    background: #4bcba7;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 5.4vw;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 1100px) {
    .footer-contact-button {
        width: 30vw;
        height: 10vw;
        line-height: 10vw;
        font-size: 25px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 920px) {
    .footer-contact-button {
        width: 30vw;
        height: 10vw;
        line-height: 10vw;
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .footer-contact-button {
        width: 35vw;
        height: 12vw;
        line-height: 12vw;
        font-size: 12px;
    }
}

.footer-contact-button-text {
    position: relative;
    z-index: 1;
}

.footer-contact-number {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 3.23vw;
    font-weight: 100;
    pointer-events: none;
    text-decoration: none;
}

@media screen and (max-width: 1100px) {
    .footer-contact-number {
        font-size: 45px;
        margin-top: -15px;
    }
}

@media screen and (max-width: 767px) {
    .footer-contact-number {
        font-size: 25px;
    }
}

.p-privacy-unit-number,
.p-privacy-unit-email,
.c-form-item-input-email,
.c-form-item-input-number {
    pointer-events: none;
}

.footer-copy {
    position: relative;
    top: -10px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.7;
    padding: 8vw 0 2vw;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .footer-copy {
        margin-top: 0px;
        font-size: 20px;
        padding: 0;
   }
}

@media screen and (max-width: 920px) {
    .footer-copy {
        padding-top: 10px;
        margin-top: 100px;
        font-size: 18px;
    }
}

@media screen and (max-width: 800px) {
    .footer-copy {
        margin-top: 80px;
    }
}

@media screen and (max-width: 767px) {
    .footer-copy {
        font-size: 10px;
        position: relative;
        margin-top: 45px;


    }
}

.p-contact {
    width: 100%;
    background: #fff;
}

.p-contact-inner {
    padding: 8.846vw 8.538vw 9.23vw;
}

@media screen and (max-width: 1100px) {
    .p-contact-inner {
        padding: 6vw 6vw 7vw;
    }
}



.p-contact-title {
    color: #414141;
    display: block;
}

.p-contact-title-lg {
    display: block;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1.25px;
    line-height: 2.64vw;
}

@media screen and (max-width: 1100px) {
    .p-contact-title-lg {
        margin-bottom: 10px;
        font-size: 26px;
    }
}

@media screen and (max-width: 920px) {
    .p-contact-title-lg {
        line-height: normal;
        font-size: 18.5px;
        margin-bottom: -25px;
    }
}

@media screen and (max-width: 767px) {
    .p-contact-title-lg {
        font-size: 1.7rem;
        margin-bottom: -5px;
    }
}

.p-contact-title-sm {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.9px;
}

@media screen and (max-width: 1100px) {
    .p-contact-title-sm {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 920px) {
    .p-contact-title-sm {
        position: relative;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .p-contact-title-sm {
        font-size: 10px;
    }
}

.p-contact-title-sm2 {
    font-size: 23px;
}

@media screen and (max-width: 920px) {
    .p-contact-title-sm2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .p-contact-title-sm2 {
        font-size: 17px;
    }
}

.p-contact-confirm {
    margin-top: 50px;
}

.p-contact-require-note {
    color: #4bcba7;
    font-size: 16px;
    letter-spacing: 0.7px;
    line-height: 1.54;
    margin-top: 1.5vw;
}

@media screen and (max-width: 1100px) {
    .p-contact-require-note {
        font-size: 20px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 920px) {
    .p-contact-require-note {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-contact-require-note {
        font-size: 1.2rem;
        margin-top: 15px;
    }
}

.p-contact-form {
    margin-top: 20px;
}

@media screen and (max-width: 920px) {
    .p-contact-form {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .p-contact-form {
        margin-top: 5px;
    }
}

.p-contact-form-inner {
    margin-right:0;
}

tbody {
    width: 100%;
}

.font-black {
    color: #222;
}

.l-lower {
    width: 100%;
    background: repeating-linear-gradient(90deg, rgba(41, 41, 41, 0.06), rgba(41, 41, 41, 0.06) 1px, transparent 1px, transparent 16.666%);
    position: relative;
}

@media screen and (max-width: 767px) {
    .l-lower {
        background: #f3f3f3;
    }
}

.l-lower::before {
    width: 100%;
    height: 100%;
    background: #f3f3f3;
    content: "";
    position: absolute;
    z-index: -1;
}

.l-lower-inner {
    padding: 18.461vw 10vw 14.307vw;
}

@media screen and (max-width: 1100px) {
    .l-lower-inner {
        padding: 18.461vw 8vw 14.307vw;
    }
}

@media screen and (max-width: 920px) {
    .l-lower-inner {
        padding: 23vw 8vw 14.307vw;
    }
}

@media screen and (max-width: 767px) {
    .l-lower-inner {
        padding: 23vw 5vw 14.307vw;
    }
}

.l-lower-title {
    width: 100%;
    display: flex;
    margin-bottom: 3.076vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .l-lower-title {
        margin: 0 0 30px 50px;
    }
}

@media screen and (max-width: 767px) {
    .l-lower-title {
        width: 92vw;
        margin: 3vw 0 3vw 3vw;
    }
}

.l-lower-title::before {
    width: 6px;
    height: 6px;
    background: #4bcba7;
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: -12px;
}

@media screen and (max-width: 767px) {
    .l-lower-title::before {
        width: 1.066vw;
        height: 1.066vw;
        top: -0.8vw;
        left: -1.866vw;
    }
}

.l-lower-title-en {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 1100px) {
    .l-lower-title-en {
        font-size: 25px;
    }
}

@media screen and (max-width: 920px) {
    .l-lower-title-en {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .l-lower-title-en {
        font-size: 1.1rem;
    }
}

.l-lower-title-ja {
    display: block;
    font-size: 18.5px;
    font-weight: 500;
    margin-left: 5vw;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .l-lower-title-ja {
        font-size: 23px;
        margin-left: 55px;
    }
}

@media screen and (max-width: 920px) {
    .l-lower-title-ja {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .l-lower-title-ja {
        font-size: 1.2rem;
        margin-left: 10.133vw;
    }
}

.l-lower-title-ja::before {
    width: 1.538vw;
    height: 1px;
    background: #8d8989;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2.922vw;
}

@media screen and (max-width: 1100px) {
    .l-lower-title-ja::before {
        width: 17px;
        left: -32px;
    }
}

@media screen and (max-width: 767px) {
    .l-lower-title-ja::before {
        width: 5.333vw;
        left: -7.466vw;
    }
}

.c-form-item + .c-form-item {
    margin-top: 3.076vw;
}

@media screen and (max-width: 1100px) {
    .c-form-item + .c-form-item {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item + .c-form-item {
        margin-top: 5.333vw;
    }
}

.c-form-item._require .c-form-item-title {
    position: relative;
}

.c-form-item._require .c-form-item-title::before {
    color: #4bcba7;
    content: "*";
    font-size: 18px;
    position: absolute;
    top: -5px;
    left: -10px;
}

@media screen and (max-width: 767px) {
    .c-form-item._require .c-form-item-title::before {
        font-size: 1.8rem;
        top: -1.333vw;
        left: -2.666vw;
    }
}

.c-form-item-title {
    color: #414141;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    margin-right: 20px;
}

@media screen and (max-width: 1100px) {
    .c-form-item-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-title {
        font-size: 1.2rem;
        margin-bottom: 2.666vw;
    }
}

.c-form-item-title-note {
    color: #9f9f9f;
    font-size: 14px;
    font-weight: 400;
    margin-left: 20px;
}

@media screen and (max-width: 1100px) {
    .c-form-item-title-note {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-title-note {
        display: block;
        font-size: 1.2rem;
        margin-left: 0;
    }
}

.c-form-item-input {
    width: 100%;
    display: block;
}

@media screen and (max-width: 920px) {
    .c-form-item-input {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-input {
        font-size: 1.1rem;
    }
}

.c-form-item-input-input {
    width: 100%;
    max-width: 800px;
    background: #f3f3f3;
    border: none;
    border-radius: 0;
    font-size: 16px;
    padding: 26px 25px;
}

@media screen and (max-width: 767px) {
    .c-form-item-input-input {
        max-width: 100%;
        font-size: 1.2rem;
        padding: 4.534vw 2.666vw;
    }
}

.c-form-item-input-input::-webkit-input-placeholder {
    color: #b4b4b4;
    font-size: 16px;
}

.c-form-item-input-input::-moz-placeholder {
    color: #b4b4b4;
    font-size: 16px;
}

.c-form-item-input-input:-ms-input-placeholder {
    color: #b4b4b4;
    font-size: 16px;
}

.c-form-item-input-input::-ms-input-placeholder {
    color: #b4b4b4;
    font-size: 16px;
}

.c-form-item-input-input::placeholder {
    color: #b4b4b4;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .c-form-item-input-input::-webkit-input-placeholder {
        font-size: 1.2rem;
    }
    
    .c-form-item-input-input::-moz-placeholder {
        font-size: 1.2rem;
    }
    
    .c-form-item-input-input:-ms-input-placeholder {
        font-size: 1.2rem;
    }
    
    .c-form-item-input-input::-ms-input-placeholder {
        font-size: 1.2rem;
    }
    
    .c-form-item-input-input::placeholder {
        font-size: 1.2rem;
    }
}

.c-form-item-input-input._error {
    background: #fff4f4;
    border: 1px solid #f00;
}

.c-form-item-input-error {
    color: #f00;
    font-size: 14px;
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .c-form-item-input-error {
        font-size: 1.2rem;
        margin-top: 1.333vw;
    }
}

.c-form-item-textarea {
    width: 100%;
    max-width: 800px;
}

@media screen and (max-width: 767px) {
    .c-form-item-textarea {
        max-width: 100%;
    }
}

.c-form-item-textarea-input {
    width: 100%;
    height: 28.692vw;
    background: #f3f3f3;
    border: none;
    border-radius: 0;
    font-size: 16px;
    padding: 26px 25px;
}

@media screen and (max-width: 1100px) {
    .c-form-item-textarea-input {
        height: 373px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-textarea-input {
        height: 50.133vw;
        font-size: 1.2rem;
        padding: 4.534vw 2.666vw;
    }
}

.c-form-item-textarea-input._error {
    background: #fff4f4;
    border: 1px solid #f00;
}

.c-form-item-checkbox {
    margin-top: 44px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .c-form-item-checkbox {
        margin-top: 5.222vw;
    }
}

#privacy {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 1100px) {
    #privacy {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    #privacy {
        width: 30px;
        height: 30px;
    }
}

.c-form-item-checkbox._require .c-form-item-checkbox-label-link {
    position: relative;
}

.c-form-item-checkbox._require .c-form-item-checkbox-label-link::before {
    color: #4bcba7;
    content: "*";
    font-size: 18px;
    position: absolute;
    top: -10px;
    left: -10px;
}

@media screen and (max-width: 767px) {
    .c-form-item-checkbox._require .c-form-item-checkbox-label-link::before {
        font-size: 1.8rem;
        top: -2.666vw;
        right: -2.666vw;
    }
}

.c-form-item-checkbox-input:checked + .c-form-item-checkbox-label::after {
    display: block;
}

.c-form-item-checkbox-label {
    color: #414141;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding-left: 25px;
    position: relative;
}

@media screen and (max-width: 1100px) {
    .c-form-item-checkbox-label {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-checkbox-label {
        font-size: 1.2rem;
        padding-left: 6.5vw;
    }
}

.c-form-item-checkbox-label::after {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    left: 0.5em;
    transform: rotate(-45deg);
    width: 24px;
    height: 12px;
    border-left: 3px solid #707070;
    border-bottom: 3px solid #707070;
}

@media screen and (max-width: 767px) {
    .c-form-item-checkbox-label::after {
        width: 5vw;
        height: 2.5vw;
        border-left: 0.6vw solid #707070;
        border-bottom: 0.6vw solid #707070;
    }
}

.c-form-item-checkbox-label._confirm::after {
    display: block;
}

.c-form-item-checkbox-label._error::before {
    background: #fff4f4;
    border: 1px solid #f00;
}

.c-form-item-checkbox-label-link {
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .c-form-item-checkbox-label-link {
        margin-right: 2.666vw;
    }
}

.c-form-item-submitArea {
    margin-top: 64px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-form-item-submitArea {
        margin-top: 10.666vw;
    }
}

.c-form-item-submitArea.confirm {
    margin-top: 100px;
    margin-bottom: 40px;
}

.c-form-item-submit {
    width: 300px;
    height: 90px;
    background: #4bcba7;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 90px;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .c-form-item-submit {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-submit {
        width: 100%;
        height: 18.666vw;
        font-size: 1.4rem;
        line-height: 18.666vw;
    }
}

.c-form-item-submit::before {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3.23vw;
}

@media screen and (max-width: 1100px) {
    .c-form-item-submit::before {
        right: 35px;
    }
}

@media screen and (max-width: 767px) {
    .c-form-item-submit::before {
        right: 5.6vw;
    }
}

body:not(.-is-touchDevice) .c-form-submit {
    transition: 0.3s;
}

body:not(.-is-touchDevice) .c-form-submit:hover {
    opacity: 0.7;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    body:not(.-is-touchDevice) .c-form-submit:hover {
        opacity: 1;
    }
}

.privacy-back {
    margin-top: 40px;
    font-size: 18px;
}

@media screen and (max-width: 1100px) {
    .privacy-back {
        font-size: 25px;
    }
}

@media screen and (max-width: 767px) {
    .privacy-back {
        font-size: 15px;
    }
}

.p-contact-inner a, 
.l-lower-inner a{
    position: relative;
    display: inline-block;
}

.p-contact-inner a::after, 
.l-lower-inner a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.p-contact-inner a:hover::after, 
.l-lower-inner a:hover::after {
    transform: scale(1, 1);
}

.form3-header {
    height: 30vh;
}

@media screen and (max-width: 1100px) {
    .form3-header {
        height: 23vh;
    }
}

@media screen and (max-width: 920px) {
    .form3-header {
        height: 21vh;
    }
}

@media screen and (max-width: 767px) {
    .form3-header {
        height: 18vh;
    }
}

.completion {
    height: 20vh;
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .completion {
        font-size: 1.2rem;
    }
}

.p-privacy {
    width: 100%;
    background: #fff;
}

.p-privacy-inner {
    padding: 8.846vw 8.538vw 9.23vw;
}

.p-privacy-intro {
    margin-bottom: 4.5vw;
}

.p-privacy-text {
    color: #707070;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.3;
}

@media screen and (max-width: 767px) {
    .p-privacy-unit-list.p-privacy-text {
        font-size: 12px;
    }
}

.p-privacy-unit + .p-privacy-unit {
    margin-top: 4.5vw;
}

.p-privacy-unit-title {
    color: #414141;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.88;
    margin-bottom: 10px;
}

.p-privacy-unit-list {
    margin-top: 1vw;
}

.p-privacy-unit-item {
    padding-left: 1em;
}

@media screen and (max-width: 1100px) {
    .back {
        font-size: 23px;
    }
}

@media screen and (max-width: 920px) {
    .back {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .back {
        font-size: 1.2rem;
    }
}