/*============================================================================ 
  #ResetCSS 
==============================================================================*/

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

html{
scroll-padding-top: 140px
}

@media (max-width:767px) {
    html{
    scroll-padding-top: 100px
    }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  line-height: 1;
  color: #333;
  font-family:'Manrope','Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img{
    width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: #fff5fe;
}
::-moz-selection {
    background: #fff5fe;
}
  

/*============================================================================ 
  #MultiClassCSS 
==============================================================================*/

/* ======== 本文 ======== */
.Rte{
    letter-spacing: 0.1em;
    line-height: 2.3;
    font-size: 13px;
}


/* ======== Laypout ======== */
.sp {
    display: none;
}
.Section{
    padding: 120px 0;    
    position: relative;
    overflow: hidden;  
}
@media (max-width:767px) {
    .sp {
        display: block;
    }
    .Section{
        padding: 50px 0;
    }
}

.Container{
    max-width: 1070px;    
    margin: 0 auto;
    padding: 0 35px;    
}

@media (max-width:767px) {
    .Container{
        padding: 0 17px;
    }
}


/* ======== Section Compornent ======== */

/* SectionHeader */
.SectionHeader{
    text-align: center;
    margin-bottom: 50px;        
}
.SectionHeader__Heading{
    font-size: 26px;
    letter-spacing: 0.2em;
    font-family: 'Cormorant';
    font-weight: 500;    
}
.SectionHeader__SubHeading{
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 8px;
    display: inline-block;
}

.SectionHeader--white{
    color: #FFF;
}


/* Section Catch */
.Section_CatchText{
    position: absolute;
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-size: 120px;
    color: #EDEDED;
    font-family: 'Cormorant';
    letter-spacing: 0.1em;
}
.Section_CatchText--right{
    right: -155px;
}
.Section_CatchText--left{
    left: -155px;
}
@media (max-width: 1360px) {
    .Section_CatchText{
        display: none;
    }
}
@media (max-width: 767px) {
    .SectionHeader{
        margin-bottom: 35px;
    }    
    .SectionHeader__Heading{
        font-size: 22px;
    }
    .SectionHeader__SubHeading{
        font-size: 10px;
        margin-top: 10px;
    }
}


/* ======== Visible&Hidden ======== */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/*============================================================================ 
  #Section CSS 
==============================================================================*/

.SiteWrapper {
    padding-left: 80px;
}

/* ======== SiteHeader ======== */ 

/* HamburgerMenu */
.SiteHeader__MenuWrap {
    z-index: 11;
    width: 70px;
    height: 70px;
    background-color: #fff;
    position: fixed;
    top: 10px;
    left: 5px;
    display: grid;
    place-items: center;
}
.SiteHeader__Menu{
    width: 20px;
    cursor: pointer;
}
.SiteHeader__Menu span{
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
}
.SiteHeader__Menu span:nth-child(1) {
    top: 0;
}
.SiteHeader__Menu span:nth-child(2) {
    margin: 8px 0;
    width: 17px;
}
.SiteHeader__Menu span:nth-child(3) {
    top: 0;
}
.SiteHeader__Menu.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
.SiteHeader__Menu.active span:nth-child(2) {
    opacity: 0;
}
.SiteHeader__Menu.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}


@media (max-width: 767px) {
    .SiteWrapper {
        padding: 0;
    }
    .SiteHeader__MenuWrap {
        top: 0;
        left: 0;
    }
}

/* Navigation */
.SiteHeader__Navi {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(0);
    background: #FFF;
    z-index: 10;
    display: none;
}
.SiteHeader__NaviBox {
    width: 100%;
    height: 100%;
}
.SiteHeader__Navi.active {        
    display: block;
}
.SiteHeader__Logo {
    width: 278px;
    margin: 80px auto 7%;
}
.NaviList {     
    display: block;        
    padding: 0;
}
.NaviList__Item{
    margin: 0 0 60px 0;
    text-align: center;
}
.NaviList__Item:last-child{
    margin-bottom: 0;
}
.NaviList__Item a{
    font-size: 22px;
    text-decoration: none;
    color: #333333;
    letter-spacing: 0.2em;
    font-family: 'Cormorant';
    position: relative;
}
.NaviList__Item a:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 0;
    height: 2px;
    background-color: #DFC4E1;
    transition: 0.3s;
}
.NaviList__Item a:hover:before{
    width: 31px;
}


