<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
  width: calc(100% - 150px);
  height: 100px;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 30px 75px 10px 75px;
  z-index: 99;
}
header #img_header_logo {
  width: 150px;
  max-width: 150px;
  padding: 0px 10px;
  margin-left: 40px;
  transition: width 0.1s;
}
header #div_logo_side {
  display: flex;
  align-items: flex-end;
  color: #d80c18;
  position: absolute;
  top: 30px;
  left: 295px;
  height: calc(100% - 54px);
}
header #div_header_menushs {
  width: 10px;
  height: 30px;
  position: absolute;
  top: 50px;
  right: 110px;
  cursor: pointer;
  padding: 10px 15px;
}
header #div_header_menushs &gt; div {
  width: 100%;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #999;
  position: absolute;
  left: 0px;
  transition: border-color 0.2s;
}
header #div_header_menushs &gt; div:nth-child(1) {
  width: 100%;
  top: 0px;
  transform-origin: 20px;
  transition: width 0.4s, transform 0.4s;
}
header #div_header_menushs &gt; div:nth-child(2) {
  top: 12px;
  transition: left 0.4s, opacity 0.1s;
}
header #div_header_menushs &gt; div:nth-child(3) {
  top: 24px;
  width: 100%;
  transform-origin: 20px;
  transition: top 0.4s, width 0.4s, transform 0.4s;
}
header #div_header_menushs p {
  font-size: 1.2rem;
  color: #999;
  width: 100%;
  margin: 0px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  text-align: center;
  transition: color 0.2s;
}
header #div_header_menushs:hover &gt; div {
  border-color: #555;
}
header #div_header_menushs:hover p {
  color: #555;
}
header #div_header_menushs.opened &gt; div:nth-child(1) {
  transform: translate(-5px, 15px) rotate(410deg);
  width: calc(100% + 20px);
}
header #div_header_menushs.opened &gt; div:nth-child(2) {
  left: 1000%;
  opacity: 0;
}
header #div_header_menushs.opened &gt; div:nth-child(3) {
  transform: translate(-5px, 15px) rotate(-410deg);
  width: calc(100% + 20px);
  top: 17px;
}
header #div_header_menushs.opened p {
  display: none;
}
header:not(.top) #img_header_logo {
  width: 120px;
  padding: 10px;
}
header:not(.top) #img_header_jusho2025 {
  display: none;
}
header:not(.top) #img_header_kenko2025 {
  display: none;
}
header:not(.top) #div_logo_side {
  display: none;
}
@media screen and (max-width: 799px) {
  header {
    padding: 10px 0px 10px 10px;
    width: calc(100% - 10px);
    height: unset;
    background-color: white;
  }
  header #img_header_logo {
    width: 30vw;
    margin-left: 0px;
  }
  header #img_header_jusho2025 {
    display: none;
  }
  header #img_header_kenko2025 {
    display: none;
  }
  header #div_header_menushs {
    top: 30px;
    right: 30px;
  }
  header #div_logo_side {
    display: block;
    position: static;
    width: 100%;
    padding: 0px;
    padding-left: 10px;
  }
  header:not(.top) {
    padding: 0px 10px;
  }
}

.div_side_bar {
  position: absolute;
  width: 75px;
  height: 100%;
  top: 0px;
  color: #d80c18;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  writing-mode: tb-rl;
  font-weight: 600;
}
.div_side_bar#div_left_bar {
  left: 0px;
}
.div_side_bar#div_left_bar img {
  width: 17px;
  height: 17px;
  margin: 15px auto 0px auto;
}
.div_side_bar#div_right_bar {
  right: 0px;
}
@media screen and (max-width: 799px) {
  .div_side_bar {
    display: none;
  }
}

#div_paperpop_close {
  content: "?";
  position: fixed;
  top: 55px;
  right: 175px;
  width: 100px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: white;
  font-size: 1rem;
  border: 1px solid #999;
  z-index: 99;
  cursor: pointer;
}
#div_paperpop_close.closed {
  top: unset;
  right: unset;
  bottom: 20px;
  left: calc(50% - 50px);
}
@media screen and (max-width: 1499px) {
  #div_paperpop_close {
    display: none;
  }
}

#div_full_menu {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 98;
  transition: opacity 0.4s ease-in-out 0.1s;
  display: flex;
  opacity: 0;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
#div_full_menu.opened {
  opacity: 1;
  pointer-events: unset;
}
#div_full_menu nav {
  width: calc(100% - 150px);
  max-width: 1800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
#div_full_menu nav #div_full_menu_left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto 0px;
  border-right: 1px solid #999;
  justify-items: start;
  align-items: center;
  gap: 10px;
  height: 100%;
}
#div_full_menu nav #div_full_menu_left &gt; div {
  padding-left: 30px;
}
#div_full_menu nav #div_full_menu_left &gt; div a div:nth-child(1) {
  color: #d80c18;
  font-size: 2rem;
  font-weight: 800;
}
#div_full_menu nav #div_full_menu_left &gt; div a div:nth-child(1)::after {
  content: "";
  display: block;
  width: 0%;
  border-bottom: 1px solid white;
  transition: width 0.2s;
}
#div_full_menu nav #div_full_menu_left &gt; div a div:nth-child(2) {
  color: #333;
}
#div_full_menu nav #div_full_menu_left &gt; div a:hover div:nth-child(1)::after {
  width: 100%;
  border-bottom: 1px solid #d80c18;
}
#div_full_menu nav #div_full_menu_right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto 0px;
  justify-items: start;
  align-items: center;
  gap: 10px;
}
#div_full_menu nav #div_full_menu_right &gt; div a {
  display: block;
}
#div_full_menu nav #div_full_menu_right &gt; div a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 799px) {
  #div_full_menu {
    display: block;
    padding-top: 140px;
    overflow-y: scroll;
  }
  #div_full_menu nav {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 30vh;
  }
  #div_full_menu nav #div_full_menu_left {
    height: unset;
    border-right: none;
  }
  #div_full_menu nav #div_full_menu_right {
    grid-template-columns: 1fr;
    padding: 0px 30px;
  }
}

@media screen and (max-width: 799px) {
  #main_front_page {
    padding: 120px 0px 0px 0px;
  }
}

#section_hero {
  display: grid;
  grid-template-columns: 100%;
  height: 600px;
  max-width: 1600px;
  margin: 0px auto 30px auto;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}
#section_hero #div_hero_pvbg {
  position: absolute;
  width: 100%;
}
#section_hero #div_hero_pvbg video {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1419px) {
  #section_hero {
    height: 54vw;
    margin-bottom: 10px;
    align-items: start;
    justify-content: center;
  }
}
#section_hero #div_hero_message {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 1419px) {
  #section_hero #div_hero_message {
    right: 0px;
    bottom: 0px;
  }
}
@media screen and (max-width: 799px) {
  #section_hero #div_hero_message {
    transform: scale(0.4);
    transform-origin: right bottom;
    width: -moz-max-content;
    width: max-content;
  }
}
#section_hero #div_hero_message h1 {
  font-size: 5rem;
  color: #232323;
  text-align: left;
  line-height: 7.5rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 1419px) {
  #section_hero #div_hero_message h1 {
    font-size: min(6vw, 3.6rem);
    line-height: initial;
    position: absolute;
    top: 6%;
    left: 6%;
  }
}
#section_hero #div_hero_message h1 span {
  background-color: white;
  display: inline-block;
  margin-bottom: 10px;
  padding: 0px 20px 0px 30px;
  color: #d80c18;
}
@media screen and (max-width: 1419px) {
  #section_hero #div_hero_message h1 span {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1419px) {
  #section_hero #div_hero_message .div_arrow_button {
    font-size: 1.8rem;
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 5px 100px 5px 20px;
    margin: 0px;
  }
}

#section_billboard {
  max-width: 1600px;
  margin: 0px auto 30px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1419px) {
  #section_billboard {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 10px;
  }
}
#section_billboard &gt; div img {
  display: block;
  width: 100%;
  transition: opacity 0.2s;
}
#section_billboard &gt; div img:hover {
  opacity: 0.95;
}

