@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-ms-viewport {
  width: device-width;
}
body {
  margin: 0;
  background-color: #fff;
  color: #222;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  -webkit-text-size-adjust: 100%;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  margin: 0;
  border: 0;
  background-color: currentColor;
  color: inherit;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1rem 0 0;
}

p {
  margin: 1rem 0 0;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin: 1rem 0 0;
  font-style: normal;
  line-height: inherit;
}

ol, ul, dl {
  margin: 1rem 0 0;
}

ol ol, ul ul, ol ul, ul ol {
  margin: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin: 1rem 0 0;
}

blockquote {
  margin: 1rem 0 0;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  vertical-align: baseline;
  font-size: 0.75em;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #00aca8;
  text-decoration: none;
}

a:hover, a:focus {
  color: #00605d;
  text-decoration: underline;
}

a:not([href]), a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre, code, kbd, samp {
  font-size: 1em;
  font-family: monospace, monospace;
}

pre {
  display: block;
  overflow: auto;
  margin: 1rem 0 0;
  font-size: 0.875em;
}

pre code {
  color: inherit;
  word-break: normal;
  font-size: inherit;
}

code {
  color: #d63384;
  word-wrap: break-word;
  font-size: 0.875em;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  border-radius: 0.2rem;
  color: #fff;
  font-size: 0.875em;
}

kbd kbd {
  padding: 0;
  font-weight: 700;
  font-size: 1em;
}

figure {
  margin: 1rem 0 0;
}

img {
  vertical-align: middle;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  caption-side: bottom;
  text-align: left;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner, ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=date], input[type=time], input[type=datetime-local], input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
  border: 0;
}

legend {
  float: left;
  margin: 1rem 0 0;
  padding: 0;
  width: 100%;
  color: inherit;
  white-space: normal;
  font-size: 1.5rem;
  line-height: inherit;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

progress {
  vertical-align: baseline;
}

::-webkit-datetime-edit {
  overflow: visible;
  line-height: 0;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

main {
  display: block;
}

[hidden] {
  display: none !important;
}

/* ==================================================
	 Top page
 ================================================== */
.loading {
  position: absolute;
  top: 50%;
  left: 50%;
}

.load-anime .loading {
  display: none;
}

.loading .bullet {
  position: absolute;
  padding: 5px;
  border-radius: 50%;
  background: #00aca8;
  -webkit-animation: animIn 1s ease-in-out 0s infinite;
          animation: animIn 1s ease-in-out 0s infinite;
}

.loading .bullet:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.loading .bullet:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.loading .bullet:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading .bullet:nth-child(4) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

@-webkit-keyframes animIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@keyframes animIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: hidden;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #f4eed8;
  -webkit-transition: 1s 1s;
  transition: 1s 1s;
}

#loader::before {
  content: "";
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

#loader.load-complete {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#loader.load-complete::before {
  -webkit-animation-name: loader-sp;
          animation-name: loader-sp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (min-width: 769px) {
  #loader.load-complete::before {
    animation-name: loader-pc;
    -webkit-animation-name: loader-pc;
  }
}
.index .lmain {
  overflow-x: hidden;
}

.index-mv {
  position: relative;
  background-color: #f2ecd2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-mv-movie {
  position: relative;
  overflow: hidden;
}

.index-mv-movie.load .pr-image {
  display: none;
}

.index-mv-movie.load canvas {
  opacity: 1;
}

.index-mv-movie.load img {
  opacity: 1;
}

@media screen and (min-width: 1100px) {
  .index-mv-movie {
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 80px;
    margin-bottom: 0;
    min-width: 750px;
    width: 75%;
  }
}
.index-mv-movie::before {
  content: "";
  display: block;
  padding-top: 96.4285714286%;
}

.index-mv-movie .pr-image {
  opacity: 1 !important;
}

.index-mv-movie canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.index-mv-movie img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.index-mv-contents {
  position: relative;
  margin-top: 0 !important;
  padding-top: 100px;
}

@media screen and (min-width: 1100px) {
  .index-mv-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 826px;
    height: calc(100vh - 74px);
  }
}
.index-mv-message-ttl {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #00aca8;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.9;
}

.index-mv-message-ttl span {
  color: rgba(0, 171, 168, 0);
}

[lang=en] .index-mv-message-ttl {
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .index-mv-message-ttl {
    margin-bottom: 30px;
    font-size: 2.625rem;
  }
}
.index-mv-message-txt {
  color: #00aca8;
  letter-spacing: 0.24em;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.9;
}

@media screen and (min-width: 769px) {
  .index-mv-message-txt {
    font-size: 1.125rem;
  }
}
.index-mv-txt-contents {
  padding-bottom: 40px;
}

.index-mv-txt-contents .pc {
  display: none !important;
}

@media screen and (min-width: 769px) {
  .index-mv-txt-contents {
    margin-top: 0 !important;
    padding-bottom: 50px;
  }
  .index-mv-txt-contents .sp {
    display: none !important;
  }
  .index-mv-txt-contents .pc {
    display: initial !important;
  }
}
.index-mv-txt-contents-txt {
  margin-top: 5px;
  color: #00aca8;
  font-weight: 700;
  font-size: 14px;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .index-mv-txt-contents-txt {
    font-size: 16px;
    line-height: 2.2;
  }
}
.index-mv-list {
  margin: 0;
  padding: 0 0 80px;
  list-style-type: none;
  counter-reset: item;
}

.index-mv-list-contents {
  margin-top: 0;
}

.index-mv-list-item {
  position: relative;
}

@media screen and (min-width: 769px) {
  .index-mv-list-item::before {
    content: "0" counter(item);
    position: absolute;
    top: 0;
    left: 0;
    color: #00aca8;
    counter-increment: item;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
  }
}
.index-mv-list-item-ttl {
  position: relative;
  display: inline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(10%, #00aca8), color-stop(90%, #00aca8), color-stop(90%, transparent));
  background: linear-gradient(transparent 10%, #00aca8 10%, #00aca8 90%, transparent 90%);
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .index-mv-list-item-ttl {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 0 0 35px;
    padding: 0 10px;
    height: 33px;
    background: #00aca8;
    font-size: 1rem;
    line-height: 1.3;
  }
  .index-mv-list-item-ttl br {
    display: none;
  }
}
.index-mv-list-item-ttl::before {
  content: "0" counter(item);
  position: absolute;
  top: 0;
  top: 0;
  bottom: 0;
  left: 80vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  color: rgba(0, 172, 168, 0.2);
  counter-increment: item;
  font-weight: 400;
  font-size: 1rem;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 769px) {
  .index-mv-list-item-ttl::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    left: auto;
    display: block;
    width: 0;
    height: 0;
    border-width: 0 0 33px 15px;
    border-style: solid;
    border-color: transparent transparent #00aca8 transparent;
    counter-increment: none;
  }
  .index-mv-list-item-ttl::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    width: 0;
    height: 0;
    border-width: 33px 15px 0 0;
    border-style: solid;
    border-color: #00aca8 transparent transparent transparent;
  }
}
.index-mv-list-item-txt {
  margin: 0;
  padding: 20px 0 40px;
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .index-mv-list-item-txt {
    padding: 20px 0 40px 45px;
  }
}
.index-news {
  padding: 60px 0 90px;
}

@media screen and (min-width: 769px) {
  .index-news {
    padding: 5px 0 90px;
  }
}
.index-news .lmain-contents {
  margin-right: 0;
}

.index-news-btn {
  margin: auto;
  text-align: center;
}

.index-news-btn .lmore {
  margin-top: 60px;
}

.index-news-ttl {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 2.25rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.15;
}