@media (max-width: 767px) {
    .SiteHeader__Logo {
        width: 180px;
        margin: 30px auto 30%;
    }
}


/* ======== Footer ======== */ 
.SectionFooter{
    padding: 30px 0;
    text-align: center;
}
.SectionFooter small{
    font-family: 'Cormorant';
    letter-spacing: 0.3em;
    font-size: 10px;
}

@media (max-width:767px) {
    .SectionFooter{
        padding: 27px 0;
    }
}

/* ======== Mainvisual ======== */

.SectionMainvisual{    
    position: relative;
}
.SectionMainvisual::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #E5C3E3;
}

.SectionMainvisual__Container{
    background: #E5C3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 630px;    
    position: relative;
}
.SectionMainvisual .ScrollBorder{
    position: absolute;
    left: -50px;
    bottom: 15px;
    z-index: 3;
} 
.SectionMainvisual .ScrollBorder__Text span{  
    writing-mode: vertical-rl;
    display: block;
    letter-spacing: 0.2em;
    font-size: 11px;
    padding-left: 12px;
    font-family: 'Cormorant';    
}

@-webkit-keyframes scrollBorder {
    0% {
        height: 0;
    }
    100% {
        height: 54px;
    }
}

.SectionMainvisual .ScrollBorder__Text:before{
    -webkit-animation: scrollBorder 3s infinite;
    animation: scrollBorder 3s infinite;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 54px;
    width: 1px;
    background: #333;
}

@media (max-width:767px) {
    .SectionMainvisual::before {
        background-color: #FAFAFA;
    }
    .SectionMainvisual__Container{
        height: 80vh;
        padding: 0 17px;
    }
    .SectionMainvisual__Text svg{
        width: 130px;
    }
    .SectionMainvisual .ScrollBorder{
        left: 50%;
        bottom: 61px;
        transform: translateX(-50%);
    }
    .SectionMainvisual .ScrollBorder__Text span{
        font-weight: 700;
        font-size: 13px;
        color: #fff;
        writing-mode: inherit;
        padding-left: 0;
    }
    .SectionMainvisual .ScrollBorder__Text:before {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        background-color: #fff;
    }
    .SectionMainvisual .ScrollBorder__Text:after {
        content: "";
        display: block;
        width: 1px;
        height: 54px;
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        background-color: rgb(255 255 255 / .35);
    }
}

@media (max-width:375px) {
    .SectionMainvisual {
        padding-top: 17px;
    }
    .SectionMainvisual__Container{
        height: 78vh;
    }
}


/* ======== About ======== */
.SectionAbout{
    position: relative;
}
.SectionAbout::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FAFAFA;
}
.SectionAbout .Item__Description{
    display: flex;
    flex-wrap: wrap;
}
.SectionAbout .Item__DescriptionText .Rte{
    line-height: calc(28/13);
    text-align: center;
}
.SectionAbout .Item__Bottom{
    width: 100%;
    margin-top: 60px;
    line-height: calc(32/13);
    text-align: center;
}


@media (max-width:767px) {
    .SectionAbout .Item__Bottom {
        margin-top: 30px;
    }
}


/* ======== Our Business ======== */