#section_heroslider {
  height: calc(100vh - 140px);
}
#section_heroslider .swiper {
  height: 100%;
}
#section_heroslider .swiper .swiper-wrapper {
  height: 100%;
}
#section_heroslider .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#section_heroslider .swiper .swiper-wrapper .swiper-slide:nth-of-type(1) {
  background-image: url("../image/01_front/slide_01.png");
}
@media screen and (max-width: 1365px) {
  #section_heroslider .swiper .swiper-wrapper .swiper-slide:nth-of-type(1) {
    background-image: url("../image/01_front/slide_01_sp.png");
  }
}
#section_heroslider .swiper .swiper-wrapper .swiper-slide:nth-of-type(2) {
  background-image: url("../image/01_front/slide_02.png");
}
@media screen and (max-width: 1365px) {
  #section_heroslider .swiper .swiper-wrapper .swiper-slide:nth-of-type(2) {
    background-image: url("../image/01_front/slide_02_sp.png");
  }
}
#section_heroslider .swiper .swiper-wrapper .swiper-slide:nth-of-type(3) {
  background-image: url("../image/01_front/slide_03.png");
}
@media screen and (max-width: 1365px) {
  #section_heroslider .swiper .swiper-wrapper .swiper-slide:nth-of-type(3) {
    background-image: url("../image/01_front/slide_03_sp.png");
  }
}
#section_heroslider .swiper .swiper-wrapper .swiper-slide a {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.section_hero {
  height: calc(100vh - 140px);
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.section_hero#section_hero_video {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.section_hero#section_hero_video video {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section_hero.vh100 {
  height: 100vh;
}
.section_hero .div_hero_desk {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2509803922);
  text-align: center;
}
.section_hero .div_hero_desk div {
  background-color: white;
  padding: 10px;
  font-size: calc(1rem + 3vw);
  font-weight: 600;
  line-height: normal;
  letter-spacing: normal;
}
.section_hero .div_hero_desk div span {
  color: #d80c18;
  font-size: calc(1.2rem + 3vw);
  min-width: 25vw;
  text-align: center;
  display: inline-block;
}
.section_hero .div_hero_desk.lla {
  background-color: rgba(255, 255, 255, 0.3490196078);
}
.section_hero .div_hero_desk.lla div {
  background-color: unset;
  font-size: calc(2rem + 5vw);
}
@media screen and (max-width: 799px) {
  .section_hero .div_hero_desk div {
    width: 80%;
  }
}
.section_hero #div_hero_paperpop_desk {
  width: calc(100% - 150px);
  height: 100%;
  position: fixed;
  top: 0px;
  left: 75px;
  overflow: hidden;
  z-index: 97;
  pointer-events: none;
}
.section_hero #div_hero_paperpop_desk.absolute {
  position: absolute;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer {
  display: flex;
  width: 100%;
  height: 100%;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy {
  position: relative;
  width: 20%;
  transform-origin: center bottom;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy &gt; div {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: calc(-100% + 18vh);
  transition: bottom 0.3s ease-in-out;
  pointer-events: all;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy &gt; div .div_paperpop_message {
  text-align: center;
  position: absolute;
  top: 0%;
  left: 50%;
  font-size: 0px;
  border-radius: 50%;
  white-space: nowrap;
  transition: font-size 0.1s 0.3s, top 0.1s 0.3s, opacity 0.1s 0.3s;
  transform: translateX(-50%);
  background-color: white;
  padding: 20px;
  border: 2px solid #333;
  opacity: 0;
  border-bottom-width: 6px;
  border-right-width: 4px;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy &gt; div .img_paperpop {
  width: 130%;
  max-width: 500px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy.selected &gt; div {
  bottom: calc(-100% + 16vw);
  animation-name: standup-vertical;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy.selected &gt; div .div_paperpop_message {
  font-size: calc(1rem + 0.5vw);
  top: -5%;
  opacity: 1;
}
.section_hero #div_hero_paperpop_desk #div_paperpop_flexer &gt; .div_paperpop_flexy:not(.selected) {
  animation-name: shake-vertical;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: none;
}
@media screen and (max-width: 1499px) {
  .section_hero #div_hero_paperpop_desk {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  .section_hero {
    background-attachment: inherit;
  }
}

@media screen and (max-width: 799px) {
  .landscape_only {
    display: none !important;
  }
}
@keyframes shake-vertical {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  20% {
    transform: translateY(1px) rotate(1deg);
  }
  40% {
    transform: translateY(-1px) rotate(-1deg);
  }
  60% {
    transform: translateY(1px) rotate(1deg);
  }
  80% {
    transform: translateY(-1px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes message-pop {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  1% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
  }
}
#section_message_portrait {
  display: none;
}
@media screen and (max-width: 799px) {
  #section_message_portrait {
    line-height: normal;
    font-weight: 900;
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #section_message_portrait #div_message_portrait_society {
    font-size: 2.4rem;
  }
  #section_message_portrait #div_message_portrait_society span {
    color: #d80c18;
  }
}

#section_news2 {
  max-width: 1500px;
  margin: 0px auto 30px auto;
  display: grid;
  grid-template-columns: 18% 1fr 1fr 1fr;
  padding: 50px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 1139px) {
  #section_news2 {
    padding: 0px;
    width: calc(100% - 40px);
    background-color: unset;
    display: flex;
    flex-direction: column;
  }
}
#section_news2 &gt; *:not(:last-child) {
  border-right: 1px solid #cccccc;
  padding-right: 30px;
}
@media screen and (max-width: 1139px) {
  #section_news2 &gt; *:not(:last-child) {
    border-right: unset;
    padding-right: unset;
    margin-bottom: 10px;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
  }
}
#section_news2 &gt; *:not(:first-child) {
  margin-left: 30px;
}
@media screen and (max-width: 1139px) {
  #section_news2 &gt; *:not(:first-child) {
    margin-left: unset;
  }
}
@media screen and (max-width: 1139px) {
  #section_news2 .div_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
}
#section_news2 .div_left span {
  color: #d80c18;
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3rem;
}
#section_news2 .div_left .div_readmore {
  margin-top: 30px;
  text-align: left;
}
#section_news2 .div_catagory_col {
  display: grid;
  grid-template-rows: 0.4fr 1fr 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 1139px) {
  #section_news2 .div_catagory_col {
    gap: 10px;
  }
}
#section_news2 .div_catagory_col .div_catagory_title {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1139px) {
  #section_news2 .div_catagory_col .div_news_row {
    display: grid;
    grid-template-columns: auto 100px;
    gap: 10px;
  }
}
#section_news2 .div_catagory_col .div_news_row .a_news_row_title {
  color: #232323;
  font-size: 1.6rem;
  max-height: 30px;
  overflow: hidden;
}
#section_news2 .div_catagory_col .div_news_row .div_news_row_date {
  font-size: 1.4rem;
}

#section_news {
  padding: 100px 0px;
  font-size: 1.6rem;
}
#section_news &gt; div {
  max-width: 1200px;
  margin: 0px auto;
}
#section_news #div_news_desk {
  display: flex;
  max-width: 1200px;
  margin: 0px auto;
  height: 300px;
}
#section_news #div_news_desk &gt; div {
  display: flex;
  flex-direction: column;
}
#section_news #div_news_desk &gt; div:first-child {
  width: calc(40% - 30px);
  padding-right: 30px;
  align-items: center;
  justify-content: center;
}
#section_news #div_news_desk &gt; div:last-child {
  width: calc(60% - 30px);
  padding-left: 30px;
  justify-content: space-evenly;
}
#section_news #div_news_desk &gt; div:last-child &gt; a {
  display: flex;
  color: inherit;
}
#section_news #div_news_desk &gt; div:last-child &gt; a &gt; div:first-child {
  margin-right: 10px;
}
@media screen and (max-width: 799px) {
  #section_news {
    padding: 30px 0px;
  }
  #section_news #div_news_desk {
    flex-direction: column;
    height: unset;
    max-width: 100%;
  }
  #section_news #div_news_desk &gt; div:first-child {
    width: 100%;
    padding: 0px;
  }
  #section_news #div_news_desk &gt; div:last-child {
    width: calc(100% - 40px);
    padding: 20px;
  }
  #section_news #div_news_desk &gt; div:last-child &gt; a {
    flex-direction: column;
  }
}

#section_columns,
#section_medicolumns {
  padding: 10px 0px;
}
#section_columns h1,
#section_medicolumns h1 {
  margin-bottom: 50px;
}
#section_columns #div_columns_desk,
#section_medicolumns #div_columns_desk {
  width: calc(100% - 20px);
  max-width: 1600px;
  margin: 0px auto;
}
#section_columns #div_columns_desk #div_columns_gridder,
#section_medicolumns #div_columns_desk #div_columns_gridder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}
#section_columns #div_columns_desk #div_columns_gridder .div_column_gridy,
#section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy {
  position: relative;
}
#section_columns #div_columns_desk #div_columns_gridder .div_column_gridy a,
#section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy a {
  color: inherit;
}
#section_columns #div_columns_desk #div_columns_gridder .div_column_gridy .div_main_visual,
#section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy .div_main_visual {
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease;
}
#section_columns #div_columns_desk #div_columns_gridder .div_column_gridy .div_main_visual:hover,
#section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy .div_main_visual:hover {
  background-size: 105%;
}
#section_columns #div_columns_desk #div_columns_gridder .div_column_gridy .div_main_visual img,
#section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy .div_main_visual img {
  width: 100%;
  display: block;
  visibility: hidden;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#section_columns #div_columns_desk #div_columns_gridder .div_column_gridy .div_column_name,