[lang=en] .index-news-ttl {
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .index-news-ttl {
    margin: 0 0 30px;
    font-size: 3.5rem;
  }
}
.index-news-txt {
  margin-right: 4vw;
  margin-bottom: 20px;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .index-news-txt {
    margin-right: 200px;
    margin-bottom: 0;
  }
}
.index-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-news-list-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 4vw;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .index-news-list-btns {
    margin-right: 60px;
    margin-bottom: 40px;
  }
}
.index-news-list-btns .swiper-button-prev {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  background-image: url(../img/btn-prev.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

@media screen and (min-width: 769px) {
  .index-news-list-btns .swiper-button-prev {
    margin-right: 40px;
  }
}
.index-news-list-btns .swiper-button-next {
  width: 40px;
  height: 40px;
  background-image: url(../img/btn-next.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.index-news-list-btns .swiper-button-disabled {
  opacity: 0.5 !important;
  cursor: auto !important;
}

.index-news-list-item {
  margin: 0 30px 0 0;
  width: 240px;
}

@media screen and (min-width: 769px) {
  .index-news-list-item {
    margin: 0 60px 0 0;
  }
}
.index-news-list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.index-news-list-item-link:hover {
  text-decoration: none;
}

.index-news-list-item-link:hover img {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.index-news-list-item-title {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 8px 0 0 0;
  color: #222;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.625;
}

.index-news-list-item-category {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 10px 0 0 0;
}

.index-news-list-item-category.other span {
  background-color: #d86d6d;
}

.index-news-list-item-category.event span {
  background-color: #ffc00e;
}

.index-news-list-item-category span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.index-news-list-item-img {
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.index-news-list-item-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.index-news-list-item-date {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin: 10px 0 0 0;
  color: #999;
  font-size: 0.875rem;
}

.index-news .swiper-container {
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .index-news .swiper-container {
    margin-top: -40px;
    margin-left: 130px;
  }
}
.index-news .swiper-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.index-news .swiper-container-android .swiper-slide, .index-news .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
  -webkit-transform: translate3d(0px, 0, 0);
}

.index-news .swiper-slide {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  transition-property: -webkit-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.index-news .swiper-slide-invisible-blank {
  visibility: hidden;
}

.index-about {
  position: relative;
  padding: 60px 0;
  background-color: #00aca8;
  background-image: url(../img/bg-index-mv-nami03sp.png), url(../img/bg-index-mv-nami04sp.png);
  background-position: right 0 top 200px, left top 550px;
  background-size: 260px auto, 310px auto;
  background-repeat: no-repeat;
}

.index-about::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -180px;
  display: block;
  width: 340px;
  height: 333px;
  background-image: url(../img/bg-index-mv-nami05sp.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .index-about {
    padding: 90px 0 60px;
    background-image: url(../img/bg-index-mv-nami04.png), url(../img/bg-index-mv-nami05.png), url(../img/bg-index-mv-nami06.png);
    background-position: right top 10px, right top 550px, left top 470px;
    background-size: auto 480px, 500px auto, 260px auto;
    background-repeat: no-repeat;
  }
  .index-about::after {
    content: none;
  }
}
@media screen and (min-width: 850px) {
  .index-about {
    padding: 90px 0 120px;
  }
}
.index-about-ttl {
  margin: 0 0 20px;
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.15;
}

[lang=en] .index-about-ttl {
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .index-about-ttl {
    margin: 0 60px 0 0;
    font-size: 3.5rem;
  }
}
.index-about-ttl-wrap {
  margin-bottom: 40px;
}

@media screen and (min-width: 1100px) {
  .index-about-ttl-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.index-about-txt {
  color: #fff;
  line-height: 2;
}

@media screen and (min-width: 1100px) {
  .index-about-txt {
    margin: 0;
    width: calc(100% - 380px);
  }
}
.index-about-list {
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1100px) {
  .index-about-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 60px;
    width: 720px;
  }
  [lang=en] .index-about-list {
    width: 760px;
  }
}
.index-about-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  padding-top: 46px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  min-height: 220px;
  width: 220px;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 20px 20px rgba(0, 116, 114, 0.1);
          box-shadow: 0 20px 20px rgba(0, 116, 114, 0.1);
  text-align: center;
}

@media screen and (min-width: 1100px) {
  .index-about-list-item {
    margin-right: 0;
    margin-left: 0;
    padding: 64px 15px 20px;
    width: 300px;
    height: 300px;
  }
  [lang=en] .index-about-list-item {
    width: 300px;
  }
}
.index-about-list-item:nth-child(2) {
  margin-top: 30px;
}

@media screen and (min-width: 1100px) {
  .index-about-list-item:nth-child(2) {
    margin-top: 100px;
    margin-left: 0;
  }
}
.index-about-list-item:nth-child(3) {
  margin-top: 40px;
}

@media screen and (min-width: 1100px) {
  .index-about-list-item:nth-child(3) {
    margin-top: 200px;
  }
}
.index-about-list-item-img {
  text-align: center;
}

.index-about-list-item-img img {
  width: auto;
  height: 70px;
}

@media screen and (min-width: 1100px) {
  .index-about-list-item-img img {
    height: 90px;
  }
}
.index-about-list-item-txt {
  margin-top: 15px;
  font-size: 0.875rem;
  line-height: 1.75;
}

@media screen and (min-width: 1100px) {
  .index-about-list-item-txt {
    margin-top: 30px;
    font-size: 1rem;
  }
}
.index-concept {
  position: relative;
  padding: 40px 0 50px;
  background-position: left top 290px;
  background-size: 100% 180px;
  background-repeat: no-repeat;
}

.index-concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 400px;
  background: #00aca8;
}

@media screen and (min-width: 769px) {
  .index-concept::before {
    height: 400px;
  }
}
@media screen and (min-width: 850px) {
  .index-concept::before {
    content: none;
  }
}
@media screen and (min-width: 769px) {
  .index-concept {
    background-image: url(../img/bg-index-concept-top.png);
    background-position: left top 399px;
  }
}
@media screen and (min-width: 850px) {
  .index-concept {
    padding: 210px 0 50px;
    background-position: left top;
    background-size: 100% 360px;
  }
}
.index-concept-ttl {
  margin: 0 0 20px;
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.15;
}

[lang=en] .index-concept-ttl {
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .index-concept-ttl {
    color: #fff;
    text-align: left;
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 850px) {
  .index-concept-ttl {
    margin: 0 0 30px;
    padding-left: 60%;
    color: #222;
  }
}
.index-concept-txt {
  margin: 0 0 40px;
  color: #fff;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .index-concept-txt {
    color: #fff;
  }
}
@media screen and (min-width: 850px) {
  .index-concept-txt {
    margin: 0;
    padding-left: 60%;
    color: #222;
  }
}
.index-concept-img::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -4vw;
  z-index: -1;
  display: block;
  width: 800px;
  height: 300px;
  background-image: url(../img/bg-index-concept-top.png);
  background-position: left top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

@media screen and (min-width: 850px) {
  .index-concept-img::before {
    content: none;
  }
}
@media screen and (min-width: 850px) {
  .index-concept-img {
    position: absolute;
    top: -60px;
    left: 120px;
  }
}
.index-concept-img img {
  width: 310px;
  height: auto;
}

@media screen and (min-width: 769px) {
  .index-concept-img img {
    width: 468px;
  }
}
.index-focus_areas_partners {
  position: relative;
  padding: 70px 0 60px;
  background-image: url(../img/bg-index-mv-nami07.png);
  background-position: right bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .index-focus_areas_partners {
    padding: 60px 0 60px;
    background-position: right top;
    background-size: auto 630px;
  }
}
@media screen and (min-width: 850px) {
  .index-focus_areas_partners {
    padding: 180px 0 60px;
  }
}
@media screen and (min-width: 1100px) {
  .index-focus_areas_partners {
    padding: 180px 0 120px;
  }
}
.index-focus_areas_partners-ttl {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 2.25rem;
}

@media screen and (min-width: 769px) {
  .index-focus_areas_partners-ttl {
    margin: 0 0 30px;
    font-size: 3.5rem;
  }
}
.index-focus_areas_partners-txt {
  line-height: 2;
}

@media screen and (min-width: 1100px) {
  .index-focus_areas_partners-txt {
    margin-right: 500px;
  }
}
.index-focus_areas_partners-img {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  margin-left: -4vw;
  width: 100vw;
  pointer-events: none;
}

.index-focus_areas_partners-img.animated::after {
  bottom: 0;
}

.index-focus_areas_partners-img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .index-focus_areas_partners-img img {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .index-focus_areas_partners-img {
    margin-top: 0;
    margin-right: -40px;
    margin-left: auto;
    width: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .index-focus_areas_partners-img {
    position: absolute;
    right: 0;
    bottom: 180px;
    margin-right: 0;
  }
}
.index-focus_areas_partners-img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: -1;
  width: 90%;
  height: 90%;
  background-image: url(../img/bg-index-contents01.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 769px) {
  .index-focus_areas_partners-img::after {
    right: 0;
  }
}
.index-contents {
  position: relative;
  padding: 60px 0 60px;
  background-image: url(../img/bg-index-mv-nami08.png);
  background-position: right top;
  background-size: auto 630px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1100px) {
  .index-contents {
    padding: 165px 0;
  }
}
.index-contents-ttl {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
}

[lang=en] .index-contents-ttl {
  line-height: 1.5;
}

.index-contents-ttl br {
  display: none;
}

@media screen and (min-width: 769px) {
  .index-contents-ttl {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1100px) {
  .index-contents-ttl {
    margin: 0 0 30px 500px;
  }
  .index-contents-ttl br {
    display: block;
  }
}
.index-contents-txt {
  line-height: 2;
}

@media screen and (min-width: 1100px) {
  .index-contents-txt {
    margin-left: 500px;
  }
}
.index-contents-btn {
  padding: 0 8vw 0 4vw;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .index-contents-btn {
    padding: 0;
    text-align: left;
  }
}
@media screen and (min-width: 1100px) {
  .index-contents-btn {
    margin-left: 500px;
  }
}
.index-contents-img {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  margin-left: -4vw;
  width: 100vw;
  pointer-events: none;
}

.index-contents-img.animated::after {
  bottom: 0;
}

.index-contents-img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .index-contents-img img {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .index-contents-img {
    margin-top: 0;
    margin-right: auto;
    margin-left: -40px;
    width: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .index-contents-img {
    position: absolute;
    bottom: 200px;
    left: 0;
    margin-left: 0;
  }
}
.index-contents-img::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: -1;
  width: 90%;
  height: 90%;
  background-image: url(../img/bg-index-focus_areas_partners01.png);
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 1100px) {
  .index-contents-img::after {
    left: 0;
  }
}
.index-interview {
  position: relative;
  padding: 20px 0 60px;
  background-position: right bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .index-interview {
    padding: 20px 0 60px;
    background-position: right top;
    background-size: auto 630px;
  }
}
@media screen and (min-width: 850px) {
  .index-interview {
    padding: 20px 0 60px;
  }
}
@media screen and (min-width: 1100px) {
  .index-interview {
    padding: 20px 0 200px;
  }
}
.index-interview-ttl {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 2.25rem;
}

@media screen and (min-width: 769px) {
  .index-interview-ttl {
    margin: 0 0 30px;
    font-size: 3.5rem;
  }
}
.index-interview-txt {
  line-height: 2;
}

@media screen and (min-width: 1100px) {
  .index-interview-txt {
    margin-right: 500px;
  }
}
.index-interview-img {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  margin-left: -4vw;
  width: 100vw;
  pointer-events: none;
}

.index-interview-img.animated::after {
  bottom: 0;
}

.index-interview-img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .index-interview-img img {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .index-interview-img {
    margin-top: 0;
    margin-right: -40px;
    margin-left: auto;
    width: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .index-interview-img {
    position: absolute;
    right: 0;
    bottom: 180px;
    margin-right: 0;
  }
}
.index-interview-img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: -1;
  width: 90%;
  height: 90%;
  background-image: url(../img/bg-index-contents01.png);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 769px) {
  .index-interview-img::after {
    right: 0;
  }
}
.index-member {
  padding-bottom: 120px;
}

@media screen and (min-width: 1100px) {
  .index-member {
    padding-bottom: 200px;
  }
}
.index-member-ttl {
  margin: 0 0 20px;
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
}

@media screen and (min-width: 769px) {
  [lang=ja] .index-member-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    width: 310px;
    font-size: 3.5rem;
    line-height: 1;
  }
}
@media screen and (min-width: 1100px) {
  [lang=en] .index-member-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    width: 400px;
    font-size: 3.5rem;
    line-height: 1;
  }
}
.index-member-ttl-wrap {
  padding: 30px 4vw;
  background-color: #00aca8;
  background-image: url(../img/bg-index-mv-nami08sp.png);
  background-position: right bottom;
  background-size: 230px 140px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  [lang=ja] .index-member-ttl-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 60px;
    background-image: url(../img/bg-index-mv-nami09.png);
    background-position: right top 40px;
    background-size: 340px auto;
  }
}
@media screen and (min-width: 1100px) {
  [lang=en] .index-member-ttl-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 60px;
    background-image: url(../img/bg-index-mv-nami09.png);
    background-position: right top 40px;
    background-size: 340px auto;
  }
}
.index-member-txt {
  margin: 0;
  color: #fff;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  [lang=ja] .index-member-txt {
    width: calc(100% - 310px);
  }
}
@media screen and (min-width: 1100px) {
  [lang=en] .index-member-txt {
    width: calc(100% - 400px);
  }
}
.index-member-img {
  background: #00aca8;
}

.index-member-img img {
  width: 100%;
  height: auto;
}

.index-member-btn {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .index-member-btn .lmore {
    margin-top: -15px;
  }
}
.index-enic {
  position: relative;
  padding: 0 4vw;
  background-image: url(../img/bg-index-mv-nami10.png);
  background-position: right bottom;
  background-size: auto 190px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1100px) {
  .index-enic {
    padding: 130px 135px 130px 60px;
    width: 60%;
    background-color: #00aca8;
  }
}
.index-enic-ttl {
  margin: 0;
  color: #00aca8;
  font-weight: 700;
  font-size: 3.125rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 1100px) {
  .index-enic-ttl {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1100px) {
  .index-enic-ttl-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    margin-left: -75px;
    width: 350px;
    height: 350px;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0 20px 20px rgba(0, 116, 114, 0.1);
            box-shadow: 0 20px 20px rgba(0, 116, 114, 0.1);
  }
}
.index-enic-txt {
  line-height: 2;
}

@media screen and (min-width: 1100px) {
  .index-enic-txt {
    max-width: 430px;
    color: #fff;
  }
}
.index-enic-img img {
  width: 100%;
  height: auto;
}

.index-enic-btn {
  text-align: center;
}

@media screen and (min-width: 1100px) {
  .index-enic-btn {
    text-align: left;
  }
  .index-enic-btn .lmore.bg-g {
    border: 1px solid #fff;
    color: #fff;
  }
  .index-enic-btn .lmore.bg-g::after {
    border-bottom: 1px solid #fff;
  }
  .index-enic-btn .lmore.bg-g::before {
    border-bottom: 1px solid #fff;
  }
  .index-enic-btn .lmore.bg-g:hover, .index-enic-btn .lmore.bg-g:focus {
    border-color: #222;
    background-color: #fff;
    color: #222;
    text-decoration: none;
  }
  .index-enic-btn .lmore.bg-g:hover::after, .index-enic-btn .lmore.bg-g:hover::before, .index-enic-btn .lmore.bg-g:focus::after, .index-enic-btn .lmore.bg-g:focus::before {
    border-color: #222;
  }
}
/* ==================================================
	 レイアウト
 ================================================== */
html[data-scroll=false], body[data-scroll=false] {
  overflow: visible;
}

html[data-scroll=true], body[data-scroll=true] {
  overflow: hidden;
}

/* --------------------------------------------------
	ヘッダー
-------------------------------------------------- */
.lhead {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (min-width: 769px) {
  .lhead {
    display: none;
  }
}
.lci {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 4vw;
  width: 52%;
  height: 65px;
  font-size: 0.625rem;
}

@media screen and (min-width: 600px) {
  .lci {
    width: 52%;
  }
}
@media screen and (min-width: 769px) {
  .lci {
    margin: 0;
    width: auto;
  }
}
.lci img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .lci img {
    width: auto;
    height: 28px;
  }
}
/* --------------------------------------------------
	 ラッパー
 -------------------------------------------------- */
@media screen and (min-width: 769px) {
  .lwrap {
    display: -ms-grid;
    display: grid;
    grid-template: "side main" auto/240px 1fr;
    -ms-grid-columns: 240px 1fr;
    -ms-grid-rows: auto;
  }
}
/* --------------------------------------------------
	 サイド
 -------------------------------------------------- */
.lside {
  display: none;
}

@media screen and (min-width: 769px) {
  .lside {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-area: side;
    margin: auto;
    padding: 16px 15px 20px 30px;
    width: 240px;
    border-right: 1px solid #ddd;
    background-color: #fff;
  }
}
/* --------------------------------------------------
	 メイン
 -------------------------------------------------- */
.message-from-the-president_team-profile-topmessage .lmain {
  margin: 95px 0 0 0;
}

@media screen and (min-width: 769px) {
  .message-from-the-president_team-profile-topmessage .lmain {
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  .lmain {
    grid-area: main;
    min-height: 800px;
  }
}
@media screen and (min-width: 769px) {
  .lside {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }
  .lmain {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
  }
}
.eneos-accelerator-program-index .lmain-main {
  overflow-x: hidden;
}

/* パン屑
 -------------------------------------------------- */
.lbreadclumb {
  display: none;
}

@media screen and (min-width: 769px) {
  .lbreadclumb {
    display: block;
    margin: 25px 10px 0 10px;
  }
}
.lbreadclumb ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.lbreadclumb ol::after {
  content: "";
  display: block;
  clear: both;
}

.lbreadclumb li {
  float: left;
  font-size: 0.875rem;
  line-height: 1.5;
}

.lbreadclumb li:last-child {
  color: #999;
}

.lbreadclumb li:not(:last-child)::after {
  content: ">";
  margin: 0 4px;
}

.lbreadclumb a {
  color: #222;
}

/* ページタイトル
 -------------------------------------------------- */
.lpagetitle {
  margin: 65px 0 0 0;
  width: 100%;
  height: 200px;
  background-image: url(../img/bg-green.png);
  background-position: center center;
  background-size: cover;
  background-repeat: repeat;
}

@media screen and (min-width: 769px) {
  .lpagetitle {
    margin: 20px 0 0 0;
    height: 250px;
  }
}
.newsroom-index .lpagetitle {
  background-image: url(../img/bg-news-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .newsroom-index .lpagetitle {
    background-image: url(../img/bg-news-title.jpg);
  }
}
.interview-index .lpagetitle {
  background-image: url(../img/bg-interview-title-sp.png);
}

@media screen and (min-width: 769px) {
  .interview-index .lpagetitle {
    background-image: url(../img/bg-interview-title.png);
  }
}
.focus-areas_collaborative-partners-index .lpagetitle {
  background-image: url(../img/bg-focusareas-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .focus-areas_collaborative-partners-index .lpagetitle {
    background-image: url(../img/bg-focusareas-title.jpg);
  }
}
.major-projects-index .lpagetitle {
  background-image: url(../img/bg-contents-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-index .lpagetitle {
    background-image: url(../img/bg-contents-title.jpg);
  }
}
.major-projects-city .lpagetitle {
  background-image: url(../img/bg-contents-city-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-city .lpagetitle {
    background-image: url(../img/bg-contents-city-title.jpg);
  }
}
.major-projects-unenergy .lpagetitle {
  background-image: url(../img/bg-contents-unenergy-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-unenergy .lpagetitle {
    background-image: url(../img/bg-contents-unenergy-title.jpg);
  }
}
.major-projects-reene .lpagetitle {
  background-image: url(../img/bg-contents-reene-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-reene .lpagetitle {
    background-image: url(../img/bg-contents-reene-title.jpg);
  }
}
.major-projects-micro .lpagetitle {
  background-image: url(../img/bg-contents-micro-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-micro .lpagetitle {
    background-image: url(../img/bg-contents-micro-title.jpg);
  }
}
.major-projects-eco .lpagetitle {
  background-image: url(/common/img/bg-contents-eco-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-eco .lpagetitle {
    background-image: url(/common/img/bg-contents-eco-title.jpg);
  }
}
.major-projects-blue-carbon .lpagetitle {
  background-image: url(/common/img/bg-contents-blue-carbon-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .major-projects-blue-carbon .lpagetitle {
    background-image: url(/common/img/bg-contents-blue-carbon-title.jpg);
  }
}
.major-projects-drone .lpagetitle {
  background-image: url(/common/img/bg-contents-drone-title-sp.png);
}

@media screen and (min-width: 769px) {
  .major-projects-drone .lpagetitle {
    background-image: url(/common/img/bg-contents-drone-title.png);
  }
}
.message-from-the-president_team-profile-index .lpagetitle {
  background-image: url(../img/bg-member-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .message-from-the-president_team-profile-index .lpagetitle {
    background-image: url(../img/bg-member-title.jpg);
  }
}
.eneos-accelerator-program-index .lpagetitle {
  background-image: url(../img/bg-enic-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .eneos-accelerator-program-index .lpagetitle {
    background-image: url(../img/bg-enic-title.jpg);
  }
}
.corporate-profile-index .lpagetitle {
  background-image: url(../img/bg-company-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .corporate-profile-index .lpagetitle {
    background-image: url(../img/bg-company-title.jpg);
  }
}
.contact-index .lpagetitle {
  background-image: url(../img/bg-contact-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .contact-index .lpagetitle {
    background-image: url(../img/bg-contact-title.jpg);
  }
}
.thanks-index .lpagetitle {
  background-image: url(../img/bg-contact-title-sp.jpg);
}

@media screen and (min-width: 769px) {
  .thanks-index .lpagetitle {
    background-image: url(../img/bg-contact-title.jpg);
  }
}
.lpagetitle_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  height: 100%;
  color: #fff;
}

.lpagetitle_main {
  margin-right: 20px;
  margin-bottom: 15px;
  margin-left: 20px;
  letter-spacing: 0.01em;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 769px) {
  .lpagetitle_main {
    margin-right: 30px;
    margin-bottom: 30px;
    margin-left: 30px;
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1100px) {
  .lpagetitle_main {
    margin-right: 60px;
    margin-left: 60px;
  }
}
.lpagetitle_sub {
  display: block;
  letter-spacing: 0.02em;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 769px) {
  .lpagetitle_sub {
    display: inline-block;
    margin: 0 0 0 20px;
    font-size: 1.125rem;
  }
}
/* メインコンテンツ枠
 -------------------------------------------------- */
.lmain-contents {
  margin: 0 4vw;
}

@media screen and (min-width: 769px) {
  .lmain-contents {
    margin: 55px 30px 0;
  }
}
@media screen and (min-width: 1100px) {
  .lmain-contents {
    margin: 55px 60px 0;
  }
}
@media screen and (min-width: 769px) {
  .newsroom-detail .lmain-contents {
    min-height: 500px;
  }
}
.major-projects-index .lmain-contents {
  margin: 0 4vw;
}

.major-projects-index .lmain-contents {
  margin-top: 58px;
}

@media screen and (min-width: 600px) {
  .major-projects-index .lmain-contents {
    margin: 55px 30px 0;
  }
}
@media screen and (min-width: 1100px) {
  .major-projects-index .lmain-contents {
    margin: 90px 60px 0;
  }
}
/* メインcv
 -------------------------------------------------- */
.lmain-cv {
  margin: 198px 0 0 0;
  padding: 35px 20px 40px;
  background-image: url(../img/bg-cv.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1100px) {
  .lmain-cv {
    padding: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .lmain-cv .sp {
    display: none;
  }
}
.lmain-cv .wpc {
  display: none;
}

@media screen and (min-width: 1100px) {
  .lmain-cv .wpc {
    display: block;
  }
}
.lmain-cv + .lmain-foot {
  margin-top: 0;
}

.lmain-cv .lmain-contents {
  margin: 0;
}

@media screen and (min-width: 1100px) {
  .lmain-cv .lmain-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.lmain-cv-ttl {
  margin: 0 auto 30px;
  max-width: 497px;
}

.lmain-cv-ttl img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1100px) {
  .lmain-cv-ttl {
    margin: 0;
  }
}
.lmain-cv-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding-right: 20px;
  max-width: 280px;
  width: 100%;
  height: 52px;
  border-radius: 100px;
  background: #fff;
  color: inherit;
  text-align: center;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

[lang=en] .lmain-cv-btn {
  font-size: 14px !important;
}

@media screen and (min-width: 1100px) {
  .lmain-cv-btn {
    height: 64px;
    font-size: 16px;
  }
}
.lmain-cv-btn:hover {
  background: #00aca8;
  color: #fff;
  text-decoration: none;
}

.lmain-cv-btn:hover::before {
  border-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.lmain-cv-btn:hover::after {
  border-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 1100px) {
  .lmain-cv-btn {
    margin: 0;
  }
}
.lmain-cv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 8px;
  display: inline-block;
  margin: auto;
  width: 10px;
  height: 1px;
  border-bottom: 1px solid #222;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.lmain-cv-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: inline-block;
  margin: auto;
  width: 25px;
  height: 1px;
  border-bottom: 1px solid #222;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

/* メインフッターナビ
 -------------------------------------------------- */
.lmain-foot {
  margin: 198px 0 0 0;
  padding: 40px 0 60px;
  background-color: #00aca8;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .lmain-foot {
    padding: 60px 30px;
  }
}
@media screen and (min-width: 1100px) {
  .lmain-foot {
    padding: 60px 60px;
  }
}
.corporate-profile-index .lmain-foot {
  margin: 0;
}

@media screen and (min-width: 1100px) {
  .lmain-foot-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1100px) {
  .lmain-foot-contents-left {
    max-width: 480px;
    width: 100%;
  }
}
.lmain-foot-contents-right {
  margin-top: 40px;
  padding: 0;
  text-align: center;
}

@media screen and (min-width: 1100px) {
  .lmain-foot-contents-right {
    margin-top: 0;
    width: 320px;
  }
}
.lmain-foot-addr {
  display: block;
  grid-area: addr;
  margin: 30px 4vw 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 769px) {
  .lmain-foot-addr {
    margin: 0;
    padding-bottom: 30px;
  }
}
.lmain-foot-addr_title {
  margin: 0;
}

.lmain-foot-addr_title a {
  color: #fff;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.lmain-foot-addr_title a:hover, .lmain-foot-addr_title a:focus {
  color: #00605d;
  text-decoration: none;
}

.lmain-foot-addr_addr {
  margin: 0;
  padding: 16px 0 0;
  font-size: 0.875rem;
  line-height: 1.66667;
}

@media screen and (min-width: 769px) {
  .lmain-foot-addr_addr {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin: 20px 0 0 0;
    padding: 0;
    width: auto;
    font-size: 0.875rem;
    line-height: 1.57143;
  }
}
.lmain-foot-addr_addr + .lmain-foot-addr_addr {
  margin-top: 10px;
  padding: 0;
  font-size: 0.75rem;
}

@media screen and (min-width: 769px) {
  .lmain-foot-addr_addr + .lmain-foot-addr_addr {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 769px) {
  .lmain-foot-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
    padding-top: 40px;
  }
}
.lmain-foot-nav01 {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .lmain-foot-nav01 {
    margin-right: 40px;
  }
}
@media screen and (min-width: 769px) {
  .lmain-foot-nav01 li:not(:first-child) {
    margin: 15px 0 0 0;
  }
}
.lmain-foot-nav01 a {
  display: block;
  padding: 12px 0 12px 4vw;
  color: #fff;
  font-size: 1rem;
}

.lmain-foot-nav01 a:hover, .lmain-foot-nav01 a:focus {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .lmain-foot-nav01 a {
    display: inline;
    padding: 0;
  }
  .lmain-foot-nav01 a:hover, .lmain-foot-nav01 a:focus {
    text-decoration: underline;
  }
}
.lmain-foot-nav02 {
  grid-area: nav02;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .lmain-foot-nav02 {
    padding: 0 1vw;
  }
}
@media screen and (min-width: 769px) {
  .lmain-foot-nav02 li:not(:first-child) {
    margin: 15px 0 0 0;
  }
}
.lmain-foot-nav02 a {
  display: block;
  padding: 12px 0 12px 4vw;
  color: #fff;
  font-size: 1rem;
}

.lmain-foot-nav02 a:hover, .lmain-foot-nav02 a:focus {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .lmain-foot-nav02 a {
    display: inline;
    padding: 0;
  }
  .lmain-foot-nav02 a:hover, .lmain-foot-nav02 a:focus {
    text-decoration: underline;
  }
}
.lmain-foot-subnav {
  grid-area: subnav;
  margin: 20px 4vw 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .lmain-foot-subnav {
    margin: 0;
  }
}
.lmain-foot-subnav li {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .lmain-foot-subnav li {
    margin: 10px 0 0 0;
  }
}
.lmain-foot-subnav a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.75rem;
}

.lmain-foot-subnav a:hover, .lmain-foot-subnav a:focus {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .lmain-foot-subnav {
    -ms-flex-item-align: end;
        align-self: end;
    -ms-grid-column-align: right;
    -ms-grid-row-align: end;
    justify-self: right;
  }
}
_:-ms-lang(x)::-ms-backdrop, .lmain-foot-subnav {
  padding: 0 0 0 3vw;
}

/* --------------------------------------------------
	 フッター
 -------------------------------------------------- */
.lfoot {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 18px 40px;
  background-color: #000;
}

@media screen and (min-width: 769px) {
  .lfoot {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 28px 50px 34px;
  }
}
.leneosgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 769px) {
  .leneosgroup {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.leneosgroup_title {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .leneosgroup_title {
    margin: 0 26px 0 0;
  }
}
.leneosgroup_title img {
  width: 150px;
  height: auto;
}

.leneosgroup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

@media screen and (min-width: 769px) {
  .leneosgroup-list {
    display: block;
    margin-top: 0;
    padding-left: 24px;
    border-left: 1px solid #1a1a1a;
  }
}
.leneosgroup_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0 0 0 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .leneosgroup_link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
  .leneosgroup_link + .leneosgroup_link {
    margin-top: 10px;
  }
}
.leneosgroup_link li a {
  position: relative;
  display: block;
  padding-right: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.leneosgroup_link li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: -2px;
  margin: auto;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
}

.leneosgroup_link li a::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.leneosgroup_link li img {
  display: block;
}

.lcopyright {
  width: 100%;
  color: #cbcbcb;
  text-align: right;
  font-size: 0.75rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 769px) {
  .lcopyright {
    padding: 2px 0 0 0;
  }
}
/* --------------------------------------------------
	 Read more
 -------------------------------------------------- */
.lmore {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 34px 0 0 0;
  width: 160px;
  height: 40px;
  border: 1px solid #222;
  color: #222;
  font-size: 0.875rem;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.lmore::after {
  content: "";
  position: absolute;
  top: 19px;
  right: -25px;
  display: inline-block;
  width: 50px;
  height: 1px;
  border-bottom: 1px solid #222;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.lmore::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -26px;
  display: inline-block;
  width: 10px;
  height: 1px;
  border-bottom: 1px solid #222;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.lmore:hover, .lmore:focus {
  border-color: #00aca8;
  background-color: #00aca8;
  color: #fff;
  text-decoration: none;
}

.lmore:hover::after, .lmore:hover::before, .lmore:focus::after, .lmore:focus::before {
  border-color: #00dfda;
}

/* --------------------------------------------------
	 Read back
 -------------------------------------------------- */
.lback {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 34px 0 0 0;
  width: 180px;
  height: 40px;
  border: 1px solid #222;
  color: #222;
  font-size: 0.875rem;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.lback::after {
  content: "";
  position: absolute;
  top: 19px;
  left: -25px;
  display: inline-block;
  width: 50px;
  height: 1px;
  border-bottom: 1px solid #222;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.lback::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -26px;
  display: inline-block;
  width: 10px;
  height: 1px;
  border-bottom: 1px solid #222;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.lback:hover, .lback:focus {
  border-color: #00aca8;
  background-color: #00aca8;
  color: #fff;
  text-decoration: none;
}

.lback:hover::after, .lback:hover::before, .lback:focus::after, .lback:focus::before {
  border-color: #00dfda;
}

.lback.lback--topmessage {
  margin: 120px 0 0 25px;
  width: 260px;
}

.lback.lback--contents {
  margin: 90px 0 0 25px;
  width: 260px;
}

.lback.lback--newsdetail {
  margin: 90px 0 0 25px;
}

/* --------------------------------------------------
	 Contents / Relation Contents
 -------------------------------------------------- */
.lcontents-relation {
  margin: 120px 0 0 0;
  padding: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .lcontents-relation {
    margin: 120px auto 0;
    max-width: 720px;
  }
}
.lcontents-relation_title {
  font-size: 1.5rem;
}

@media screen and (min-width: 769px) {
  .lcontents-relation_title {
    font-size: 2.5rem;
  }
}
.lcontents-relation_title span {
  display: block;
  margin: 10px 0 0 0;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .lcontents-relation_title span {
    font-size: 1rem;
  }
}
.lcontents-relation_items {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -20px 0 0 0;
}

@media screen and (min-width: 600px) {
  .lcontents-relation_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -40px 0 0 0;
  }
}
.lcontents-relation_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .lcontents-relation_item {
    margin: 80px 0 0 0;
  }
}
.lcontents-relation_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.lcontents-relation_link:hover, .lcontents-relation_link:focus {
  text-decoration: none;
}

.lcontents-relation_link:hover img, .lcontents-relation_link:focus img {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.lcontents-relation_name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 15px 0 0 0;
  color: #222;
  font-size: 1rem;
  line-height: 1.625;
}

.lcontents-relation_img {
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  background-color: #000;
}

.lcontents-relation_img img {
  width: 100%;
  height: auto;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lcontents-relation_outline {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 15px 0 0 0;
  color: #999;
  font-size: 1rem;
  line-height: 1.71429;
}

/* ==================================================
	 ニュース
 ================================================== */
/* --------------------------------------------------
	 ニュースカテゴリ選択
 -------------------------------------------------- */
/* --------------------------------------------------
	 ニュース各投稿
 -------------------------------------------------- */
.pnews-post {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 600px) {
  .pnews-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -58px 0 0 -5.33%;
  }
}
@media screen and (min-width: 1100px) {
  .pnews-post {
    margin: -58px 0 0 -6.33%;
  }
}
.pnews-post_item {
  margin: 58px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pnews-post_item {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 58px 0 0 5.33%;
  }
}
@media screen and (min-width: 1100px) {
  .pnews-post_item {
    -ms-flex-preferred-size: 27%;
        flex-basis: 27%;
    margin: 58px 0 0 6.33%;
  }
}
.pnews-post_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pnews-post_link:hover, .pnews-post_link:focus {
  text-decoration: none;
}

.pnews-post_link:hover .pnews-post_img, .pnews-post_link:focus .pnews-post_img {
  background-color: #000;
}

.pnews-post_link:hover img, .pnews-post_link:focus img {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.pnews-post_title {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 8px 0 0 0;
  color: #222;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.625;
}

.pnews-post_category {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 10px 0 0 0;
}

.pnews-post_category.other span {
  background-color: #d86d6d;
}

.pnews-post_category.event span {
  background-color: #ffc00e;
}

.pnews-post_category span {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.pnews-post_img {
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.pnews-post_img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pnews-post_date {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin: 10px 0 0 0;
  color: #999;
  font-size: 0.875rem;
}

/* --------------------------------------------------
	 ページネーション
 -------------------------------------------------- */
.lpagination {
  margin: 88px 0 0 0;
  text-align: center;
}

.lpagination-title {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.lpagination-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  list-style: none;
}

.lpagination-num li {
  margin: 0 9px;
}

.lpagination-num li:first-child {
  margin: 0 15px 0 0;
}

.lpagination-num li:last-child {
  margin: 0 0 0 15px;
}

.lpagination-num li.current a {
  color: #00aca8;
  font-weight: 500;
  pointer-events: none;
}

.lpagination-num li:not(.current):not(:first-child):not(:last-child) a:hover, .lpagination-num li:not(.current):not(:first-child):not(:last-child) a:focus {
  color: #00aca8;
  font-weight: 500;
}

.lpagination-num li:nth-last-child(3), .lpagination-num li:nth-last-child(2) {
  display: none;
}

@media screen and (min-width: 769px) {
  .lpagination-num li:nth-last-child(3), .lpagination-num li:nth-last-child(2) {
    display: block;
  }
}
.lpagination-num a {
  display: inline-block;
  padding: 2px 6px;
  color: #222;
  font-size: 1.375rem;
  font-family: "Roboto", sans-serif;
}

.lpagination-num a:hover, .lpagination-num a:focus {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .lpagination-num a {
    font-size: 1.125rem;
  }
}
.lpagination-num img {
  width: 28px;
  height: 28px;
}

/* ==================================================
	 ニュース詳細
 ================================================== */
.pnewsdetail-inner {
  margin: 100px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-inner {
    margin: 60px auto 0;
    max-width: 720px;
  }
}
.pnewsdetail-category {
  margin: 0;
}

.pnewsdetail-category.other span {
  background-color: #d86d6d;
}

.pnewsdetail-category.event span {
  background-color: #ffc00e;
}

.pnewsdetail-category span {
  display: inline-block;
  margin: 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.pnewsdetail-title {
  margin: 15px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-title {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
.pnewsdetail-date {
  margin: 15px 0 0 0;
  color: #999;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-date {
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-content {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content {
    margin: 60px 0 0 0;
  }
}
.pnewsdetail-content p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pnewsdetail-content p.pnewsdetail-remark {
  font-size: 0.875rem;
  line-height: 2;
}

.pnewsdetail-content a {
  text-decoration: underline;
}

.pnewsdetail-content a:hover, .pnewsdetail-content a:focus {
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-content a[href^="tel:"] {
    color: #222;
    text-decoration: none;
    pointer-events: none;
  }
}
.pnewsdetail-content h2 {
  margin: 60px 0 0 0;
  font-size: 1rem;
}

.pnewsdetail-content h2 + p, .pnewsdetail-content h2 + h3, .pnewsdetail-content h2 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content h2 + p, .pnewsdetail-content h2 + h3, .pnewsdetail-content h2 + figure {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .pnewsdetail-content h2 {
    margin: 50px 0 0 0;
  }
  .pnewsdetail-content h2 + p, .pnewsdetail-content h2 + h3 {
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-content h3 {
  margin: 30px 0 0 0;
  font-weight: normal;
  font-size: 1rem;
  line-height: 2;
}

.pnewsdetail-content h3 + p, .pnewsdetail-content h3 + h4, .pnewsdetail-content h3 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content h3 + p, .pnewsdetail-content h3 + h4, .pnewsdetail-content h3 + figure {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .pnewsdetail-content h3 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pnewsdetail-content h4 {
  margin: 30px 0 0 0;
  font-weight: normal;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content h4 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pnewsdetail-content h4 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content h4 + figure {
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-content table {
  display: block;
  margin: 16px 0 0 0;
  width: 100%;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content table {
    display: table;
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-content tbody {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content tbody {
    display: table-row-group;
  }
}
.pnewsdetail-content tr {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content tr {
    display: table-row;
  }
}
.pnewsdetail-content th {
  display: block;
  padding: 15px;
  width: 100%;
  border-top: 1px solid #ddd;
  background-color: #f7f7f7;
  text-align: left;
  font-weight: normal;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content th {
    display: table-cell;
    width: 130px;
    border: 1px solid #ddd;
    background-color: transparent;
    line-height: 2.14286;
  }
}
.pnewsdetail-content td {
  display: block;
  padding: 15px;
  width: 100%;
  border-top: 1px solid #ddd;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pnewsdetail-content td {
    display: table-cell;
    width: auto;
    border: 1px solid #ddd;
    line-height: 2.14286;
  }
}
.pnewsdetail-content img {
  max-width: 100%;
  height: auto;
}

.pnewsdetail-content figure {
  margin: 60px 0 0 0;
  text-align: center;
}

.pnewsdetail-content figure.pnewsdetail-w200-sp {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-content figure.pnewsdetail-w200-sp {
    max-width: 100%;
  }
}
.pnewsdetail-content figure.pnewsdetail-w200-sp img {
  max-width: 100%;
}

.pnewsdetail-content figure.pnewsdetail-left {
  text-align: left;
}

.pnewsdetail-content figure.pnewsdetail-w100 img {
  max-width: 100%;
}

.pnewsdetail-content figure img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-content figure img {
    max-width: 50%;
  }
}
.pnewsdetail-content figure figcaption {
  margin: 14px 0 0 0;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* --------------------------------------------------
	 2カラム
 -------------------------------------------------- */
@media screen and (min-width: 600px) {
  .pnewsdetail-2col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.pnewsdetail-2col figure {
  -ms-flex-preferred-size: 46%;
      flex-basis: 46%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 40px 0 0 0;
}

.pnewsdetail-2col figure .pc {
  display: none;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-2col figure {
    margin: 20px 0 0 0;
  }
  .pnewsdetail-2col figure .sp {
    display: none;
  }
  .pnewsdetail-2col figure .pc {
    display: block;
  }
}
.pnewsdetail-2col figure:first-child {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-2col figure:first-child {
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-2col figure img {
  max-width: 100%;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-2col-b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.pnewsdetail-2col-b figure {
  -ms-flex-preferred-size: 48.6%;
      flex-basis: 48.6%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 40px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-2col-b figure {
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-2col-b figure:first-child {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pnewsdetail-2col-b figure:first-child {
    margin: 20px 0 0 0;
  }
}
.pnewsdetail-2col-b figure img {
  max-width: 100%;
}

/* --------------------------------------------------
	 2カラム
 -------------------------------------------------- */
@media screen and (min-width: 600px) {
  .logo-2col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.logo-2col figure {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 600px) {
  .logo-2col figure {
    margin: 20px 0 0 0;
  }
}
.logo-2col figure:first-child {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 600px) {
  .logo-2col figure:first-child {
    margin: 20px 40px 0 0;
  }
}
.logo-2col figure img {
  max-width: 100%;
  zoom: 0.5;
}

@media screen and (min-width: 600px) {
  .logo-2col figure img {
    width: auto;
    height: auto;
  }
}
/* ==================================================
	 Member
 ================================================== */
/* --------------------------------------------------
	 Top Message
 -------------------------------------------------- */
.pmember-top {
  margin: 60px 0 0 0;
}

.pmember-top_title {
  font-size: 2.875rem;
}

@media screen and (min-width: 769px) {
  .pmember-top_title {
    font-size: 3.5rem;
  }
}
.pmember-top_mov {
  position: relative;
  margin: 20px 0 0 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 769px) {
  .pmember-top_mov {
    margin: 32px 0 0 0;
  }
}
.pmember-top_mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pmember-top_position {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pmember-top_position {
    margin: 40px 0 0 0;
  }
}
.pmember-top_name {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .pmember-top_name {
    margin: 10px 0 0 0;
  }
}
.pmember-top_ruby {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 769px) {
  .pmember-top_ruby {
    font-size: 1.125rem;
  }
}
.pmember-top_outline {
  margin: 40px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pmember-top_outline {
    line-height: 2.14286;
  }
}
/* --------------------------------------------------
	 Member
 -------------------------------------------------- */
.pmember-title {
  margin: 120px 0 0 0;
  font-size: 2.875rem;
}

@media screen and (min-width: 769px) {
  .pmember-title {
    margin: 150px 0 0 0;
    font-size: 3.5rem;
  }
}
/* カテゴリータイトル
 -------------------------------------------------- */
.pmember-category {
  margin: 120px 0 0 0;
}

.pmember-category:nth-of-type(1) {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pmember-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 150px 0 0 0;
  }
}
.pmember-category span {
  color: #00aca8;
  font-weight: normal;
  font-size: 1.125rem;
}

@media screen and (min-width: 769px) {
  .pmember-category span {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    white-space: nowrap;
    font-size: 1.375rem;
  }
}
.pmember-category::after {
  content: "";
  display: block;
  margin: 10px 0 0 0;
  height: 1px;
  background-color: #00aca8;
}

@media screen and (min-width: 769px) {
  .pmember-category::after {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin: 0 0 0 20px;
  }
}
/* 各メンバー
 -------------------------------------------------- */
.pmember-members {
  margin: -20px 0 0 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 600px) {
  .pmember-members {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.pmember-members_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pmember-members_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46.5%;
            flex: 0 0 46.5%;
  }
}
.pmember-members_name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 15px 0 0 0;
  font-size: 1.375rem;
}

.pmember-members_ruby {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 0.875rem;
}

.pmember-members_img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0;
  min-height: 0;
}

.pmember-members_img img {
  width: 100%;
  height: auto;
}

.pmember-members_attribute {
  margin: 15px 0 0 0;
}

.pmember-members_attribute dt {
  color: #00aca8;
  font-weight: 500;
  font-size: 0.875rem;
}

.pmember-members_attribute dd {
  margin: 5px 0 0 0;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.pmember-members_attribute--1st {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.pmember-members_attribute--2nd {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

/* ==================================================
	 Top Message
 ================================================== */
.ptopmessage-title {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .ptopmessage-title {
    margin: 60px 0 0 0;
  }
}
.ptopmessage-title span {
  font-size: 1.5rem;
}

@media screen and (min-width: 769px) {
  .ptopmessage-title span {
    font-size: 2.5rem;
  }
}
.ptopmessage-headimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headimg {
    margin: 40px 0 0 0;
  }
}
.ptopmessage-headimg img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------
	 コンテンツ枠
 -------------------------------------------------- */
.ptopmessage-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .ptopmessage-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
/* --------------------------------------------------
	 ヘッドライン 白抜き文字
 -------------------------------------------------- */
.ptopmessage-headline01 {
  position: relative;
  top: -80px;
  display: block;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headline01 {
    top: -103px;
  }
}
.ptopmessage-headline01 span {
  display: inline-block;
  padding: 2px 5px;
  background-color: #222;
  color: #fff;
  font-size: 1.625rem;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headline01 span {
    display: inline-block;
    padding: 2px 10px;
    background-color: #222;
    color: #fff;
    font-size: 2.25rem;
  }
}
.ptopmessage-headline02 {
  position: relative;
  top: -88px;
  display: block;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headline02 {
    top: -107px;
  }
}
.ptopmessage-headline02 span {
  display: inline-block;
  padding: 2px 5px;
  background-color: #222;
  color: #fff;
  font-size: 1.625rem;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headline02 span {
    display: inline-block;
    padding: 2px 10px;
    background-color: #222;
    color: #fff;
    font-size: 2.25rem;
  }
}
.ptopmessage-headline03 {
  position: relative;
  top: -94px;
  display: block;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headline03 {
    top: -113px;
  }
}
.ptopmessage-headline03 span {
  display: inline-block;
  padding: 2px 5px;
  background-color: #222;
  color: #fff;
  font-size: 1.625rem;
}

@media screen and (min-width: 769px) {
  .ptopmessage-headline03 span {
    display: inline-block;
    padding: 2px 10px;
    background-color: #222;
    color: #fff;
    font-size: 2.25rem;
  }
}
/* --------------------------------------------------
	 名前 ポジション
 -------------------------------------------------- */
.ptopmessage-position {
  margin: -73px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
}

.ptopmessage-name {
  font-size: 1.625rem;
}

.ptopmessage-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-size: 1.125rem;
}

/* --------------------------------------------------
	 テキストコンテンツ
 -------------------------------------------------- */
.ptopmessage-contents p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .ptopmessage-contents p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.ptopmessage-contents_title {
  margin: 90px 0 0 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .ptopmessage-contents_title {
    margin: 120px 0 0 0;
  }
}
.ptopmessage-contents_title:nth-of-type(1) {
  margin: 60px 0 0 0;
}

.ptopmessage-contetns_copy {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

/* ==================================================
	 Contents
 ================================================== */
/* --------------------------------------------------
	 Activity Introduction
 -------------------------------------------------- */
.pcontents-title {
  margin: 70px 0 0 0;
  font-size: 2.875rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.17391;
}

@media screen and (min-width: 769px) {
  .pcontents-title {
    margin: 60px 0 0 0;
    font-size: 4.1875rem;
  }
}
/* --------------------------------------------------
	 Activity 右映像
 -------------------------------------------------- */
.pcontents-intro01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 30vw 0 0 0;
}

.pcontents-intro01:not(:nth-of-type(1)) {
  margin: 40vw 0 0 0;
}

@media screen and (min-width: 600px) {
  .pcontents-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pcontents-intro01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 9vw 0 0 0;
  }
  .pcontents-intro01:not(:nth-of-type(1)) {
    margin: 20vw 0 0 0;
  }
}
.pcontents-intro_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 120px;
}

@media screen and (min-width: 600px) {
  .pcontents-intro_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46.5%;
            flex: 0 0 46.5%;
    margin: 0 0 60px;
  }
}
.pcontents-intro01_txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 19vw 0 0 0;
}

@media screen and (min-width: 600px) {
  .pcontents-intro01_txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
}
.pcontents-intro_name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 15px 0 0 0;
  font-size: 1.375rem;
}

.pcontents-intro_item-label {
  display: inline-block;
  margin: 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.pcontents-intro_item_mov span {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
}

.pcontents-intro_item_mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.pcontents-intro_item_title {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontents-intro_item_outline {
  margin: 10px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.pcontents-label01 {
  display: inline-block;
  margin: 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.pcontents-intro01_title {
  margin: 18px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontents-intro01_outline {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 600px) {
  .pcontents-intro_item_title {
    margin: 18px 0 0 0;
    font-size: 1.375rem;
    line-height: 1.54545;
  }
  .pcontents-intro_item_outline {
    margin: 20px 0 0 0;
    font-size: 1rem;
    line-height: 2;
  }
  .pcontents-intro01_outline {
    margin: 24px 0 0 0;
  }
}
.pcontents-intro01_mov {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52%;
          flex: 0 0 52%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 600px) {
  .pcontents-intro01_mov {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pcontents-intro01_mov span {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
}

.pcontents-intro01_mov span::after {
  content: "";
  position: absolute;
  top: -22%;
  right: -4vw;
  display: inline-block;
  width: 85%;
  height: 142%;
  background-color: #00aca8;
}

@media screen and (min-width: 600px) {
  .pcontents-intro01_mov span::after {
    right: -60px;
  }
}
.pcontents-intro01_mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 599px) {
  .pcontents-intro_item .lmore {
    margin-top: 16px;
  }
}
/* --------------------------------------------------
	 Activity 左映像
 -------------------------------------------------- */
.pcontents-intro02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 40vw 0 0 0;
}

@media screen and (min-width: 600px) {
  .pcontents-intro02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 20vw 0 0 0;
  }
}
.pcontents-intro02_txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42%;
          flex: 0 0 42%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 19vw 0 0 0;
}

@media screen and (min-width: 600px) {
  .pcontents-intro02_txt {
    margin: 0;
  }
}
.pcontents-label02 {
  display: inline-block;
  margin: 0;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.pcontents-intro02_title {
  margin: 18px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontents-intro02_outline {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 600px) {
  .pcontents-intro02_outline {
    margin: 24px 0 0 0;
  }
}
.pcontents-intro02_mov {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52%;
          flex: 0 0 52%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.pcontents-intro02_mov span {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
}

.pcontents-intro02_mov span::after {
  content: "";
  position: absolute;
  top: -22%;
  left: -4vw;
  display: inline-block;
  width: 85%;
  height: 142%;
  background-color: #efefef;
}

@media screen and (min-width: 600px) {
  .pcontents-intro02_mov span::after {
    left: -60px;
  }
}
.pcontents-intro02_mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* ==================================================
	 Contents Activity Introduction 活動紹介 まちづくり構想
 ================================================== */
.pcontentscity-label {
  margin: 60px 0 0 0;
  font-size: 0.875rem;
}

.pcontentscity-label span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
}

.pcontentscity-subtitle {
  margin: 10px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

.pcontentscity-title {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .pcontentscity-title {
    font-size: 1.875rem;
    line-height: 1.53333;
  }
}
.pcontentscity-mainimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .pcontentscity-mainimg {
    margin: 40px 0 0 0;
  }
}
.pcontentscity-mainimg img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentscity-mainimg img:nth-child(1) {
    display: none;
  }
}
.pcontentscity-mainimg img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentscity-mainimg img:nth-child(2) {
    display: inline;
  }
}
/* --------------------------------------------------
	 イントロ記事コンテンツ
 -------------------------------------------------- */
.pcontentscity-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .pcontentscity-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
.pcontentscity-inner a:not([class]) {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentscity-inner a:not([class]):hover {
  text-decoration: none;
}

.pcontentscity-introduction {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .pcontentscity-introduction {
    margin: 40px 0 0 0;
  }
}
.pcontentscity-name {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .pcontentscity-name {
    margin: 10px 0 0 0;
  }
}
.pcontentscity-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.pcontentscity-roll {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentscity-roll {
    line-height: 2.14286;
  }
}
.pcontentscity-outline {
  margin: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

.pcontentscity-outline p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.pcontentscity-outline p:first-child {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentscity-outline p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pcontentscity-outline_img {
  margin: 40px auto 0;
}

@media screen and (min-width: 600px) {
  .pcontentscity-outline_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .pcontentscity-outline_img {
    margin: 60px 0 0 0;
  }
}
.pcontentscity-outline_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentscity-outline_img img:nth-child(1) {
    display: none;
  }
}
.pcontentscity-outline_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentscity-outline_img img:nth-child(2) {
    display: inline;
  }
}
/* --------------------------------------------------
	 コンパス / 活動事例
 -------------------------------------------------- */
.pcontentscity-contents {
  margin: 90px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentscity-contents {
    margin: 120px 0 0 0;
  }
}
.pcontentscity-contents p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentscity-contents p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pcontentscity-contents p + .pcontentscity-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentscity-contents p + .pcontentscity-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
.pcontentscity-contents_title {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: 1rem;
}

.pcontentscity-contetns_copy {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontentscity-contents_subtitle {
  margin: 30px 0 0 0;
  color: #00aca8;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pcontentscity-contents_subtitle {
    margin: 40px 0 0 0;
  }
}
.pcontentscity-contents_subtitle + p {
  margin: 15px 0 0 0;
}

.pcontentscity-contets_img {
  margin: 40px auto 0;
  max-width: 260px;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pcontentscity-contets_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .pcontentscity-contets_img {
    margin: 60px auto 0;
  }
}
.pcontentscity-contets_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentscity-contets_img img:nth-child(1) {
    display: none;
  }
}
.pcontentscity-contets_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentscity-contets_img img:nth-child(2) {
    display: inline;
  }
}
.pcontentscity-contets_img + .pcontentscity-contents_subtitle {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentscity-contets_img + .pcontentscity-contents_subtitle {
    margin: 90px 0 0 0;
  }
}
/* --------------------------------------------------
	 ムービー
 -------------------------------------------------- */
.pcontentscity-mov {
  position: relative;
  margin: 90px 0 0 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 769px) {
  .pcontentscity-mov {
    margin: 120px 0 0 0;
  }
}
.pcontentscity-mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

i .pcontentscity-relation {
  margin: 120px 0 0 0;
  padding: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  i .pcontentscity-relation {
    margin: 120px auto 0;
    max-width: 720px;
  }
}
.pcontentscity-relation_title {
  font-size: 1.5rem;
}

@media screen and (min-width: 769px) {
  .pcontentscity-relation_title {
    font-size: 2.5rem;
  }
}
.pcontentscity-relation_title span {
  display: block;
  margin: 10px 0 0 0;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pcontentscity-relation_title span {
    font-size: 1rem;
  }
}
.pcontentscity-relation_items {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -20px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pcontentscity-relation_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -40px 0 0 0;
  }
}
.pcontentscity-relation_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pcontentscity-relation_item {
    margin: 80px 0 0 0;
  }
}
.pcontentscity-relation_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pcontentscity-relation_link:hover, .pcontentscity-relation_link:focus {
  text-decoration: none;
}

.pcontentscity-relation_link:hover img, .pcontentscity-relation_link:focus img {
  opacity: 0.6;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.pcontentscity-relation_name {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 15px 0 0 0;
  color: #222;
  font-size: 1rem;
  line-height: 1.625;
}

.pcontentscity-relation_img {
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  background-color: #000;
}

.pcontentscity-relation_img img {
  width: 100%;
  height: auto;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pcontentscity-relation_outline {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 15px 0 0 0;
  color: #999;
  font-size: 1rem;
  line-height: 1.71429;
}

/* ==================================================
	 Contents Activity Introduction 活動紹介 未活用エネルギーの有効利用に向けた取り組み
 ================================================== */
.pconunenergy-label {
  margin: 60px 0 0 0;
  font-size: 0.875rem;
}

.pconunenergy-label span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
}

.pconunenergy-subtitle {
  margin: 10px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

.pconunenergy-title {
  margin: 8px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .pconunenergy-title {
    font-size: 1.875rem;
    line-height: 1.53333;
  }
}
.pconunenergy-mainimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .pconunenergy-mainimg {
    margin: 40px 0 0 0;
  }
}
.pconunenergy-mainimg img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pconunenergy-mainimg img:nth-child(1) {
    display: none;
  }
}
.pconunenergy-mainimg img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pconunenergy-mainimg img:nth-child(2) {
    display: inline;
  }
}
/* --------------------------------------------------
	 イントロ記事コンテンツ
 -------------------------------------------------- */
.pconunenergy-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .pconunenergy-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
.pconunenergy-inner a:not([class]) {
  color: #008fe8;
  text-decoration: underline;
}

.pconunenergy-inner a:not([class]):hover {
  text-decoration: none;
}

.pconunenergy-introduction {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .pconunenergy-introduction {
    margin: 40px 0 0 0;
  }
}
.pconunenergy-name {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .pconunenergy-name {
    margin: 10px 0 0 0;
  }
}
.pconunenergy-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.pconunenergy-roll {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pconunenergy-roll {
    line-height: 2.14286;
  }
}
.pconunenergy-outline {
  margin: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

.pconunenergy-outline p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.pconunenergy-outline p:first-child {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pconunenergy-outline p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
/* --------------------------------------------------
	 コンパス / ENEOS×未活用エネルギー 活動事例 / Eサーモジェンテックとの協業
 -------------------------------------------------- */
.pconunenergy-contents {
  margin: 90px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pconunenergy-contents {
    margin: 120px 0 0 0;
  }
}
.pconunenergy-contents p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pconunenergy-contents p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pconunenergy-contents p + .pconunenergy-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pconunenergy-contents p + .pconunenergy-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
.pconunenergy-contents_title {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: 1rem;
}

.pconunenergy-contetns_copy {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pconunenergy-contents_subtitle {
  margin: 30px 0 0 0;
  color: #00aca8;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pconunenergy-contents_subtitle {
    margin: 40px 0 0 0;
  }
}
.pconunenergy-contents_subtitle + p {
  margin: 15px 0 0 0;
}

.pconunenergy-contets_img {
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pconunenergy-contets_img {
    max-width: none;
    width: 100%;
  }
  .pconunenergy-contets_imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pconunenergy-contets_imgs .pconunenergy-contets_img {
    width: 48%;
  }
}
@media screen and (min-width: 769px) {
  .pconunenergy-contets_img {
    margin: 60px auto 0;
  }
}
.pconunenergy-contets_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pconunenergy-contets_img img:nth-child(1) {
    display: none;
  }
}
.pconunenergy-contets_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pconunenergy-contets_img img:nth-child(2) {
    display: inline;
  }
}
.pconunenergy-contets_img figcaption {
  margin: 20px 0 0 0;
  font-size: 0.875rem;
  line-height: 1.66667;
}

.pconunenergy-contets_img + .pconunenergy-contents_subtitle {
  margin: 60px 0 0 0;
}

.pconunenergy-contets_img + p {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pconunenergy-contets_img + p {
    margin: 60px 0 0 0;
  }
}
.pconunenergy-contets_img--fig4 {
  max-width: 250px;
}

@media screen and (min-width: 600px) {
  .pconunenergy-contets_img--fig4 {
    max-width: 400px;
  }
}
.pconunenergy-contets_img--fig5 {
  max-width: 250px;
}

@media screen and (min-width: 600px) {
  .pconunenergy-contets_img--fig5 {
    max-width: 415px;
  }
}
/* --------------------------------------------------
	 ムービー
 -------------------------------------------------- */
.pconunenergy-mov {
  position: relative;
  margin: 90px 0 0 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 769px) {
  .pconunenergy-mov {
    margin: 120px 0 0 0;
  }
}
.pconunenergy-mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.kanren-box {
  margin-top: 60px;
  padding: 0 30px 30px;
  border: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .kanren-box {
    margin-top: 120px;
  }
  .interview-detail-body + .kanren-box {
    margin-top: 100px;
  }
}
.kanren-box h2 {
  display: inline-block;
  margin: 0;
  padding: 0 10px;
  background: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  -webkit-transform: translate(-10px, -50%);
          transform: translate(-10px, -50%);
}

.kanren-box h3 {
  font-weight: normal;
  font-size: 16px;
}

.kanren-box h3:not(:first-of-type) {
  margin-top: 30px;
}

.kanren-box a {
  color: #008fe8;
  text-decoration: underline;
}

.kanren-box a:hover {
  text-decoration: none;
}

.kanren-box p {
  line-height: 2.14;
}

.kanren-box p + h4 {
  margin-top: 60px;
}

/* ==================================================
	 Contents Activity Introduction 活動紹介　再エネ導入の促進（太陽光×農業×∞）
 ================================================== */
.pcontentsreene-label {
  margin: 60px 0 0 0;
  font-size: 0.875rem;
}

.pcontentsreene-label span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
}

.pcontentsreene-subtitle {
  margin: 10px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

.pcontentsreene-title {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-title {
    font-size: 1.875rem;
    line-height: 1.53333;
  }
}
.pcontentsreene-mainimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-mainimg {
    margin: 40px 0 0 0;
  }
}
.pcontentsreene-mainimg img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-mainimg img:nth-child(1) {
    display: none;
  }
}
.pcontentsreene-mainimg img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-mainimg img:nth-child(2) {
    display: inline;
  }
}
/* --------------------------------------------------
	 イントロ記事コンテンツ
 -------------------------------------------------- */
.pcontentsreene-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
.pcontentsreene-inner a:not([class]) {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentsreene-inner a:not([class]):hover {
  text-decoration: none;
}

.pcontentsreene-introduction {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-introduction {
    margin: 40px 0 0 0;
  }
}
.pcontentsreene-name {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-name {
    margin: 10px 0 0 0;
  }
}
.pcontentsreene-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.pcontentsreene-roll {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-roll {
    line-height: 2.14286;
  }
}
.pcontentsreene-outline {
  margin: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

.pcontentsreene-outline p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.pcontentsreene-outline p:first-child {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-outline p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pcontentsreene-outline_img {
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-outline_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .pcontentsreene-outline_img {
    margin: 60px 0 0 0;
  }
}
.pcontentsreene-outline_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-outline_img img:nth-child(1) {
    display: none;
  }
}
.pcontentsreene-outline_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-outline_img img:nth-child(2) {
    display: inline;
  }
}
.pcontentsreene-outline_img figcaption {
  margin: 20px 0 0 0;
  font-size: 0.875rem;
}

/* --------------------------------------------------
	 コンパス / ENEOS×営農型太陽光発電 活動事例 / 太陽光×農業×∞
 -------------------------------------------------- */
.pcontentsreene-contents {
  margin: 90px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-contents {
    margin: 120px 0 0 0;
  }
}
.pcontentsreene-contents p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-contents p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pcontentsreene-contents p + .pcontentsreene-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-contents p + .pcontentsreene-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
.pcontentsreene-contents a {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentsreene-contents a:hover, .pcontentsreene-contents a:focus {
  text-decoration: none;
}

.pcontentsreene-contents_title {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: 1rem;
}

.pcontentsreene-contetns_copy {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontentsreene-contents_subtitle {
  margin: 30px 0 0 0;
  color: #00aca8;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-contents_subtitle {
    margin: 40px 0 0 0;
  }
}
.pcontentsreene-contents_subtitle + p {
  margin: 15px 0 0 0;
}

.pcontentsreene-contets_img {
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-contets_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .pcontentsreene-contets_img {
    margin: 60px auto 0;
  }
}
.pcontentsreene-contets_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-contets_img img:nth-child(1) {
    display: none;
  }
}
.pcontentsreene-contets_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentsreene-contets_img img:nth-child(2) {
    display: inline;
  }
}
.pcontentsreene-contets_img figcaption {
  margin: 20px 0 0 0;
  font-size: 0.875rem;
  line-height: 1.66667;
}

.pcontentsreene-contets_img + .pcontentsreene-contents_subtitle {
  margin: 60px 0 0 0;
}

.pcontentsreene-contets_img + p {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-contets_img + p {
    margin: 60px 0 0 0;
  }
}
/* --------------------------------------------------
	 ムービー
 -------------------------------------------------- */
.pcontentsreene-mov {
  position: relative;
  margin: 90px 0 0 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 769px) {
  .pcontentsreene-mov {
    margin: 120px 0 0 0;
  }
}
.pcontentsreene-mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==================================================
	 Contents Activity Introduction 活動紹介　マイクロモビリティステーション
 ================================================== */
.pcontentsmicro-label {
  margin: 60px 0 0 0;
  font-size: 0.875rem;
}

.pcontentsmicro-label span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
}

.pcontentsmicro-subtitle {
  margin: 10px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

.pcontentsmicro-title {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-title {
    font-size: 1.875rem;
    line-height: 1.53333;
  }
}
.pcontentsmicro-mainimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-mainimg {
    margin: 40px 0 0 0;
  }
}
.pcontentsmicro-mainimg img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentsmicro-mainimg img:nth-child(1) {
    display: none;
  }
}
.pcontentsmicro-mainimg img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentsmicro-mainimg img:nth-child(2) {
    display: inline;
  }
}
/* --------------------------------------------------
	 イントロ記事コンテンツ
 -------------------------------------------------- */
.pcontentsmicro-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
.pcontentsmicro-inner a:not([class]) {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentsmicro-inner a:not([class]):hover {
  text-decoration: none;
}

.pcontentsmicro-introduction {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-introduction {
    margin: 40px 0 0 0;
  }
}
.pcontentsmicro-name {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-name {
    margin: 10px 0 0 0;
  }
}
.pcontentsmicro-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.pcontentsmicro-roll {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-roll {
    line-height: 2.14286;
  }
}
.pcontentsmicro-outline {
  margin: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

.pcontentsmicro-outline p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.pcontentsmicro-outline p:first-child {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-outline p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
/* --------------------------------------------------
	 コンパス / ENEOS×次世代モビリティ社会 活動事例 / OpenStreet社との協業
 -------------------------------------------------- */
.pcontentsmicro-contents {
  margin: 90px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents {
    margin: 120px 0 0 0;
  }
}
.pcontentsmicro-contents p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pcontentsmicro-contents p + .pcontentsmicro-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents p + .pcontentsmicro-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
.pcontentsmicro-contents a {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentsmicro-contents a:hover, .pcontentsmicro-contents a:focus {
  text-decoration: none;
}

.pcontentsmicro-contents_title {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: 1rem;
}

.pcontentsmicro-contetns_copy {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontentsmicro-contents_subtitle {
  margin: 30px 0 0 0;
  color: #00aca8;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents_subtitle {
    margin: 40px 0 0 0;
  }
}
.pcontentsmicro-contents_subtitle + p {
  margin: 15px 0 0 0;
}

.pcontentsmicro-contets_img {
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pcontentsmicro-contets_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .pcontentsmicro-contets_img {
    margin: 60px auto 0;
  }
}
.pcontentsmicro-contets_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentsmicro-contets_img img:nth-child(1) {
    display: none;
  }
}
.pcontentsmicro-contets_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentsmicro-contets_img img:nth-child(2) {
    display: inline;
  }
}
.pcontentsmicro-contets_img figcaption {
  margin: 20px 0 0 0;
  font-size: 0.875rem;
  line-height: 1.66667;
}

.pcontentsmicro-contets_img + .pcontentsmicro-contents_subtitle {
  margin: 60px 0 0 0;
}

.pcontentsmicro-contets_img + p {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contets_img + p {
    margin: 60px 0 0 0;
  }
}
.pcontentsmicro-contents_em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px 0 0 0;
  padding: 20px;
  border: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents_em {
    padding: 30px 30px 40px;
  }
}
.pcontentsmicro-contents_em h4 {
  margin: 0;
  color: #00aca8;
  font-size: 1rem;
}

.pcontentsmicro-contents_em ul {
  margin: 6px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents_em ul {
    margin: 12px 0 0 0;
  }
}
.pcontentsmicro-contents_em li {
  margin: 14px 0 0 0;
  font-size: 1rem;
  line-height: 1.57143;
}

.pcontentsmicro-contents_em + .pcontentsmicro-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-contents_em + .pcontentsmicro-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
/* --------------------------------------------------
	 ムービー
 -------------------------------------------------- */
.pcontentsmicro-mov {
  position: relative;
  margin: 90px 0 0 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 769px) {
  .pcontentsmicro-mov {
    margin: 120px 0 0 0;
  }
}
.pcontentsmicro-mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==================================================
	 Contents Activity Introduction 活動紹介　プラスチックリサイクルのエコシステム実現
 ================================================== */
.pcontentseco-label {
  margin: 60px 0 0 0;
  font-size: 0.875rem;
}

.pcontentseco-label span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
}

.pcontentseco-subtitle {
  margin: 10px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

.pcontentseco-title {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .pcontentseco-title {
    font-size: 1.875rem;
    line-height: 1.53333;
  }
}
.pcontentseco-mainimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-mainimg {
    margin: 40px 0 0 0;
  }
}
.pcontentseco-mainimg img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentseco-mainimg img:nth-child(1) {
    display: none;
  }
}
.pcontentseco-mainimg img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentseco-mainimg img:nth-child(2) {
    display: inline;
  }
}
/* --------------------------------------------------
	 イントロ記事コンテンツ
 -------------------------------------------------- */
.pcontentseco-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
.pcontentseco-inner a:not([class]) {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentseco-inner a:not([class]):hover {
  text-decoration: none;
}

.pcontentseco-introduction {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .pcontentseco-introduction {
    margin: 40px 0 0 0;
  }
}
.pcontentseco-name {
  margin: 5px 0 0 0;
  font-weight: 500;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .pcontentseco-name {
    margin: 10px 0 0 0;
  }
}
.pcontentseco-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.pcontentseco-roll {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentseco-roll {
    line-height: 2.14286;
  }
}
.pcontentseco-outline {
  margin: 60px 0 0 0;
  border-top: 1px solid #ddd;
}

.pcontentseco-outline p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.pcontentseco-outline p:first-child {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-outline p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
/* --------------------------------------------------
	 コンパス / ENEOS×プラスチック 活動事例 / 油化技術を核とした持続可能な廃プラリサイクルモデル構築
 -------------------------------------------------- */
.pcontentseco-contents {
  margin: 90px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents {
    margin: 120px 0 0 0;
  }
}
.pcontentseco-contents p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.pcontentseco-contents p + .pcontentseco-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents p + .pcontentseco-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
.pcontentseco-contents a {
  color: #008fe8;
  text-decoration: underline;
}

.pcontentseco-contents a:hover, .pcontentseco-contents a:focus {
  text-decoration: none;
}

.pcontentseco-contents_title {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: 1rem;
}

.pcontentseco-contetns_copy {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

.pcontentseco-contents_subtitle {
  margin: 30px 0 0 0;
  color: #00aca8;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents_subtitle {
    margin: 40px 0 0 0;
  }
}
.pcontentseco-contents_subtitle + p {
  margin: 15px 0 0 0;
}

.pcontentseco-contets_img {
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .pcontentseco-contets_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .pcontentseco-contets_img {
    margin: 60px auto 0;
  }
}
.pcontentseco-contets_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .pcontentseco-contets_img img:nth-child(1) {
    display: none;
  }
}
.pcontentseco-contets_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .pcontentseco-contets_img img:nth-child(2) {
    display: inline;
  }
}
.pcontentseco-contets_img figcaption {
  margin: 20px 0 0 0;
  font-size: 0.875rem;
  line-height: 1.66667;
}

.pcontentseco-contets_img + .pcontentseco-contents_subtitle {
  margin: 60px 0 0 0;
}

.pcontentseco-contets_img + p {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contets_img + p {
    margin: 60px 0 0 0;
  }
}
.pcontentseco-contents_em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 60px 0 0 0;
  padding: 20px;
  border: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents_em {
    padding: 30px 30px 40px;
  }
}
.pcontentseco-contents_em h4 {
  margin: 0;
  color: #00aca8;
  font-size: 1rem;
}

.pcontentseco-contents_em ul {
  margin: 6px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents_em ul {
    margin: 12px 0 0 0;
  }
}
.pcontentseco-contents_em li {
  margin: 14px 0 0 0;
  font-size: 1rem;
  line-height: 1.57143;
}

.pcontentseco-contents_em + .pcontentseco-contents_subtitle {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pcontentseco-contents_em + .pcontentseco-contents_subtitle {
    margin: 60px 0 0 0;
  }
}
/* --------------------------------------------------
	 ムービー
 -------------------------------------------------- */
.pcontentseco-mov {
  position: relative;
  margin: 90px 0 0 0;
  padding-bottom: 56.25%;
}

@media screen and (min-width: 769px) {
  .pcontentseco-mov {
    margin: 120px 0 0 0;
  }
}
.pcontentseco-mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==================================================
	 ENIC
 ================================================== */
/* --------------------------------------------------
		ナビ
	-------------------------------------------------- */
.enic-nav p {
  display: none;
}

.enic-nav.bottom-nav {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .enic-nav.bottom-nav {
    padding-top: 60px;
    border-top: none;
  }
}
.enic-nav-list {
  padding: 0;
  max-width: 240px;
}

@media screen and (min-width: 769px) {
  .enic-nav-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 14px;
    max-width: none;
    width: 100%;
    border-bottom: 1px solid #00aca8;
  }
}
.enic-nav-list-item {
  position: relative;
  margin-top: 25px;
  padding: 0;
  list-style-type: none;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .enic-nav-list-item {
    position: static;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-top: 0;
    text-align: center;
  }
  .enic-nav-list-item:not(:first-child) {
    border-left: 1px solid #ddd;
  }
}
.enic-nav-list-item.current .enic-sub-nav-list {
  display: block;
}

@media screen and (min-width: 769px) {
  .enic-nav-list-item.current .enic-sub-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.enic-nav-list-item.current > a {
  border-bottom: 2px solid #00aca8;
  color: #555;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .enic-nav-list-item.current > a {
    border-bottom: none;
  }
  .enic-nav-list-item.current > a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -14px;
    left: 0;
    display: block;
    margin: auto;
    width: 0;
    height: 0;
    border-width: 0 5px 6px 5px;
    border-style: solid;
    border-color: transparent transparent #00aca8 transparent;
  }
}
.enic-nav-list-item.current > a::after {
  content: none;
}

.enic-nav-list-item > a {
  display: inline-block;
  padding-bottom: 2px;
  color: #555;
}

.enic-nav-list-item > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 30px;
  height: 6px;
  background-image: url(../img/ico-arrow-right2.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .enic-nav-list-item > a::after {
    content: none;
  }
}
@media screen and (min-width: 769px) {
  .enic-nav-list-item > a {
    position: relative;
    padding: 0;
  }
  .enic-nav-list-item > a:hover {
    color: #00605d;
  }
}
.enic-sub-nav-list {
  display: none;
  padding: 8px 0 0 20px;
}

@media screen and (min-width: 769px) {
  .enic-sub-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    padding: 0;
    width: 100%;
  }
}
.enic-sub-nav-list-item {
  position: relative;
  padding: 7px 0;
  list-style-type: none;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .enic-sub-nav-list-item {
    padding: 0 30px 0 0;
    font-size: 12px;
  }
  .enic-sub-nav-list-item:not(:first-child) {
    padding-left: 30px;
    border-left: 1px solid #ddd;
  }
}
.enic-sub-nav-list-item.current > a {
  color: #00aca8;
}

.enic-sub-nav-list-item.current > a::after {
  content: none;
}

@media screen and (min-width: 769px) {
  .enic-sub-nav-list-item.current > a {
    pointer-events: none;
  }
}
.enic-sub-nav-list-item a {
  display: inline-block;
  color: inherit;
}

.enic-sub-nav-list-item a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 30px;
  height: 6px;
  background-image: url(../img/ico-arrow-right2.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .enic-sub-nav-list-item a::after {
    content: none;
  }
}
@media screen and (min-width: 769px) {
  .enic-sub-nav-list-item a {
    position: relative;
    display: block;
    padding: 0;
  }
}
.enic-theme-nav.top {
  margin-top: 20px;
}

.enic-theme-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 !important;
  padding: 0 !important;
}

.enic-theme-nav-list-item {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-top: 14.8076923077%;
  width: calc((100% + 10px) / 2 - 10px);
  background-size: cover;
  background-repeat: no-repeat;
  list-style: none;
}
.enic-theme-nav-list-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

@media screen and (min-width: 600px) {
  .enic-theme-nav-list-item {
    width: calc((100% + 10px) / 4 - 10px);
  }
}
.enic-theme-nav-list-item a::before, .enic-theme-nav-list-item span::before {
  z-index: 1;
  background: #00aca8;
}

.enic-theme-nav-list-item a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 5px 20px 5px 5px;
  padding-right: 30px;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 600px) {
  .enic-theme-nav-list-item a {
    padding: 7px 30px 7px 5px;
  }
}
.enic-theme-nav-list-item a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.enic-theme-nav-list-item a::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 8px;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.enic-theme-nav.top .enic-theme-nav-list-item a::after {
  right: 8px;
  bottom: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 600px) {
  .enic-theme-nav-list-item a::after {
    right: 10px;
    bottom: 12px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .enic-theme-nav.top .enic-theme-nav-list-item a::after {
    right: 12px;
    bottom: 10px;
  }
}
.enic-theme-nav-list-item a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 600px) {
  .enic-theme-nav-list-item a::before {
    width: 30px;
    height: 30px;
  }
}
.enic-theme-nav-list-item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 5px 20px 5px 5px;
  padding-right: 30px;
  height: 50px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 600px) {
  .enic-theme-nav-list-item span {
    padding: 7px 30px 7px 5px;
    height: 144px;
  }
}
.enic-partners_lead {
  margin-bottom: 20px;
  line-height: 2;
}

@media screen and (min-width: 600px) {
  .enic-partners_lead {
    margin-top: -20px;
  }
}
.enic-partners_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 600px) {
  .enic-partners_items {
    margin: -20px 0 0 -5.33%;
  }
}
.enic-partners_item {
  margin: 20px 0 0 0;
  width: 100%;
}

.enic-partners_item:not(:nth-of-type(1)) {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .enic-partners_item {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 60px 0 0 5.33%;
    width: 100%;
  }
  .enic-partners_item:not(:nth-of-type(1)) {
    margin: 60px 0 0 5.33%;
  }
}
.enic-partners_link {
  display: block;
}

.enic-partners_link:hover, .enic-partners_link:focus {
  text-decoration: none;
}

.enic-partners_link:hover .pfocusareas-partners_img::after, .enic-partners_link:focus .pfocusareas-partners_img::after {
  background-color: rgba(0, 0, 0, 0.1);
}

.enic-partners_link:hover img, .enic-partners_link:focus img {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.enic-partners_name {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 10px 0 0 0;
  color: #222;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.enic-partners_name::after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  margin: 0 0 0 10px;
  width: 10px;
  height: 10px;
  background-image: url(/common/img/ico-window-open.svg);
  background-size: cover;
}

@media screen and (min-width: 600px) {
  .enic-partners_name {
    margin: 12px 0 0 0;
  }
}
.enic-partners_category {
  display: inline-block;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 20px 0 0 0;
  padding: 5px 10px;
  border-radius: 3px;
  background: #00aca8;
  color: #fff;
  font-size: 0.75rem;
}

@media screen and (min-width: 600px) {
  .enic-partners_category {
    margin: 15px 0 0 0;
  }
}
.enic-partners_outline {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin: 15px 0 0 0;
  color: #999;
  font-size: 0.875rem;
  line-height: 1.71429;
}

.enic-partners_img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  border: 1px solid #ddd;
}

.enic-partners_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.enic-partners_img img {
  width: 100%;
  height: auto;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* --------------------------------------------------
	 募集テーマ一覧コンテンツ
 -------------------------------------------------- */
.enic-contents-theme-list {
  margin: 0;
  padding: 0;
}

.enic-contents-theme-list-item {
  padding: 40px 0 40px;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .enic-contents-theme-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 60px 0 40px;
  }
}
.enic-contents-theme-list-item:not(:first-child) {
  border-top: 1px solid #ddd;
}

.enic-contents-theme-list-item.eco .enic-contents-theme-list-item-ttl {
  color: #00b498;
}

.enic-contents-theme-list-item.eco .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon01@2x.png);
}

.enic-contents-theme-list-item.tech .enic-contents-theme-list-item-ttl {
  color: #e84cac;
}

.enic-contents-theme-list-item.tech .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon02@2x.png);
}

.enic-contents-theme-list-item.energy .enic-contents-theme-list-item-ttl {
  color: #024283;
}

.enic-contents-theme-list-item.energy .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon03@2x.png);
}

.enic-contents-theme-list-item.drone .enic-contents-theme-list-item-ttl {
  color: #b20123;
}

.enic-contents-theme-list-item.drone .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon04@2x.png);
}

.enic-contents-theme-list-item.agriculture .enic-contents-theme-list-item-ttl {
  color: #0f8400;
}

.enic-contents-theme-list-item.agriculture .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon05@2x.png);
}

.enic-contents-theme-list-item.battery .enic-contents-theme-list-item-ttl {
  color: #f67e01;
}

.enic-contents-theme-list-item.battery .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon06@2x.png);
}