.SectionBusiness__Description {
    margin-top: 40px;
}
.SectionBusiness__Description--en {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: calc(30/14);
    text-align: center;
}
.SectionBusiness__Description--ja {
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
}
.SectionBusiness__bottom {
    margin-top: 60px;
}
.BusinessHeader {
    text-align: center;
    margin-bottom: 37px;
}
.BusinessHeader__Number {
    color: #E2B9DF;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.BusinessHeader__Heading {
    font-size: 26px;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-family: 'Cormorant';
    margin-top: 14px;
}
.BusinessHeader__SubHeading {
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-top: 12px;
    display: block;
}
.SectionBusiness .Item__Wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.SectionBusiness .Item__Wrap .Rte {
    line-height: 1.84;
}
.SectionBusiness .Item {
    display: grid;
    grid-template-rows: subgrid;
}
.SectionBusiness .Item--en {
    padding-right: 13%;
    border-right: 1px solid #F0F0F0;
}
.SectionBusiness .Item--ja {
    padding-left: 13%;
}
.SectionBusiness .Item p {
    margin-bottom: 20px;
}
.SectionBusiness .Item__ListLabel{
    font-weight: 700;
    line-height: 1.84;
    margin-bottom: 10px;
}
.SectionBusiness .Item__List{    
    display: grid;
    grid-row-gap: 20px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
.SectionBusiness .Item__List li {
    line-height: 1.84;
}
.SectionBusiness .Item__ListLink {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.SectionBusiness .Item__ListIcon {
    width: 30px;
    height: 30px;
    position: relative;
}
.Item__ListIcon--hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transition: .3s;
}
.SectionBusiness .Item__ListLink:hover .Item__ListIcon--hover {
    opacity: 1;
}
.SectionBusiness .Item__ListLinkText {
    color: #333;
    position: relative;
    overflow: hidden;
}
.SectionBusiness .Item__ListLinkText:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 23px;
    height: 1px;
    background-color: #333;
    transition: .3s;
}
.SectionBusiness .Item__ListLink:hover .Item__ListLinkText:before{
    width: 100%;
}
.SectionBusiness__bottom:first-child .Item {
    grid-row: span 5;
}
.SectionBusiness__bottom:nth-of-type(2) .Item {
    grid-row: span 2;
}
.SectionBusiness__bottom:nth-of-type(2) .Item__ListLinkText {
    margin-left: 15px;
}
.SectionBusiness__bottom:nth-of-type(2) .Item__ListLinkText:before {
    left: 0;
}
.SectionBusiness__bottom:nth-of-type(3) .Item {
    grid-row: span 3;
}
.SectionBusiness__bottom:nth-of-type(3) .Item__List {
    grid-row-gap: 0;
    grid-row: span 2;
    list-style-type: disc;
    padding-left: 15px;
}
.SectionBusiness__bottom:nth-of-type(3) .Item__List .Rte::marker {
    font-size: 8px;
}



@media (max-width:767px) {
    .SectionBusiness__Description {
        margin-top: 27px;
    }
    .SectionBusiness__bottom {
        margin-top: 35px;
    }
    .BusinessHeader__Heading {
        font-size: 22px;
    }
    .SectionBusiness .Item__Wrap .Rte {
        font-size: 12px;
        line-height: (22/12);
    }
    .SectionBusiness .Item__ListLink {
        margin-left: -5px;
    }
    .SectionBusiness .Item__ListIcon {
        width: 23px;
        height: 23px;
    }
    .SectionBusiness .Item__ListLinkText:before {
        width: 100%;
    }
    .SectionBusiness .Item__ListLinkText {
        font-size: 10px;
    }
    .SectionBusiness__bottom:nth-of-type(2) .Item__ListLinkText {
        margin-left: 10px;
    }
}


/* ======== Project ======== */
.SectionProject{}
.SectionProject::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FAFAFA;
}
.ProjectHeader{
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
}
.ProjectHeader__Heading{
    font-size: 26px;
    font-weight: 600;
    font-family: 'Cormorant';
}
.ProjectHeader__SubHeading{
    font-size: 14px;
    margin-top: 15px;
    display: block;
}

@media (max-width:767px) {
    .ProjectHeader{        
        margin-bottom: 35px;
    }
    .ProjectHeader__Heading{
        font-size: 22px;        
    }
    .ProjectHeader__SubHeading{
        font-size: 12px;
        margin-top: 10px;      
    }
}