#section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy .div_column_name {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 799px) {
  #section_columns #div_columns_desk #div_columns_gridder,
  #section_medicolumns #div_columns_desk #div_columns_gridder {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  #section_columns #div_columns_desk #div_columns_gridder .div_column_gridy .div_column_name,
  #section_medicolumns #div_columns_desk #div_columns_gridder .div_column_gridy .div_column_name {
    font-size: calc(1rem + 0.4vw);
    margin-top: 0px;
    font-weight: 500;
  }
}

.div_readmore {
  margin-top: 30px;
  text-align: center;
}
.div_readmore .a_readmore {
  padding: 2px 10px;
  display: inline-block;
  border: 1px solid #999;
  color: #999;
  transition: color 0.2s, border 0.2s;
}
.div_readmore .a_readmore:hover {
  border: 1px solid #d80c18;
  color: #d80c18;
}

.div_arrow_button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 120px 10px 40px;
  border: 2px solid white;
  position: relative;
  border-radius: 6px;
  cursor: pointer;
  background-color: white;
  color: #d80c18;
  font-weight: 900;
}
.div_arrow_button::after {
  content: url("../image/01_front/asset_button_arrow.svg");
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 40px;
  transition: right 0.2s;
  transform: translateY(-50%);
}
.div_arrow_button.large {
  font-size: 2.4rem;
}
.div_arrow_button:hover::after {
  right: 36px;
}

#div_footer_m {
  display: none;
}
@media screen and (max-width: 799px) {
  #div_footer_m {
    display: grid;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
  }
}

footer {
  margin-top: 100px;
  padding: 5px 0px;
  background-color: #d80c18;
  color: white;
  font-size: 1rem;
  text-align: center;
  padding-bottom: 100px;
}

#main_about .div_main {
  max-width: 750px;
  margin: 0px auto;
}
#main_about .div_main section {
  margin-bottom: 100px;
}
#main_about .div_main h1 {
  margin: 30px 0px;
}
#main_about .div_main section h2 {
  font-size: clamp(2.6rem,3.5vw,6rem);
  line-height: 9.4rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  color: #d80c18;
  margin: 0px 0px 50px 0px;
  text-shadow: 1px -1px 1px #e5e5e5, -2px 2px 2px #fefff6;
}
@media screen and (max-width: 1599px) {
  #main_about .div_main section h2 {
    line-height: initial;
  }
}
#main_about .div_main section h3 {
  font-size: clamp(2.6rem,3.5vw,6rem);
  line-height: 8.4rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  margin: 0px 0px 50px 0px;
  text-shadow: 1px -1px 1px #e5e5e5, -2px 2px 2px #fefff6;
}
@media screen and (max-width: 1599px) {
  #main_about .div_main section h3 {
    line-height: initial;
  }
}
#main_about .div_main section h3::before {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: #232323;
  margin: 0px auto 50px auto;
}
#main_about .div_main section .p_impressive {
  font-size: clamp(1.6rem,1.3vw,2rem);
  line-height: 4rem;
  font-weight: 600;
  padding-left: 20px;
}
@media screen and (max-width: 1599px) {
  #main_about .div_main section .p_impressive {
    text-align: left;
    line-height: initial;
  }
}
#main_about .div_main section .p_impressive span.red {
  color: #d80c18;
}
#main_about .div_main section .div_arrow_button {
  margin: 50px auto 0px auto;
}
#main_about .div_main #img_lokallookall {
  display: block;
  margin: 50px auto;
}
#main_about .div_main #section_thinklokally {
  margin-top: 100px;
}
#main_about .div_main #section_about_message {
  max-width: 800px;
  margin: 0px auto 100px auto;
  text-align: center;
}
#main_about .div_main #section_about_message article.large {
  margin: 100px 0px;
  font-size: calc(1.2rem + 0.8vw);
  line-height: normal;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 799px) {
  #main_about .div_main #section_about_message {
    text-align: left;
  }
}
#main_about .div_main #section_main_service {
  background-color: #f5f5f5;
  padding: 50px;
  margin-bottom: 100px;
  margin-bottom: 100px;
}
#main_about .div_main #section_locallookall #img_lokallookall {
  width: 100%;
  margin: 50px 0px;
}
#main_about .div_main #section_locallookall #div_locallookall {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 100px auto;
}
#main_about .div_main #section_locallookall #div_locallookall &gt; div {
  border: 2px solid #d80c18;
  border-radius: 50%;
  width: 30%;
  aspect-ratio: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#main_about .div_main #section_locallookall #div_locallookall &gt; div:first-child {
  margin-right: -2%;
}
#main_about .div_main #section_locallookall #div_locallookall &gt; div:last-child {
  margin-left: -2%;
}
#main_about .div_main #section_locallookall #div_locallookall &gt; div &gt; div:first-child {
  font-size: min(2vw, 3.4rem);
  color: #d80c18;
}
#main_about .div_main #section_locallookall #div_locallookall &gt; div &gt; div:last-child {
  font-size: 1rem;
  line-height: normal;
}
@media screen and (min-width: 800px) {
  #main_about .div_main #section_locallookall #div_locallookall &gt; div &gt; div:last-child {
    font-size: 1.4rem;
    line-height: 4.6rem;
  }
}
#main_about .div_main .div_desk {
  max-width: 800px;
  margin: 0px auto;
}

#main_company .div_main {
  max-width: 1800px;
  margin: 0px auto;
}
#main_company .div_main #div_company_table {
  margin: 0px auto;
  padding: 100px 0px;
  width: 100%;
  max-width: 900px;
}
#main_company .div_main #div_company_table .div_row {
  display: flex;
  margin-bottom: 30px;
}
#main_company .div_main #div_company_table .div_row .div_field {
  width: 30%;
}
#main_company .div_main #div_company_table .div_row .div_content {
  width: 70%;
}
#main_company .div_main #div_access p {
  text-align: center;
}
#main_company .div_main #div_access #div_map {
  margin-top: 30px;
}
#main_company .div_main #div_access #div_map iframe {
  width: 100%;
  height: 250px;
}

