@charset "UTF-8";
/*-- foundation --*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
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;
}

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

/*-- global直下 --*/
/*-- settingフォルダ --*/
/*-- mixinフォルダ --*/
/*-- global直下 --*/
/*****Case.01 min-width
.elements {
  @include mq {
    color:red;
  }
  @include mq(L) {
    color:red;
  }
}
--------outpu↓--------

@media screen and (min-width: 768px) {
  .elements {
    color:red;
  }
}
@media screen and (min-width: 1024px) {
 .elements {
    color:red;
 }
}

#############################################

/*****Case.02 max-width
.elements {
  @include mq(S, max) {
    color:red;
  }
  @include mq(L, max, true) {
    color:red;
  }
}
--------outpu↓--------

@media screen and (max-width: 600px) {
  .elements {
    color:red;
  }
}
@media screen and (max-width: 1024px) {
 .elements {
   color:red;
 }
}

#############################################

/*****Case.03 min and max
.elements {
  @include mq {
    color:red;

    @include g.mq(L, max, true) {
      color:red;
    }

  }
}
--------outpu↓--------

@media screen and (min-width: 768px) {
  .elements {
    color:red;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .elements {
    color:red;
  }
}
*/
/*-- global直下 --*/
/*-- mixinフォルダ --*/
/*-- global直下 --*/
/*-- mixinフォルダ --*/
/*-- global直下 --*/
* {
  box-sizing: border-box;
}

body {
  counter-reset: count-step;
  word-wrap: break-word;
  color: #333333;
}

::selection {
  /* Safari */
}

::-moz-selection {
  /* Firefox */
}

img,
video {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
img a,
video a {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}

/*-- layout --*/
.l-container {
  margin: 0;
  min-height: 100vh;
}

.l-lp_section {
  height: auto;
  position: relative;
}
.l-lp_section.-fit {
  min-height: 100vh;
}
.l-lp_section_wrap_center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-contents_Block {
  max-width: 1280px;
  margin: auto 60px 60px 60px;
}
@media screen and (min-width: 1280px) {
  .l-contents_Block {
    margin: auto auto 60px auto;
  }
}
@media screen and (max-width: 834px) {
  .l-contents_Block {
    margin: auto 18px 24px 18px;
  }
}
@media screen and (max-width: 600px) {
  .l-contents_Block {
    margin: auto 18px 24px 18px;
  }
}
.l-contents_Block-S {
  max-width: 480px;
  margin: auto;
}
.l-contents_Block-M {
  max-width: 600px;
  margin: auto;
}
.l-contents_Block-L {
  max-width: 800px;
  margin: auto;
}
.l-contents_Block-XL {
  max-width: 1000px;
  margin: auto;
}
.l-contents_Block-Full {
  width: 100%;
  margin: auto auto 60px auto;
}
.l-contents_Block-Half {
  width: 50%;
}
.l-contents_Block-Third {
  width: 100%/3;
}
.l-contents_Block-Quarter {
  width: 100%/4;
}

.l-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.l-bg_video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

.l-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 36px 24px;
}
.l-feed_Archive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px 30px;
}

/*-- vendors --*/
.drawer-container {
  max-width: 100%;
}

.drawer-navbar {
  width: auto;
  border-bottom: none;
  height: auto;
}

.drawer-menu-item {
  font-size: 1em;
}

.drawer-navbar .drawer-navbar-header {
  border: none;
  background-color: transparent;
}

.drawer-hamburger-icon {
  height: 2px;
  margin-top: 20px;
}
.drawer-hamburger-icon:before {
  top: -7px;
}
.drawer-hamburger-icon:after {
  top: 7px;
}
@media screen and (max-width: 600px) {
  .drawer-hamburger-icon {
    margin-top: 10px;
  }
}

@media (min-width: 834px) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }
  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
    transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}