/* Gourmet */
.SectionProject__Gourmet{
    margin-bottom: 100px;
    position: relative;
}

.Gourmet{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 4%;
}
.Gourmet .Item{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 8;
}
.Gourmet .Item__Title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.Gourmet .Item__TitleSub {
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}
.Gourmet .Item__Place {
    margin-bottom: 5px;
}
.GourmetDescription__Title {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: calc(24/15);
    margin-bottom: 10px;
}
.GourmetDescription__Text {
    line-height: 1.84;
}
.Gourmet .Item__Image{
    margin-bottom: 25px;
}
.GourmetDescription {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
}
.GourmetDescription--en {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}
.GourmetDescription--ja {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    margin-top: 25px;
}

@media (max-width:767px) {
    .SectionProject__Gourmet{
        margin-bottom: 60px;        
    }    
    .Gourmet {
        grid-template-columns: repeat(1, 1fr);
    }
    .Gourmet .Item + .Item {
        margin-top: 40px;
    }
    .Gourmet .Item__Title {
        text-align: center;
    }
    .Gourmet .Item__TitleSub {
        text-align: center;
    }
    .Gourmet .Item__Place {
        text-align: center;
    }   
}

/* FUTURE ACTIVITY */
.SectionProject__Activity {
    margin-bottom: 100px;
}
.Activity{
    display: grid;
    grid-row-gap: 45px;
}
.Activity .Item__Wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.Activity .Item__Wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px 0;
    background-color: #fff;
    border-radius: 20px;
}
.Activity .Item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    padding: 0 9%;
}
.Activity .Item__Wrap:nth-of-type(3) .Item {
    grid-row: span 3;
}
.Activity .Item--en {
    border-right: 1px solid #F0F0F0;
}
.Activity .Item--ja {
    
}
.Activity .Item__Title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: calc(26/18);
}
.Activity .Item__TitleSub {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: calc(24/15);
    margin-top: 10px;
}
.Activity .Item__Description {
    letter-spacing: 0.1em;
    line-height: 1.84;
    margin-top: 30px;
}


@media (max-width:767px) {
    .SectionProject__Activity {
        margin-bottom: 60px;
    }
    .Activity .Item__Wrap {
        padding: 30px 0 40px;
        grid-template-columns: 1fr;
    }
    .Activity .Item {
        padding: 0 8%;
    }
    .Activity .Item--en {
        border-right: 0;
        border-bottom: 1px solid #F0F0F0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .Activity .Item__Title {
        font-size: 16px;
    }
    .Activity .Item__Description {
        margin-top: 12px;
    }
    .Activity .Item__TitleSub {
        font-size: 13px;
    }
}


/* Thoughts on KOMERU */
.Thoughts__Description--en {
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: calc(30/14);
    text-align: center;
}
.Thoughts__Description--en span {
    font-weight: 600;
}
.Thoughts__Description--ja {
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
}



/* ======== Profile ======== */
.SectionProfile{    
}
.SectionProfile::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #E5C3E3;
}
.SectionProfile__Wrap{
    position: relative;
}
.SectionProfile__Wrap .Section_CatchText--left{
    top: 200px;
}