#main_lokalist .div_main {
  max-width: 1600px;
  margin: 0px auto;
}
#main_lokalist #section_intro {
  margin-bottom: 50px;
}
#main_lokalist .section_lokalist {
  padding: 20px 20px 70px 20px;
  background-color: #fcfcfc;
  border-bottom: 2px dashed #cccccc;
  max-width: 940px;
  margin: 0px auto;
}
#main_lokalist .section_lokalist h2 {
  margin-bottom: 50px;
}
#main_lokalist .section_lokalist .div_small_caption {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 30px;
}
#main_lokalist .section_lokalist .div_lokalist_gridder {
  width: 100%;
  max-width: 900px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: space-evenly;
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  padding: 20px;
  position: relative;
  box-shadow: 6px 6px 6px 0 #ededed, -6px -6px 6px 0 #fff;
  border-radius: 5px;
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy.coimo {
  background-color: #fafaed;
  background-image: url("../image/04_lokalist/namecard_bg_coimo.png");
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy.sasami {
  background-color: #fafaed;
  background-image: url("../image/04_lokalist/namecard_bg_sasami.png");
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy.hoppi {
  background-color: #fafaed;
  background-image: url("../image/04_lokalist/namecard_bg_hoppi.png");
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy .div_avatar img {
  width: 100%;
  border-radius: 50%;
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy .div_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy .div_info .div_name {
  font-weight: 600;
}
#main_lokalist .section_lokalist .div_lokalist_gridder .div_lokalist_gridy .div_info .div_position {
  color: #d80c18;
  font-size: 1.3rem;
}
@media screen and (max-width: 799px) {
  #main_lokalist .section_lokalist {
    padding: 0px;
  }
  #main_lokalist .section_lokalist .div_lokalist_gridder {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0px auto;
  }
}

#main_profile #img_avatar {
  width: clamp(150px, 8vw, 200px);
  display: block;
  margin: 0px auto;
  border-radius: 50%;
}
#main_profile #div_profile_names,
#main_profile #div_profile_info {
  text-align: center;
  margin: 0px auto 30px auto;
  font-size: 1.4rem;
  max-width: 800px;
}
#main_profile #div_profile_names h2,
#main_profile #div_profile_info h2 {
  margin: 30px 0px 0px 0px;
}
#main_profile #div_profile_names #div_position,
#main_profile #div_profile_info #div_position {
  font-size: 1.8rem;
  color: #d80c18;
}
#main_profile #div_profile_intro {
  text-align: center;
  max-width: 800px;
  margin: 50px auto;
}
#main_profile #div_profile_intro #div_intro::after {
  content: "";
  display: block;
  width: 50px;
  border-bottom: 2px solid #d80c18;
  padding-bottom: 30px;
  margin: 0px auto;
}
#main_profile #section_lokalist_journal {
  background-color: #fbfbfb;
  padding: calc(10px + 1vw);
}
#main_profile #section_lokalist_journal h2 {
  margin: 0px 0px 30px 0px;
}
#main_profile #section_lokalist_journal a {
  color: inherit;
}
#main_profile #section_lokalist_journal #div_journal_gridder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  justify-items: center;
}
#main_profile #section_lokalist_journal #div_journal_gridder &gt; a {
  padding: 30px;
  background-color: white;
  width: calc(100% - 60px);
  box-shadow: 6px 6px 6px 0 #ededed, -6px -6px 6px 0 #fff;
  border-radius: 5px;
}
#main_profile #section_lokalist_journal #div_journal_gridder &gt; a .div_journal_gridy &gt; div {
  max-height: 180px;
  overflow: hidden;
}
#main_profile #section_lokalist_journal #div_journal_gridder &gt; a .div_journal_gridy &gt; div img {
  opacity: 0.2;
  filter: blur(2px);
  max-width: 100%;
  height: auto;
  display: none;
}
#main_profile #section_lokalist_journal #div_journal_gridder &gt; a p {
  margin: 0px;
}
#main_profile #section_lokalist_journal #div_journal_gridder &gt; a p.journal_datetime {
  color: #848484;
  font-size: 1.2rem;
}
#main_profile #section_lokalist_works {
  margin-top: calc(30px + 3vw);
}
#main_profile #section_lokalist_works #div_works_gridder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}
#main_profile #section_lokalist_works #div_works_gridder .div_work_gridy {
  position: relative;
  opacity: 1;
  transition: opacity 0.2s;
}
#main_profile #section_lokalist_works #div_works_gridder .div_work_gridy a {
  color: inherit;
}
#main_profile #section_lokalist_works #div_works_gridder .div_work_gridy #div_main_visual {
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease;
}
#main_profile #section_lokalist_works #div_works_gridder .div_work_gridy #div_main_visual:hover {
  background-size: 105%;
}
#main_profile #section_lokalist_works #div_works_gridder .div_work_gridy #div_main_visual img {
  width: 100%;
  height: auto;
  display: block;
  visibility: hidden;
}
#main_profile #section_lokalist_works #div_works_gridder .div_work_gridy #div_work_name {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 799px) {
  #main_profile #section_lokalist_works #div_works_gridder {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  #main_profile #section_lokalist_works #div_works_gridder .div_work_gridy #div_work_name {
    font-size: calc(1rem + 0.4vw);
    margin-top: 0px;
    font-weight: 500;
  }
}
#main_profile #section_lokalist_works .div_button_desk {
  text-align: center;
  padding: 50px 0px;
}

#main_works .div_main #div_works_gridder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}
#main_works .div_main #div_works_gridder .div_work_gridy {
  position: relative;
}
#main_works .div_main #div_works_gridder .div_work_gridy a {
  color: inherit;
}
#main_works .div_main #div_works_gridder .div_work_gridy .div_main_visual {
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease;
  aspect-ratio: 250/150;
  overflow: hidden;
}
#main_works .div_main #div_works_gridder .div_work_gridy .div_main_visual:hover {
  background-size: 105%;
}
#main_works .div_main #div_works_gridder .div_work_gridy .div_main_visual img {
  width: 100%;
  height: auto;
  display: block;
  visibility: hidden;
}
#main_works .div_main #div_works_gridder .div_work_gridy .div_work_name {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 799px) {
  #main_works .div_main #div_works_gridder {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  #main_works .div_main #div_works_gridder .div_work_gridy .div_work_name {
    font-size: calc(1rem + 0.4vw);
    margin-top: 0px;
    font-weight: 500;
  }
}

#main_work {
  margin-bottom: 30vh;
}
#main_work .div_main #div_desk_gridder {
  display: grid;
  grid-template-columns: 20% auto;
}
#main_work .div_main #div_desk_gridder #section_info {
  padding: 0px 30px 0px 10px;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div {
  max-width: 300px;
  margin: 0px auto;
  position: sticky;
  top: 200px;
}
@media screen and (max-height: 1099px) {
  #main_work .div_main #div_desk_gridder #section_info &gt; div {
    position: static;
  }
}
#main_work .div_main #div_desk_gridder #section_info &gt; div h2 {
  text-align: left;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_category {
  height: 50px;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_category span {
  padding: 10px 20px;
  background-color: #333333;
  border-radius: 20px;
  color: white;
  line-height: 50px;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info {
  margin-top: 30px;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info h3 {
  text-align: left;
  margin-top: 30px;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info .a_url {
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 1px dotted #333333;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info #div_credit {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 75px));
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info #div_credit a {
  color: inherit;
  display: block;
  text-align: center;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info #div_credit a .img_lokalist_related {
  width: 60px;
  border-radius: 50%;
}
#main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info #div_credit a &gt; div {
  font-size: 1.2rem;
  letter-spacing: 0rem;
}
#main_work .div_main #div_desk_gridder #section_gallery .img_gallery {
  width: 100%;
}
#main_work .div_main #div_desk_gridder #section_gallery video {
  width: calc(100% - 2px);
  border: 1px solid #cccccc;
  cursor: pointer;
}
#main_work .div_main #div_desk_gridder #section_txtent {
  margin-bottom: 50px;
}
@media screen and (max-width: 1259px) {
  #main_work .div_main #div_desk_gridder #section_txtent br {
    display: none;
  }
}
@media screen and (max-width: 1259px) {
  #main_work .div_main #div_desk_gridder {
    grid-template-columns: 100%;
  }
  #main_work .div_main #div_desk_gridder #section_info {
    padding: 0px 10px 0px 10px;
  }
  #main_work .div_main #div_desk_gridder #section_info &gt; div {
    max-width: 100%;
    position: static;
    text-align: center;
  }
  #main_work .div_main #div_desk_gridder #section_info &gt; div h2 {
    text-align: center;
  }
  #main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info {
    padding-bottom: 50px;
    border-bottom: 2px dashed #cccccc;
  }
  #main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info h3 {
    text-align: center;
  }
  #main_work .div_main #div_desk_gridder #section_info &gt; div #div_work_info #div_credit {
    grid-template-columns: repeat(4, 1fr);
    max-width: 300px;
    margin: 0px auto;
  }
}

#main_news_article article {
  max-width: 1000px;
  margin: 0px auto;
}
#main_news_article article .div_date {
  margin-bottom: 50px;
}
#main_news_article article p {
  margin-bottom: 30px;
}
#main_news_article article img {
  max-width: 100%;
  height: auto;
}
#main_news_article article iframe {
  width: 100%;
  max-width: 100%;
}

#main_news #section_news {
  background-color: #fcfcfc;
}
#main_news #section_news .div_main {
  max-width: 800px;
  margin: 0px auto;
}
#main_news #section_news .div_main .a_news {
  display: flex;
  color: inherit;
  height: 50px;
  align-items: center;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 6px 6px 6px 0 #ededed, -6px -6px 6px 0 #fff;
  border-radius: 5px;
}
#main_news #section_news .div_main .a_news:hover {
  color: #d80c18;
}
#main_news #section_news .div_main .a_news &gt; div:first-child {
  width: 30%;
}