@media (min-width: 834px) {
  .drawer-navbar {
    height: 3.75rem;
    border: none;
    background-color: transparent;
  }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
    border: none;
    background-color: transparent;
  }
  .drawer-navbar .drawer-menu--right {
    float: right;
  }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: 0.75rem;
  }
}
@media (min-width: 834px) {
  .drawer-container {
    max-width: 60rem;
  }
}
/*-- component --*/
.c-Footer {
  width: 100%;
  background-color: #fabf00;
}
@media screen and (max-width: 834px) {
  .c-Footer_Brand {
    margin-bottom: 12px;
  }
}
.c-Footer_Brand-Img {
  max-width: 150px;
}
.c-Footer_Nav {
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-Footer_Nav_Menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
}
.c-Footer_Nav_Menu_Item {
  margin-right: 2em;
  display: inline;
}
@media screen and (max-width: 834px) {
  .c-Footer_Nav_Menu_Item:first-child {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .c-Footer_Nav_Menu_Item:last-child {
    margin-right: 0;
  }
}
.c-Footer_Nav_Menu_Item-Link {
  color: #333333;
}
@media screen and (max-width: 834px) {
  .c-Footer_Sns {
    width: 100%;
    margin-bottom: 12px;
  }
}
.c-Footer_Sns_List {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .c-Footer_Sns_List {
    width: 100%;
    justify-content: center;
  }
}
.c-Footer_Sns_Item {
  margin-right: 12px;
}
.c-Footer_Sns_Icon-Img {
  width: 30px;
}
.c-Footer_Copyright {
  text-align: center;
}
@media screen and (max-width: 834px) {
  .c-Footer_Copyright {
    text-align: center;
  }
}

.c-Drawer_Container {
  width: 100%;
  height: 100%;
  padding: 66px 60px 60px 60px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 600px) {
  .c-Drawer_Container {
    padding: 90px 9px 60px 9px;
  }
}
.c-Drawer_Nav {
  position: fixed;
  z-index: 12;
  top: 0;
  right: -35%;
  width: 35%;
  height: 100vh;
  background: rgb(255, 255, 255);
  transition: all 0.6s;
}
@media screen and (max-width: 834px) {
  .c-Drawer_Nav {
    right: -50%;
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .c-Drawer_Nav {
    right: -80%;
    width: 80%;
  }
}
.c-Drawer_Nav.PanelActive {
  right: 0;
}
.c-Drawer_Menu {
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.c-Drawer_Menu._Small {
  margin-top: 30px;
  margin-bottom: 30px;
}
.c-Drawer_Menu_Item {
  position: relative;
  margin-right: 60px;
  color: #fff;
}
.c-Drawer_Menu_Item:hover {
  cursor: pointer;
  text-decoration: none;
}
.c-Drawer_Menu_Item-Link {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333333;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .c-Drawer_Menu_Item-Link {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8em;
  }
}
.c-Drawer_Menu_Item-Link:hover {
  text-decoration: none;
  opacity: 1;
}
.c-Drawer_Menu_Item-Link._Small {
  font-size: 0.9em;
}
.c-Drawer_Sab_Menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.c-Drawer_Sab_Menu_Item {
  color: #fff;
}
.c-Drawer_Sab_Menu_Item-Link {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8em;
  font-size: 0.9em;
}
@media screen and (max-width: 600px) {
  .c-Drawer_Sab_Menu_Item-Link {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8em;
  }
}
.c-Drawer_Sab_Menu_Item-Link:hover {
  text-decoration: none;
  opacity: 1;
}
.c-Drawer_Sns {
  margin-bottom: 60px;
}
.c-Drawer_Sns_Menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.c-Drawer_Sns_Menu_Item {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.c-Drawer_Footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.c-Drawer_Footer_Block {
  width: 50%;
  padding: 1em 0;
  text-align: center;
  background-color: rgba(181, 181, 181, 0.4);
}
.c-Drawer_Footer_Item {
  color: #fff;
}
.c-Drawer_Btn {
  position: absolute;
  z-index: 13;
  top: 50%;
  right: 60px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .c-Drawer_Btn {
    right: 18px;
  }
}
@media screen and (max-width: 600px) {
  .c-Drawer_Btn {
    right: 18px;
  }
}
.c-Drawer_Btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  width: 100%;
}
.c-Drawer_Btn span:nth-of-type(1) {
  top: calc(50% - 2px * 4);
}
.c-Drawer_Btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-Drawer_Btn span:nth-of-type(3) {
  top: calc(50% + 2px * 3);
}
.c-Drawer_Btn.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
}
.c-Drawer_Btn.active span:nth-of-type(2) {
  opacity: 0;
}
.c-Drawer_Btn.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}
.c-Drawer_Overlay {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 8;
  position: fixed;
  display: none;
  opacity: 0.8;
  left: 0;
  top: 0;
}
.c-Drawer_Overlay.PanelActive {
  display: block;
  opacity: 0.8;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav li {
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

body.PanelActive {
  overflow: hidden;
}

#Js-Clipboard_Contact {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #bbbbbb;
  padding: 0.2em 0.7em;
  line-height: 1em;
  border-radius: 2px;
  transform: translateY(-50%);
}
#Js-Clipboard_Contact.copied {
  display: block;
  color: #000;
}

.c-BacktoTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  background-color: #333333;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  z-index: 7;
}
.c-BacktoTop:hover {
  text-decoration: none;
  opacity: 0.7;
}