.enic-contents-theme-list-item.healthcare .enic-contents-theme-list-item-ttl {
  color: #16a5f0;
}

.enic-contents-theme-list-item.healthcare .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon07@2x.png);
}

.enic-contents-theme-list-item.safety .enic-contents-theme-list-item-ttl {
  color: #ffb100;
}

.enic-contents-theme-list-item.safety .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon08@2x.png);
}

.enic-contents-theme-list-item.mobility .enic-contents-theme-list-item-ttl {
  color: #436ac1;
}

.enic-contents-theme-list-item.mobility .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon09@2x.png);
}

.enic-contents-theme-list-item.recycling .enic-contents-theme-list-item-ttl {
  color: #6bc600;
}

.enic-contents-theme-list-item.recycling .enic-contents-theme-list-item-ttl::before {
  background-image: url(../img/theme/icon10@2x.png);
}

.enic-contents-theme-list-item-ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  margin-bottom: 28px;
  font-weight: normal;
  font-size: 22px;
  line-height: 1.4;
}

@media screen and (min-width: 769px) {
  .enic-contents-theme-list-item-ttl {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 8.5%;
    margin-bottom: 0;
    padding-left: 70px;
    width: 200px;
  }
  [lang=en] .enic-contents-theme-list-item-ttl {
    font-size: 18px;
  }
}
.enic-contents-theme-list-item-ttl::before {
  content: "";
  top: -50px;
  bottom: -50px;
  left: 0;
  display: block;
  margin-right: 15px;
  width: 55px;
  height: 50px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .enic-contents-theme-list-item-ttl::before {
    position: absolute;
    margin: auto;
  }
}
.enic-contents-theme-list-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .enic-contents-theme-list-item-list {
    width: calc(100% - 205px);
  }
  .enic-contents-theme-list-item-list::after {
    content: "";
    display: block;
    width: calc((100% + 20px) / 3 - 20px);
  }
}
.enic-contents-theme-list-item-list-item {
  margin-bottom: 10px;
  width: calc((100% + 10px) / 2 - 10px);
}