#main_service .div_main,
#main_branding .div_main {
  max-width: 1800px;
  margin: 0px auto;
}
#main_service .div_main .div_allgrey section,
#main_branding .div_main .div_allgrey section {
  margin: 50px 0px;
}
#main_service .div_main section,
#main_branding .div_main section {
  margin: 100px 0px;
}
#main_service .div_main section:nth-child(even) .div_service_flexer,
#main_branding .div_main section:nth-child(even) .div_service_flexer {
  flex-direction: row-reverse;
}
#main_service .div_main section:nth-child(even) .div_service_flexer &gt; div:first-child,
#main_branding .div_main section:nth-child(even) .div_service_flexer &gt; div:first-child {
  padding: 50px 50px 50px 0px;
}
#main_service .div_main section .div_service_flexer,
#main_branding .div_main section .div_service_flexer {
  display: flex;
}
#main_service .div_main section .div_service_flexer &gt; div:first-child,
#main_branding .div_main section .div_service_flexer &gt; div:first-child {
  width: 40%;
  padding: 50px 0px 50px 50px;
}
#main_service .div_main section .div_service_flexer &gt; div:first-child h2,
#main_branding .div_main section .div_service_flexer &gt; div:first-child h2 {
  text-align: left;
  border-bottom: 2px solid #cccccc;
  padding: 0px 0px 30px 30px;
}
#main_service .div_main section .div_service_flexer &gt; div:first-child div,
#main_branding .div_main section .div_service_flexer &gt; div:first-child div {
  padding: 0px 30px;
  margin-bottom: 20px;
}
#main_service .div_main section .div_service_flexer &gt; div:last-child,
#main_branding .div_main section .div_service_flexer &gt; div:last-child {
  width: 60%;
}
#main_service .div_main section .div_service_flexer &gt; div:last-child img,
#main_branding .div_main section .div_service_flexer &gt; div:last-child img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 799px) {
  #main_service .div_main section,
  #main_branding .div_main section {
    margin: 20px 0px;
  }
  #main_service .div_main section:nth-child(even) .div_service_flexer,
  #main_branding .div_main section:nth-child(even) .div_service_flexer {
    flex-direction: column;
  }
  #main_service .div_main section:nth-child(even) .div_service_flexer &gt; div:first-child,
  #main_branding .div_main section:nth-child(even) .div_service_flexer &gt; div:first-child {
    padding: 0px;
  }
  #main_service .div_main section .div_service_flexer,
  #main_branding .div_main section .div_service_flexer {
    flex-direction: column;
  }
  #main_service .div_main section .div_service_flexer &gt; div:first-child,
  #main_branding .div_main section .div_service_flexer &gt; div:first-child {
    width: 100%;
    padding: 0px;
  }
  #main_service .div_main section .div_service_flexer &gt; div:first-child h2,
  #main_branding .div_main section .div_service_flexer &gt; div:first-child h2 {
    padding: 10px 0px;
  }
  #main_service .div_main section .div_service_flexer &gt; div:first-child &gt; div,
  #main_branding .div_main section .div_service_flexer &gt; div:first-child &gt; div {
    padding: 0px;
  }
  #main_service .div_main section .div_service_flexer &gt; div:last-child,
  #main_branding .div_main section .div_service_flexer &gt; div:last-child {
    width: 100%;
    margin-bottom: 10px;
  }
}
#main_service#main_branding section,
#main_branding#main_branding section {
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section,
  #main_branding#main_branding section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#main_service#main_branding section h2,
#main_branding#main_branding section h2 {
  font-size: clamp(2.6rem,3.5vw,6rem);
  line-height: 9.4rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  color: #d80c18;
  margin: 0px 0px 50px 0px;
  text-shadow: 1px -1px 1px #e5e5e5, -2px 2px 2px #fefff6;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section h2,
  #main_branding#main_branding section h2 {
    line-height: initial;
  }
}
#main_service#main_branding section h2 .narrow,
#main_branding#main_branding section h2 .narrow {
  display: none;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section h2 .narrow,
  #main_branding#main_branding section h2 .narrow {
    display: initial;
  }
}
#main_service#main_branding section h3,
#main_branding#main_branding section h3 {
  font-size: clamp(2.6rem,3.5vw,6rem);
  line-height: 9.4rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  margin: 0px 0px 50px 0px;
  text-shadow: 1px -1px 1px #e5e5e5, -2px 2px 2px #fefff6;
}
#main_service#main_branding section h3::before,
#main_branding#main_branding section h3::before {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background-color: #232323;
  margin: 0px auto 50px auto;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section h3,
  #main_branding#main_branding section h3 {
    line-height: initial;
  }
}
#main_service#main_branding section h3 .narrow,
#main_branding#main_branding section h3 .narrow {
  display: none;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section h3 .narrow,
  #main_branding#main_branding section h3 .narrow {
    display: initial;
  }
}
#main_service#main_branding section .p_impressive,
#main_branding#main_branding section .p_impressive {
  font-size: clamp(1.6rem,1.3vw,2rem);
  line-height: 4rem;
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section .p_impressive,
  #main_branding#main_branding section .p_impressive {
    text-align: left;
    line-height: initial;
  }
  #main_service#main_branding section .p_impressive br,
  #main_branding#main_branding section .p_impressive br {
    display: none;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel,