.SectionProfile__Wrap .Item__Wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
}
.SectionProfile__Wrap .Item{
    background: #FFF;
    letter-spacing: 0.1em;
    padding: 0 40px 60px;
    border-radius: 20px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 6;
}
.SectionProfile__Wrap .Item__Box{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}
.SectionProfile__Wrap .Item__Box+.Item__Box{
    margin-top: 50px;
    padding-top: 50px;    
    background-image: linear-gradient(to right,#E5C3E3,#E5C3E3 2px,transparent 2px,transparent 6px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: top;
}
.SectionProfile__Wrap .Item__Image {
    width: calc(100% + 40px);
    margin-right: -40px;
}
.SectionProfile__Wrap .Item__Name {
    font-family: 'Cormorant';
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.1em;
    margin: 44px 0 30px;
}
.SectionProfile__Wrap .Item__Title{
    font-weight: 700;
    color: #E2B9DF;
    line-height: calc(26/16);
    margin-bottom: 15px;
}
.SectionProfile__Wrap .Item__Description{
    line-height: 1.84;
}


@media (max-width:767px) {
    .SectionProfile__Wrap .Item__Wrap {
        grid-template-columns: 1fr;
    }
    .SectionProfile__Wrap .Item {
        padding: 0 30px 50px;
    }
    .SectionProfile__Wrap .Item + .Item {
        margin-top: 25px;
    }
    .SectionProfile__Wrap .Item__Image {
        width: calc(100% + 30px);
        margin-right: -30px;
    }
    .SectionProfile__Wrap .Item__Name {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    .SectionProfile__Wrap .Item__Title {
        font-size: 15px;
        line-height: calc(22/15);
    }
    .SectionProfile__Wrap .Item__Box+.Item__Box {
        margin-top: 40px;
        padding-top: 40px;
    }
}


/* ======== Company ======== */
.SectionCompany::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FAFAFA;
}
.CompanyTable {
    width: 100%;
    background-color: #fff;
    border-radius: 24px;
}
.CompanyTable tr {
    padding: 0 70px;
    border-top: 4px solid #FAFAFA;
}
.CompanyTable tr:first-of-type {
    border-top: none;
    padding-top: 20px;
}
.CompanyTable tr:last-of-type {
    padding-bottom: 20px;
}
.CompanyTable td {
   padding: 28px 0; 
}
.CompanyTable .Item__Wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 120px;
}
.CompanyTable .Item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}
.CompanyTable .Item2 {
    grid-template-rows: none;
    align-items: center;
    grid-row: auto;
}
.CompanyTable .Item span {
    display: none;
    margin: 0 5px;
}
.Item__InstagramWrap {
    display: flex;
    grid-column-gap: 100px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
}
.Item__Instagram {
    display: inline-flex;
    grid-column-gap: 18px;
    text-decoration: none;
}
.Item__InstagramIcon {
    width: 54px;
    height: 54px;
    position: relative;
}
.Item__InstagramIcon--hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0;
    transition: .3s;
}
.Item__Instagram:hover .Item__InstagramIcon--hover {
    opacity: 1;
}
.Item__InstagramText {
    line-height: calc(17/13);
    color: #333;
}



@media (max-width:767px) {
    .CompanyTable .Item__Wrap {
        grid-template-columns: 1fr;
        min-height: inherit;
        padding: 30px;
    }
    .CompanyTable tr:first-of-type {
        padding-top: 30px;
    }
    .CompanyTable .Item {
        padding: 0;
    }
    .CompanyTable .Item__Left {
        display: flex;
        grid-row: span 1;
    }
    .CompanyTable .Item span {
        display: inline-block;
    }
    .Item__InstagramWrap {
        margin-top: 10px;
    }
}







/* ======== Principal ======== */
/* .SectionPrincipal{
    text-align: center;    
}
.SectionPrincipal::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FAFAFA;
}
.SectionPrincipal__Wrap{
    position: relative;
}

.SectionPrincipal .Section_CatchText{
    top: -150px;
}

.SectionPrincipal__Top{
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
}
.SectionPrincipal__Bottom{
    margin-top: 70px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 14px;
}


@media (max-width:767px) {
    .SectionPrincipal{
        padding: 70px 18px 80px 58px;
    }
    .SectionPrincipal::before {
        left: 38px;
    }    
    .SectionPrincipal__Bottom{
        margin-top: 40px;
        line-height: 2.1;        
    }

} */
/* ======== PageTop ======== */

#link-page-top{
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    width: 58px;
    height: 58px;
    opacity: 0;
    transition: ease .3s opacity;
}
#link-page-top.view{
    opacity: 1;
}

@media (max-width:767px) {
    #link-page-top{
        width: 42px;
        height: 42px;
        right: 0;
        bottom: 0;
    }
}