@media screen and (min-width: 769px) {
  .enic-contents-theme-list-item-list-item {
    margin-bottom: 20px;
    width: calc((100% + 20px) / 3 - 20px);
  }
}
.enic-contents-theme-list-item-list-item a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.enic-contents-theme-list-item-list-item a:hover {
  opacity: 0.7;
}

.enic-contents-theme-list-item-list-item img {
  width: 100%;
  height: auto;
}

.enic-contents-theme-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 0;
  padding-right: 20px;
  max-width: 330px;
  width: 100%;
  height: 74px;
  border-radius: 100px;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.enic-contents-theme-btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  max-width: 780px;
}

@media screen and (min-width: 769px) {
  .enic-contents-theme-btn {
    margin: 60px auto 0;
  }
}
.enic-contents-theme-btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}

.enic-contents-theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 8px;
  display: inline-block;
  margin: auto;
  width: 10px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.enic-contents-theme-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: inline-block;
  margin: auto;
  width: 25px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.enic-contents-theme-btn-top {
  margin-top: 10px;
}

.enic-contents-theme-btn-top-ttl {
  margin: 0 0 20px 0;
  padding: 0;
  color: #222;
  font-weight: bold;
}

.enic-contents-theme-btn-top-ttl-sub {
  color: #00aca8;
  font-weight: normal;
}

.enic-contents-theme-btn-top-txt {
  margin: 0 !important;
  padding: 0;
  color: #222;
  line-height: 1;
}

/* --------------------------------------------------
	 デモデイコンテンツ
 -------------------------------------------------- */
.enic-contents {
  padding: 60px 0 0;
}

@media screen and (min-width: 769px) {
  .enic-contents {
    padding: 88px 0 0;
  }
}
.enic-contents-ttl {
  font-size: 22px;
  line-height: 1.4;
}