#main_branding#main_branding section#section_lokalbrandingmodel {
  max-width: 1600px;
  margin: 0px auto;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk:not(:last-of-type),
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk:not(:last-of-type) {
  margin-bottom: 60px;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase {
  display: grid;
  grid-template-columns: max(28%, 440px) auto;
  transition: box-shadow 0.2s;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
}
@media screen and (min-width: 1240px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.large,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.large {
    height: 580px;
  }
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase {
    grid-template-columns: 30% auto;
  }
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase {
    width: calc(100% - 2px);
    border-radius: unset;
    grid-template-columns: 100%;
    box-shadow: none;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left {
  border-right: 1px solid #e7e7e7;
  background-color: white;
  border-radius: 10px 0px 0px 10px;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left {
    width: 100%;
    border: none;
    background: none;
    border-radius: 0px;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 10px;
  height: 120px;
  align-items: center;
  padding: 20px 30px 0px 30px;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child {
    grid-template-columns: 20% auto;
  }
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child {
    width: 100%;
    height: unset;
    display: flex;
    flex-direction: column;
    padding: 0px;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_number,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_number {
  text-align: center;
  font-size: clamp(6rem,8.2vw,11.3rem);
  line-height: 100px;
  padding-bottom: 20px;
  font-weight: 300;
  color: #d80c18;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_number,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_number {
    line-height: initial;
    padding: 0px;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top .div_phase_name,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top .div_phase_name {
  font-size: clamp(2.4rem,1.4vw,2.8rem);
  font-weight: 800;
  color: #d80c18;
  padding-bottom: 10px;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top .div_phase_caption,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left &gt; div:first-child .div_phase_top .div_phase_caption {
  font-size: 1.8rem;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left .div_phase_description,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left .div_phase_description {
  font-size: 1.6rem;
  padding: 30px;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left .div_phase_description,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_left .div_phase_description {
    padding: 10px;
    text-align: center;
    width: calc(100% - 20px);
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right {
  display: grid;
  grid-template-columns: 80px auto 80px;
  align-items: center;
  padding: 20px 0px;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right {
    width: calc(100% - 20px);
    grid-template-columns: 20px auto 20px;
    gap: 10px;
    padding: 10px;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_prev,
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_next,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_prev,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_next {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  cursor: pointer;
  transition: filter 0.2s;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_prev.div_phase_slider_prev img,
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_next.div_phase_slider_prev img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_prev.div_phase_slider_prev img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_next.div_phase_slider_prev img {
  transform: rotate(180deg);
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_prev:hover,
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_next:hover,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_prev:hover,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_next:hover {
  filter: grayscale(0);
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame {
  height: 100%;
}
@media screen and (min-width: 1240px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame.large .div_phase_slider_film .div_phase_slider_item:nth-child(n+5),
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame.large .div_phase_slider_film .div_phase_slider_item:nth-child(n+5) {
    display: flex;
  }
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame.large .div_phase_slider_film .div_phase_slider_item:nth-child(n+9),
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame.large .div_phase_slider_film .div_phase_slider_item:nth-child(n+9) {
    display: none;
  }
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame.large .div_phase_slider_film .div_phase_slider_item .div_item_name,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame.large .div_phase_slider_film .div_phase_slider_item .div_item_name {
    min-height: 74px;
    justify-content: flex-start;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0px 30px;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.6rem;
  border-radius: 20px;
  transition: box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item {
    justify-content: flex-start;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item.awaiting,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item.awaiting {
  opacity: 0;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover {
  box-shadow: 6px 6px 6px 0 #ededed, -6px -6px 6px 0 #fff;
  border-radius: 5px;
  border-radius: 20px;
  background-color: white;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover img,
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover div,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover div {
  transform: translate(-1px, -1px);
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:hover img {
  transform: rotate(1deg);
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:active,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:active {
  box-shadow: 6px 6px 6px 0 #efefef, -6px -6px 6px 0 #fff;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:active img,
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:active div,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:active img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:active div {
  transform: translate(1px, 1px);
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name {
  transition: transform 0.2s;
  line-height: 2rem;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 799px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name {
    font-size: 1.2rem;
    line-height: initial;
    min-height: unset;
  }
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name br,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name br {
    display: none;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name .span_tag,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; div.div_item_name .span_tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding: 0px 8px;
  background-color: #323232;
  color: white;
  margin: 0px auto 10px auto;
  border-radius: 5px;
  line-height: 24px;
  font-size: 1.3rem;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item &gt; img {
  transition: transform 0.2s;
  filter: grayscale(1);
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:nth-child(n+5),
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item:nth-child(n+5) {
  display: none;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item .div_description,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase .div_right .div_phase_slider_frame .div_phase_slider_film .div_phase_slider_item .div_description {
  display: none !important;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final {
  grid-template-columns: 1fr;
  border-radius: 10px;
  background-color: white;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_left,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_left {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
  text-align: center;
  border: none;
  background-color: unset;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_left &gt; div:first-child,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_left &gt; div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 50px;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_left &gt; div:first-child .div_phase_number,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_left &gt; div:first-child .div_phase_number {
  display: none;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_right,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_lokalbrandingmodel_phase.final &gt; .div_right {
  display: none;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints {
  text-align: right;
  padding-bottom: 4px;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints img,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints img {
  vertical-align: middle;
  padding-bottom: 2px;
}
#main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints .narrow,
#main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints .narrow {
  display: none;
}
@media screen and (max-width: 799px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints .narrow,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints .narrow {
    display: initial;
  }
}
@media screen and (max-width: 799px) {
  #main_service#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints,
  #main_branding#main_branding section#section_lokalbrandingmodel .div_phase_desk .div_hints {
    text-align: center;
    line-height: initial;
  }
}
#main_service#main_branding section#section_lokalbrandingmodel .img_next_phase,
#main_branding#main_branding section#section_lokalbrandingmodel .img_next_phase {
  margin: 0px auto 60px 203px;
  display: block;
  width: 40px;
}
@media screen and (max-width: 1599px) {
  #main_service#main_branding section#section_lokalbrandingmodel .img_next_phase,
  #main_branding#main_branding section#section_lokalbrandingmodel .img_next_phase {
    margin: 0px auto 50px auto;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder,
#main_branding#main_branding #section_plans #div_plans_gridder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1550px;
  margin: 0px auto;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder,
  #main_branding#main_branding #section_plans #div_plans_gridder {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy {
  box-shadow: 6px 6px 6px 0 #ededed, -6px -6px 6px 0 #fff;
  border-radius: 5px;
  padding: 30px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy {
    padding: 20px;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top {
  display: grid;
  grid-template-columns: 130px auto;
  gap: 20px;
  align-items: center;
  height: 40px;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top {
    height: unset;
    grid-template-columns: 100px auto;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade {
  color: white;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade {
    font-size: 1.4rem;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.red,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.red {
  background-color: #c53633;
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.blue,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.blue {
  background-color: #3152a3;
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.green,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.green {
  background-color: #83bd3f;
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.pink,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.pink {
  background-color: #db3b88;
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.cyan,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_grade.cyan {
  background-color: #459ea3;
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_title,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_title {
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_title,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_top .div_plan_title {
    font-size: 2rem;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_description,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_description {
  font-size: 1.8rem;
  margin: 20px 0px;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_description,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_description {
    font-size: 1.6rem;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing {
  font-size: 2.4rem;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing {
    font-size: 2rem;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing span,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing span {
  font-size: 2rem;
}
@media screen and (max-width: 1239px) {
  #main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing span,
  #main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing span {
    font-size: 1.6rem;
  }
}
#main_service#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing span.small,
#main_branding#main_branding #section_plans #div_plans_gridder .div_plans_gridy .div_plan_pricing span.small {
  font-size: 1.6rem;
}
#main_service #div_screen_layer,
#main_branding #div_screen_layer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  transition: opacity 0.2s;
}
#main_service #div_screen_layer:not(.show),
#main_branding #div_screen_layer:not(.show) {
  opacity: 0;
  pointer-events: none;
}
#main_service #div_screen_layer #div_screen_sheet,
#main_branding #div_screen_layer #div_screen_sheet {
  width: 100%;
  height: 100%;
  background-color: #333333;
  opacity: 0.9;
  position: absolute;
  top: 0px;
  left: 0px;
}
#main_service #div_screen_layer #div_screen_box,
#main_branding #div_screen_layer #div_screen_box {
  width: 1200px;
  height: 400px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box,
  #main_branding #div_screen_layer #div_screen_box {
    width: 80vw;
    height: 70vh;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder,
#main_branding #div_screen_layer #div_screen_box .div_gridder {
  height: 100%;
  display: grid;
  grid-template-columns: 100px 350px auto 100px;
  gap: 10px;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder,
  #main_branding #div_screen_layer #div_screen_box .div_gridder {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30% auto 20%;
    gap: 0px;
    padding: 20px;
    height: calc(100% - 40px);
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_prev,
#main_service #div_screen_layer #div_screen_box .div_gridder .div_next,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_prev,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_prev img,
#main_service #div_screen_layer #div_screen_box .div_gridder .div_next img,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_prev img,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_next img {
  width: 60px;
  filter: opacity(0.6);
  transition: filter 0.2s;
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_prev:hover img,
#main_service #div_screen_layer #div_screen_box .div_gridder .div_next:hover img,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_prev:hover img,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_next:hover img {
  filter: opacity(1);
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_prev,
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_next,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_prev,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_next {
    grid-row-start: 3;
    grid-row-end: 3;
  }
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_prev.div_prev,
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_next.div_prev,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_prev.div_prev,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_next.div_prev {
    grid-column-start: 1;
    grid-column-end: 1;
  }
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_prev.div_next,
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_next.div_next,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_prev.div_next,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_next.div_next {
    grid-column-start: 2;
    grid-column-end: 2;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_image,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_image,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_image {
    height: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_image img,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_image img {
  width: 100%;
  filter: grayscale(1);
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_image img,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_image img {
    width: unset;
    height: 100%;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 0px;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_content,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_content {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 2;
    padding: 0px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_top h4,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_top h4 {
  margin: 20px 0px;
  font-size: 3rem;
  color: #d80c18;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_top h4,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_top h4 {
    font-size: 2rem;
    margin: 10px 0px;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_top p,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_top p {
  font-size: 1.8rem;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_top p,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_top p {
    font-size: 1.4rem;
  }
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom {
  color: #959595;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: space-between;
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom &gt; div,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom &gt; div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom &gt; div div:first-child,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom &gt; div div:first-child {
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background-color: #959595;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  letter-spacing: 0px;
  display: none;
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom .current,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom .current {
  color: #232323;
  font-weight: 800;
}
#main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom .current div:first-child,
#main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom .current div:first-child {
  background-color: #232323;
  display: block;
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom .current,
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom .current {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (max-width: 799px) {
  #main_service #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom &gt; *:not(.current),
  #main_branding #div_screen_layer #div_screen_box .div_gridder .div_content .div_bottom &gt; *:not(.current) {
    display: none;
  }
}
#main_service #div_screen_layer #div_screen_box .div_close,
#main_branding #div_screen_layer #div_screen_box .div_close {
  width: 10px;
  height: 30px;
  position: absolute;
  top: -60px;
  right: 20px;
  cursor: pointer;
  padding: 10px 15px;
}
#main_service #div_screen_layer #div_screen_box .div_close &gt; div,
#main_branding #div_screen_layer #div_screen_box .div_close &gt; div {
  width: 100%;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: white;
  position: absolute;
  left: 0px;
  transition: border-color 0.2s;
}
#main_service #div_screen_layer #div_screen_box .div_close &gt; div:nth-child(1),
#main_branding #div_screen_layer #div_screen_box .div_close &gt; div:nth-child(1) {
  top: 0px;
  transform-origin: 20px;
  transition: width 0.4s, transform 0.4s;
  transform: translate(-5px, 15px) rotate(410deg);
  width: calc(100% + 20px);
}
#main_service #div_screen_layer #div_screen_box .div_close &gt; div:nth-child(2),
#main_branding #div_screen_layer #div_screen_box .div_close &gt; div:nth-child(2) {
  transform-origin: 20px;
  transition: top 0.4s, width 0.4s, transform 0.4s;
  transform: translate(-5px, 15px) rotate(-410deg);
  width: calc(100% + 20px);
  top: 15px;
}
#main_service .div_arrow_button,
#main_branding .div_arrow_button {
  margin: 50px auto 0px auto;
}

#main_columns .div_main #div_columns_gridder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}
#main_columns .div_main #div_columns_gridder .div_column_gridy {
  position: relative;
}
#main_columns .div_main #div_columns_gridder .div_column_gridy a {
  color: inherit;
}
#main_columns .div_main #div_columns_gridder .div_column_gridy .div_main_visual {
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease;
}
#main_columns .div_main #div_columns_gridder .div_column_gridy .div_main_visual:hover {
  background-size: 105%;
}
#main_columns .div_main #div_columns_gridder .div_column_gridy .div_main_visual img {
  width: 100%;
  display: block;
  visibility: hidden;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
#main_columns .div_main #div_columns_gridder .div_column_gridy .div_column_name {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 799px) {
  #main_columns .div_main #div_columns_gridder {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  #main_columns .div_main #div_columns_gridder .div_column_gridy .div_column_name {
    font-size: calc(1rem + 0.4vw);
    margin-top: 0px;
    font-weight: 500;
  }
}

#main_column {
  margin-bottom: 30vh;
}
#main_column .div_main #div_desk_gridder {
  display: grid;
  grid-template-columns: 20% auto;
}
#main_column .div_main #div_desk_gridder #section_info {
  padding: 0px 30px 0px 10px;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div {
  max-width: 300px;
  margin: 0px auto;
  position: sticky;
  top: 200px;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div h2 {
  text-align: left;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_category {
  height: 50px;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_category span {
  padding: 10px 20px;
  background-color: #333333;
  border-radius: 20px;
  color: white;
  line-height: 50px;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info {
  margin-top: 30px;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info h3 {
  text-align: left;
  margin-top: 30px;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info .a_url {
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 1px dotted #333333;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info #div_credit {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 75px));
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info #div_credit a {
  color: inherit;
  display: block;
  text-align: center;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info #div_credit a .img_lokalist_related {
  width: 60px;
  border-radius: 50%;
}
#main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info #div_credit a &gt; div {
  font-size: 1.2rem;
  letter-spacing: 0rem;
}
#main_column .div_main #div_desk_gridder #section_gallery .img_gallery {
  width: 100%;
}
#main_column .div_main #div_desk_gridder #section_gallery video {
  width: 100%;
}
@media screen and (max-width: 1259px) {
  #main_column .div_main #div_desk_gridder {
    grid-template-columns: 100%;
  }
  #main_column .div_main #div_desk_gridder #section_info {
    padding: 0px 10px 0px 10px;
  }
  #main_column .div_main #div_desk_gridder #section_info &gt; div {
    max-width: 100%;
    position: static;
    text-align: center;
  }
  #main_column .div_main #div_desk_gridder #section_info &gt; div h2 {
    text-align: center;
  }
  #main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info {
    padding-bottom: 50px;
    border-bottom: 2px dashed #cccccc;
  }
  #main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info h3 {
    text-align: center;
  }
  #main_column .div_main #div_desk_gridder #section_info &gt; div #div_column_info #div_credit {
    grid-template-columns: repeat(4, 1fr);
    max-width: 300px;
    margin: 0px auto;
  }
}

#main_contact .div_main {
  max-width: 1800px;
  margin: 0px auto;
}
#main_contact .div_main section {
  margin-bottom: 100px;
}
#main_contact .div_main section .div_desk {
  max-width: 800px;
  margin: 0px auto;
}
#main_contact .div_main h1 {
  margin: 30px 0px;
}
#main_contact .div_main #section_intro {
  margin-top: 100px;
}
#main_contact .div_main #section_tel {
  text-align: center;
}
#main_contact .div_main #section_tel .div_desk &gt; div {
  display: flex;
  justify-content: space-evenly;
  margin: 30px 0px;
}
#main_contact .div_main #section_tel .div_desk &gt; div &gt; div {
  width: 300px;
  padding: 10px;
  border: 1px solid #d80c18;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
#main_contact .div_main #section_tel .div_desk &gt; div &gt; div a {
  color: inherit;
}
#main_contact .div_main #section_form .div_messageset {
  color: black;
}
#main_contact .div_main #section_form .div_info_table {
  margin-bottom: 100px;
}
#main_contact .div_main #section_form .div_info_table .div_info_row {
  display: grid;
  grid-template-columns: 30% calc(70% - 20px);
  gap: 20px;
  margin-bottom: 30px;
}
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-text,
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-textarea,
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-select {
  width: 100%;
  border: none;
  padding: 10px;
  color: #333;
  letter-spacing: 0.1rem;
  outline: none;
  background-color: #f5f5f5;
}
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-text.wpcf7-text, #main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-text.wpcf7-textarea,
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-textarea.wpcf7-text,
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-textarea.wpcf7-textarea,
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-select.wpcf7-text,
#main_contact .div_main #section_form .div_info_table .div_info_row .field .wpcf7-select.wpcf7-textarea {
  width: calc(100% - 20px);
  letter-spacing: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#main_contact .div_main #section_form .div_info_table .div_info_row .radio {
  margin-right: 10px;
}
#main_contact .div_main #section_form .div_info_table .div_info_row .radio .wpcf7-list-item::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url("../image/11_contact/checkbox-bg-unchecked.svg") left center no-repeat;
  background-size: 24px auto;
  cursor: pointer;
}
#main_contact .div_main #section_form .div_info_table .div_info_row .radio .wpcf7-list-item.checked::before {
  background: url("../image/11_contact/checkbox-bg-checked.svg") left center no-repeat;
  background-size: 24px auto;
}
#main_contact .div_main #section_form .div_info_table .div_info_row .radio .wpcf7-list-item input[type=radio] {
  width: 0%;
  height: 0%;
  opacity: 0;
}
#main_contact .div_main #section_form #div_finalcheck {
  background-color: #f5f5f5;
  padding: 50px 0px;
}
#main_contact .div_main #section_form #div_finalcheck #div_checkbox label {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 1em;
  vertical-align: middle;
  background: url("../image/11_contact/checkbox-bg-unchecked.svg") left center no-repeat;
  background-size: 24px auto;
  cursor: pointer;
}
#main_contact .div_main #section_form #div_finalcheck #div_checkbox label.checked {
  background: url("../image/11_contact/checkbox-bg-checked.svg") left center no-repeat;
  background-size: 24px auto;
}
#main_contact .div_main #section_form #div_finalcheck #div_checkbox input[type=checkbox] {
  width: 0%;
  height: 0%;
  opacity: 0;
}
#main_contact .div_main #section_form #div_finalcheck #div_submit {
  margin-top: 50px;
  text-align: center;
}
#main_contact .div_main #section_form #div_finalcheck #div_submit input[type=submit] {
  width: 200px;
  text-align: center;
  padding: 10px 0px;
  background-color: #d80c18;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  letter-spacing: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#main_contact .div_main #section_form .small,
#main_contact .div_main #section_form .required {
  font-size: 1rem;
  font-weight: 500;
}
#main_contact .div_main #section_form .small.required,
#main_contact .div_main #section_form .required.required {
  color: #d80c18;
}

.wpcf7-response-output {
  border: none !important;
  background-color: #f5f5f5 !important;
  padding: 50px !important;
  text-align: center !important;
}

#main_recruit .div_main {
  max-width: 1800px;
  margin: 0px auto;
}
#main_recruit .div_main #div_intro {
  max-width: 800px;
  margin: 0px auto;
  padding: 50px 0px;
}
#main_recruit .div_main .div_position_desk {
  background-color: #f5f5f5;
  padding: 50px 0px;
  margin-bottom: 100px;
}
#main_recruit .div_main .div_position_desk div {
  max-width: 800px;
  margin: 0px auto;
}
#main_recruit .div_main #div_apply_desk {
  max-width: 800px;
  margin: 0px auto;
}
#main_recruit .div_main #div_apply_desk &gt; div {
  text-align: center;
  padding: 50px 0px;
}
#main_recruit .div_main #div_apply_desk &gt; div #a_apply {
  display: inline-block;
  width: 200px;
  text-align: center;
  padding: 10px 0px;
  background-color: #d80c18;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 799px) {
  #main_recruit .div_main {
    width: calc(100% - 40px);
    padding: 0px 20px;
  }
  #main_recruit .div_main #div_intro {
    width: 100%;
  }
  #main_recruit .div_main .div_position_desk div {
    width: 100%;
  }
  #main_recruit .div_main #div_apply_desk {
    width: 100%;
  }
}

#main_brandtest .div_main .div_text {
  width: 800px;
  margin: 0px auto 50px auto;
}
#main_brandtest .div_main #div_test_sheet {
  width: 800px;
  margin: 0px auto;
}
#main_brandtest .div_main #div_test_sheet .div_test_section h2 {
  color: #d80c18;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy {
  width: 100%;
  margin-bottom: 50px;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_question_title {
  text-align: center;
  font-size: 1.6rem;
  margin: 20px 0px 30px 0px;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_answer_flexer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_answer_flexer label {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f5f5f5;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_answer_flexer label.checked {
  background-color: #d80c18;
  color: white;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_answer_flexer label input {
  display: none;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_answer_flexer &gt; div:first-child label::after {
  color: #333333;
  content: "NO";
  display: block;
}
#main_brandtest .div_main #div_test_sheet .div_test_section .div_test_question_flexer .div_test_question_flexy .div_test_answer_flexer &gt; div:last-child label::after {
  color: #333333;
  content: "YES";
  display: block;
}
#main_brandtest .div_main #div_test_sheet #div_final_desk {
  background-color: #f5f5f5;
  padding: 50px;
  text-align: center;
}
#main_brandtest .div_main #div_test_sheet #div_final_desk #div_button_start {
  width: 200px;
  margin: 0px auto;
  text-align: center;
  padding: 10px 0px;
  background-color: #d80c18;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  letter-spacing: 0.2rem;
}
#main_brandtest .div_main #div_test_sheet #div_final_desk #div_result_desk {
  display: none;
}
#main_brandtest .div_main #div_test_sheet #div_final_desk #div_result_desk #span_totalscore {
  color: #d80c18;
  font-size: 4rem;
}
#main_brandtest .div_main #div_test_sheet #div_final_desk #div_result_desk .div_result_rank {
  margin-top: 10px;
  display: none;
}
@media screen and (max-width: 799px) {
  #main_brandtest .div_main .div_text {
    width: calc(100% - 40px);
    padding: 20px;
  }
  #main_brandtest .div_main #div_test_sheet {
    width: 100%;
  }
}