.js-scrollTrigger.-invisible {
  opacity: 0;
}
.js-scrollTrigger.-visible {
  opacity: 1;
}
.js-scrollTrigger._top.-visible {
  transition: opacity 2.5s ease-out;
  animation-name: top_fadein;
  animation-duration: 1.5s;
}
@keyframes top_fadein {
  from {
    opacity: 0;
    transform: translateY(-100px);
    @media screen and (max-width: 600px) {
      .js-scrollTrigger._top.-visible {
        transform: translateY(-60px);
      }
    }
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-scrollTrigger._bottom.-visible {
  transition: opacity 2.5s ease-out;
  animation-name: bt_fadein;
  animation-duration: 1.5s;
}
@keyframes bt_fadein {
  from {
    opacity: 0;
    transform: translateY(100px);
    @media screen and (max-width: 600px) {
      .js-scrollTrigger._bottom {
        transform: translateY(60px);
      }
    }
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-scrollTrigger._left.-visible {
  transition: opacity 2.5s ease-out;
  animation-name: lft_fadein;
  animation-duration: 1.5s;
}
@keyframes lft_fadein {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-scrollTrigger._right.-visible {
  transition: opacity 2.5s ease-out;
  animation-name: rgt_fadein;
  animation-duration: 1.5s;
}
@keyframes rgt_fadein {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-scrollTrigger._fade.-visible {
  transition: opacity 2.5s linear;
  animation-name: fadein;
  animation-duration: 1.5s;
}
.js-scrollTrigger._fade2.-visible {
  transition: opacity 2.5s linear;
  animation-name: fadein;
  animation-duration: 1.5s;
}
.js-scrollTrigger._fade3.-visible {
  transition: opacity 2.5s linear;
  animation-name: fadein;
  animation-duration: 2s;
}
.js-scrollTrigger._fade3.-visible {
  transition: opacity 2.5s linear;
  animation-name: fadein;
  animation-duration: 2.5s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*-- project --*/
.p-lp-cts_color {
  padding: 60px 0;
  margin-bottom: 60px;
}
.p-lp-hero-img {
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .p-lp-hero-img {
    max-width: 90%;
  }
}
.p-lp-lead {
  padding: 150px 0;
}
@media screen and (max-width: 600px) {
  .p-lp-lead {
    padding: 60px 0;
  }
}
.p-lp-lead_ttl {
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .p-lp-lead_ttl {
    margin-bottom: 48px;
  }
}
.p-lp-lead_desc {
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 84px;
}
@media screen and (max-width: 600px) {
  .p-lp-lead_desc {
    margin-bottom: 48px;
  }
}
.p-lp-lead_emblem-img {
  max-width: 100px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .p-lp-lead_emblem-img {
    max-width: 72px;
  }
}
.p-lp-lead_bubble-img {
  width: 100%;
  max-width: 1135px;
  margin: auto;
  display: block;
  margin-bottom: 150px;
}
@media screen and (max-width: 600px) {
  .p-lp-lead_bubble-img {
    max-width: 85%;
    margin-bottom: 48px;
  }
}
.p-lp-slogan {
  padding: 150px 0;
}
@media screen and (max-width: 600px) {
  .p-lp-slogan {
    padding: 60px 0;
  }
}
.p-lp-slogan_heading {
  font-size: 170px;
  font-size: 17rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  color: #005bac;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-lp-slogan_heading {
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-slogan_heading {
    white-space: nowrap;
    font-size: 60px;
    font-size: 6rem;
  }
}
.p-lp-purpose {
  padding: 150px 0;
}
@media screen and (max-width: 600px) {
  .p-lp-purpose {
    padding: 60px 0;
  }
}
@media screen and (max-width: 430px) {
  .p-lp-purpose {
    min-height: 100vh;
  }
}
@media screen and (max-width: 430px) {
  .p-lp-purpose_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
.p-lp-purpose_ttl {
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .p-lp-purpose_ttl {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-purpose_ttl {
    font-size: 3.5em !important;
    white-space: nowrap;
  }
}
.p-lp-purpose_desc {
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.p-lp-purpose_heading {
  font-size: 60px;
  font-size: 6rem;
  font-weight: bold;
  color: #005bac;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .p-lp-purpose_heading {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-purpose_heading {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.p-lp-5values_index {
  padding: 150px 0;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_index {
    padding: 60px 0;
  }
}
@media screen and (max-width: 430px) {
  .p-lp-5values_index {
    min-height: 100vh;
  }
}
.p-lp-5values_index_ttl {
  font-size: 140px;
  font-size: 14rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 120px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_index_ttl {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-5values_index_ttl {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_index_ttl {
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_index_ttl {
    font-size: 65px;
    font-size: 6.5rem;
    margin-bottom: 24px;
  }
}
.p-lp-5values_index-dl {
  color: #fff;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  gap: 30px 90px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_index-dl {
    margin: auto;
    width: fit-content;
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.p-lp-5values_index-dl > dt {
  font-size: 57px;
  font-size: 5.7rem;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_index-dl > dt {
    font-size: 57px;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_index-dl > dt {
    font-size: 30px;
    font-size: 3rem;
  }
}
.p-lp-5values_index-dl > dd {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_index-dl > dd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_index-dl > dd {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-left: 2em;
  }
}
.p-lp-5values_basket {
  padding: 150px 0;
  background-image: url(img/values_basket-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_basket {
    padding: 60px 0;
  }
}
.p-lp-5values_basket_ttl {
  font-size: 140px;
  font-size: 14rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 120px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_basket_ttl {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-5values_basket_ttl {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_basket_ttl {
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_basket_ttl {
    font-size: 55px;
    font-size: 5.5rem;
    line-height: 1em !important;
    margin-bottom: 18px;
  }
}
.p-lp-5values_basket-dl {
  color: #fff;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: flex-end;
  gap: 30px 90px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_basket-dl {
    margin: auto;
    width: fit-content;
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.p-lp-5values_basket-dl > dt {
  font-size: 57px;
  font-size: 5.7rem;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_basket-dl > dt {
    font-size: 57px;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_basket-dl > dt {
    font-size: 30px;
    font-size: 3rem;
  }
}
.p-lp-5values_basket-dl > dd {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_basket-dl > dd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_basket-dl > dd {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.5em;
    margin-bottom: 12px;
    padding-left: 2em;
  }
}
.p-lp-5values_cheer {
  padding: 150px 0;
  background-image: url(img/values_cheer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cheer {
    padding: 60px 0;
  }
}
.p-lp-5values_cheer_ttl {
  font-size: 140px;
  font-size: 14rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 120px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cheer_ttl {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .p-lp-5values_cheer_ttl {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_cheer_ttl {
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cheer_ttl {
    font-size: 55px;
    font-size: 5.5rem;
    line-height: 1em !important;
    margin-bottom: 18px;
  }
}
.p-lp-5values_cheer-dl {
  color: #fff;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: flex-end;
  gap: 30px 90px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cheer-dl {
    margin: auto;
    width: fit-content;
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.p-lp-5values_cheer-dl > dt {
  font-size: 57px;
  font-size: 5.7rem;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_cheer-dl > dt {
    font-size: 57px;
    font-size: 5.7rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cheer-dl > dt {
    font-size: 30px;
    font-size: 3rem;
  }
}
.p-lp-5values_cheer-dl > dd {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_cheer-dl > dd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cheer-dl > dd {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.5em;
    margin-bottom: 12px;
    padding-left: 2em;
  }
}
.p-lp-5values_cts {
  padding: 150px 0;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cts {
    padding: 60px 0;
  }
}
@media screen and (max-width: 430px) {
  .p-lp-5values_cts {
    min-height: 100vh;
  }
}
.p-lp-5values_cts_ttl {
  margin-bottom: 60px;
}
.p-lp-5values_cts_heading {
  font-size: 40px;
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cts_heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.p-lp-5values_cts_desc {
  font-size: 32px;
  font-size: 3.2rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .p-lp-5values_cts_desc {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lp-5values_cts_desc {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .p-lp-5values_cts_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
.p-lp-about_emblem {
  padding-top: 150px;
}
@media screen and (max-width: 600px) {
  .p-lp-about_emblem {
    padding-top: 60px;
  }
}
.p-lp-about_emblem_ttl {
  font-size: 80px;
  font-size: 8rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-lp-about_emblem_ttl {
    font-size: 40px;
    font-size: 4rem;
  }
}
.p-lp-about_emblem_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "  Emblem1  Emblem2  " "  Emblem1 Emblem3  ";
}
@media screen and (max-width: 600px) {
  .p-lp-about_emblem_wrap {
    grid-template-areas: "  Emblem1  Emblem1  " "  Emblem2 Emblem3  ";
  }
}
.p-lp-about_emblem_desc {
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.p-lp-about_emblem-img1 {
  grid-area: Emblem1;
}
.p-lp-about_emblem-img2 {
  grid-area: Emblem2;
}
.p-lp-about_emblem-img3 {
  grid-area: Emblem3;
}
.p-lp-about_color {
  padding-top: 150px;
}
@media screen and (max-width: 600px) {
  .p-lp-about_color {
    padding-top: 60px;
  }
}
.p-lp-about_color_ttl {
  font-size: 80px;
  font-size: 8rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-lp-about_color_ttl {
    font-size: 40px;
    font-size: 4rem;
  }
}
.p-lp-about_color_desc {
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.p-lp-about_color_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-lp-about_color_unit {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 30px;
  min-height: 480px;
}
@media screen and (max-width: 600px) {
  .p-lp-about_color_unit {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 18px;
  }
}
.p-lp-about_color_unit > dt {
  font-size: 50px;
  font-size: 5rem;
}
@media screen and (max-width: 600px) {
  .p-lp-about_color_unit > dt {
    text-align: center;
    font-size: 30px;
    font-size: 3rem;
  }
}
.p-lp-about_color_unit > dd {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5em;
}
@media screen and (max-width: 600px) {
  .p-lp-about_color_unit > dd {
    margin: auto;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-lp-about_color_unit.-blue {
  color: #fabf00;
  background-color: #005bac;
}
.p-lp-about_color_unit.-yellow {
  color: #005bac;
  background-color: #fabf00;
}
.p-lp-shiga {
  padding-top: 60px;
  padding-bottom: 150px;
}
@media screen and (max-width: 600px) {
  .p-lp-shiga {
    padding-top: 12px;
    padding-bottom: 60px;
  }
}

/*-- scope --*/
/*-- scope --*/
.s-cts_ttl {
  font-size: 140px;
  font-size: 14rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .s-cts_ttl {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .s-cts_ttl {
    font-size: 90px;
    font-size: 9rem;
  }
}
@media screen and (max-width: 600px) {
  .s-cts_ttl {
    font-size: 70px;
    font-size: 7rem;
  }
}
.s-cts_ttl.-blue {
  color: #005bac;
}
.s-cts_ttl.-white {
  color: #fff;
}
.s-cts_values {
  color: #fff;
  text-transform: uppercase;
}
.s-cts_values::first-letter {
  color: #fabf00;
}
.s-cts_values > em {
  font-size: 2em;
}
.s-cts_values_ttl {
  font-size: 121px;
  font-size: 12.1rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
}
.s-cts_values_ttl::first-letter {
  color: #fabf00;
  font-size: 2em;
}
@media screen and (min-width: 1024px) {
  .s-cts_values_ttl {
    white-space: nowrap;
  }
}
@media screen and (max-width: 1024px) {
  .s-cts_values_ttl {
    font-size: 62px;
    font-size: 6.2rem;
  }
}
@media screen and (max-width: 600px) {
  .s-cts_values_ttl {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
.s-cts_values2 {
  color: #fff;
  text-transform: uppercase;
}
.s-cts_values2 > em {
  color: #fabf00;
}

.s-section_ttl {
  font-size: 80px;
  font-size: 8rem;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .s-section_ttl {
    font-size: 60px;
    font-size: 6rem;
  }
}
@media screen and (max-width: 600px) {
  .s-section_ttl {
    font-size: 40px;
    font-size: 4rem;
    margin-bottom: 30px;
  }
}

/*-- utility --*/
@font-face {
  font-family: "LAKESFONT";
  src: url("../font/LAKESFONT2024.woff") format("woff"), url("../font/LAKESFONT2024.woff2") format("woff2"), url("../font/LAKESFONT2024.eot") format("eot");
}
html {
  font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  font-smoothing: antialiased;
  font-kerning: normal;
  font-feature-settings: "palt" 1;
}

body {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 2em;
  word-break: normal;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.u-lakes {
  font-family: "LAKESFONT";
  line-height: 1.2em;
}

.u-grp {
  display: inline-block;
}

.u-TextOverflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.u-NativeContent h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.u-NativeContent h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.u-NativeContent h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.u-NativeContent h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.u-NativeContent h5 {
  display: block;
  font-size: 0.83em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.u-NativeContent h6 {
  display: block;
  font-size: 0.67em;
  margin-block-start: 2.33em;
  margin-block-end: 2.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}
.u-NativeContent strong {
  font-weight: bold;
}
.u-NativeContent em {
  font-style: italic;
}
.u-NativeContent blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.u-NativeContent pre {
  display: block;
  font-family: monospace;
  white-space: pre;
  margin: 1em 0px;
}
.u-NativeContent .aligncenter {
  margin: auto;
  display: block;
  text-align: center;
}
.u-NativeContent .alignright {
  float: right;
}
.u-NativeContent .alignleft {
  float: left;
}
.u-NativeContent img,
.u-NativeContent img[class*=wp-image-],
.u-NativeContent img[class*=attachment-] {
  width: auto;
  max-width: 100%;
  height: auto;
}
.u-NativeContent iframe {
  max-width: 100%;
}
.u-NativeContent .wp-caption-text {
  font-size: 0.8em;
}
.u-NativeContent.wp_clearfix {
  overflow: hidden;
  zoom: 1;
}
.u-NativeContent.wp_clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.u-NativeContent > div {
  max-width: 100%;
}
.u-NativeContent .wp-block-image figcaption {
  display: block;
}

/*
 * object/utility/_display.scss
 */
.u-pc-only {
  display: block;
}
@media screen and (max-width: 834px) {
  .u-pc-only {
    display: none;
  }
}

.u-tb-only {
  display: none;
}
@media screen and (max-width: 834px) {
  .u-tb-only {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .u-tb-only {
    display: none;
  }
}

.u-mb-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-mb-only {
    display: block;
  }
}

.u-Hidden {
  visibility: hidden;
}

.u-ObjectFitImg {
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.u-Common_Dl-Dt {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100px;
  float: left;
  clear: both;
}
.u-Common_Dl-Dd {
  padding: 0px 10px 0px 0;
  margin-left: 125px;
  margin-bottom: 2em;
}

/*
* object/utility/_position.scss
*/
.u-Relative {
  position: relative;
}

.u-Absolute {
  position: absolute;
}
.u-Absolute._abCenter {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.u-Absolute._abCenter-X {
  left: 50%;
  transform: translate(-50%, 0);
}
.u-Absolute._abCenter-Y {
  top: 50%;
  transform: translate(0, -50%);
}

.u-Fixed {
  position: fixed;
}

.u-Sticky {
  position: sticky;
  top: 99px;
}
@media screen and (max-width: 600px) {
  .u-Sticky {
    position: static;
  }
}

.u-Flex {
  display: flex;
}
.u-Flex._flWrap-True {
  flex-wrap: wrap;
}
.u-Flex._flWrap-No {
  flex-wrap: nowrap;
}
.u-Flex._Justify-Center {
  justify-content: center;
}
.u-Flex._Justify-Between {
  justify-content: space-between;
}
.u-Flex._Justify-Around {
  justify-content: space-around;
}
.u-Flex._Justify-Start {
  justify-content: flex-start;
}
.u-Flex._Justify-End {
  justify-content: flex-end;
}
.u-Flex._Justify-Evenly {
  justify-content: space-evenly;
}
.u-Flex._AlignItem-Start {
  align-items: flex-start;
}
.u-Flex._AlignItem-Center {
  align-items: center;
}
.u-Flex._AlignItem-Stretch {
  align-items: stretch;
}
.u-Flex._Direction-Column {
  flex-direction: column;
}
.u-Flex._Direction-Column-Reverse {
  flex-direction: column-reverse;
}
.u-Flex._Direction-Row {
  flex-direction: row;
}
.u-Flex._Direction-Row-Reverse {
  flex-direction: row-reverse;
}

.u-Flex-Vertical {
  flex-flow: column;
  align-items: flex-start;
}

.u-PageAnchor {
  padding-top: 100px;
  margin-top: -100px;
}

.u-Margin_T-0g {
  margin-top: 0px;
}
.u-Margin_B-0g {
  margin-bottom: 0px;
}
.u-Margin_R-0g {
  margin-right: 0px;
}
.u-Margin_L-0g {
  margin-left: 0px;
}
.u-Margin_T-1g {
  margin-top: 6px;
}
.u-Margin_B-1g {
  margin-bottom: 6px;
}
.u-Margin_R-1g {
  margin-right: 6px;
}
.u-Margin_L-1g {
  margin-left: 6px;
}
.u-Margin_T-2g {
  margin-top: 12px;
}
.u-Margin_B-2g {
  margin-bottom: 12px;
}
.u-Margin_R-2g {
  margin-right: 12px;
}
.u-Margin_L-2g {
  margin-left: 12px;
}
.u-Margin_T-3g {
  margin-top: 18px;
}
.u-Margin_B-3g {
  margin-bottom: 18px;
}
.u-Margin_R-3g {
  margin-right: 18px;
}
.u-Margin_L-3g {
  margin-left: 18px;
}
.u-Margin_T-4g {
  margin-top: 24px;
}
.u-Margin_B-4g {
  margin-bottom: 24px;
}
.u-Margin_R-4g {
  margin-right: 24px;
}
.u-Margin_L-4g {
  margin-left: 24px;
}
.u-Margin_T-5g {
  margin-top: 30px;
}
.u-Margin_B-5g {
  margin-bottom: 30px;
}
.u-Margin_R-5g {
  margin-right: 30px;
}
.u-Margin_L-5g {
  margin-left: 30px;
}
.u-Margin_T-6g {
  margin-top: 36px;
}
.u-Margin_B-6g {
  margin-bottom: 36px;
}
.u-Margin_R-6g {
  margin-right: 36px;
}
.u-Margin_L-6g {
  margin-left: 36px;
}
.u-Margin_T-7g {
  margin-top: 42px;
}
.u-Margin_B-7g {
  margin-bottom: 42px;
}
.u-Margin_R-7g {
  margin-right: 42px;
}
.u-Margin_L-7g {
  margin-left: 42px;
}
.u-Margin_T-8g {
  margin-top: 48px;
}
.u-Margin_B-8g {
  margin-bottom: 48px;
}
.u-Margin_R-8g {
  margin-right: 48px;
}
.u-Margin_L-8g {
  margin-left: 48px;
}
.u-Margin_T-9g {
  margin-top: 54px;
}
.u-Margin_B-9g {
  margin-bottom: 54px;
}
.u-Margin_R-9g {
  margin-right: 54px;
}
.u-Margin_L-9g {
  margin-left: 54px;
}
.u-Margin_T-10g {
  margin-top: 60px;
}
.u-Margin_B-10g {
  margin-bottom: 60px;
}
.u-Margin_R-10g {
  margin-right: 60px;
}
.u-Margin_L-10g {
  margin-left: 60px;
}
.u-Margin_T-11g {
  margin-top: 66px;
}
.u-Margin_B-11g {
  margin-bottom: 66px;
}
.u-Margin_R-11g {
  margin-right: 66px;
}
.u-Margin_L-11g {
  margin-left: 66px;
}
.u-Margin_T-12g {
  margin-top: 72px;
}
.u-Margin_B-12g {
  margin-bottom: 72px;
}
.u-Margin_R-12g {
  margin-right: 72px;
}
.u-Margin_L-12g {
  margin-left: 72px;
}
.u-Margin_T-13g {
  margin-top: 78px;
}
.u-Margin_B-13g {
  margin-bottom: 78px;
}
.u-Margin_R-13g {
  margin-right: 78px;
}
.u-Margin_L-13g {
  margin-left: 78px;
}
.u-Margin_T-14g {
  margin-top: 84px;
}
.u-Margin_B-14g {
  margin-bottom: 84px;
}
.u-Margin_R-14g {
  margin-right: 84px;
}
.u-Margin_L-14g {
  margin-left: 84px;
}
.u-Margin_T-15g {
  margin-top: 90px;
}
.u-Margin_B-15g {
  margin-bottom: 90px;
}
.u-Margin_R-15g {
  margin-right: 90px;
}
.u-Margin_L-15g {
  margin-left: 90px;
}
.u-Margin_T-16g {
  margin-top: 96px;
}
.u-Margin_B-16g {
  margin-bottom: 96px;
}
.u-Margin_R-16g {
  margin-right: 96px;
}
.u-Margin_L-16g {
  margin-left: 96px;
}
.u-Margin_T-17g {
  margin-top: 102px;
}
.u-Margin_B-17g {
  margin-bottom: 102px;
}
.u-Margin_R-17g {
  margin-right: 102px;
}
.u-Margin_L-17g {
  margin-left: 102px;
}
.u-Margin_T-18g {
  margin-top: 108px;
}
.u-Margin_B-18g {
  margin-bottom: 108px;
}
.u-Margin_R-18g {
  margin-right: 108px;
}
.u-Margin_L-18g {
  margin-left: 108px;
}
.u-Margin_T-19g {
  margin-top: 114px;
}
.u-Margin_B-19g {
  margin-bottom: 114px;
}
.u-Margin_R-19g {
  margin-right: 114px;
}
.u-Margin_L-19g {
  margin-left: 114px;
}
.u-Margin_T-20g {
  margin-top: 120px;
}
.u-Margin_B-20g {
  margin-bottom: 120px;
}
.u-Margin_R-20g {
  margin-right: 120px;
}
.u-Margin_L-20g {
  margin-left: 120px;
}
.u-Margin-Btm_Common {
  margin-bottom: 60px;
}
.u-Margin-Auto {
  margin: auto;
}

.u-Padding_T-0g {
  padding-top: 0px;
}
.u-Padding_B-0g {
  padding-bottom: 0px;
}
.u-Padding_Rt-0g {
  padding-right: 0px;
}
.u-Padding_Lt-0g {
  padding-left: 0px;
}
.u-Padding_T-1g {
  padding-top: 6px;
}
.u-Padding_B-1g {
  padding-bottom: 6px;
}
.u-Padding_Rt-1g {
  padding-right: 6px;
}
.u-Padding_Lt-1g {
  padding-left: 6px;
}
.u-Padding_T-2g {
  padding-top: 12px;
}
.u-Padding_B-2g {
  padding-bottom: 12px;
}
.u-Padding_Rt-2g {
  padding-right: 12px;
}
.u-Padding_Lt-2g {
  padding-left: 12px;
}
.u-Padding_T-3g {
  padding-top: 18px;
}
.u-Padding_B-3g {
  padding-bottom: 18px;
}
.u-Padding_Rt-3g {
  padding-right: 18px;
}
.u-Padding_Lt-3g {
  padding-left: 18px;
}
.u-Padding_T-4g {
  padding-top: 24px;
}
.u-Padding_B-4g {
  padding-bottom: 24px;
}
.u-Padding_Rt-4g {
  padding-right: 24px;
}
.u-Padding_Lt-4g {
  padding-left: 24px;
}
.u-Padding_T-5g {
  padding-top: 30px;
}
.u-Padding_B-5g {
  padding-bottom: 30px;
}
.u-Padding_Rt-5g {
  padding-right: 30px;
}
.u-Padding_Lt-5g {
  padding-left: 30px;
}
.u-Padding_T-6g {
  padding-top: 36px;
}
.u-Padding_B-6g {
  padding-bottom: 36px;
}
.u-Padding_Rt-6g {
  padding-right: 36px;
}
.u-Padding_Lt-6g {
  padding-left: 36px;
}
.u-Padding_T-7g {
  padding-top: 42px;
}
.u-Padding_B-7g {
  padding-bottom: 42px;
}
.u-Padding_Rt-7g {
  padding-right: 42px;
}
.u-Padding_Lt-7g {
  padding-left: 42px;
}
.u-Padding_T-8g {
  padding-top: 48px;
}
.u-Padding_B-8g {
  padding-bottom: 48px;
}
.u-Padding_Rt-8g {
  padding-right: 48px;
}
.u-Padding_Lt-8g {
  padding-left: 48px;
}
.u-Padding_T-9g {
  padding-top: 54px;
}
.u-Padding_B-9g {
  padding-bottom: 54px;
}
.u-Padding_Rt-9g {
  padding-right: 54px;
}
.u-Padding_Lt-9g {
  padding-left: 54px;
}
.u-Padding_T-10g {
  padding-top: 60px;
}
.u-Padding_B-10g {
  padding-bottom: 60px;
}
.u-Padding_Rt-10g {
  padding-right: 60px;
}
.u-Padding_Lt-10g {
  padding-left: 60px;
}
.u-Padding-Btm_Common {
  padding-bottom: 60px;
}

/*
 * object/utility/_dimension.scss
 */
.u-Fill {
  width: 100%;
}

.u-Half {
  width: 50%;
}

.u-Quarter {
  width: 25%;
}

.u-Third {
  width: 33.33%;
}

.u-TwoThirds {
  width: 66.66%;
}

.u-Form_Size-S {
  width: 25%;
}
.u-Form_Size-M {
  width: 50%;
}
.u-Form_Size-L {
  width: 80%;
}
.u-Form_Size-XL {
  width: 100%;
}

.u-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  z-index: 8;
}

.u-bg_color-blue1 {
  background-color: rgba(0, 91, 172, 0.8);
}
.u-bg_color-blue2 {
  background-color: rgba(25, 107, 180, 0.8);
}
.u-bg_color-blue3 {
  background-color: rgba(0, 91, 172, 0.65);
}
.u-bg_color-white {
  background-color: rgba(255, 255, 255, 0.9);
}
.u-bg_color-white2 {
  background-color: rgba(255, 255, 255, 0.95);
}
.u-bg_color-white3 {
  background-color: rgb(255, 255, 255);
}

/*
 * object/utility/_clearfix.scss
 */
.u-cf:before,
.u-cf:after {
  content: "";
  display: table;
}

.u-cf:after {
  clear: both;
}

.u-cf {
  *zoom: 1;
}

.u-Clear {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}/*# sourceMappingURL=lp_style.css.map */