@media screen and (min-width: 769px) {
  .enic-contents-ttl {
    font-size: 30px;
  }
}
.enic-contents-ttl-2 {
  margin: 90px 0 20px;
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (min-width: 769px) {
  .enic-contents-ttl-2 {
    margin: 120px 0 40px;
    font-size: 26px;
  }
}
.enic-contents-date {
  margin: 10px 0 40px;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .enic-contents-date {
    margin: 10px 0 60px;
    font-size: 16px;
  }
}
.enic-contents-txt {
  margin: 0 0 40px;
  font-size: 14px;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .enic-contents-txt {
    margin: 0 0 60px;
    font-size: 16px;
  }
}
.enic-contents-img img {
  width: 100%;
  height: auto;
}

.enic-contents-img-cap {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .enic-contents-img-cap {
    text-align: center;
  }
}
.enic-contents-list {
  margin: 0 0 30px;
}

@media screen and (min-width: 769px) {
  .enic-contents-list {
    margin: 0 0 60px;
  }
}
.enic-contents-list-ttl {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 16px;
}

.enic-contents-list-ttl a {
  color: inherit;
}

.enic-contents-list-ttl a::after {
  content: "";
  display: inline-block;
  margin-left: 20px;
  width: 10px;
  height: 10px;
  background-image: url(../img/ico-window-open.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .enic-contents-list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.enic-contents-list dl dt {
  color: #00aca8;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .enic-contents-list dl dt {
    width: 70px;
  }
  [lang=en] .enic-contents-list dl dt {
    width: 60px;
  }
}
.enic-contents-list dl dd {
  margin: 5px 0 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (min-width: 769px) {
  .enic-contents-list dl dd {
    margin: 0;
    width: calc(100% - 90px);
  }
  [lang=en] .enic-contents-list dl dd {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 768px) {
  .enic-document-contents-img {
    margin: 0 auto;
    width: 70%;
  }
}
@media screen and (min-width: 769px) {
  .enic-document-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    margin-top: 60px;
    max-width: 880px;
  }
  .enic-document-contents-body {
    width: calc(100% - 390px);
  }
  .enic-document-contents-img {
    width: 383px;
  }
  .enic-document-contents-body-txt {
    margin: 0;
  }
}
.enic-document-contents {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
}

.enic-document-contents-ttl {
  color: #00aca8;
  font-size: 20px;
}

.enic-document-contents-body-txt {
  line-height: 1.8;
}

.enic-document-contents-body-list {
  margin: 0;
  padding-left: 1.5em;
}

.enic-document-contents-body-list-item {
  margin-top: 8px;
  font-size: 14px;
}

.enic-document-contents-img img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------
	 イントロ
 -------------------------------------------------- */
.penicindex-start {
  margin: 45px 0 0 0;
}

@media screen and (min-width: 769px) {
  .penicindex-start {
    margin: 55px 0 0 0;
    text-align: center;
  }
}
.penicindex-start span {
  position: relative;
  width: 100%;
}

.penicindex-start span:nth-child(1) {
  display: inline-block;
  padding-top: 46.76259%;
  max-width: 278px;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .penicindex-start span:nth-child(1) {
    display: none;
  }
}
.penicindex-start span:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .penicindex-start span:nth-child(2) {
    display: inline-block;
    padding-top: 13.0117%;
    max-width: 684px;
    height: 100%;
  }
}
.penicindex-start img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.penicindex-outline {
  margin: 15px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .penicindex-outline {
    margin: 35px 0 0 0;
  }
}
.penicindex-news {
  position: relative;
  padding: 30px 20px 20px;
  background: #fafafa;
}

@media screen and (min-width: 769px) {
  .penicindex-news {
    padding: 40px;
  }
}
.penicindex-news-ttl {
  margin: 0;
  font-size: 26px;
}

.penicindex-news-list {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .penicindex-news-list {
    padding: 20px 0 0;
  }
}
.penicindex-news-list-item {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  list-style: none;
  line-height: 1.7;
}

@media screen and (min-width: 769px) {
  .penicindex-news-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0;
  }
}
.penicindex-news-list-item:not(:first-of-type) {
  border-top: 1px solid #eaeaea;
}

.penicindex-news-list-item-date {
  min-width: 105px;
  width: 105px;
  color: #999;
  font-size: 14px;
}

.penicindex-news-list-item-txt {
  margin: 0;
  margin-top: 5px;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .penicindex-news-list-item-txt {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-top: 0;
    margin-right: auto;
  }
}
.penicindex-news-list-item-txt a {
  text-decoration: underline;
}

.penicindex-news-list-item-txt a:hover {
  text-decoration: none;
}

.penicindex-news-list-item-txt-link {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  margin-left: auto;
  padding-right: 35px;
  white-space: nowrap;
  font-size: 12px;
}

@media screen and (min-width: 769px) {
  .penicindex-news-list-item-txt-link {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-top: 0;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .penicindex-news-list-item-txt-link {
    margin-left: 120px;
  }
}
.penicindex-news-list-item-txt-link::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  display: inline-block;
  width: 25px;
  height: 1px;
  border-bottom: 1px solid #00aca8;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.penicindex-news-list-item-txt-link::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 0;
  display: inline-block;
  width: 7px;
  height: 1px;
  border-bottom: 1px solid #00aca8;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.penicindex-news-list-item-txt-link:hover::after {
  border-color: #00605d;
}

.penicindex-news-list-item-txt-link:hover::before {
  border-color: #00605d;
}

/* --------------------------------------------------
	 コンテンツ
 -------------------------------------------------- */
.enic-bnr {
  display: block;
  margin: 40px auto;
  max-width: 700px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media screen and (min-width: 600px) {
  .enic-bnr {
    margin: 88px auto;
  }
}
.enic-bnr:hover {
  text-decoration: none;
  opacity: 0.7;
}

.enic-bnr img {
  width: 100%;
  height: auto;
}

.enic-bnr-txt {
  margin-bottom: 20px;
  color: #00aca8;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  /*
  			 br {
  				 display: block;
  					@include media-pc {
  						display: none;
  					}
  			 }
  */
}

@media screen and (min-width: 769px) {
  .enic-bnr-txt {
    font-size: 50px;
  }
}
.penicindex-content {
  margin: 120px 0 0 0;
}

.penicindex-content p {
  margin: 40px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.penicindex-content p + ul {
  margin: 0;
}

.penicindex-content ul {
  margin: 10px 0 0 0;
  padding: 0 0 0 22px;
}

.penicindex-content li {
  font-size: 1rem;
  line-height: 2;
}

.penicindex-content_title {
  font-size: 2.5rem;
  line-height: 1.25;
}

.penicindex-content_subtitle {
  margin: 30px 0 0 0;
  color: #00aca8;
  font-size: 1rem;
}

@media screen and (min-width: 600px) {
  .penicindex-content_subtitle {
    margin: 40px 0 0 0;
  }
}
.penicindex-content_subtitle + p {
  margin: 10px 0 0 0;
}

/* イメージ
 -------------------------------------------------- */
.penicindex-content_img {
  margin: 60px auto 0;
  max-width: 320px;
}

@media screen and (min-width: 600px) {
  .penicindex-content_img {
    margin: 60px auto 0;
    max-width: 780px;
  }
}
.penicindex-content_img img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .penicindex-content_img img:nth-child(1) {
    display: none;
  }
}
.penicindex-content_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .penicindex-content_img img:nth-child(2) {
    display: inline;
  }
}
/* アイコン付きリスト
 -------------------------------------------------- */
.penicindex-content_list01 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .penicindex-content_list01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1100px) {
  .penicindex-content_list01 {
    max-width: 1000px;
  }
}
.penicindex-content_list01 dt {
  font-weight: 700;
  font-size: 1rem;
}

.penicindex-content_list01 dd {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto 0;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.8;
}

@media screen and (min-width: 1100px) {
  .penicindex-content_list01 dd {
    max-width: 160px;
  }
}
.penicindex-content_list01 dd .note {
  position: relative;
  display: block;
  padding-left: 1em;
  font-size: 0.75rem;
}

.penicindex-content_list01 dd .note::before {
  content: "※";
  margin-left: -1em;
}

.penicindex-content_list01-item {
  margin: 40px 0 0;
  padding: 150px 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 600px) {
  .penicindex-content_list01-item {
    padding: 150px 0 0 0;
    width: 46%;
  }
}
@media screen and (min-width: 1100px) {
  .penicindex-content_list01-item {
    padding: 150px 0 0 0;
    width: 180px;
  }
}
.penicindex-content_list01-item:nth-child(1) {
  background-image: url(/common/img/ico-enicindex-merit01.svg);
}

.penicindex-content_list01-item:nth-child(2) {
  background-image: url(/common/img/ico-enicindex-merit02.svg);
}

.penicindex-content_list01-item:nth-child(3) {
  background-image: url(/common/img/ico-enicindex-merit03.svg);
}

.penicindex-content_list01-item:nth-child(4) {
  background-image: url(/common/img/ico-enicindex-merit04.svg);
}

/* アイコン付きリスト
 -------------------------------------------------- */
.penicindex-content_tba {
  margin: 30px 0 0 0;
}

@media screen and (min-width: 600px) {
  .penicindex-content_tba {
    margin: 40px 0 0 0;
  }
}
.penicindex-content_tba p {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.3;
}

/* ==================================================
	 Company
 ================================================== */
/* --------------------------------------------------
	 会社プロフ
 -------------------------------------------------- */
.pcompany-attribute {
  margin: 60px auto 0;
  max-width: 35em;
}

.pcompany-attribute_item {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .pcompany-attribute_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px;
  }
}
.pcompany-attribute_item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7em;
          flex: 0 0 7em;
  margin: 0 20px 0 0;
  font-weight: 500;
  font-size: 1rem;
}

.pcompany-attribute_item dd {
  margin: 10px 0 0 0;
  font-size: 1rem;
}

@media screen and (min-width: 769px) {
  .pcompany-attribute_item dd {
    margin: 0;
  }
}
/* --------------------------------------------------
	 会社マップ
 -------------------------------------------------- */
.pcompany-map {
  margin: 90px 0 0 0;
  height: 390px;
}

@media screen and (min-width: 769px) {
  .pcompany-map {
    margin: 120px 0 0 0;
    height: 350px;
  }
}
.pcompany-map iframe {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}

/* ==================================================
	 Focus Areas / Partner
 ================================================== */
/* --------------------------------------------------
	 Focus Areas
 -------------------------------------------------- */
.pfocusareas-title {
  margin: 70px 0 0 0;
  font-size: 2.875rem;
  line-height: 1.17391;
}

@media screen and (min-width: 769px) {
  .pfocusareas-title {
    margin: 60px 0 0 0;
    font-size: 3.5rem;
  }
}
/* 5つの各領域
 -------------------------------------------------- */
@media screen and (min-width: 600px) {
  .pfocusareas-5items {
    display: grid;
    gap: 0 4.5vw;
    grid-template: "void01 aria01" auto "aria02 aria01" auto "aria02 void02" auto "aria02 aria03" auto "void03 aria03" auto "aria04 aria03" auto "aria04 void04" auto "aria04 aria05" auto "void05 aria05"/1fr 1fr;
    grid-columns: 1fr 4.5vw 1fr;
    grid-rows: auto 0 auto 0 auto 0 auto 0 auto 0 auto 0 auto 0 auto 0 auto;
  }
}
.pfocusareas-5items_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pfocusareas-5items_5title {
  margin: 20px 0 0 0;
  font-size: 1.125rem;
  line-height: 1.71429;
}

@media screen and (min-width: 600px) {
  .pfocusareas-5items_5title {
    margin: 30px 0 0 0;
  }
}
.pfocusareas-5items_item--01 {
  margin: 40px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-5items_item--01 {
    grid-area: aria01;
    margin: 0;
  }
}
.pfocusareas-5items_item--02 {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-5items_item--02 {
    grid-area: aria02;
    margin: 0;
  }
}
.pfocusareas-5items_item--03 {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-5items_item--03 {
    grid-area: aria03;
    margin: 0;
  }
}
.pfocusareas-5items_item--04 {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-5items_item--04 {
    grid-area: aria04;
    margin: 0;
  }
}
.pfocusareas-5items_item--05 {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-5items_item--05 {
    grid-area: aria05;
    margin: 0;
  }
}
@media screen and (min-width: 600px) {
  .pfocusareas-5items_void01 {
    grid-area: void01;
    height: 17vw;
  }
}
@media screen and (min-width: 600px) {
  .pfocusareas-5items_void02 {
    grid-area: void02;
    height: 7vw;
  }
}
@media screen and (min-width: 600px) {
  .pfocusareas-5items_void03 {
    grid-area: void03;
    height: 7vw;
  }
}
@media screen and (min-width: 600px) {
  .pfocusareas-5items_void04 {
    grid-area: void04;
    height: 7vw;
  }
}
@media screen and (min-width: 600px) {
  .pfocusareas-5items_void05 {
    grid-area: void05;
  }
}
@media screen and (min-width: 600px) {
  .pfocusareas-5items_item--01 {
    -ms-grid-column: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
  }
  .pfocusareas-5items_item--02 {
    -ms-grid-column: 1;
    -ms-grid-row: 3;
    -ms-grid-row-span: 5;
  }
  .pfocusareas-5items_item--03 {
    -ms-grid-column: 3;
    -ms-grid-row: 7;
    -ms-grid-row-span: 5;
  }
  .pfocusareas-5items_item--04 {
    -ms-grid-column: 1;
    -ms-grid-row: 11;
    -ms-grid-row-span: 5;
  }
  .pfocusareas-5items_item--05 {
    -ms-grid-column: 3;
    -ms-grid-row: 15;
    -ms-grid-row-span: 3;
  }
  .pfocusareas-5items_void01 {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
  }
  .pfocusareas-5items_void02 {
    -ms-grid-column: 3;
    -ms-grid-row: 5;
  }
  .pfocusareas-5items_void03 {
    -ms-grid-column: 1;
    -ms-grid-row: 9;
  }
  .pfocusareas-5items_void04 {
    -ms-grid-column: 3;
    -ms-grid-row: 13;
  }
  .pfocusareas-5items_void05 {
    -ms-grid-column: 1;
    -ms-grid-row: 17;
  }
}
.pfocusareas-5items_title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: -48px 0 0 0;
}

.pfocusareas-5items_title em {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 0;
  width: 10.5em;
  background-color: #fff;
  color: #00aca8;
  font-style: normal;
  font-size: 1.375rem;
  line-height: 1.54545;
}

[lang=en] .pfocusareas-5items_title em {
  width: 13.5em;
}

@media screen and (min-width: 769px) {
  [lang=en] .pfocusareas-5items_title em {
    width: 13.5em;
  }
}
@media screen and (min-width: 850px) {
  [lang=en] .pfocusareas-5items_title em {
    width: 13.5em;
  }
}
@media screen and (min-width: 769px) {
  .pfocusareas-5items_title em {
    width: 9.5em;
  }
}
@media screen and (min-width: 850px) {
  .pfocusareas-5items_title em {
    width: 10.5em;
  }
}
.pfocusareas-5items_title span {
  position: relative;
  top: -3px;
  color: #999;
  font-size: 1rem;
}

.pfocusareas-5items_title span::before {
  content: "";
  position: relative;
  top: -5px;
  display: inline-block;
  margin: 0 6px 0 8px;
  width: 20px;
  height: 1px;
  background-color: #999;
}

.pfocusareas-5items_outline {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 0;
  font-size: 1rem;
  line-height: 1.71429;
}

.pfocusareas-5items_img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
}

.pfocusareas-5items_img img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------
	 Portfolio
 -------------------------------------------------- */
.pfocusareas-portfolio {
  margin: 120px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pfocusareas-portfolio {
    margin: 90px 0 0 0;
  }
}
.pfocusareas-portfolio_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  color: #00aca8;
  font-size: 1.375rem;
  line-height: 1.45455;
}

.pfocusareas-portfolio_title::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-left: 10px;
  height: 1px;
  background: #00aca8;
}

@media screen and (min-width: 600px) {
  .pfocusareas-portfolio_items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.pfocusareas-portfolio_item {
  margin: 40px 0 0 0;
}

.pfocusareas-portfolio_item:not(:nth-of-type(1)) {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-portfolio_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 28%;
            flex: 0 1 28%;
    margin: 0;
  }
  .pfocusareas-portfolio_item:not(:nth-of-type(1)) {
    margin: 0;
  }
}
.pfocusareas-portfolio_item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -10px 0 0 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 600px) {
  .pfocusareas-portfolio_item ul {
    display: block;
    margin: 0;
  }
}
.pfocusareas-portfolio_item li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin: 30px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-portfolio_item li {
    height: 40px;
  }
}
.pfocusareas-portfolio_item img {
  max-width: 100%;
  height: auto;
}

.pfocusareas-portfolio_cattitle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  border-radius: 2px;
  background: #00aca8;
  color: #fff;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
}

[lang=en] .pfocusareas-portfolio_cattitle {
  min-height: 52px;
  line-height: 1.5;
}

/* --------------------------------------------------
	 Partners
 -------------------------------------------------- */
.pfocusareas-partners {
  margin: 120px 0 0 0;
}

@media screen and (min-width: 769px) {
  .pfocusareas-partners {
    margin: 90px 0 0 0;
  }
}
.pfocusareas-partners_title {
  font-size: 2.875rem;
  line-height: 1.17391;
}

@media screen and (min-width: 769px) {
  .pfocusareas-partners_title {
    font-size: 3.5rem;
  }
}
.pfocusareas-partners_txt {
  font-size: 1.125rem;
  line-height: 1.71429;
}

.pfocusareas-partners_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 600px) {
  .pfocusareas-partners_items {
    margin: -20px 0 0 -5.33%;
  }
}
.pfocusareas-partners_item {
  margin: 40px 0 0 0;
  width: 100%;
}

.pfocusareas-partners_item:not(:nth-of-type(1)) {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 600px) {
  .pfocusareas-partners_item {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 60px 0 0 5.33%;
    width: auto;
  }
  .pfocusareas-partners_item:not(:nth-of-type(1)) {
    margin: 60px 0 0 5.33%;
  }
}
.pfocusareas-partners_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pfocusareas-partners_link:hover, .pfocusareas-partners_link:focus {
  text-decoration: none;
}

.pfocusareas-partners_link:hover .pfocusareas-partners_img::after, .pfocusareas-partners_link:focus .pfocusareas-partners_img::after {
  background-color: rgba(0, 0, 0, 0.1);
}

.pfocusareas-partners_link:hover img, .pfocusareas-partners_link:focus img {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.pfocusareas-partners_name {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 10px 0 0 0;
  color: #222;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.pfocusareas-partners_name::after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  margin: 0 0 0 10px;
  width: 10px;
  height: 10px;
  background-image: url(/common/img/ico-window-open.svg);
  background-size: cover;
}

@media screen and (min-width: 600px) {
  .pfocusareas-partners_name {
    margin: 12px 0 0 0;
  }
}
.pfocusareas-partners_category {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 600px) {
  .pfocusareas-partners_category {
    margin: 15px 0 0 0;
  }
}
.pfocusareas-partners_outline {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin: 15px 0 0 0;
  color: #999;
  font-size: 1rem;
  line-height: 1.71429;
}

.pfocusareas-partners_img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  border: 1px solid #ddd;
}