#main_casestudies .div_main #div_casestudies_gridder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 30px;
}
#main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy {
  position: relative;
}
#main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy a {
  color: inherit;
}
#main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy .div_main_visual {
  background-position: center;
  background-size: 100%;
  transition: background-size 0.3s ease;
}
#main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy .div_main_visual:hover {
  background-size: 105%;
}
#main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy .div_main_visual img {
  width: 100%;
  height: auto;
  display: block;
  visibility: hidden;
}
#main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy .div_casestudy_name {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 799px) {
  #main_casestudies .div_main #div_casestudies_gridder {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  #main_casestudies .div_main #div_casestudies_gridder .div_casestudy_gridy .div_casestudy_name {
    font-size: calc(1rem + 0.4vw);
    margin-top: 0px;
    font-weight: 500;
  }
}

#main_casestudy {
  margin-bottom: 30vh;
}
#main_casestudy .div_main #div_desk_gridder {
  display: grid;
  grid-template-columns: 20% auto;
}
#main_casestudy .div_main #div_desk_gridder #section_info {
  padding: 0px 30px 0px 10px;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div {
  max-width: 300px;
  margin: 0px auto;
  position: sticky;
  top: 200px;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div h2 {
  text-align: left;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_category {
  height: 50px;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_category span {
  padding: 10px 20px;
  background-color: #333333;
  border-radius: 20px;
  color: white;
  line-height: 50px;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info {
  margin-top: 30px;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info h3 {
  text-align: left;
  margin-top: 30px;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info .a_url {
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 1px dotted #333333;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info #div_credit {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 75px));
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info #div_credit a {
  color: inherit;
  display: block;
  text-align: center;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info #div_credit a .img_lokalist_related {
  width: 60px;
  border-radius: 50%;
}
#main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info #div_credit a &gt; div {
  font-size: 1.2rem;
  letter-spacing: 0rem;
}
#main_casestudy .div_main #div_desk_gridder #section_gallery .img_gallery {
  width: 100%;
}
#main_casestudy .div_main #div_desk_gridder #section_gallery video {
  width: 100%;
}
@media screen and (max-width: 1259px) {
  #main_casestudy .div_main #div_desk_gridder {
    grid-template-columns: 100%;
  }
  #main_casestudy .div_main #div_desk_gridder #section_info {
    padding: 0px 10px 0px 10px;
  }
  #main_casestudy .div_main #div_desk_gridder #section_info &gt; div {
    max-width: 100%;
    position: static;
    text-align: center;
  }
  #main_casestudy .div_main #div_desk_gridder #section_info &gt; div h2 {
    text-align: center;
  }
  #main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info {
    padding-bottom: 50px;
    border-bottom: 2px dashed #cccccc;
  }
  #main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info h3 {
    text-align: center;
  }
  #main_casestudy .div_main #div_desk_gridder #section_info &gt; div #div_casestudy_info #div_credit {
    grid-template-columns: repeat(4, 1fr);
    max-width: 300px;
    margin: 0px auto;
  }
}