.pfocusareas-partners_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.pfocusareas-partners_img img {
  width: 100%;
  height: auto;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pfocusareas-portfolio-map {
  margin: 0 auto;
  max-width: 840px;
}

.pfocusareas-portfolio-map img {
  width: 100%;
  height: auto;
}

/* ==================================================
	 インタビュー
 ================================================== */
/* --------------------------------------------------
	 インタビュー各投稿
 -------------------------------------------------- */
.interview-post {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

@media screen and (min-width: 600px) {
  .interview-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 0 -5.33%;
  }
}
@media screen and (min-width: 769px) {
  .interview-post {
    margin: -58px 0 0 -6.33%;
  }
}
.interview-post_item {
  margin: 58px 0 0 0;
}

@media screen and (min-width: 600px) {
  .interview-post_item {
    -ms-flex-preferred-size: 28%;
        flex-basis: 28%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 58px 0 0 5.33%;
  }
}
@media screen and (min-width: 1100px) {
  .interview-post_item {
    -ms-flex-preferred-size: 27%;
        flex-basis: 27%;
    margin: 58px 0 0 6.33%;
  }
}
.interview-post_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.interview-post_link:hover, .interview-post_link:focus {
  text-decoration: none;
}

.interview-post_link:hover .interview-post_img, .interview-post_link:focus .interview-post_img {
  background-color: #000;
}

.interview-post_link:hover img, .interview-post_link:focus img {
  opacity: 0.6;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}

.interview-post_title {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin: 8px 0 0 0;
  color: #222;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.625;
}

.interview-post_category {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 10px 0 0 0;
}

.interview-post_category.other span {
  background-color: #d86d6d;
}

.interview-post_category span {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
  font-size: 0.875rem;
}

.interview-post_img {
  overflow: hidden;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-height: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

.interview-post_img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  -webkit-transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in;
  transition: transform 0.3s ease-in, opacity 0.1s ease-in, -webkit-transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.interview-post_date {
  margin: 10px 0 0 0;
  color: #999;
  font-size: 0.875rem;
}

.interview-post-person {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.interview-post-person-post {
  margin-bottom: 10px;
  color: #222;
  font-size: 0.875rem;
  line-height: 1.4;
}

.interview-post-person-name {
  margin-bottom: 10px;
  color: #222;
  font-size: 1.125rem;
}

.interview-post-person-name small {
  font-size: 0.875rem;
}

/* ==================================================
	 Contents Activity Introduction 活動紹介 まちづくり構想
 ================================================== */
.interview-detail-label {
  margin: 60px 0 0 0;
  font-size: 0.875rem;
}

.interview-detail-label span {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #00aca8;
  color: #fff;
}

.interview-detail-subtitle {
  margin: 10px 0 0 0;
  color: #00aca8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}

.interview-detail-title {
  margin: 10px 0 0 0;
  font-size: 1.375rem;
  line-height: 1.54545;
}

@media screen and (min-width: 769px) {
  .interview-detail-title {
    font-size: 1.875rem;
    line-height: 1.53333;
  }
}
.interview-detail-date {
  color: #999;
  font-size: 0.875rem;
}

.interview-detail-facebook {
  padding: 20px 0 0;
}

.interview-detail-mainimg {
  margin: 20px -4vw 0;
}

@media screen and (min-width: 769px) {
  .interview-detail-mainimg {
    margin: 40px 0 0 0;
  }
}
.interview-detail-mainimg img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------
	 イントロ記事コンテンツ
 -------------------------------------------------- */
.interview-detail-inner {
  margin: 0;
}

@media screen and (min-width: 769px) {
  .interview-detail-inner {
    margin: 0 auto;
    max-width: 720px;
  }
}
.interview-detail-introduction {
  margin: 20px 0 0 0;
  color: #00aca8;
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .interview-detail-introduction {
    margin: 40px 0 0 0;
  }
}
.interview-detail-post {
  line-height: 1.6;
}

.interview-detail-name {
  margin: 5px 0 0 0;
  padding-bottom: 60px;
  border-bottom: 1px solid #ddd;
  font-weight: 500;
  font-size: 1.375rem;
}

.interview-detail-name small {
  font-size: 0.875rem;
}

@media screen and (min-width: 769px) {
  .interview-detail-name {
    margin: 10px 0 0 0;
  }
}
.interview-detail-name span {
  margin: 0 0 0 15px;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.interview-detail-roll {
  margin: 20px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .interview-detail-roll {
    line-height: 2.14286;
  }
}
.interview-detail-body h2 {
  margin-top: 60px;
  margin-bottom: 10px;
  color: #00aca8;
  font-weight: bold;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
}

.interview-detail-body h3 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.4;
}

.interview-detail-body h4 {
  margin-top: 60px;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4;
}

.interview-detail-body p {
  margin: 30px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}

.interview-detail-body p + h4 {
  margin-top: 90px;
}

.interview-detail-body p:first-child {
  margin: 60px 0 0 0;
}

@media screen and (min-width: 769px) {
  .interview-detail-body p {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.interview-detail-body_youtube {
  position: relative;
  margin-top: 40px;
  padding-top: 56.25%;
  width: 100%;
}

.interview-detail-body_youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.interview-detail-body_img {
  margin-top: 40px;
}

.interview-detail-body_img img {
  width: 100%;
  height: auto;
}

.interview-detail-body_img + h4 {
  margin-top: 90px;
}

.interview-detail-body_img + h2 {
  margin-top: 120px;
}

.interview-detail-outline_img {
  margin: 40px auto 0;
  max-width: 320px;
}

@media screen and (min-width: 600px) {
  .interview-detail-outline_img {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .interview-detail-outline_img {
    margin: 60px 0 0 0;
  }
}
.interview-detail-outline_img img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 600px) {
  .interview-detail-outline_img img:nth-child(1) {
    display: none;
  }
}
.interview-detail-outline_img img:nth-child(2) {
  display: none;
}

@media screen and (min-width: 600px) {
  .interview-detail-outline_img img:nth-child(2) {
    display: inline;
  }
}
/* ==================================================
	 Contact
 ================================================== */
.contact-form {
  margin: 40px auto 0;
}

@media screen and (min-width: 769px) {
  .contact-form {
    margin: 60px auto 0;
  }
}
.contact-form-input {
  margin: 0 auto 90px;
  max-width: 570px;
}

.contact-form-input-txt {
  margin-bottom: 64px;
  line-height: 1.8;
}

.contact-form-confirm {
  margin: 0 auto;
  padding: 29px 19px 0;
  max-width: 690px;
  border: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .contact-form-confirm {
    padding: 59px 59px 0;
  }
}
.contact-form-confirm .contact-form-ttl {
  margin-bottom: 24px;
}

.contact-form-confirm .contact-form-row {
  margin-bottom: 50px;
}

.contact-form-confirm-ttl {
  margin-bottom: 40px;
  color: #00aca8;
  text-align: center;
  font-weight: 400;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .contact-form-confirm-ttl {
    margin-bottom: 60px;
  }
}
.contact-form-thanks-ttl {
  position: relative;
  margin-bottom: 30px;
  color: #00aca8;
  text-align: center;
  font-weight: 700;
  font-size: 1.375rem;
}

@media screen and (min-width: 769px) {
  .contact-form-thanks-ttl {
    margin-bottom: 40px;
  }
}
.contact-form-thanks-ttl::before {
  content: "";
  display: block;
  margin: 0 auto 30px;
  width: 80px;
  height: 77px;
  background-image: url(../img/ico-check.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-form-thanks-lback {
  text-align: center;
}

.contact-form-thanks-txt {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
}

.contact-form-row {
  position: relative;
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .contact-form-row {
    margin-bottom: 40px;
  }
}
.contact-form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: nowrap;
}

.contact-form-flex + .contact-form-flex {
  margin-top: 10px;
}

.contact-form-flex.col3 label {
  width: 33.3333333333%;
}

.contact-form-flex.col3 label [type=text], .contact-form-flex.col3 label [type=tel] {
  width: calc(100% - 2em);
}

.contact-form-sub-ttl {
  margin-bottom: 20px;
  color: #00aca8;
  text-align: center;
  font-weight: 400;
  font-size: 1.25rem;
}

@media screen and (min-width: 769px) {
  .contact-form-sub-ttl {
    margin-bottom: 40px;
  }
}
.contact-form-ttl {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 1rem;
}

.contact-form-ttl .must {
  display: inline-block;
  margin-left: 16px;
  padding: 4px 5px;
  border-radius: 2px;
  background: #d90101;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1;
}

.contact-form-ttl .any {
  display: inline-block;
  margin-left: 16px;
  padding: 4px 5px;
  border-radius: 2px;
  background: #999;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1;
}

.contact-form-txt {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form form {
  width: 100%;
}

.contact-form form [type=text], .contact-form form [type=date], .contact-form form [type=url], .contact-form form [type=email], .contact-form form [type=tel] {
  padding: 10px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1rem;
}

.contact-form form .select {
  position: relative;
}

.contact-form form .select::before {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  margin: auto;
  width: 40px;
  border-radius: 0 5px 5px 0;
  background: #f7f7f7;
  pointer-events: none;
}

.contact-form form .select::after {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: rotate(45deg);
  pointer-events: none;
  -webkit-transform: rotate(45deg);
}

.contact-form form .select select {
  padding: 10px;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1rem;
  cursor: pointer;
  -webkit-appearance: none;
}

.contact-form form .checkbox [type=checkbox] {
  position: absolute;
  opacity: 0;
}

.contact-form form .checkbox [type=checkbox]:checked ~ label::before {
  opacity: 1 !important;
}

.contact-form form .checkbox label {
  position: relative;
  display: inline-block;
  padding: 10px 30px 10px 40px;
  height: 40px;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form form .checkbox label::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 17px;
  z-index: 1;
  width: 6px;
  height: 12px;
  border-right: 2px solid #00aca8;
  border-bottom: 2px solid #00aca8;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  transform: rotate(45deg);
  pointer-events: none;
  -webkit-transform: rotate(45deg);
}

.contact-form form .checkbox label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #666;
  border-radius: 2px;
  background: #fff;
  pointer-events: none;
}

.contact-form form .radio + .radio {
  margin-left: 20px;
}

.contact-form form .radio [type=radio] {
  position: absolute;
  opacity: 0;
}

.contact-form form .radio [type=radio]:checked ~ label:before {
  -webkit-box-shadow: inset 0 0 0 5px #00aca8;
          box-shadow: inset 0 0 0 5px #00aca8;
}

.contact-form form .radio label {
  position: relative;
  display: inline-block;
  padding: 10px 30px 10px 40px;
  height: 40px;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1rem;
  cursor: pointer;
}

.contact-form form .radio label::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  z-index: 1;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #666;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

.contact-form form textarea {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1rem;
  resize: vertical;
  -webkit-appearance: none;
}

.contact-form .btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 0;
  width: 250px;
  height: 60px;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  -webkit-appearance: none;
}

.contact-form #save {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 1;
  width: 150px;
  border-radius: 5px 0 0 5px;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
  -webkit-animation: save 0.5s 1s forwards;
          animation: save 0.5s 1s forwards;
}

.contact-form .btn-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 0;
  width: 250px;
  height: 60px;
  border: 1px solid #222;
  border-radius: 5px;
  background: #fff;
  color: #222;
  font-weight: bold;
  font-size: 1rem;
  -webkit-appearance: none;
}

.contact-form div.formrun-system-show {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #d90101;
  font-size: 0.875rem;
}

/* ==================================================
	 プライバシーポリシー
 ================================================== */
.privacy-index .pnewsdetail-content h2 {
  margin: 60px 0 0 0;
  color: #00aca8;
  font-size: 1.25rem;
}

@media screen and (min-width: 769px) {
  .privacy-index .pnewsdetail-content h2 {
    margin: 50px 0 0 0;
  }
  .privacy-index .pnewsdetail-content h2 + p, .privacy-index .pnewsdetail-content h2 + h3 {
    margin: 20px 0 0 0;
  }
}
.privacy-index .pnewsdetail-content h3 {
  margin: 30px 0 0 0;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #f4f4f4;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 2;
}

.privacy-index .pnewsdetail-content h3 + p, .privacy-index .pnewsdetail-content h3 + h4, .privacy-index .pnewsdetail-content h3 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .privacy-index .pnewsdetail-content h3 + p, .privacy-index .pnewsdetail-content h3 + h4, .privacy-index .pnewsdetail-content h3 + figure {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .privacy-index .pnewsdetail-content h3 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.privacy-index .pnewsdetail-content h4 {
  margin: 30px 0 0 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .privacy-index .pnewsdetail-content h4 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.privacy-index .pnewsdetail-content h4 + p, .privacy-index .pnewsdetail-content h4 + h4, .privacy-index .pnewsdetail-content h4 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .privacy-index .pnewsdetail-content h4 + p, .privacy-index .pnewsdetail-content h4 + h4, .privacy-index .pnewsdetail-content h4 + figure {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .privacy-index .pnewsdetail-content h4 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
/* ==================================================
	 プライバシーポリシー
 ================================================== */
.guidelines-index .pnewsdetail-content h2 {
  margin: 60px 0 0 0;
  color: #00aca8;
  font-size: 1.25rem;
}

@media screen and (min-width: 769px) {
  .guidelines-index .pnewsdetail-content h2 {
    margin: 50px 0 0 0;
  }
  .guidelines-index .pnewsdetail-content h2 + p, .guidelines-index .pnewsdetail-content h2 + h3 {
    margin: 20px 0 0 0;
  }
}
.guidelines-index .pnewsdetail-content h3 {
  margin: 30px 0 0 0;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #f4f4f4;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 2;
}

.guidelines-index .pnewsdetail-content h3 + p, .guidelines-index .pnewsdetail-content h3 + h4, .guidelines-index .pnewsdetail-content h3 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .guidelines-index .pnewsdetail-content h3 + p, .guidelines-index .pnewsdetail-content h3 + h4, .guidelines-index .pnewsdetail-content h3 + figure {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .guidelines-index .pnewsdetail-content h3 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.guidelines-index .pnewsdetail-content h4 {
  margin: 30px 0 0 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .guidelines-index .pnewsdetail-content h4 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.guidelines-index .pnewsdetail-content h4 + p, .guidelines-index .pnewsdetail-content h4 + h4, .guidelines-index .pnewsdetail-content h4 + figure {
  margin: 15px 0 0 0;
}

@media screen and (min-width: 769px) {
  .guidelines-index .pnewsdetail-content h4 + p, .guidelines-index .pnewsdetail-content h4 + h4, .guidelines-index .pnewsdetail-content h4 + figure {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 769px) {
  .guidelines-index .pnewsdetail-content h4 {
    margin: 40px 0 0 0;
    line-height: 2.14286;
  }
}
.sns_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px auto;
  padding: 0;
  max-width: 720px;
  width: 100%;
  border-left: 1px solid #ddd;
  list-style: none;
}

@media screen and (min-width: 769px) {
  .sns_buttons {
    margin: 60px auto;
  }
}
.sns_buttons-bottom {
  padding-top: 30px;
}

.sns_buttons > li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* = flex-grow: 1; */
  height: 55px;
  border-right: 1px solid #ddd;
  text-align: center;
}

.sns_buttons a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 0;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.sns_buttons a:hover, .sns_buttons a:focus {
  opacity: 0.7;
}

.sns_buttons a::before {
  content: "";
  display: block;
  margin: auto;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Facebook */
.sns_buttons a.share_facebook::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-facebook.png);
}

/* Twitter */
.sns_buttons a.share_twitter::before {
  width: 30px;
  height: 24px;
  background-image: url(../img/icon-twitter.png);
}

/* はてな*/
.sns_buttons a.share_hatebu::before {
  width: 27px;
  height: 24px;
  background-image: url(../img/icon-hatena.png);
}

/* Pocket */
.sns_buttons a.share_pocket::before {
  width: 25px;
  height: 24px;
  background-image: url(../img/icon-poket.png);
}

/* count */
.sns_buttons > li > a > .count {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  color: #222;
  font-weight: bold;
  font-size: 14px;
}

/* ==================================================
	 プライバシーポリシー
 ================================================== */
.p404-title {
  margin-top: 90px;
  margin-bottom: 40px;
  text-align: center;
}

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

.p404-content h2 {
  margin-bottom: 30px;
}

.p404-content p {
  line-height: 2;
}

.p404-btn {
  padding-top: 30px;
  text-align: center;
}

@-webkit-keyframes save {
  0% {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes save {
  0% {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes loader-sp {
  0% {
    top: 0;
    height: 100%;
  }
  100% {
    top: 0;
    height: 65px;
  }
}
@keyframes loader-sp {
  0% {
    top: 0;
    height: 100%;
  }
  100% {
    top: 0;
    height: 65px;
  }
}
@-webkit-keyframes loader-pc {
  0% {
    top: 0;
    left: 0;
    width: 100%;
  }
  30% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 0;
    width: 240px;
    height: 100%;
  }
}
@keyframes loader-pc {
  0% {
    top: 0;
    left: 0;
    width: 100%;
  }
  30% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 0;
    width: 240px;
    height: 100%;
  }
}
@-webkit-keyframes index-mv-message-ttl {
  0% {
    color: rgba(0, 171, 168, 0);
  }
  40% {
    color: rgba(0, 171, 168, 0);
  }
  60% {
    color: #00aba8;
  }
  100% {
    color: #00aba8;
  }
}
@keyframes index-mv-message-ttl {
  0% {
    color: rgba(0, 171, 168, 0);
  }
  40% {
    color: rgba(0, 171, 168, 0);
  }
  60% {
    color: #00aba8;
  }
  100% {
    color: #00aba8;
  }
}
@-webkit-keyframes index-mv-message-ttl-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes index-mv-message-ttl-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes index-mv-message-txt {
  0% {
    color: rgba(255, 255, 255, 0);
  }
  40% {
    color: rgba(255, 255, 255, 0);
  }
  60% {
    color: white;
  }
  100% {
    color: white;
  }
}
@keyframes index-mv-message-txt {
  0% {
    color: rgba(255, 255, 255, 0);
  }
  40% {
    color: rgba(255, 255, 255, 0);
  }
  60% {
    color: white;
  }
  100% {
    color: white;
  }
}
@-webkit-keyframes index-mv-message-txt-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes index-mv-message-txt-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes bg-green-obi {
  0% {
    color: rgba(255, 255, 255, 0);
  }
  40% {
    color: rgba(255, 255, 255, 0);
  }
  60% {
    color: white;
  }
  100% {
    color: white;
  }
}
@keyframes bg-green-obi {
  0% {
    color: rgba(255, 255, 255, 0);
  }
  40% {
    color: rgba(255, 255, 255, 0);
  }
  60% {
    color: white;
  }
  100% {
    color: white;
  }
}
@-webkit-keyframes bg-green-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes bg-green-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes bg-mv-txt-obi {
  0% {
    color: rgba(0, 172, 168, 0);
  }
  40% {
    color: rgba(0, 172, 168, 0);
  }
  60% {
    color: #00aca8;
  }
  100% {
    color: #00aca8;
  }
}
@keyframes bg-mv-txt-obi {
  0% {
    color: rgba(0, 172, 168, 0);
  }
  40% {
    color: rgba(0, 172, 168, 0);
  }
  60% {
    color: #00aca8;
  }
  100% {
    color: #00aca8;
  }
}
@-webkit-keyframes bg-mv-txt-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes bg-mv-txt-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes bg-white-obi {
  0% {
    color: rgba(33, 33, 33, 0);
  }
  40% {
    color: rgba(33, 33, 33, 0);
  }
  60% {
    color: #212121;
  }
  100% {
    color: #212121;
  }
}
@keyframes bg-white-obi {
  0% {
    color: rgba(33, 33, 33, 0);
  }
  40% {
    color: rgba(33, 33, 33, 0);
  }
  60% {
    color: #212121;
  }
  100% {
    color: #212121;
  }
}
@-webkit-keyframes bg-white-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes bg-white-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes img-obi {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes img-obi {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes img-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes img-obi-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes title-animation {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes title-animation {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes title-animation-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes title-animation-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@-webkit-keyframes lpagetitle-after {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes lpagetitle-after {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes lpagetitle-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
@keyframes lpagetitle-before {
  0% {
    left: 0;
    width: 0;
  }
  40% {
    right: auto;
    left: 0;
    width: 100%;
  }
  60% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 105%;
    width: 100%;
  }
}
.lpagetitle {
  position: relative;
  overflow: hidden;
}

.lpagetitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  pointer-events: none;
}

.lpagetitle.animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  background: #212121;
  -webkit-animation-name: lpagetitle-before;
          animation-name: lpagetitle-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.lpagetitle.animated::after {
  -webkit-animation-name: lpagetitle-after;
          animation-name: lpagetitle-after;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.index-mv.load-anime .index-mv-message-ttl > span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(0, 171, 168, 0);
  line-height: 1;
  -webkit-animation-name: index-mv-message-ttl;
          animation-name: index-mv-message-ttl;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (min-width: 1100px) {
  .index-mv.load-anime .index-mv-message-ttl > span {
    -webkit-animation-delay: 6s;
            animation-delay: 6s;
  }
}
[lang=en] .index-mv.load-anime .index-mv-message-ttl > span {
  line-height: 1.5;
}

.index-mv.load-anime .index-mv-message-ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #00aca8;
  animation-name: index-mv-message-ttl-before;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: index-mv-message-ttl-before;
}

@media screen and (min-width: 1100px) {
  .index-mv.load-anime .index-mv-message-ttl > span::before {
    animation-delay: 6s;
    -webkit-animation-delay: 6s;
  }
}
.index-mv.load-anime .index-mv-message-ttl .index-mv-message-txt > span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0);
  line-height: 1;
  animation-name: index-mv-message-txt;
  animation-duration: 1s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: index-mv-message-txt;
}

.index-mv.load-anime .index-mv-message-ttl .index-mv-message-txt > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
  -webkit-animation-name: index-mv-message-txt-before;
          animation-name: index-mv-message-txt-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.anime > span span {
  position: relative;
}

.anime > span span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
}

.bg-mv-txt-obi {
  color: rgba(0, 172, 168, 0);
}

.animated.bg-mv-txt-obi span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(0, 172, 168, 0);
  -webkit-animation-name: bg-mv-txt-obi;
          animation-name: bg-mv-txt-obi;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animated.bg-mv-txt-obi span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #00aca8;
  -webkit-animation-name: bg-mv-txt-obi-before;
          animation-name: bg-mv-txt-obi-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.bg-white-obi {
  color: rgba(33, 33, 33, 0);
}

.animated.bg-white-obi span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(33, 33, 33, 0);
  -webkit-animation-name: bg-white-obi;
          animation-name: bg-white-obi;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animated.bg-white-obi span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #212121;
  -webkit-animation-name: bg-white-obi-before;
          animation-name: bg-white-obi-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.bg-green-obi {
  color: rgba(255, 255, 255, 0);
}

.animated.bg-green-obi span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0);
  -webkit-animation-name: bg-green-obi;
          animation-name: bg-green-obi;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animated.bg-green-obi span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: white;
  -webkit-animation-name: bg-green-obi-before;
          animation-name: bg-green-obi-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.img-obi {
  position: relative;
}

.img-obi img {
  opacity: 0;
}

.animated.img-obi img {
  overflow: hidden;
  animation-name: img-obi;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: img-obi;
}

.animated.img-obi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  background: #222;
  -webkit-animation-name: img-obi-before;
          animation-name: img-obi-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (min-width: 850px) {
  .index-concept .bg-green-obi {
    color: rgba(255, 255, 255, 0);
  }
  .index-concept .animated.bg-green-obi span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: rgba(33, 33, 33, 0);
    -webkit-animation-name: bg-white-obi;
            animation-name: bg-white-obi;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .index-concept .animated.bg-green-obi span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background: #212121;
    -webkit-animation-name: bg-white-obi-before;
            animation-name: bg-white-obi-before;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.index-enic .bg-green-obi {
  color: rgba(33, 33, 33, 0);
}

.index-enic .animated.bg-green-obi span {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: rgba(33, 33, 33, 0);
  -webkit-animation-name: bg-white-obi;
          animation-name: bg-white-obi;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.index-enic .animated.bg-green-obi span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #212121;
  animation-name: bg-white-obi-before;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-name: bg-white-obi-before;
}

@media screen and (min-width: 1100px) {
  .index-enic .bg-green-obi {
    color: rgba(255, 255, 255, 0);
  }
  .index-enic .animated.bg-green-obi span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0);
    -webkit-animation-name: bg-green-obi;
            animation-name: bg-green-obi;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .index-enic .animated.bg-green-obi span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    color: white;
    -webkit-animation-name: bg-green-obi-before;
            animation-name: bg-green-obi-before;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.title-animation {
  opacity: 0;
}

.title-animation.animated {
  position: relative;
  overflow: hidden;
  -webkit-animation-name: title-animation;
          animation-name: title-animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.title-animation.animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 0;
  height: 100%;
  background: #212121;
  -webkit-animation-name: title-animation-before;
          animation-name: title-animation-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.list-bottom-link {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
.list-bottom-link a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
}
.list-bottom-link a:hover::after {
  border-color: #00605d;
}
.list-bottom-link a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #00aca8;
  border-bottom: 1px solid #00aca8;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fadeinup {
  opacity: 0;
}

.fadeinright {
  opacity: 0;
}

.fadein {
  opacity: 0;
}

.fadeindown {
  opacity: 0;
}

.animated.fadein {
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animated.fadeindown {
  -webkit-animation-name: fadeindown;
          animation-name: fadeindown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animated.fadeinup {
  -webkit-animation-name: fadeinup;
          animation-name: fadeinup;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animated.fadeinright {
  -webkit-animation-name: fadeinright;
          animation-name: fadeinright;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.delay-1 {
  -webkit-animation-delay: 0.25s !important;
          animation-delay: 0.25s !important;
}

.delay-1 span {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-1 span::before {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-2 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}

.delay-2 span {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-2 span::before {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-3 {
  -webkit-animation-delay: 0.75s !important;
          animation-delay: 0.75s !important;
}

.delay-3 span {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-3 span::before {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-4 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}

.delay-4 span {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-4 span::before {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-5 {
  -webkit-animation-delay: 1.25s !important;
          animation-delay: 1.25s !important;
}

.delay-5 span {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-5 span::before {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-6 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}

.delay-6 span {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

.delay-6 span::before {
  -webkit-animation-delay: inherit;
          animation-delay: inherit;
}

/* ==================================================
	 ユーティリティ
 ================================================== */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
}

.text-hide {
  border: 0;
  background-color: transparent;
  color: transparent;
  text-shadow: none;
  font: 0/0 a;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.tac {
  text-align: center;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.img-widemax {
  width: 100%;
  height: auto;
}

@-webkit-keyframes fadein-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .visible-sp {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .visible-sp-inline {
    display: inline;
  }
}
@media screen and (min-width: 600px) {
  .hidden-tab {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .visible-tab {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .visible-pc {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .visible-pc-inline {
    display: inline;
  }
}
.align-right {
  text-align: right;
}

.bdtnone {
  border-top: none !important;
}

.bdrnone {
  border-right: none !important;
}

.bdbnone {
  border-bottom: none !important;
}

.bdlnone {
  border-left: none !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt1rem {
  margin-top: 1rem !important;
}

.mt2rem {
  margin-top: 2rem !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb1rem {
  margin-bottom: 1rem !important;
}

.mb2rem {
  margin-bottom: 2rem !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr1rem {
  margin-right: 1rem !important;
}

.mr2rem {
  margin-right: 2rem !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml1rem {
  margin-left: 1rem !important;
}

.ml2rem {
  margin-left: 2rem !important;
}

@media screen and (min-width: 931px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 930px) {
  .sp-none {
    display: none;
  }
}
.color-orange {
  color: #f26c44;
}

.langnav {
  margin-top: 40px;
  margin-bottom: 64px;
}
[lang=en] .langnav {
  margin-top: auto;
}

.langnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}

.langnav-list-item {
  margin: 0;
  padding: 0 20px 0 0;
  color: #00aca8;
  list-style: none;
  font-weight: normal;
  font-size: 14px;
}

.langnav-list-item:not(:first-child) {
  padding-left: 20px;
  border-left: 1px solid #ddd;
}

.langnav-list-item a {
  color: #222;
  font-weight: bold;
}

.lgnav {
  /* グロナビ（PC）
  -------------------------------------------------- */
}
.lgnav-title {
  margin: 0;
  width: 178px;
  color: #00aca8;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-size: 1.875rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.16667;
}
.lgnav-title a {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.lgnav-title a:hover, .lgnav-title a:focus {
  text-decoration: none;
}
.lgnav-main {
  margin: 60px 0 0 0;
  padding-left: 0;
  list-style: none;
}
.lgnav-main li {
  margin: 20px 0 0 0;
}
.lgnav-main a {
  position: relative;
  display: inline-block;
  padding: 4px 0 4px 0;
  color: #222;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.lgnav-main a:hover, .lgnav-main a:focus {
  padding: 4px 0 4px 0;
  text-decoration: none;
}
.lgnav-main a:hover::after, .lgnav-main a:focus::after {
  width: 100%;
}
.lgnav-main a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  border-bottom: 2px solid #00aca8;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.lgnav-sp {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: scroll;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  padding: 20px 0 0 0;
  background-color: #00aca8;
  /* ----- タイトル（SP） ----- */
  /* ----- メニューボタン クローズ（SP） ----- */
  /* ----- グロナビ（SP） ----- */
}
.lgnav-sp .langnav-list {
  padding: 20px;
}
.lgnav-sp .langnav-list-item {
  color: rgba(255, 255, 255, 0.5);
}
.lgnav-sp .langnav-list-item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}
.lgnav-sp .langnav-list-item a {
  color: #fff;
}
.lgnav-sp[aria-hidden] {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.lgnav-sp[aria-hidden=false] {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.lgnav-sp[aria-hidden=true] {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.lgnav-sp-title {
  margin: 0 0 0 20px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
  font-size: 1.125rem;
  font-family: "Roboto", sans-serif;
}
.lgnav-sp-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 65px;
  border: none;
  background-color: transparent;
}
@media screen and (min-width: 769px) {
  .lgnav-sp-btn {
    display: none;
  }
}
.lgnav-sp-btn_line {
  display: inline-block;
  margin: 5px 0;
  width: 20px;
  height: 3px;
  background-color: #fff;
}
.lgnav-sp-btn_line:nth-child(1) {
  position: relative;
  top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.lgnav-sp-btn_line:nth-child(2) {
  position: relative;
  bottom: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.lgnav-sp-main {
  margin: 40px 0 0 0;
  padding-left: 0;
  list-style: none;
}
.lgnav-sp-main a {
  display: block;
  padding: 13px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  font-family: "Roboto", sans-serif;
}
.lgnav-sp-main a:hover, .lgnav-sp-main a:focus {
  color: #00605d;
  text-decoration: none;
}
.lgnav-sp-main-sub {
  padding-left: 0;
  list-style: none;
}
.lgnav-sp-main-sub li {
  overflow: hidden;
  padding-left: 20px;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lgnav-sp-main-sub li a {
  font-weight: normal;
  font-size: 1rem;
}
.lgnav-sp-sub {
  margin: 40px 0 28px 20px;
  padding-left: 0;
  list-style: none;
}
.lgnav-sp-sub li {
  margin: 20px 0 0 0;
}
.lgnav-sp-sub a {
  color: #fff;
  text-decoration: underline;
  font-size: 0.625rem;
}
.lgnav-sp-sub a:hover, .lgnav-sp-sub a:focus {
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .lgnav-sp-sub {
    display: none;
  }
}
.lgnav-sp-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  font-weight: bold;
}
.lgnav-sp-bottom-doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 82px;
  background-color: #fff;
  color: #00aca8;
  text-align: center;
  font-size: 0.875rem;
}
.lgnav-sp-bottom-doc:hover {
  color: #00aca8;
  text-decoration: none;
}
.lgnav-sp-bottom-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 82px;
  background-color: #df4b0b;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
}
.lgnav-sp-bottom-entry:hover {
  color: #fff;
  text-decoration: none;
}
.lgnav-bottom {
  margin-top: 40px;
  margin-right: -20px;
  margin-bottom: -20px;
  margin-left: -30px;
  width: 240px;
  font-weight: bold;
}
.lgnav-bottom-doc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  background-color: #00aca8;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.lgnav-bottom-doc:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.lgnav-bottom-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  background-color: #df4b0b;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.lgnav-bottom-entry:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.lgnav-bnr {
  margin-top: auto;
  padding-top: 20px;
}
.lgnav-bnr a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.lgnav-bnr a:hover {
  opacity: 0.7;
}
.lgnav-bnr img {
  width: 194px;
  height: auto;
}

/* メニューボタン オープン（PC）
 -------------------------------------------------- */
.lmenu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 65px;
  border: none;
  background-color: #00aca8;
}

@media screen and (min-width: 769px) {
  .lmenu-btn {
    display: none;
  }
}
.lmenu-btn_line {
  display: inline-block;
  margin: 5px 0;
  width: 20px;
  height: 3px;
  background-color: #fff;
}

.sub-nav {
  position: relative;
}
.sub-nav::before {
  content: "";
  position: absolute;
  top: 23.5px;
  right: 20px;
  display: block;
  width: 16px;
  height: 3px;
  background: #fff;
}
.sub-nav::after {
  content: "";
  position: absolute;
  top: 23.5px;
  right: 20px;
  display: block;
  width: 16px;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sub-nav.sub-nav-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.sub-nav.sub-nav-open .sub-nav-main-sub li {
  height: 46px;
}

.eneos-accelerator-program-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-nav-list {
    gap: 12px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-nav-list {
    gap: 8px;
    padding-top: 24px;
  }
}
.eneos-accelerator-program-nav-list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.eneos-accelerator-program-nav-list li a {
  position: relative;
  display: block;
  border: 1px solid #00aca8;
  border-radius: 5px;
  font-weight: 700;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-nav-list li a {
    padding: 12px 30px 12px 12px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-nav-list li a {
    padding: 8px 30px 8px 8px;
    font-size: 0.75rem;
  }
}
.eneos-accelerator-program-nav-list li a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid #00aca8;
  border-bottom: 1px solid #00aca8;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-contents {
    padding: 80px 0 96px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-contents {
    padding: 48px 0 64px;
  }
}
.eneos-accelerator-program-contents-ttl {
  margin-top: 0;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-contents-ttl {
    margin-bottom: 40px;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-contents-ttl {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.eneos-accelerator-program-contents-txt {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about {
    padding-top: 64px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about {
    padding-top: 40px;
  }
}
.eneos-accelerator-program-about-img {
  text-align: center;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about-img {
    margin: 48px 0 80px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about-img {
    margin: 24px 0 48px;
  }
}
.eneos-accelerator-program-about-img img {
  max-width: 100%;
  height: auto;
}
.eneos-accelerator-program-about-jisseki {
  text-align: center;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about-jisseki {
    padding: 40px 16px;
    border: 12px solid #f7f7f7;
    border-radius: 22px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about-jisseki {
    padding: 24px 12px;
    border: 8px solid #f7f7f7;
    border-radius: 18px;
  }
}
.eneos-accelerator-program-about-jisseki-ttl {
  margin-top: 0;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about-jisseki-ttl {
    margin-bottom: 32px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about-jisseki-ttl {
    margin-bottom: 24px;
    font-size: 1.25rem;
  }
}
.eneos-accelerator-program-about-jisseki-img img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about-jisseki-link {
    margin-top: 32px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about-jisseki-link {
    margin-top: 24px;
    font-size: 0.875rem;
  }
}
.eneos-accelerator-program-about-jisseki-link a {
  text-decoration: underline;
}
.eneos-accelerator-program-about-jisseki-link a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #00aca8;
  border-bottom: 1px solid #00aca8;
  -webkit-transform: rotate(-45deg) translateY(-0.1em);
          transform: rotate(-45deg) translateY(-0.1em);
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about-btn {
    margin-top: 56px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about-btn {
    margin-top: 40px;
  }
}
.eneos-accelerator-program-about-btn-txt {
  text-align: center;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-about-btn-txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-about-btn-txt {
    font-size: 0.875rem;
  }
}
.eneos-accelerator-program-about-btn .enic-contents-theme-btn {
  margin-top: 16px;
  background-color: #df4b0c;
}
.eneos-accelerator-program-merit {
  position: relative;
  background-color: #f7f7f7;
}
.eneos-accelerator-program-merit::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  left: -60px;
  z-index: -1;
  display: block;
  margin: auto;
  background-color: #f7f7f7;
}
.eneos-accelerator-program-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-merit-list {
    gap: 40px;
  }
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-merit-list {
    gap: 5%;
    max-width: 1000px;
  }
}
.eneos-accelerator-program-merit-list-item {
  padding: 150px 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-merit-list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.eneos-accelerator-program-merit-list-item:nth-child(1) {
  background-image: url(/common/img/ico-enicindex-merit01.svg);
}
.eneos-accelerator-program-merit-list-item:nth-child(2) {
  background-image: url(/common/img/ico-enicindex-merit02.svg);
}
.eneos-accelerator-program-merit-list-item:nth-child(3) {
  background-image: url(/common/img/ico-enicindex-merit03.svg);
}
.eneos-accelerator-program-merit-list-item:nth-child(4) {
  background-image: url(/common/img/ico-enicindex-merit04.svg);
}
.eneos-accelerator-program-merit-list-item dt {
  font-weight: 700;
  font-size: 1rem;
}
.eneos-accelerator-program-merit-list-item dd {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto 0;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.8;
}
.eneos-accelerator-program-merit-list-item dd .note {
  position: relative;
  display: block;
  padding-left: 1em;
  font-size: 0.75rem;
}
.eneos-accelerator-program-merit-list-item dd .note::before {
  content: "※";
  margin-left: -1em;
}
.eneos-accelerator-program-assets {
  position: relative;
}
.eneos-accelerator-program-assets-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.eneos-accelerator-program-assets-list-item {
  width: 320px;
}
.eneos-accelerator-program-assets-list-item-img img {
  max-width: 100%;
  height: auto;
}
.eneos-accelerator-program-assets-list-item-ttl {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.25rem;
}
.eneos-accelerator-program-assets-list-item-list {
  margin: 0 auto;
  padding: 0 0 0 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
}
.eneos-accelerator-program-assets-list-item-list li {
  margin-bottom: 8px;
}
.eneos-accelerator-program-theme {
  position: relative;
  background-color: #f7f7f7;
}
.eneos-accelerator-program-theme::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  left: -60px;
  z-index: -1;
  display: block;
  margin: auto;
  background-color: #f7f7f7;
}
.eneos-accelerator-program-selection-img {
  margin-top: 48px;
  text-align: center;
}
.eneos-accelerator-program-selection-img img {
  max-width: 100%;
  height: auto;
}
.eneos-accelerator-program-faq {
  position: relative;
  background-color: #f7f7f7;
}
.eneos-accelerator-program-faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  left: -60px;
  z-index: -1;
  display: block;
  margin: auto;
  background-color: #f7f7f7;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-faq-contents + .eneos-accelerator-program-faq-contents {
    margin-top: 48px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-faq-contents + .eneos-accelerator-program-faq-contents {
    margin-top: 32px;
  }
}
.eneos-accelerator-program-faq-contents-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-faq-contents-ttl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-faq-contents-ttl {
    font-size: 1.25rem;
  }
}
.eneos-accelerator-program-faq-contents-ttl::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 30px;
  background-image: url(../img/icon-Q.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.eneos-accelerator-program-faq-contents-body {
  padding: 16px;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-faq-contents-body {
    margin-top: 24px;
    margin-left: 38px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-faq-contents-body {
    margin-top: 20px;
  }
}
.eneos-accelerator-program-faq-contents-body-txt {
  margin: 0;
  line-height: 1.6;
}
.eneos-accelerator-program-faq-contents-body-txt a {
  text-decoration: underline;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-requirements {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-requirements {
    padding-bottom: 64px;
  }
}
.eneos-accelerator-program-requirements ul {
  margin: 10px 0 0 0;
  padding: 0 0 0 22px;
}
.eneos-accelerator-program-requirements ul li + li {
  margin-top: 8px;
}
.eneos-accelerator-program-requirements-btn {
  background-color: #df4b0c;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-requirements-btn {
    margin-top: 80px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-requirements-btn {
    margin: 40px -4vw 0;
    padding: 24px 0;
  }
}
.eneos-accelerator-program-requirements-btn-txt {
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-requirements-btn-txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-requirements-btn-txt {
    font-size: 0.875rem;
  }
}
.eneos-accelerator-program-requirements-btn .enic-contents-theme-btn {
  margin-top: 16px;
  background-color: #fff;
  color: #df4b0c;
  font-weight: 700;
}
.eneos-accelerator-program-requirements-btn .enic-contents-theme-btn::before {
  border-color: #df4b0c;
}
.eneos-accelerator-program-requirements-btn .enic-contents-theme-btn::after {
  border-color: #df4b0c;
}
.eneos-accelerator-program-other-ttl {
  margin: 0;
  font-size: 1.625rem;
}
.eneos-accelerator-program-other-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-other-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.eneos-accelerator-program-other-list-item {
  display: block;
  color: inherit;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 931px) {
  .eneos-accelerator-program-other-list-item {
    width: calc((100% + 40px) / 3 - 40px);
  }
}
@media screen and (max-width: 930px) {
  .eneos-accelerator-program-other-list-item {
    width: 100%;
  }
}
.eneos-accelerator-program-other-list-item:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}
.eneos-accelerator-program-other-list-item-img img {
  max-width: 100%;
  height: auto;
}
.eneos-accelerator-program-other-list-item-ttl {
  margin: 20px 0 16px;
  font-size: 1.25rem;
}
.eneos-accelerator-program-other-list-item-txt {
  margin: 0;
  line-height: 1.6;
}

.focus-areas_collaborative-partners-contents {
  margin-top: 80px;
  counter-reset: item;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents {
    padding-bottom: 85px;
  }
}
.focus-areas_collaborative-partners-contents-item {
  border-bottom: 1px solid #ddd;
}
.focus-areas_collaborative-partners-contents-item + .focus-areas_collaborative-partners-contents-item {
  margin-top: 80px;
}
.focus-areas_collaborative-partners-contents-item-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-img {
    height: 140px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-img {
    margin: 0 -4vw;
    height: 120px;
  }
}
.focus-areas_collaborative-partners-contents-item-header {
  position: relative;
  padding-top: 24px;
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-header {
    padding-right: 90px;
    padding-left: 74px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-header {
    margin-top: 16px;
    padding-right: 80px;
  }
}
.focus-areas_collaborative-partners-contents-item-header::before {
  content: "0" counter(item);
  position: absolute;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  color: #ddd;
  counter-increment: item;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-header::before {
    top: 0;
    bottom: 0;
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-header::before {
    top: 0;
    font-size: 1.5rem;
  }
}
.focus-areas_collaborative-partners-contents-item-header-ttl {
  color: #00aca8;
}
@media screen and (min-width: 931px) {
  .focus-areas_collaborative-partners-contents-item-header-ttl {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 930px) {
  .focus-areas_collaborative-partners-contents-item-header-ttl {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-header-ttl {
    font-size: 1.5rem;
  }
}
.focus-areas_collaborative-partners-contents-item-header-txt {
  line-height: 1.6;
}
.focus-areas_collaborative-partners-contents-item-header-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: #222;
}
.focus-areas_collaborative-partners-contents-item-header-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #fff;
}
.focus-areas_collaborative-partners-contents-item-header-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.focus-areas_collaborative-partners-contents-item-open .focus-areas_collaborative-partners-contents-item-header-btn::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.focus-areas_collaborative-partners-contents-item-header-btn-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-header-btn-wrap {
    right: 16px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-header-btn-wrap {
    right: 0;
  }
}
.focus-areas_collaborative-partners-contents-item-header-btn-wrap::before {
  content: "詳しく見る";
  position: absolute;
  top: -20px;
  display: block;
  white-space: nowrap;
  font-size: 0.75rem;
}
[lang=en] .focus-areas_collaborative-partners-contents-item-header-btn-wrap::before {
  content: "More";
}
.focus-areas_collaborative-partners-contents-item-open .focus-areas_collaborative-partners-contents-item-header-btn-wrap::before {
  content: "閉じる";
}
[lang=en] .focus-areas_collaborative-partners-contents-item-open .focus-areas_collaborative-partners-contents-item-header-btn-wrap::before {
  content: "Close";
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body {
    padding-top: 24px;
    padding-bottom: 120px;
    padding-left: 74px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body {
    padding-bottom: 60px;
    padding-left: 0;
  }
}
.focus-areas_collaborative-partners-contents-item-body-ttl {
  margin: 0 0 32px;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-ttl {
    font-size: 2rem;
  }
}
.focus-areas_collaborative-partners-contents-item-body-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.focus-areas_collaborative-partners-contents-item-body-list-item + .focus-areas_collaborative-partners-contents-item-body-list-item {
  margin-top: 32px;
}
.focus-areas_collaborative-partners-contents-item-body-list-item-img {
  margin: 0;
}
@media screen and (min-width: 931px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item-img {
    width: 320px;
  }
}
@media screen and (max-width: 930px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item-img {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item-img {
    margin-bottom: 10px;
    width: 100%;
  }
}
.focus-areas_collaborative-partners-contents-item-body-list-item-img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 931px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item-body {
    width: calc(100% - 344px);
  }
}
@media screen and (max-width: 930px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item-body {
    width: 58%;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-list-item-body {
    width: 100%;
  }
}
.focus-areas_collaborative-partners-contents-item-body-list-item-body-ttl {
  margin: 0;
  font-size: 1.25rem;
}
.focus-areas_collaborative-partners-contents-item-body-list-item-body-com {
  margin: 8px 0 24px;
  color: #00aca8;
  font-size: 1rem;
}
.focus-areas_collaborative-partners-contents-item-body-list-item-body-txt {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-top {
    margin-top: 24px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-top {
    margin-top: 0;
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-top img {
  width: 100%;
  height: auto;
}
.focus-areas_collaborative-partners-contents-item-body-contents-ttl {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-ttl {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-ttl {
    font-size: 2rem;
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-ttl small {
  display: block;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-ttl small {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-ttl small {
    font-size: 1.25rem;
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-ttl-sub {
  color: #00aca8;
  font-size: 1.25rem;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-ttl-sub {
    margin-top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-ttl-sub {
    margin-top: 16px;
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 34px 8px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-list {
    margin: 32px 0 64px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-list {
    margin: 32px 0 48px;
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-list-item {
  display: block;
  margin: 0;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-list-item {
    width: calc((100% + 8px) / 3 - 8px);
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-list-item {
    width: calc((100% + 8px) / 2 - 8px);
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-list-item-img img {
  width: 100%;
  height: auto;
}
.focus-areas_collaborative-partners-contents-item-body-contents-list-item-txt {
  font-size: 0.875rem;
  line-height: 1.4;
}
.focus-areas_collaborative-partners-contents-item-body-contents-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-contents-txt {
    text-align: center;
  }
}
.focus-areas_collaborative-partners-contents-item-body-contents-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 32px auto 0;
  padding-right: 20px;
  max-width: 330px;
  width: 100%;
  height: 74px;
  border: 1px solid #00aca8;
  border-radius: 100px;
  background: #fff;
  color: #00aca8;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.focus-areas_collaborative-partners-contents-item-body-contents-btn:hover {
  color: #00aca8;
  text-decoration: none;
  opacity: 0.7;
}
.focus-areas_collaborative-partners-contents-item-body-contents-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 8px;
  display: inline-block;
  margin: auto;
  width: 10px;
  height: 1px;
  border-bottom: 1px solid #00aca8;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.focus-areas_collaborative-partners-contents-item-body-contents-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: inline-block;
  margin: auto;
  width: 25px;
  height: 1px;
  border-bottom: 1px solid #00aca8;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}
.focus-areas_collaborative-partners-contents-item-body-bottom-txt {
  margin-top: 60px;
  margin-bottom: -26px;
  color: #00aca8;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-item-body-bottom-txt {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-item-body-bottom-txt {
    font-size: 1.125rem;
  }
}
.focus-areas_collaborative-partners-contents-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ddd;
}
.focus-areas_collaborative-partners-contents-bodys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  margin-top: 48px;
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-bodys {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 32px;
  }
}
.focus-areas_collaborative-partners-contents-bodys .focus-areas_collaborative-partners-contents-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 32px;
}
.focus-areas_collaborative-partners-contents-body + .focus-areas_collaborative-partners-contents-body {
  margin-top: 48px;
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-body + .focus-areas_collaborative-partners-contents-body {
    margin-top: 32px;
  }
}
.focus-areas_collaborative-partners-contents-bodys .focus-areas_collaborative-partners-contents-body + .focus-areas_collaborative-partners-contents-body {
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-bodys .focus-areas_collaborative-partners-contents-body + .focus-areas_collaborative-partners-contents-body {
    margin-top: 32px;
  }
}
.focus-areas_collaborative-partners-contents-body-ttl {
  margin: 0;
  min-width: 272px;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-body-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-body-ttl {
    font-size: 1.75rem;
  }
}
.focus-areas_collaborative-partners-contents-bodys .focus-areas_collaborative-partners-contents-body-ttl {
  min-width: 0;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-bodys .focus-areas_collaborative-partners-contents-body-ttl {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-bodys .focus-areas_collaborative-partners-contents-body-ttl {
    font-size: 1.25rem;
  }
}
.focus-areas_collaborative-partners-contents-body-txt {
  margin: 0;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-body-txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-body-txt {
    font-size: 0.875rem;
  }
}
.focus-areas_collaborative-partners-contents-merit {
  margin-top: 80px;
  border-radius: 10px;
  background-color: #fafafa;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-merit {
    padding: 40px 40px 60px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-merit {
    padding: 20px 20px 30px;
  }
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-merit-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-merit-ttl {
    font-size: 1.5rem;
  }
}
.focus-areas_collaborative-partners-contents-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-merit-list {
    gap: 60px 50px;
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-merit-list {
    gap: 20px 10px;
  }
}
@media screen and (min-width: 600px) {
  .focus-areas_collaborative-partners-contents-merit-list-item {
    width: calc((100% + 50px) / 3 - 50px);
  }
}
@media screen and (max-width: 599px) {
  .focus-areas_collaborative-partners-contents-merit-list-item {
    width: calc((100% + 10px) / 2 - 10px);
  }
}
.focus-areas_collaborative-partners-contents-merit-list-item-img {
  text-align: center;
}
.focus-areas_collaborative-partners-contents-merit-list-item-ttl {
  text-align: center;
}
.focus-areas_collaborative-partners-contents-merit-list-item-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875rem;
  line-height: 1.6;
}

.themes-contents {
  margin-top: 40px;
}
.themes-contents-txt {
  margin: 0;
  line-height: 2;
}
.themes-contents-body-radio {
  display: none;
}
.themes-contents-body-radio#all:checked ~ .themes-contents-body-nav [for=all] {
  background-color: #00aca8;
  color: #fff;
}
.themes-contents-body-radio#themes-1:checked ~ .themes-contents-body-nav [for=themes-1] {
  background-color: #00aca8;
  color: #fff;
}
.themes-contents-body-radio#themes-2:checked ~ .themes-contents-body-nav [for=themes-2] {
  background-color: #00aca8;
  color: #fff;
}
.themes-contents-body-radio#themes-3:checked ~ .themes-contents-body-nav [for=themes-3] {
  background-color: #00aca8;
  color: #fff;
}
.themes-contents-body-radio#themes-4:checked ~ .themes-contents-body-nav [for=themes-4] {
  background-color: #00aca8;
  color: #fff;
}
.themes-contents-body-radio#all:checked ~ .themes-contents-body-list .themes-contents-body-list-item {
  position: relative;
  visibility: visible;
  overflow: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.themes-contents-body-radio#themes-1:checked ~ .themes-contents-body-list .themes-1 {
  position: relative;
  visibility: visible;
  overflow: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.themes-contents-body-radio#themes-2:checked ~ .themes-contents-body-list .themes-2 {
  position: relative;
  visibility: visible;
  overflow: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.themes-contents-body-radio#themes-3:checked ~ .themes-contents-body-list .themes-3 {
  position: relative;
  visibility: visible;
  overflow: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.themes-contents-body-radio#themes-4:checked ~ .themes-contents-body-list .themes-4 {
  position: relative;
  visibility: visible;
  overflow: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.themes-contents-body-nav {
  margin-top: 80px;
  margin-bottom: 40px;
}
.themes-contents-body-nav-list {
  border-radius: 5px;
  background-color: #fafafa;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .themes-contents-body-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px;
  }
}
@media screen and (max-width: 599px) {
  .themes-contents-body-nav-list {
    margin: 0 auto;
    padding: 0 16px;
    max-width: 240px;
  }
}
@media screen and (min-width: 600px) {
  .themes-contents-body-nav-list-item {
    padding: 0 12px;
    width: 20%;
  }
}
@media screen and (max-width: 599px) {
  .themes-contents-body-nav-list-item {
    padding: 8px 16px;
  }
}
@media screen and (min-width: 600px) {
  .themes-contents-body-nav-list-item:not(:first-child) {
    border-left: 1px solid #ddd;
  }
}
@media screen and (max-width: 599px) {
  .themes-contents-body-nav-list-item:not(:first-child) {
    border-top: 1px solid #ddd;
  }
}
.themes-contents-body-nav-list-item-label {
  display: block;
  margin: 0 auto;
  padding: 8px;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.themes-contents-body-list {
  position: relative;
}
.themes-contents-body-list-item {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  margin: auto;
  margin-bottom: 96px;
  height: 0;
  opacity: 0;
}
.themes-contents-body-list-item-ttl {
  margin: 0 0 32px;
  font-size: 2.5rem;
}
.themes-contents-body-list-item-contents {
  padding: 32px;
  border: 1px solid #eaeded;
  border-radius: 5px;
  background-color: #fafafa;
}
.themes-contents-body-list-item-contents + .themes-contents-body-list-item-contents {
  margin-top: 32px;
}
.themes-contents-body-list-item-contents-ttl {
  margin: 0 0 12px;
  color: #00aca8;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.4;
}
.themes-contents-body-list-item-contents-txt {
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .themes-contents-body-list-item-contents-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .themes-contents-body-list-item-contents-txt {
    font-size: 1.25rem;
  }
}
.themes-contents-body-list-item-contents-body {
  margin-top: 16px;
  padding: 24px 0 0;
  border-top: 1px solid #e4e7eb;
}
@media screen and (min-width: 600px) {
  .themes-contents-body-list-item-contents-body-col-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 600px) {
  .themes-contents-body-list-item-contents-body-col-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.themes-contents-body-list-item-contents-body-ttl {
  margin: 0 0 12px;
  color: #00aca8;
  font-weight: normal;
  line-height: 1.4;
}
.themes-contents-body-list-item-contents-body-item {
  padding: 16px;
  border-radius: 5px;
  background-color: #00aca8;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .themes-contents-body-list-item-contents-body-item + .themes-contents-body-list-item-contents-body-item {
    margin-top: 16px;
  }
}
@media screen and (min-width: 600px) {
  .themes-contents-body-list-item-contents-body-col-2 .themes-contents-body-list-item-contents-body-item {
    width: calc((100% + 24px) / 2 - 24px);
  }
}
@media screen and (min-width: 600px) {
  .themes-contents-body-list-item-contents-body-col-3 .themes-contents-body-list-item-contents-body-item {
    width: calc((100% + 24px) / 3 - 24px);
  }
}
.themes-contents-body-list-item-contents-body-item-ttl {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}
.themes-contents-body-list-item-contents-body-item-txt {
  margin: 12px 0 0;
  font-size: 0.75rem;
  line-height: 1.6;
}

.top-mv {
  position: relative;
  background-color: #f2ecd2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-mv-contents {
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 0;
}
@media (min-width: 769px) {
  .top-mv-contents {
    padding-top: 40px;
    min-height: 826px;
    height: calc(100vh - 74px);
  }
}
@media (min-width: 769px) {
  .top-mv-movie {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 1000px;
    width: 65%;
  }
}
.top-mv-movie img {
  max-width: 100%;
  height: auto;
}
.top-mv-message {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #00aca8;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .top-mv-message {
    margin-bottom: 56px;
    font-size: 3rem;
  }
}
.top-mv-message span {
  position: relative;
}
.load-anime .top-mv-message span {
  display: inline-block;
  overflow: hidden;
  color: rgba(0, 171, 168, 0);
  line-height: 1;
  -webkit-animation-name: index-mv-message-ttl;
          animation-name: index-mv-message-ttl;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.load-anime .top-mv-message span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #00aca8;
  -webkit-animation-name: index-mv-message-ttl-before;
          animation-name: index-mv-message-ttl-before;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.top-mv-txt {
  padding-bottom: 50px;
}
.top-mv-txt-contents-txt {
  margin-top: 5px;
  color: rgba(0, 172, 169, 0);
  font-weight: 700;
  font-size: 14px;
  line-height: 2.2;
}
.top-mv-txt-contents-txt.animated.bg-mv-txt-obi span {
  position: relative;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.top-mv-txt-contents-txt span::before {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.top-member {
  position: relative;
  padding: 60px 0 60px;
  background-position: right top;
  background-size: auto 630px;
  background-repeat: no-repeat;
}
@media (min-width: 1100px) {
  .top-member {
    padding: 0 0 200px 0;
  }
}
.top-member-ttl {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.15;
}
.top-member-ttl br {
  display: none;
}
[lang=en] .top-member-ttl {
  line-height: 1.5;
}
@media (min-width: 769px) {
  .top-member-ttl {
    font-size: 3.5rem;
  }
}
@media (min-width: 1100px) {
  .top-member-ttl {
    margin: 0 0 30px 500px;
  }
  .top-member-ttl br {
    display: block;
  }
}
.top-member-txt {
  line-height: 2;
}
@media (min-width: 1100px) {
  .top-member-txt {
    margin-left: 500px;
  }
}
.top-member-btn {
  padding: 0 8vw 0 4vw;
  text-align: right;
}
@media (min-width: 769px) {
  .top-member-btn {
    padding: 0;
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .top-member-btn {
    margin-left: 500px;
  }
}
.top-member-img {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  margin-left: -4vw;
  width: 100vw;
  pointer-events: none;
}
.top-member-img img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .top-member-img img {
    margin-left: 0;
  }
}
@media (min-width: 769px) {
  .top-member-img {
    margin-top: 0;
    margin-right: auto;
    margin-left: -40px;
    width: 500px;
  }
}
@media (min-width: 1100px) {
  .top-member-img {
    position: absolute;
    bottom: 150px;
    left: 0;
    margin-left: 0;
  }
}
.top-member-img.animated::after {
  bottom: 0;
}
.top-member-img::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: -1;
  width: 90%;
  height: 90%;
  background-image: url(../img/bg-index-focus_areas_partners01.png);
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (min-width: 1100px) {
  .top-member-img::after::after {
    left: 0;
  }
}
@media (min-width: 1100px) {
  .top-accelerator-program {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.top-accelerator-program-body {
  padding: 60px;
  background-color: #00aca8;
  background-image: url(../img/bg-index-mv-nami10.png);
  background-position: right bottom;
  background-size: auto 190px;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .top-accelerator-program-body {
    padding: 24px 24px 64px;
  }
}
@media (min-width: 1100px) {
  .top-accelerator-program-body {
    min-width: 400px;
    width: calc(100% - 500px);
  }
}
.top-accelerator-program-body-ttl {
  margin-bottom: 14px;
  color: #fff;
  font-size: 3.75rem;
  line-height: 1.4;
}
[lang=en] .top-accelerator-program-body-ttl {
  line-height: 1;
}
.top-accelerator-program-body-ttl-bottom {
  display: inline-block;
  padding: 2px 4px;
  background-color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
}
.top-accelerator-program-body-txt {
  margin-top: 32px;
  line-height: 2;
}
.top-accelerator-program-body-btn .bg-g {
  border: 1px solid #fff;
  color: #fff;
}
.top-accelerator-program-body-btn .bg-g::before {
  border-bottom: 1px solid #fff;
}
.top-accelerator-program-body-btn .bg-g::after {
  border-color: #fff;
}
.top-accelerator-program-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1099px) {
  .top-accelerator-program-img {
    aspect-ratio: 720/288;
    background-image: url(../img/top-accelerator-program-img-sp.png);
  }
}
@media (min-width: 1100px) {
  .top-accelerator-program-img {
    padding: 0;
    min-height: 612px;
    width: 500px;
    background-image: url(../img/top-accelerator-program-img.png);
  }
}

.topBnr {
  padding-top: 24px;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .topBnr {
    display: none;
  }
}
.topBnr-bnr {
  margin-bottom: auto;
}
.topBnr-bnr a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.topBnr-bnr a:hover {
  opacity: 0.7;
}
.topBnr-bnr img {
  max-width: 100%;
  height: auto;
}

.topAbout {
  padding: 80px 0 88px;
  background-color: #00aca8;
}
@media screen and (min-width: 931px) {
  .topAbout {
    margin: 0 20px;
  }
}
.topAbout-contents {
  padding: 0 40px;
  color: #fff;
}
@media screen and (max-width: 930px) {
  .topAbout-contents {
    padding: 0 4vw;
  }
}
.topAbout-contents-investment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid #008b88;
}
.topAbout-contents-investment + .topAbout-contents-investment {
  margin-bottom: 64px;
  padding-top: 48px;
}
@media screen and (max-width: 1280px) {
  .topAbout-contents-investment + .topAbout-contents-investment {
    margin-bottom: 48px;
  }
}
.topAbout-contents-investment-ttl {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-top: 0;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-investment-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-investment-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  .topAbout-contents-investment-ttl {
    margin-bottom: 8px;
    width: 100%;
  }
}
.topAbout-contents-investment-txt {
  margin: 0;
  width: calc(100% - 300px);
  line-height: 2;
}
@media screen and (max-width: 1280px) {
  .topAbout-contents-investment-txt {
    width: 100%;
  }
}
.topAbout-contents-investmentResults {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topAbout-contents-investmentResults-ttl {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  margin-top: 0;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-investmentResults-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-investmentResults-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1280px) {
  .topAbout-contents-investmentResults-ttl {
    margin-bottom: 8px;
    width: 100%;
  }
}
.topAbout-contents-investmentResults-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  gap: 20px;
  margin: 0;
  min-width: 300px;
  border-radius: 5px;
  background-color: #008b88;
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-investmentResults-item {
    padding: 32px;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-investmentResults-item {
    padding: 32px 20px;
  }
}
.topAbout-contents-investmentResults-item:nth-of-type(1) {
  background-image: url(../img/top/img-investmentResults-01.svg);
}
.topAbout-contents-investmentResults-item:nth-of-type(2) {
  background-image: url(../img/top/img-investmentResults-02.svg);
}
.topAbout-contents-investmentResults-item-ttl {
  font-weight: 700;
  font-size: 1.25rem;
}
.topAbout-contents-investmentResults-item-body {
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-investmentResults-item-body {
    font-size: 6rem;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-investmentResults-item-body {
    font-size: 5rem;
  }
}
.topAbout-contents-investmentResults-item-body-small {
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-investmentResults-item-body-small {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-investmentResults-item-body-small {
    font-size: 2rem;
  }
}
.topAbout-contents-investmentResults-bottom {
  text-align: right;
}
.topAbout-contents-feature {
  border-top: 1px solid #008b88;
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-feature {
    margin-top: 24px;
    padding-top: 48px;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-feature {
    margin-top: 40px;
    padding-top: 32px;
  }
}
.topAbout-contents-feature-ttl {
  margin-top: 0;
}
@media screen and (min-width: 600px) {
  .topAbout-contents-feature-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .topAbout-contents-feature-ttl {
    margin-bottom: 24px;
    font-size: 2rem;
  }
}
.topAbout-contents-feature-txt {
  font-size: 1rem;
  line-height: 1.6;
}
.topAbout-contents-feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: item;
}
@media screen and (min-width: 931px) {
  .topAbout-contents-feature-list {
    gap: 40px;
  }
}
@media screen and (max-width: 930px) {
  .topAbout-contents-feature-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.topAbout-contents-feature-list-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 32px 10px 40px;
  border-radius: 5px;
  background-color: #fff;
  color: #00aca8;
}
.topAbout-contents-feature-list-item::before {
  content: "0" counter(item);
  position: absolute;
  top: 20px;
  left: 20px;
  counter-increment: item;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
}
.topAbout-contents-feature-list-item-img {
  text-align: center;
}
.topAbout-contents-feature-list-item-ttl {
  text-align: center;
  font-size: 1.25rem;
}
.topAbout-contents-feature-list-item-txt {
  color: #222;
  text-align: center;
  font-size: 0.875rem;
}

.topLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 931px) {
  .topLink {
    padding: 20px;
  }
}
@media screen and (max-width: 930px) {
  .topLink {
    padding: 20px 4vw;
  }
}
@media screen and (min-width: 1281px) {
  .topLink {
    gap: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .topLink {
    gap: 12px;
  }
}
.topLink-item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: contrast(150%);
          filter: contrast(150%);
}
@media screen and (min-width: 1281px) {
  .topLink-item {
    width: calc((100% + 20px) / 2 - 20px);
  }
}
@media screen and (max-width: 1280px) {
  .topLink-item {
    width: 100%;
  }
}
.topLink-item.focus-areas {
  background-image: url(../img/top/bg-topLink-01.png);
}
.topLink-item.major-projects {
  background-image: url(../img/top/bg-topLink-02.png);
}
.topLink-item.interview {
  background-image: url(../img/top/bg-topLink-03.png);
}
.topLink-item.portfolio {
  background-image: url(../img/top/bg-portfolio.png);
}
.topLink-item.member {
  background-image: url(../img/top/bg-member.png);
}
.topLink-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 10px;
  min-height: 320px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  color: #fff !important;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.topLink-item-link:hover {
  background-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
.topLink-item-link-ttl {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .topLink-item-link-ttl {
    font-size: 2rem;
  }
  [lang=en] .topLink-item-link-ttl {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .topLink-item-link-ttl {
    font-size: 1.5rem;
  }
  [lang=en] .topLink-item-link-ttl {
    font-size: 1.5rem;
  }
}
.topLink-item-link-ttl-en {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}
.topLink-item-link-txt {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.6;
}
.topLink-item-link-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  margin-inline: auto;
  width: 160px;
  height: 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.875rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
[lang=en] .topLink-item-link-more {
  margin-top: 32px;
}
:hover > .topLink-item-link-more {
  border-color: #00aca8;
  background-color: #00aca8;
}
.topLink-item-link-more::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -26px;
  display: inline-block;
  width: 10px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.topLink-item-link-more::after {
  content: "";
  position: absolute;
  top: 19px;
  right: -25px;
  display: inline-block;
  width: 50px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.topAccelerator {
  background-color: #f7f7f7;
}
@media screen and (min-width: 1281px) {
  .topAccelerator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 931px) {
  .topAccelerator {
    margin: 0 20px;
  }
}
.topAccelerator-body {
  padding: 20px;
}
@media screen and (min-width: 1281px) {
  .topAccelerator-body {
    padding: 60px;
    min-width: 400px;
    width: calc(100% - 500px);
  }
}
@media (max-width: 768px) {
  .topAccelerator-body {
    padding: 24px 24px 0;
  }
}
.topAccelerator-body-ttl {
  margin-top: 0;
  color: #00aca8;
  white-space: nowrap;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .topAccelerator-body-ttl {
    margin-bottom: 14px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .topAccelerator-body-ttl {
    margin-bottom: 0;
    font-size: 2rem;
  }
}
[lang=en] .topAccelerator-body-ttl {
  line-height: 1;
}
.topAccelerator-body-ttl-bottom {
  display: inline-block;
  padding: 2px 4px;
  background-color: #00aca8;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
}
.topAccelerator-body-txt {
  margin-top: 32px;
  color: #222;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 1281px) {
  .topAccelerator-body-txt {
    max-width: 420px;
  }
}
.topAccelerator-body-btn .bg-g {
  margin-top: 24px;
}
.topAccelerator-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1281px) {
  .topAccelerator-img {
    margin: 60px;
    padding: 0;
    max-width: 440px;
    width: 100%;
    background-image: url(../img/top-accelerator-program-img.png);
  }
}
@media screen and (max-width: 1280px) {
  .topAccelerator-img {
    margin-top: 48px;
    aspect-ratio: 720/288;
    background-image: url(../img/top-accelerator-program-img-sp.png);
  }
}

@media screen and (max-width: 768px) {
  .ctt-contents {
    margin: 65px 0 0 0;
    padding-top: 40px;
  }
}
.ctt-contents-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 769px) {
  .ctt-contents-ttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .ctt-contents-ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 769px) {
  .ctt-contents-ttl-img {
    width: 232px;
  }
}
@media screen and (max-width: 768px) {
  .ctt-contents-ttl-img {
    width: 116px;
  }
}
.ctt-contents-ttl-img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 600px) {
  .ctt-contents-ttl-body {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  .ctt-contents-ttl-body {
    font-size: 0.875rem;
  }
}
.ctt-contents-ttl-body p {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .ctt-contents-ttl-body p + p {
    margin-top: 24px;
  }
}
@media screen and (max-width: 599px) {
  .ctt-contents-ttl-body p + p {
    margin-top: 20px;
  }
}
.ctt-contents-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 600px) {
  .ctt-contents-body {
    margin-top: 64px;
  }
}
@media screen and (max-width: 599px) {
  .ctt-contents-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 40px;
  }
}
.ctt-contents-body-item {
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .ctt-contents-body-item {
    padding: 48px 40px 48px;
    max-width: 409px;
  }
}
@media screen and (max-width: 599px) {
  .ctt-contents-body-item {
    padding: 32px 23px;
    max-width: 280px;
  }
}
.ctt-contents-body-item-img {
  margin: 0 auto;
  -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 600px) {
  .ctt-contents-body-item-img {
    max-width: 268px;
  }
}
@media screen and (max-width: 599px) {
  .ctt-contents-body-item-img {
    max-width: 180px;
  }
}
.ctt-contents-body-item-img img {
  width: 100%;
  height: auto;
}
.ctt-contents-body-item-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 329px;
  width: 100%;
  height: 72px;
  border-radius: 100px;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 600px) {
  .ctt-contents-body-item-btn {
    margin: 40px auto 0;
    font-size: 1rem;
  }
}
@media screen and (max-width: 599px) {
  .ctt-contents-body-item-btn {
    margin: 24px auto 0;
    font-size: 0.875rem;
  }
}
.ctt-contents-body-item-btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.ctt-contents-body-item-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 1px;
  display: inline-block;
  margin: auto;
  width: 6px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ctt-contents-body-item-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  bottom: -5px;
  display: inline-block;
  margin: auto;
  width: 16px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.cta {
  overflow: hidden;
}
@media screen and (min-width: 931px) {
  .cta {
    position: relative;
    padding-bottom: 44px;
  }
  .cta::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -61px;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 55%;
    background-color: #00aca8;
  }
}
@media screen and (max-width: 930px) {
  .cta {
    padding-bottom: 64px;
  }
}
.cta + .lmain-foot {
  margin-top: 0;
}
.cta-ttl {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 930px) {
  .cta-ttl {
    display: none;
  }
}
.cta-contents {
  max-width: 840px;
  text-align: center;
}
@media screen and (min-width: 931px) {
  .cta-contents {
    position: relative;
    margin: 198px auto 0;
    padding: 32px 48px 32px;
    border: 1px solid #00aca8;
    border-radius: 5px;
    background-color: #fcfdfc;
  }
}
@media screen and (max-width: 930px) {
  .cta-contents {
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 931px) {
  .cta-contents-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #ddd;
  }
}
@media screen and (min-width: 931px) {
  .cta-contents-body-item {
    padding: 16px;
    width: 50%;
  }
  .cta-contents-body-item:first-child {
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 930px) {
  .cta-contents-body-item {
    padding: 32px 16px;
    border: 1px solid #00aca8;
    border-radius: 5px;
    background-color: #fcfdfc;
  }
  .cta-contents-body-item + .cta-contents-body-item {
    margin-top: 32px;
  }
}
.cta-contents-body-item-ttl {
  margin: 0;
  color: #00aca8;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 930px) {
  .cta-contents-body-item-ttl::before {
    content: "ENEOS アクセラレータープログラム";
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-weight: 700;
    font-size: 0.875rem;
  }
  [lang=en] .cta-contents-body-item-ttl::before {
    content: "ENEOS Accelerator Program";
  }
}
.cta-contents-body-item-txt {
  display: inline-block;
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 931px) {
  .cta-contents-body-item-txt {
    margin-top: 32px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 930px) {
  .cta-contents-body-item-txt {
    margin-top: 24px;
    font-size: 0.875rem;
  }
}
.cta-contents-body-item-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 32px auto 0;
  padding-bottom: 1px;
  max-width: 220px;
  width: 100%;
  height: 46px;
  border-radius: 100px;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .cta-contents-body-item-btn {
    font-size: 0.875rem;
  }
}
.cta-contents-body-item-btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.cta-contents-body-item-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 1px;
  display: inline-block;
  margin: auto;
  width: 6px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cta-contents-body-item-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: -5px;
  display: inline-block;
  margin: auto;
  width: 16px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}
.cta-top-contents {
  position: relative;
  padding: 32px;
  max-width: 840px;
  border: 1px solid #00aca8;
  border-radius: 5px;
  background-color: #fcfdfc;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .cta-top-contents {
    margin: 64px auto 0;
  }
}
@media screen and (max-width: 599px) {
  .cta-top-contents {
    margin: 64px auto 0;
  }
}
.cta-top-contents-body-item {
  position: relative;
}
.cta-top-contents-body-item-ttl {
  margin: 0;
  color: #00aca8;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .cta-top-contents-body-item-ttl {
    text-align: center;
  }
}
.cta-top-contents-body-item-txt {
  display: inline-block;
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .cta-top-contents-body-item-txt {
    margin-top: 8px;
    width: calc(100% - 175px);
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 599px) {
  .cta-top-contents-body-item-txt {
    margin-top: 24px;
    margin-bottom: 32px;
    font-size: 0.875rem;
  }
}
.cta-top-contents-body-item-img {
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .cta-top-contents-body-item-img {
    position: absolute;
  }
}
.cta-top-contents-body-item-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1px;
  max-width: 220px;
  width: 100%;
  height: 46px;
  border-radius: 100px;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 600px) {
  .cta-top-contents-body-item-btn {
    margin: 24px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .cta-top-contents-body-item-btn {
    margin: 32px auto 0;
    font-size: 0.875rem;
  }
}
.cta-top-contents-body-item-btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}
.cta-top-contents-body-item-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 1px;
  display: inline-block;
  margin: auto;
  width: 6px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cta-top-contents-body-item-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: -5px;
  display: inline-block;
  margin: auto;
  width: 16px;
  height: 1px;
  border-bottom: 1px solid #fff;
  -webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, color 0.2s ease-in, background-color 0.2s ease-in;
}

.contactPage-txt {
  margin: 35px 0 0 0;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 600px) {
  .contactPage-txt {
    text-align: center;
  }
}
.contactPage-img {
  margin: 32px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.contactPage-img img {
  max-width: 100%;
  height: auto;
}

.listTag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.pfocusareas-partners_title + .listTag {
  margin-top: 40px;
}
.listTag-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 18px;
  border-radius: 100px;
  background-color: #fff;
  color: #bebebe;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.listTag-item:hover {
  background-color: #00aca8;
  color: #fff;
}
.listTag-item.current {
  background-color: #00aca8;
  color: #fff;
}

.pnews-nav {
  margin: 58px 0 -20px 0;
}

@media screen and (min-width: 600px) {
  .pnews-nav {
    margin: 58px 0 40px;
  }
}
@media screen and (min-width: 769px) {
  .pnews-nav {
    margin: 58px 0 58px;
  }
}
.pnews-nav_title {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.pnews-nav_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.pnews-nav_nav li.current a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  background-color: #00aca8;
  color: #fff;
  font-weight: 500;
  pointer-events: none;
}

.pnews-nav_nav li:not(.current) a:hover, .pnews-nav_nav li:not(.current) a:focus {
  color: #bebebe;
}

.pnews-nav_nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 18px;
  border-radius: 100px;
  background-color: #fff;
  color: #bebebe;
  font-weight: 500;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pnews-nav_nav a:hover {
  background-color: #00aca8;
  color: #fff;
}

.pnews-nav_nav a:hover, .pnews-nav_nav a:focus {
  text-decoration: none;
}

.btn-bottom-txt {
  margin-top: 8px;
  text-align: center;
  font-size: 0.875rem;
}

#memberPopup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: none;
  overflow: auto;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
}

.member-popup-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 800px;
  width: 90%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
}
.member-popup-header-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0;
  padding: 3px 15px;
  background: #00aca8;
  color: #fff;
  font-size: 1.25rem;
}
.member-popup-body {
  padding: 10px 20px;
  /* Cookie-Policy */
  /* 同意/拒否ボタンを中央寄せにする */
  /* メディアクエリ */
}
.member-popup-body .privacy-policy-link {
  color: rgb(110, 169, 211);
}
.member-popup-body .cookie-consent {
  /* inline-block を中央に寄せる */
}
.member-popup-body .cookie-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}
.member-popup-body .cookie-agree,
.member-popup-body .cookie-reject {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  color: #fff;
  -webkit-appearance: none;
}
.member-popup-body .cookie-agree {
  background: #00aca8;
}
.member-popup-body .cookie-reject {
  background: #df4b0b;
}
.member-popup-body .cookie-agree:hover,
.member-popup-body .cookie-reject:hover {
  opacity: 0.7;
  cursor: pointer;
}
@-webkit-keyframes hide {
  from {
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (max-width: 600px) {
  .member-popup-body .cookie-consent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .member-popup-body .cookie-text {
    margin-bottom: 1em;
  }
}

.gp-al-right {
  text-align: right;
}

.list-order-v3 {
  padding: 0;
}

.list-order-v3 > li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 3em;
  list-style: none;
  line-height: 1.6;
}

.list-order .list_mark,
.list-order-v2 .list_mark,
.list-order-v3 .list_mark {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

.list-kana,
.list-kana-v2 {
  padding-left: 0;
}

.list-kana > li,
.list-kana-v2 > li {
  position: relative;
  margin-top: 0.5em;
  padding-left: 1.8em;
  list-style: none;
  line-height: 1.6;
}

.gp-mt-SS {
  margin-top: 0.5em !important;
}

.list-note > li,
.list-note-v2 > li {
  position: relative;
  padding-left: 1.5em;
  color: #666;
  line-height: 1.6;
}

.link-text {
  padding: 0;
}

.list-note {
  padding: 0;
}

.link-text > li {
  list-style: none;
}

.list-note > li {
  list-style: none;
}

.list-alphabet,
.list-alphabet-v2 {
  padding-left: 0;
}

.list-alphabet > li,
.list-alphabet-v2 > li {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}