#main_radio .div_main {
  max-width: 1600px;
  margin: 0px auto;
}
#main_radio .div_main h3 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}
#main_radio .div_episode {
  box-shadow: 6px 6px 6px 0 #ededed, -6px -6px 6px 0 #fff;
  border-radius: 5px;
  padding: 30px;
  display: grid;
  grid-template-columns: 210px auto 360px;
  align-items: start;
  max-width: 1440px;
  margin: 0px auto;
  gap: 30px;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode {
    padding: 0px;
    box-shadow: none;
    grid-template-columns: 1fr;
  }
}
#main_radio .div_episode:not(:last-child) {
  margin-bottom: 50px;
}
#main_radio .div_episode .div_image img {
  width: 100%;
  height: unset;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode .div_image {
    grid-row: 2;
  }
  #main_radio .div_episode .div_image img {
    display: block;
    max-width: 210px;
    margin: 0px auto;
  }
}
#main_radio .div_episode .div_content .div_headline {
  margin-bottom: 10px;
}
#main_radio .div_episode .div_content .div_headline .h2_episode_title {
  display: inline;
  font-size: 2.6rem;
  letter-spacing: 0.1rem;
  margin: 0px;
  text-align: left;
  line-height: 4rem;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode .div_content .div_headline .h2_episode_title {
    font-size: 2rem;
  }
}
#main_radio .div_episode .div_content .div_dates,
#main_radio .div_episode .div_content .div_series {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode .div_content .div_dates,
  #main_radio .div_episode .div_content .div_series {
    font-size: 1.4rem;
  }
}
#main_radio .div_episode .div_content .div_dates .new,
#main_radio .div_episode .div_content .div_series .new {
  display: inline-block;
  padding: 0px 8px;
  border: 1px solid #d80c18;
  margin-left: 10px;
  color: #d80c18;
  line-height: 2.3rem;
}
#main_radio .div_episode .div_content .div_description {
  font-size: 1.8rem;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode .div_content .div_description {
    font-size: 1.6rem;
  }
}
#main_radio .div_episode .div_linker {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode .div_linker {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0px auto;
  }
}
#main_radio .div_episode .div_linker &gt; * {
  display: block;
}
#main_radio .div_episode .div_linker &gt; *:first-child {
  font-size: 1.6rem;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
}
#main_radio .div_episode .div_linker &gt; *:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}
#main_radio .div_episode .div_linker &gt; *:not(:last-child):not(:first-child) {
  padding-bottom: 20px;
}
#main_radio .div_episode .div_linker .div_linky {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  padding-left: 10px;
  line-height: 1.6rem;
  color: #232323;
}
@media screen and (max-width: 1339px) {
  #main_radio .div_episode .div_linker .div_linky {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0px;
  }
}

.h1_page_heading {
  margin-bottom: 50px;
}
.h1_page_heading::after {
  content: "";
  display: block;
  width: 50px;
  border-bottom: 2px solid #d80c18;
  padding-bottom: 30px;
  margin: 0px auto;
}

.img_page_topbanner {
  width: 100%;
  max-width: 1800px;
  display: block;
  margin: 0px auto;
}

.div_main {
  position: relative;
}

.div_bread {
  margin: 0px auto 50px auto;
  border-right: 1px solid #999;
  position: absolute;
  left: -52px;
  font-size: 1.2rem;
  writing-mode: tb-rl;
  opacity: 0.5;
  transition: opacity 0.2s;
  max-height: calc(50vh - 200px);
  white-space: nowrap;
  overflow: hidden;
  z-index: 99;
}
.div_bread:hover {
  opacity: 1;
}
@media screen and (max-width: 799px) {
  .div_bread {
    top: 0px;
    left: 0px;
  }
}

.article_800 {
  max-width: 800px;
  margin: 0px auto;
}

.section_center h1,
.section_center h2,
.section_center h3,
.section_center p {
  text-align: center;
}

.div_allgrey {
  background-color: #fcfcfc;
  padding: 50px 0px;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1rem;
  color: #333;
  line-height: 3rem;
  font-weight: 500;
}
body.steady {
  overflow: hidden;
}
body main {
  padding: 140px 75px 0px 75px;
  min-height: calc(100vh - 280px);
}
@media screen and (max-width: 799px) {
  body main {
    padding: 120px 20px 0px 20px;
  }
}

::-moz-selection {
  background-color: rgba(255, 235, 0, 0.2392156863);
}

::selection {
  background-color: rgba(255, 235, 0, 0.2392156863);
}

::-moz-selection {
  background-color: rgba(255, 235, 0, 0.2392156863);
}

body::-webkit-scrollbar {
  width: 18px;
}

body::-webkit-scrollbar-track {
  background: white;
}

body::-webkit-scrollbar-thumb {
  background-color: #d4d4d4;
  border: 4px solid #ffffff;
  border-radius: 10px;
}

h1 {
  color: #d80c18;
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 30px 0px;
  letter-spacing: 0.6rem;
  text-align: center;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 10px 0px;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #232323;
}

h4 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 10px;
}

a,
a:hover,
a:visited,
a:active {
  color: #d80c18;
  text-decoration: none;
}

.div_readmore {
  font-size: 1.7rem;
}
.div_readmore::after {
  content: "";
}

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

.a_block {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.div_button_more {
  font-size: 1.6rem;
  color: #d80c18;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  min-width: 160px;
  cursor: pointer;
}

.grecaptcha-badge {
  display: none;
}/*# sourceMappingURL=mother.css.map */</pre></body></html>