@charset "UTF-8";
html,
body {
  font-size: 62.5%;
  font-family: "Red Hat Display", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  /* font-feature-settings: 'palt';
  -webkit-font-feature-settings: "palt"; */
  writing-mode: horizontal-tb;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  /* letter-spacing: 0.3em; */
  box-sizing: border-box;
  /* word-wrap: break-word; */
  /* height: 100%; */
  /* アドレスバーの件で書いてみる */
  /*background-color: #fff;*/
  width: auto;
  color: #231815;
}

@media screen and (max-width: 768px) {
  html,
  body {
    letter-spacing: 0.12em;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  html,
  body {
    font-size: 56.5%;
  }
}
body.f_js-open {
  overflow: hidden;
}

main {
  display: block;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

* ul li {
  margin: 0;
  padding: 0;
}

/* リンクテキスト */
a {
  cursor: pointer;
  text-decoration: none;
}

a img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-text-decoration-skip: none;
}

a, input, textarea {
  outline: none;
}

:focus {
  outline: none;
}

button {
  cursor: pointer;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}

::selection {
  background: #E0E1E3;
}

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

/*! destyle.css v1.0.13 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model
   ========================================================================== */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm
   ========================================================================== */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration)
   ========================================================================== */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition)
   ========================================================================== */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms
   ========================================================================== */
/**
 * Reset form fields to make them styleable
 * 1. Reset radio and checkbox to preserve their look in iOS.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  /* 1 */
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  /* 1 */
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
  /* 1 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Table
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/****** メインカラー ******/
/* 文字 ロゴの色：231815 */
/* ベタ */
/* ベタ */
/* ベタ */
/* 文字 */
/* 文字 */
/****** 各ページテーマカラー ******/
/* あなた&LPG */
/* 暮らし&LPG */
/* 地球&LPG */
/* いのち&LPG */
/* ひと&LPG */
/* 未来&LPG */
/* プロジェクト全体で共通して適用するスタイル */
.f_js-ojf,
.f_js-ojf__bottom {
  object-fit: cover;
}

.f_js-ojf__bottom {
  object-position: bottom;
}

/* モーダル(Remodal.js) */
.o-c-modal__life {
  /* ボタン群 */
}

.o-c-modal__life .o-c-list__3cont {
  gap: 0 30px;
}

@media screen and (max-width: 1080px) {
  .o-c-modal__life .o-c-list__3cont {
    gap: 0 26px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 768px) {
  .o-c-modal__life .o-c-list__3cont {
    gap: 0;
  }
}
.o-c-modal__life__menu__child__btn {
  display: flex;
  align-items: center;
  border-bottom: solid #E0E1E3 1.5px;
}

.o-c-modal__life__menu__child__btn .kurashi.svg-pin {
  border-bottom: solid #62ADDD 1.5px;
}

.o-c-modal__life__menu__child__btn .kurashi.svg-pin svg {
  fill: #62ADDD;
}

.o-c-modal__life__menu__child__btn .members.svg-pin {
  border-bottom: solid #8C8CD8 1.5px;
}

.o-c-modal__life__menu__child__btn .members.svg-pin svg {
  fill: #8C8CD8;
}

.o-c-modal__life__menu__child__btn .svg-pin {
  position: relative;
  margin-top: 2px;
  width: 50px;
  height: 68px;
  margin-bottom: -1.5px;
  border-bottom: solid #62ADDD 1.5px;
}

.o-c-modal__life__menu__child__btn .svg-pin svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.3s ease;
}

.o-c-modal__life__menu__child__btn .text {
  margin-left: 10px;
}

.o-c-modal__life__menu__child:hover svg {
  animation: bound-anim 1s infinite;
}

@keyframes bound-anim {
  0%, 100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -30%;
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.15, 0.9);
  }
}
.lock {
  overflow: hidden;
}

.p-modal-content {
  display: none;
  position: relative;
  max-width: 1040px;
  width: calc(100% - 40px);
}

.p-modal-content__actions {
  position: absolute;
  top: 20px;
  right: 20px;
}

.p-modal-content__actions__close {
  background-color: #000;
  border-radius: 50%;
  color: white;
  width: 40px;
  height: 40px;
  position: relative;
}

.p-modal-content__actions__close:hover {
  opacity: 0.7;
}

.p-modal-content__actions__close__ico {
  width: 20px !important;
  height: 20px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-modal-dismiss {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 10000;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 3%;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #231815;
  border: 0;
  outline: 0;
  background: transparent;
}

@media screen and (max-width: 500px) {
  .popup-modal-dismiss {
    right: 0;
  }
}
.popup-modal-dismiss:before,
.popup-modal-dismiss:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 3px;
  background: #231815;
}

.popup-modal-dismiss:before {
  transform: rotate(-45deg);
}

.popup-modal-dismiss:after {
  transform: rotate(45deg);
}

.p-modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}

.p-modal-wrap {
  z-index: 10000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

/* スワイパー(swiper.js) */
.o-c-swiper__life .swiper-container {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  overflow: hidden;
}

.o-c-swiper__life .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
  /* スライド */
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img {
  width: 50%;
  height: 100%;
  background: #F8F8F8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* ページ数表示 */
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img {
    width: 100%;
    height: 500px;
  }
}
@media screen and (max-width: 820px) and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img {
    height: 34%;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img .img-zoom {
  width: 100%;
  height: 100%;
  padding: 30px;
  pointer-events: none;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img .img-zoom {
    width: auto;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img .swiper-pagination-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto 6px;
  width: 52px;
  height: 36px;
}

@media screen and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img .swiper-pagination-wrapper {
    left: 6%;
    right: auto;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__img .swiper-pagination-wrapper .swiper-pagination {
  font-weight: 700;
  color: #62ADDD;
  text-align: right;
  letter-spacing: 0.35em;
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info {
  width: 50%;
  height: 100%;
  padding: 60px;
  background: #fff;
  text-align: left;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info {
    width: 100%;
    padding: 36px 12% 55px;
  }
}
@media screen and (max-width: 820px) and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info {
    padding: 30px 6%;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading,
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text {
  display: flex;
  flex-direction: column;
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading {
  height: 142px;
  border-bottom: solid #C0C7C7 1px;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading {
    height: auto;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading .sub-title {
  display: flex;
  align-items: center;
  color: #62ADDD;
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading .sub-title .svg-pin {
  margin-right: 10px;
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading .title {
  height: 76.8px;
  display: flex;
  align-items: center;
  margin: 16px 0 30px;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .heading .title {
    height: 62.4px;
    margin: 10px 0 20px;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text {
  height: 334px;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text {
    height: 210px;
    margin-top: 20px;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .message {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 278px;
  /* スクロールバー */
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .message::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  margin: 50px auto;
}

.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .message::-webkit-scrollbar-thumb {
  background: #E0E1E3;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .message {
    height: 154px;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square {
  width: 100%;
  height: 56px;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square {
    margin: 16px auto 0;
  }
}
@media screen and (max-width: 820px) and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square {
    height: 50px;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square .box {
  padding: 16px 0 16px 22px;
}

@media screen and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square .box {
    padding: 14px 0 14px 22px;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square .svg-arrow {
  right: 7%;
}

@media screen and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .o-c-link__square .svg-arrow {
    top: 42%;
  }
}
.o-c-swiper__life .swiper-container .swiper-wrapper .swiper-slide__info .text .on .svg-arrow {
  right: 5%;
}

.o-c-swiper__life .swiper-container .swiper-scrollbar {
  pointer-events: none;
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-scrollbar {
    width: 100%;
    height: 500px;
    /* 画像の高さと合わせる */
    top: 0;
    right: 0;
    margin: 0 auto auto;
  }
}
@media screen and (max-width: 820px) and (max-width: 500px) {
  .o-c-swiper__life .swiper-container .swiper-scrollbar {
    height: 42%;
    /* 画像の高さと合わせる */
  }
}
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev,
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next {
  pointer-events: auto;
  filter: drop-shadow(0px 0px 6px rgba(136, 169, 190, 0.5));
  position: static;
  margin-top: 0;
  width: 43px;
  height: 43px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev svg .circle,
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next svg .circle {
  fill: #fff;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev svg .circle,
  .o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next svg .circle {
    fill: none;
  }
}
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev svg .arrow,
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next svg .arrow {
  fill: #62ADDD;
}

.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev::after,
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next::after {
  content: none;
}

.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev {
  transform: scale(-1, 1);
  margin-left: 15px;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev {
    margin-left: 8px;
  }
}
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-prev:hover {
  transform: scale(-1.1, 1.1);
}

.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next {
  margin-right: 15px;
}

@media screen and (max-width: 820px) {
  .o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next {
    margin-right: 8px;
  }
}
.o-c-swiper__life .swiper-container .swiper-scrollbar .swiper-button-next:hover {
  transform: scale(1.1, 1.1);
}

/* 暮らし　全体マップ */
.o-c-map__life {
  overflow: hidden;
}

.o-c-map__life .view-sp {
  position: relative;
  display: none;
}

@media screen and (max-width: 500px) {
  .o-c-map__life .view-sp {
    display: block;
  }
}
.o-c-map__life .view-pc {
  position: relative;
  max-width: 1440px;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .o-c-map__life .view-pc {
    display: none;
  }
}
.o-c-map__life .view-pc__modal01 {
  top: calc(17.5% - 44px);
  left: calc(8% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal01 {
    top: calc(14.5% - 10px);
    left: calc(10.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal02 {
  top: calc(12% - 44px);
  left: calc(22% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal02 {
    top: calc(10.5% - 10px);
    left: calc(21.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal03 {
  top: calc(31.5% - 44px);
  left: calc(35% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal03 {
    top: calc(29.5% - 10px);
    left: calc(36% - 8px);
  }
}
.o-c-map__life .view-pc__modal04 {
  top: calc(42.5% - 44px);
  left: calc(51% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal04 {
    top: calc(39.5% - 10px);
    left: calc(53.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal05 {
  top: calc(44.5% - 44px);
  left: calc(26.5% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal05 {
    top: calc(44.5% - 10px);
    left: calc(28% - 8px);
  }
}
.o-c-map__life .view-pc__modal06 {
  top: calc(13.5% - 44px);
  left: calc(48% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal06 {
    top: calc(11.5% - 10px);
    left: calc(51.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal07 {
  top: calc(58% - 44px);
  left: calc(8.5% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal07 {
    top: calc(56.5% - 10px);
    left: calc(10% - 8px);
  }
}
.o-c-map__life .view-pc__modal08 {
  top: calc(62.5% - 44px);
  left: calc(25% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal08 {
    top: calc(60.5% - 10px);
    left: calc(26.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal09 {
  top: calc(84.5% - 44px);
  left: calc(82% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal09 {
    top: calc(84.5% - 10px);
    left: calc(83.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal10 {
  top: calc(52.5% - 44px);
  left: calc(40% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal10 {
    top: calc(51.5% - 10px);
    left: calc(42.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal11 {
  top: calc(82.5% - 44px);
  left: calc(20% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal11 {
    top: calc(81.5% - 10px);
    left: calc(23% - 8px);
  }
}
.o-c-map__life .view-pc__modal12 {
  top: calc(68.5% - 44px);
  left: calc(39.5% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal12 {
    top: calc(69% - 10px);
    left: calc(43.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal13 {
  top: calc(78% - 44px);
  left: calc(56% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal13 {
    top: calc(78% - 10px);
    left: calc(59% - 8px);
  }
}
.o-c-map__life .view-pc__modal14 {
  top: calc(54% - 44px);
  left: calc(65% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal14 {
    top: calc(52% - 10px);
    left: calc(67% - 8px);
  }
}
.o-c-map__life .view-pc__modal15 {
  top: calc(30.5% - 44px);
  left: calc(73.8% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal15 {
    top: calc(30.5% - 10px);
    left: calc(75% - 8px);
  }
}
.o-c-map__life .view-pc__modal16 {
  top: calc(39.5% - 44px);
  left: calc(87% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal16 {
    top: calc(40.5% - 10px);
    left: calc(90.5% - 8px);
  }
}
.o-c-map__life .view-pc__modal17 {
  top: calc(10% - 44px);
  left: calc(64.5% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal17 {
    top: calc(9% - 10px);
    left: calc(67% - 8px);
  }
}
.o-c-map__life .view-pc__modal18 {
  top: calc(23% - 44px);
  left: calc(83% - 39px);
}

@media screen and (max-width: 820px) {
  .o-c-map__life .view-pc__modal18 {
    top: calc(21% - 10px);
    left: calc(84% - 8px);
  }
}
.o-c-map__life .kieru {
  display: none;
}

.o-c-map__life__btn {
  width: 156px;
  height: 88px;
  position: absolute;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn {
    width: 32px;
    height: 40px;
  }
}
.o-c-map__life__btn__link {
  width: fit-content;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link {
    bottom: 8px;
    animation: bound-anim-hover 2.4s infinite;
  }
  @keyframes bound-anim-hov {
    0% {
      transform: scale(1);
    }
    30%, 70% {
      top: 0;
      transform: scale(1);
    }
    40% {
      top: -30%;
      transform: scale(0.96, 1.04);
    }
    50% {
      transform: scale(1);
    }
    60% {
      top: 0;
      transform: scale(1.15, 0.9);
    }
  }
}
.o-c-map__life__btn__link:hover .o-c-map__life__btn__link__inner {
  width: 156px;
  height: 76px;
  z-index: 10;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link:hover .o-c-map__life__btn__link__inner {
    width: 32px;
    height: 32px;
  }
}
.o-c-map__life__btn__link:hover .o-c-map__life__btn__link__inner .before {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link:hover .o-c-map__life__btn__link__inner .before {
    opacity: 1;
    pointer-events: auto;
  }
}
.o-c-map__life__btn__link:hover .o-c-map__life__btn__link__inner .after {
  opacity: 1;
  position: static;
  pointer-events: auto;
}

.o-c-map__life__btn__link__inner {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  filter: drop-shadow(0px 2px 2px rgba(35, 24, 21, 0.2));
  transition: all 0.3s ease;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link__inner {
    width: 32px;
    height: 32px;
  }
}
.o-c-map__life__btn__link__inner::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #62ADDD;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link__inner::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #62ADDD;
    bottom: -8px;
  }
}
.o-c-map__life__btn__link__inner .before,
.o-c-map__life__btn__link__inner .after {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s ease;
  color: #fff;
  background: #62ADDD;
  border-radius: 3px;
}

.o-c-map__life__btn__link__inner .before {
  width: 44px;
  height: 44px;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link__inner .before {
    width: 32px;
    height: 32px;
  }
}
.o-c-map__life__btn__link__inner .after {
  width: 156px;
  height: 76px;
  opacity: 0;
  pointer-events: none;
  padding-bottom: 6px;
}

@media screen and (max-width: 820px) {
  .o-c-map__life__btn__link__inner .after {
    display: none;
  }
}
.o-c-map__life .member.o-c-map__life__btn__link__inner::before {
  border-top: 12px solid #8C8CD8;
}

@media screen and (max-width: 820px) {
  .o-c-map__life .member.o-c-map__life__btn__link__inner::before {
    border-top: 8px solid #8C8CD8;
  }
}
.o-c-map__life .member.o-c-map__life__btn__link__inner .before,
.o-c-map__life .member.o-c-map__life__btn__link__inner .after {
  background: #8C8CD8;
}

.o-c-map__life .member.o-c-map__life__btn__link__inner .after svg {
  margin-top: 10px;
}

/* 見出し */
/* ページ見出し */
.o-c-heading__page,
.o-c-heading__page-maponly {
  position: relative;
}

.o-c-heading__page__inner,
.o-c-heading__page-maponly__inner {
  margin: 150px auto 60px auto;
  padding-left: 80px;
}

@media screen and (max-width: 500px) {
  .o-c-heading__page__inner,
  .o-c-heading__page-maponly__inner {
    margin: 116px auto 60px auto;
    padding-left: 58px;
  }
}
.o-c-heading__page__inner::before,
.o-c-heading__page-maponly__inner::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 110px;
  background: linear-gradient(190deg, #8C8CD8, #84D9D9, #FFEF77 80%, #fff);
}

@media screen and (max-width: 500px) {
  .o-c-heading__page__inner::before,
  .o-c-heading__page-maponly__inner::before {
    height: 90px;
  }
}
.o-c-heading__page__inner__map,
.o-c-heading__page-maponly__inner__map {
  display: flex;
  align-items: center;
  margin-top: 22px;
}

.o-c-heading__page__inner__map a,
.o-c-heading__page-maponly__inner__map a {
  color: #C0C7C7;
}

@media screen and (max-width: 500px) {
  .o-c-heading__page-maponly .o-c-heading__page__inner {
    margin: 116px auto 36px auto;
  }
}
.o-c-heading__page-maponly .o-c-heading__page__inner::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 38px;
  background: linear-gradient(190deg, #8C8CD8, #84D9D9, #FFEF77 80%, #fff);
}

.o-c-heading__page-maponly .o-c-heading__page__inner__map {
  height: 38px;
}

.o-c-heading__img {
  width: 100%;
  max-height: 380px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .o-c-heading__img {
    max-height: 320px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 820px) {
  .o-c-heading__img {
    max-height: 260px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 820px) and (max-width: 500px) {
  .o-c-heading__img {
    max-height: 140px;
  }
}
.o-c-heading__img img {
  width: 100%;
  height: 100%;
}

.o-c-heading__sec {
  margin-bottom: 60px;
}

@media screen and (max-width: 500px) {
  .o-c-heading__sec {
    margin-bottom: 40px;
  }
}
.o-c-heading__sec__en,
.o-c-heading__sec .o-c-heading__sec__en-bg {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
}

.o-c-heading__sec__en::before {
  content: "";
  position: absolute;
  right: -80px;
  width: 60px;
  height: 1.5px;
  background-color: #191311;
}

.o-c-heading__sec__en-bg {
  z-index: 10;
  width: fit-content;
  height: fit-content;
  padding: 8px 12px;
  background-color: #fff;
}

.o-c-heading__sec__info {
  margin-top: 36px;
}

/* テキスト */
/* 共通 */
/* 見出し */
.o-c-txt__heading-1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.o-c-txt__heading-1__sub {
  font-size: clamp(1rem, 5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8em;
  width: fit-content;
  position: relative;
}

.o-c-txt__heading-1__sub:before, .o-c-txt__heading-1__sub:after {
  position: absolute;
  z-index: -1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
}

.o-c-txt__heading-1__sub:before {
  content: "“";
  top: 0;
  left: -12px;
}

.o-c-txt__heading-1__sub:after {
  content: "”";
  bottom: 0;
  right: -12px;
}

.o-c-txt__heading-2 {
  font-size: clamp(4rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.o-c-txt__heading-3 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.o-c-txt__heading-4 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4em;
}

.o-c-txt__heading-4-en {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.39em;
}

.o-c-txt__heading-5 {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6em;
}

.o-c-txt__heading-5-en {
  font-size: clamp(1.4rem, 5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.39em;
}

/* 長文 */
.o-c-txt__nomal-1 {
  font-size: clamp(1rem, 3.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8em;
}

.o-c-txt__nomal-2 {
  font-size: clamp(1.3rem, 3.8vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8em;
}

.o-c-txt__nomal-2-bold {
  font-size: clamp(1.3rem, 3.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8em;
}

.o-c-txt__nomal-3 {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 2.2em;
}

.o-c-txt__nomal-4 {
  font-size: clamp(0.8rem, 5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8em;
}

.o-c-txt__nomal-5 {
  font-size: clamp(0.7rem, 5vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8em;
}

/* カテゴリー・電話番号など */
.o-c-txt__label-1 {
  font-size: clamp(0.8rem, 5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: initial;
}

.o-c-txt__label-2 {
  font-size: clamp(0.6rem, 5vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: initial;
}

.o-c-txt__label-3 {
  font-size: clamp(2.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4em;
}

/* 注釈系 */
.o-c-txt__learn-1 {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6em;
  color: #C0C7C7;
  margin-bottom: 30px;
}

/* 注釈系 */
.o-c-txt__comment-1 {
  font-size: clamp(0.8rem, 5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: initial;
}

/* ◯◯&LPG用 */
.o-c-txt__andlpg-1 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8em;
}

.o-c-txt__andlpg-1 img {
  object-fit: contain;
  width: 48.89px;
}

@media screen and (max-width: 768px) {
  .o-c-txt__andlpg-1 {
    font-size: 16px;
  }
  .o-c-txt__andlpg-1 img {
    width: 50px;
  }
}
.o-c-txt__andlpg-1__and {
  font-size: clamp(0.8rem, 5vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8em;
  margin: 1px 2px 0;
}

.o-c-txt__andlpg-1__lpg {
  font-size: clamp(1.2rem, 5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8em;
}

/* &=?用 */
.o-c-txt__members-1 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8em;
}

.o-c-txt__members-1__equal {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.8em;
  margin: 0 6px;
}

/* ページ導入文 */
.o-c-txt__intro-1 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.o-c-txt__intro-1__head {
  width: 70%;
  max-width: 276px;
  text-align: center;
  margin: 80px auto 40px auto;
}

@media screen and (max-width: 500px) {
  .o-c-txt__intro-1__head {
    width: 60%;
    margin: 56px auto 32px auto;
  }
}
.o-c-txt__intro-1__head-sub {
  margin: 90px auto 24px auto;
}

.o-c-txt__intro-1__txt {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .o-c-txt__intro-1__txt {
    text-align: left;
  }
}
/* リンク */
/***** デフォルト *****/
.o-c-link__def {
  width: fit-content;
  transition: all 0.3s ease;
  border-bottom: solid #191311 1.5px;
  padding-bottom: 2.5px;
}

.o-c-link__def:hover {
  border-bottom: solid #191311 3px;
  padding-bottom: 1px;
}

.o-c-link__opacity {
  width: fit-content;
  opacity: 1;
  transition: all 0.3s ease;
}

.o-c-link__opacity:hover {
  opacity: 0.5;
}

.o-c-link__imgzoom {
  overflow: hidden;
  position: relative;
}

.o-c-link__imgzoom img {
  transition: all 0.3s ease;
}

.o-c-link__imgzoom:hover img {
  transform: scale(1.08, 1.08);
}

.o-c-link__imgzoom:hover .no-img {
  transform: scale(1, 1);
}

/***** CONTACT・TEL　固定ボタン *****/
.o-c-link__contel {
  z-index: 9000;
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  bottom: 0;
  border-top: solid #191311 2px;
  border-left: solid #191311 2px;
}

.o-c-link__contel__btn + .o-c-link__contel__btn {
  border-top: solid #191311 2px;
}

.o-c-link__contel__btn {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .o-c-link__contel__btn {
    display: none;
  }
}
.o-c-link__contel__btn .svg-mail,
.o-c-link__contel__btn .svg-tel {
  fill: #191311;
  transition: all 0.3s ease;
}

.o-c-link__contel__btn:hover {
  background: #191311;
}

.o-c-link__contel__btn:hover .svg-mail,
.o-c-link__contel__btn:hover .svg-tel {
  fill: #fff;
}

/***** ヘッダーボタン *****/
.o-c-link__header {
  width: fit-content;
}

.o-c-link__header .o-c-txt__andlpg-1 {
  justify-content: center;
}

.o-c-link__header .title-you {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-you:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #F4A452;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-you:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-you:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-you:after {
    top: 30px;
  }
}
.o-c-link__header .title-life {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-life:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #62ADDD;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-life:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-life:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-life:after {
    top: 30px;
  }
}
.o-c-link__header .title-earth {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-earth:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #6FC76D;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-earth:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-earth:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-earth:after {
    top: 30px;
  }
}
.o-c-link__header .title-lifeline {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-lifeline:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #EBD032;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-lifeline:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-lifeline:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-lifeline:after {
    top: 30px;
  }
}
.o-c-link__header .title-people {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-people:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #8C8CD8;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-people:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-people:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-people:after {
    top: 30px;
  }
}
.o-c-link__header .title-future {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-future:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #84D9D9;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-future:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-future:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-future:after {
    top: 30px;
  }
}
.o-c-link__header .title-news,
.o-c-link__header .title-topics,
.o-c-link__header .title-members {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__header .title-news:after,
.o-c-link__header .title-topics:after,
.o-c-link__header .title-members:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #C0C7C7;
  width: 38px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .o-c-link__header .title-news:after,
  .o-c-link__header .title-topics:after,
  .o-c-link__header .title-members:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .o-c-link__header .title-news:after,
  .o-c-link__header .title-topics:after,
  .o-c-link__header .title-members:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .o-c-link__header .title-news:after,
  .o-c-link__header .title-topics:after,
  .o-c-link__header .title-members:after {
    top: 30px;
  }
}
/* ヘッダーボタン ホバー */
.on.o-c-link__header .title-you,
.active.o-c-link__header .title-you {
  color: #F4A452;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-you:after,
.active.o-c-link__header .title-you:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #F4A452;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-you:after,
  .active.o-c-link__header .title-you:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-you:after,
  .active.o-c-link__header .title-you:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-you:after,
  .active.o-c-link__header .title-you:after {
    top: 30px;
  }
}
.on.o-c-link__header .title-life,
.active.o-c-link__header .title-life {
  color: #62ADDD;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-life:after,
.active.o-c-link__header .title-life:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #62ADDD;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-life:after,
  .active.o-c-link__header .title-life:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-life:after,
  .active.o-c-link__header .title-life:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-life:after,
  .active.o-c-link__header .title-life:after {
    top: 30px;
  }
}
.on.o-c-link__header .title-earth,
.active.o-c-link__header .title-earth {
  color: #6FC76D;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-earth:after,
.active.o-c-link__header .title-earth:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #6FC76D;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-earth:after,
  .active.o-c-link__header .title-earth:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-earth:after,
  .active.o-c-link__header .title-earth:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-earth:after,
  .active.o-c-link__header .title-earth:after {
    top: 30px;
  }
}
.on.o-c-link__header .title-lifeline,
.active.o-c-link__header .title-lifeline {
  color: #EBD032;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-lifeline:after,
.active.o-c-link__header .title-lifeline:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #EBD032;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-lifeline:after,
  .active.o-c-link__header .title-lifeline:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-lifeline:after,
  .active.o-c-link__header .title-lifeline:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-lifeline:after,
  .active.o-c-link__header .title-lifeline:after {
    top: 30px;
  }
}
.on.o-c-link__header .title-people,
.active.o-c-link__header .title-people {
  color: #8C8CD8;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-people:after,
.active.o-c-link__header .title-people:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #8C8CD8;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-people:after,
  .active.o-c-link__header .title-people:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-people:after,
  .active.o-c-link__header .title-people:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-people:after,
  .active.o-c-link__header .title-people:after {
    top: 30px;
  }
}
.on.o-c-link__header .title-future,
.active.o-c-link__header .title-future {
  color: #84D9D9;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-future:after,
.active.o-c-link__header .title-future:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #84D9D9;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-future:after,
  .active.o-c-link__header .title-future:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-future:after,
  .active.o-c-link__header .title-future:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-future:after,
  .active.o-c-link__header .title-future:after {
    top: 30px;
  }
}
.on.o-c-link__header .title-news,
.on.o-c-link__header .title-topics,
.on.o-c-link__header .title-members,
.active.o-c-link__header .title-news,
.active.o-c-link__header .title-topics,
.active.o-c-link__header .title-members {
  color: #C0C7C7;
  transition: all 0.3s ease;
}

.on.o-c-link__header .title-news:after,
.on.o-c-link__header .title-topics:after,
.on.o-c-link__header .title-members:after,
.active.o-c-link__header .title-news:after,
.active.o-c-link__header .title-topics:after,
.active.o-c-link__header .title-members:after {
  content: "";
  position: absolute;
  top: 40px;
  z-index: 10;
  background-color: #C0C7C7;
  width: 38px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media screen and (max-width: 1440px) {
  .on.o-c-link__header .title-news:after,
  .on.o-c-link__header .title-topics:after,
  .on.o-c-link__header .title-members:after,
  .active.o-c-link__header .title-news:after,
  .active.o-c-link__header .title-topics:after,
  .active.o-c-link__header .title-members:after {
    top: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .on.o-c-link__header .title-news:after,
  .on.o-c-link__header .title-topics:after,
  .on.o-c-link__header .title-members:after,
  .active.o-c-link__header .title-news:after,
  .active.o-c-link__header .title-topics:after,
  .active.o-c-link__header .title-members:after {
    top: 40px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 500px) {
  .on.o-c-link__header .title-news:after,
  .on.o-c-link__header .title-topics:after,
  .on.o-c-link__header .title-members:after,
  .active.o-c-link__header .title-news:after,
  .active.o-c-link__header .title-topics:after,
  .active.o-c-link__header .title-members:after {
    top: 30px;
  }
}
/***** フッターボタン *****/
.o-c-link__footer {
  width: fit-content;
}

.o-c-link__footer .o-c-txt__andlpg-1 {
  justify-content: center;
}

.o-c-link__footer .title-you {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-you:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #F4A452;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-link__footer .title-life {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-life:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #62ADDD;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-link__footer .title-earth {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-earth:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #6FC76D;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-link__footer .title-lifeline {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-lifeline:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #EBD032;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-link__footer .title-people {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-people:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #8C8CD8;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-link__footer .title-future {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-future:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #84D9D9;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-link__footer .title-news,
.o-c-link__footer .title-topics,
.o-c-link__footer .title-members {
  color: #191311;
  transition: all 0.3s ease;
}

.o-c-link__footer .title-news:after,
.o-c-link__footer .title-topics:after,
.o-c-link__footer .title-members:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #C0C7C7;
  width: 40px;
  height: 1.5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* ヘッダーボタン ホバー */
.on.o-c-link__footer .title-you,
.active.o-c-link__footer .title-you {
  color: #F4A452;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-you:after,
.active.o-c-link__footer .title-you:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #F4A452;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.on.o-c-link__footer .title-life,
.active.o-c-link__footer .title-life {
  color: #62ADDD;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-life:after,
.active.o-c-link__footer .title-life:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #62ADDD;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.on.o-c-link__footer .title-earth,
.active.o-c-link__footer .title-earth {
  color: #6FC76D;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-earth:after,
.active.o-c-link__footer .title-earth:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #6FC76D;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.on.o-c-link__footer .title-lifeline,
.active.o-c-link__footer .title-lifeline {
  color: #EBD032;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-lifeline:after,
.active.o-c-link__footer .title-lifeline:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #EBD032;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.on.o-c-link__footer .title-people,
.active.o-c-link__footer .title-people {
  color: #8C8CD8;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-people:after,
.active.o-c-link__footer .title-people:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #8C8CD8;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.on.o-c-link__footer .title-future,
.active.o-c-link__footer .title-future {
  color: #84D9D9;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-future:after,
.active.o-c-link__footer .title-future:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #84D9D9;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.on.o-c-link__footer .title-news,
.on.o-c-link__footer .title-topics,
.on.o-c-link__footer .title-members,
.active.o-c-link__footer .title-news,
.active.o-c-link__footer .title-topics,
.active.o-c-link__footer .title-members {
  color: #C0C7C7;
  transition: all 0.3s ease;
}

.on.o-c-link__footer .title-news:after,
.on.o-c-link__footer .title-topics:after,
.on.o-c-link__footer .title-members:after,
.active.o-c-link__footer .title-news:after,
.active.o-c-link__footer .title-topics:after,
.active.o-c-link__footer .title-members:after {
  content: "";
  position: absolute;
  top: 32px;
  z-index: 10;
  background-color: #C0C7C7;
  width: 40px;
  height: 3px;
  transition: all 0.3s ease;
  pointer-events: none;
}

/***** 四角ボタン *****/
.o-c-link__square__stop {
  position: relative;
  overflow: hidden;
  border: solid #191311 1.5px;
  z-index: 10;
  width: 100%;
  height: 76px;
  background: #fff;
}

@media screen and (max-width: 500px) {
  .o-c-link__square__stop {
    height: 67px;
  }
}
.o-c-link__square__stop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #191311;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.o-c-link__square__stop .box,
.o-c-link__square__stop .svg-arrow {
  z-index: 10;
  transition: all 0.3s ease;
}

.o-c-link__square__stop .box {
  position: relative;
  z-index: 10;
  padding: 26px 0 26px 22px;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  .o-c-link__square__stop .box {
    padding: 23px 0 23px 22px;
  }
}
.o-c-link__square__stop .svg-arrow {
  position: absolute;
  top: 46%;
  right: 10%;
  width: 44px;
  height: 5px;
  fill: #191311;
}

.o-c-link__square,
.o-c-link__square-out,
.o-c-link__square-contel,
.o-c-link__square-contact {
  position: relative;
  overflow: hidden;
  border: solid #191311 1.5px;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: #fff;
}

.o-c-link__square:before,
.o-c-link__square-out:before,
.o-c-link__square-contel:before,
.o-c-link__square-contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #191311;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.o-c-link__square .box,
.o-c-link__square .svg-arrow,
.o-c-link__square-out .box,
.o-c-link__square-out .svg-arrow,
.o-c-link__square-contel .box,
.o-c-link__square-contel .svg-arrow,
.o-c-link__square-contact .box,
.o-c-link__square-contact .svg-arrow {
  z-index: 10;
  transition: all 0.3s ease;
}

.o-c-link__square .box,
.o-c-link__square-out .box,
.o-c-link__square-contel .box,
.o-c-link__square-contact .box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  padding: 26px 0 26px 22px;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  .o-c-link__square .box,
  .o-c-link__square-out .box,
  .o-c-link__square-contel .box,
  .o-c-link__square-contact .box {
    padding: 23px 0 23px 22px;
  }
}
.o-c-link__square .svg-arrow,
.o-c-link__square-out .svg-arrow,
.o-c-link__square-contel .svg-arrow,
.o-c-link__square-contact .svg-arrow {
  position: absolute;
  top: 46%;
  right: 10%;
  width: 44px;
  height: 5px;
  fill: #191311;
}

.o-c-link__square,
.o-c-link__square-contel {
  width: 250px;
  height: 76px;
}

@media screen and (max-width: 500px) {
  .o-c-link__square,
  .o-c-link__square-contel {
    width: 230px;
    height: 67px;
  }
}
.o-c-link__square .box,
.o-c-link__square-contel .box {
  width: 100%;
  height: 100%;
}

.o-c-link__square-out {
  height: 75px;
}

.o-c-link__square-out .svg-arrow-yoko,
.o-c-link__square-out .svg-arrow {
  right: 18px;
}

.o-c-link__square-out .svg-arrow {
  transform: rotate(-45deg);
  top: 43%;
}

.o-c-link__square-contel .box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-left: -3px;
}

.o-c-link__square-contel .box .svg-cont,
.o-c-link__square-contel .box .svg-tel {
  margin-right: 8px;
  fill: #191311;
}

.o-c-link__square-contel .box .svg-cont {
  width: 20px;
  height: 16px;
}

.o-c-link__square-contel .box .svg-tel {
  width: 18px;
  height: 18px;
}

.o-c-link__square-contact {
  background: rgba(255, 255, 255, 0.4);
  border: none;
}

.o-c-link__square-contact:before {
  background: #fff;
}

.o-c-link__square-contact .box {
  align-items: flex-start;
  padding: 70px 26% 70px 8%;
}

@media screen and (max-width: 768px) {
  .o-c-link__square-contact .box {
    padding: 70px 8% 140px;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .o-c-link__square-contact .box {
    padding: 40px 8% 94px;
  }
}
.o-c-link__square-contact .box .title-sub {
  margin-left: 14px;
  margin-bottom: 24px;
}

.o-c-link__square-contact .svg-arrow {
  top: 48%;
  right: 6%;
  width: 91px;
  height: 10px;
}

@media screen and (max-width: 768px) {
  .o-c-link__square-contact .svg-arrow {
    top: auto;
    bottom: 20%;
    left: 8%;
    right: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .o-c-link__square-contact .svg-arrow {
    bottom: 13%;
  }
}
/* 四角ボタン　ホバー */
.on.o-c-link__square:hover:before,
.on.o-c-link__square-out:hover:before,
.on.o-c-link__square-contel:hover:before,
.on.o-c-link__square-contact:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.on.o-c-link__square .svg-arrow,
.on.o-c-link__square-out .svg-arrow,
.on.o-c-link__square-contel .svg-arrow,
.on.o-c-link__square-contact .svg-arrow {
  right: 8%;
}

.on.o-c-link__square .box,
.on.o-c-link__square-out .box,
.on.o-c-link__square-contel .box {
  color: #fff;
}

.on.o-c-link__square .svg-arrow,
.on.o-c-link__square .svg-cont,
.on.o-c-link__square .svg-tel,
.on.o-c-link__square-out .svg-arrow,
.on.o-c-link__square-out .svg-cont,
.on.o-c-link__square-out .svg-tel,
.on.o-c-link__square-contel .svg-arrow,
.on.o-c-link__square-contel .svg-cont,
.on.o-c-link__square-contel .svg-tel {
  fill: #fff;
}

.on.o-c-link__square-out .svg-arrow {
  right: 14px;
}

.on.o-c-link__square-contact .svg-arrow {
  right: 5%;
}

@media screen and (max-width: 768px) {
  .on.o-c-link__square-contact .svg-arrow {
    left: 9%;
  }
}
/***** REARN MORE+ボタン *****/
.o-c-link__learn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.o-c-link__learn__heading {
  margin-bottom: 36px;
}

.o-c-link__learn__btn {
  display: flex;
  gap: 30px;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .o-c-link__learn__btn {
    gap: 18px;
    flex-direction: column;
  }
}
.o-c-link__learn__btn__earth,
.o-c-link__learn__btn__lifeline,
.o-c-link__learn__btn__people,
.o-c-link__learn__btn__future {
  width: calc((100% - 60px) / 3);
  position: inherit;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .o-c-link__learn__btn__earth,
  .o-c-link__learn__btn__lifeline,
  .o-c-link__learn__btn__people,
  .o-c-link__learn__btn__future {
    width: 100%;
  }
}
.o-c-link__learn__btn__earth:after,
.o-c-link__learn__btn__lifeline:after,
.o-c-link__learn__btn__people:after,
.o-c-link__learn__btn__future:after {
  content: "";
  background: inherit;
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -15;
  pointer-events: none;
  transition: all 0.3s ease;
}

.o-c-link__learn__btn__earth:before,
.o-c-link__learn__btn__lifeline:before,
.o-c-link__learn__btn__people:before,
.o-c-link__learn__btn__future:before {
  content: "";
  background: rgba(48, 103, 116, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -10;
  pointer-events: none;
}

.o-c-link__learn__btn__earth .description,
.o-c-link__learn__btn__lifeline .description,
.o-c-link__learn__btn__people .description,
.o-c-link__learn__btn__future .description {
  margin: 70px 8%;
  display: flex;
  flex-direction: column;
}

.o-c-link__learn__btn__earth .description .heading,
.o-c-link__learn__btn__lifeline .description .heading,
.o-c-link__learn__btn__people .description .heading,
.o-c-link__learn__btn__future .description .heading {
  width: 240px;
  height: 36px;
  fill: #fff;
  margin-bottom: 26px;
}

.o-c-link__learn__btn__earth .description .text,
.o-c-link__learn__btn__lifeline .description .text,
.o-c-link__learn__btn__people .description .text,
.o-c-link__learn__btn__future .description .text {
  color: #fff;
}

.on.o-c-link__learn__btn__earth:after,
.on.o-c-link__learn__btn__lifeline:after,
.on.o-c-link__learn__btn__people:after,
.on.o-c-link__learn__btn__future:after {
  filter: blur(0px);
}

.o-c-link__learn__btn__earth {
  background: url(../img/andlpg_earth.jpg) no-repeat center;
  background-size: cover;
}

.o-c-link__learn__btn__lifeline {
  background: url(../img/andlpg_lifeline.jpg) no-repeat center;
  background-size: cover;
}

.o-c-link__learn__btn__people {
  background: url(../img/andlpg_people.jpg) no-repeat center;
  background-size: cover;
}

.o-c-link__learn__btn__future {
  background: url(../img/andlpg_future.jpg) no-repeat center;
  background-size: cover;
}

/***** 追従バナー *****/
.o-c-link__banner-ad {
  z-index: 8990;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 30px;
  bottom: 20px;
  margin: auto;
  width: 308px;
  height: 126px;
  /* 右側の追従バナーエリア */
}

@media screen and (max-width: 500px) {
  .o-c-link__banner-ad {
    right: 0;
    left: 0;
    bottom: 10px;
    height: 100px;
  }
}
.o-c-link__banner-ad__block {
  background: #fff;
  border-radius: 8px;
  border: solid #191311 1px;
  width: 100%;
  height: 100%;
  backface-visibility: visible !important;
  filter: drop-shadow(0px 3px 11px rgba(0, 0, 0, 0.16));
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.o-c-link__banner-ad__block.is-hidden {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  pointer-events: none;
  display: none;
}

.o-c-link__banner-ad__block:hover {
  opacity: 0.5;
}

.o-c-link__banner-ad__block__head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 4px;
}

@media screen and (max-width: 500px) {
  .o-c-link__banner-ad__block__head {
    font-size: clamp(2.4rem, 5vw, 2.7rem);
  }
}
@media screen and (max-width: 500px) {
  .o-c-link__banner-ad__block__head span {
    margin-bottom: 1px;
  }
}
.o-c-link__banner-ad__block__txt {
  background: linear-gradient(to left, #8C8CD8, #F4A452);
  padding: 4px 16px;
  border-radius: 50px;
  color: #fff;
}

@media screen and (max-width: 500px) {
  .o-c-link__banner-ad__block__txt {
    padding: 2px 16px;
  }
}
.o-c-link__banner-ad__close {
  z-index: 8991;
  transition: transform 0.5s ease 0.2s, opacity 0.5s ease, top 0.5s ease 0.2s;
  content: "";
  background: #fff;
  border-radius: 50%;
  border: solid #191311 1px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  right: -15px;
  margin: 0;
  padding: 0;
}

.o-c-link__banner-ad__close .svg-close {
  fill: #191311;
  width: 12px;
  height: 12px;
}

.o-c-link__banner-ad__close.on {
  background: #191311;
}

.o-c-link__banner-ad__close.on .svg-close {
  fill: #fff;
}

.o-c-link__banner-ad .hide {
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.o-c-link__banner-ad.scroll-footer {
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

/* リスト */
/* デフォルト */
.o-c-list__def ul li:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #62ADDD;
  border-radius: 50%;
  margin-right: 0.4em;
}

.o-c-list__def ol li {
  margin-left: 20px;
  list-style-type: decimal;
}

.o-c-list__news {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: solid #C0C7C7 1px;
  border-bottom: solid #C0C7C7 1px;
}

.o-c-list__news__result {
  display: flex;
  width: 100%;
  margin-bottom: 36px;
}

.o-c-list__news__result .heading {
  font-weight: 700;
  margin-right: 14px;
}

.o-c-list__news__result span {
  margin: auto 4px;
}

.o-c-list__news__child {
  width: 100%;
}

.o-c-list__news__child__txt {
  padding: 36px 0;
}

@media screen and (max-width: 500px) {
  .o-c-list__news__child__txt {
    padding: 32px 0;
  }
}
.o-c-list__news__child__txt__title {
  font-weight: 700;
  margin-bottom: 14px;
}

.o-c-list__news__child__txt__info {
  display: flex;
}

.o-c-list__news__child__txt__info__time {
  font-weight: 700;
  margin: 4px 16px auto 0;
}

.o-c-list__news__child__txt__info__category {
  display: flex;
  flex-wrap: wrap;
}

.o-c-list__news__child__txt__info__category div + div {
  margin-left: 8px;
}

.o-c-list__news__child + .o-c-list__news__child {
  border-top: solid #C0C7C7 1px;
}

.o-c-list__3cont {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 30px;
}

@media screen and (max-width: 1080px) {
  .o-c-list__3cont {
    gap: 65px 26px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 768px) {
  .o-c-list__3cont {
    gap: 40px 0;
  }
}
.o-c-list__3cont__result {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

.o-c-list__3cont__result .heading {
  font-weight: 700;
  margin-right: 14px;
}

.o-c-list__3cont__result span {
  margin: auto 4px;
}

.o-c-list__3cont__child {
  width: calc((100% - 90px) / 3);
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1080px) {
  .o-c-list__3cont__child {
    width: calc((100% - 26px) / 2);
  }
}
@media screen and (max-width: 1080px) and (max-width: 768px) {
  .o-c-list__3cont__child {
    width: 100%;
  }
}
.o-c-list__3cont__child__thum .no-img {
  margin-top: 12px;
}

.o-c-list__3cont__child__thum img {
  width: 100%;
  height: 274px;
}

@media screen and (max-width: 1440px) {
  .o-c-list__3cont__child__thum img {
    height: 220px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1200px) {
  .o-c-list__3cont__child__thum img {
    height: 194px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1200px) and (max-width: 1080px) {
  .o-c-list__3cont__child__thum img {
    height: 250px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1200px) and (max-width: 1080px) and (max-width: 820px) {
  .o-c-list__3cont__child__thum img {
    height: 210px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1200px) and (max-width: 1080px) and (max-width: 820px) and (max-width: 768px) {
  .o-c-list__3cont__child__thum img {
    height: 360px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1200px) and (max-width: 1080px) and (max-width: 820px) and (max-width: 768px) and (max-width: 500px) {
  .o-c-list__3cont__child__thum img {
    height: 190px;
  }
}
.o-c-list__3cont__child__txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  margin: auto 20px auto;
}

.o-c-list__3cont__child__txt__title {
  margin: 16px auto 6px;
  font-weight: 700;
  line-height: 1.4em;
  width: 100%;
}

.o-c-list__3cont__child__txt__info {
  display: flex;
  flex-grow: 1;
}

.o-c-list__3cont__child__txt__info__time {
  font-weight: 700;
  margin: 4px 16px auto 0;
}

.o-c-list__3cont__child__txt__info__category {
  display: flex;
  flex-wrap: wrap;
}

.o-c-list__3cont__child__txt__info__category div + div {
  margin-left: 8px;
}

.o-c-list__3cont__child__txt__link {
  margin-top: 22px;
}

.o-c-list__3cont__notfound {
  text-align: center;
  width: 100%;
  margin: 60px auto 100px;
}

/****** ドロップダウン ******/
/* 幅 */
/* 背景色 */
/* パディング */
.o-c-list__drop {
  width: 187px;
}

.o-c-list__drop__button {
  position: relative;
  background-color: #F8F8F8;
}

.o-c-list__drop__button .o-c-txt__jp-s {
  font-weight: 400;
}

.o-c-list__drop__button__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.o-c-list__drop__button__inner__label {
  display: block;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}

.o-c-list__drop__button__inner svg {
  fill: none;
  stroke: #191311;
  stroke-width: 2;
  position: absolute;
  right: 14px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.o-c-list__drop__button__list {
  z-index: 8900;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 37px;
  left: 0;
  z-index: 10;
}

.o-c-list__drop__button__list li {
  width: 187px;
  background-color: #F8F8F8;
  transition: all 0.3s ease;
}

.o-c-list__drop__button__list li:hover {
  background-color: #E0E1E3;
}

.o-c-list__drop__button__list li a {
  display: block;
  padding: 10px;
}

.o-c-list__drop__button.open .o-c-list__drop__button__list {
  visibility: visible;
  opacity: 1;
}

.o-c-list__drop__button.open svg {
  transform: rotateX(180deg);
}

.l-wrapper {
  visibility: hidden;
}

.l-wrap__def,
.l-wrap__w100 {
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .l-wrap__def,
  .l-wrap__w100 {
    margin: 55px auto 0;
  }
}
.l-wrap__def {
  width: 90%;
}

.l-wrap__w100 {
  width: 100%;
}

.l-wrap__w90 {
  width: 90%;
}

.l-wrap__def__l {
  max-width: 1320px;
  width: 100%;
}

.l-wrap__def__m {
  max-width: 1080px;
  width: 100%;
}

.l-wrap__def__s {
  max-width: 820px;
  width: 100%;
}

.l-wrap__def__contact {
  max-width: 1080px;
  width: 70%;
}

@media screen and (max-width: 1440px) {
  .l-wrap__def__contact {
    max-width: 820px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  .l-wrap__def__contact {
    width: 80%;
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) and (max-width: 820px) {
  .l-wrap__def__contact {
    width: 90%;
  }
}
.l-wrap__2column {
  overflow: hidden;
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-wrap__2column {
    flex-direction: column;
  }
}
.l-wrap__2column__right {
  float: right;
  width: 23%;
}

@media screen and (max-width: 768px) {
  .l-wrap__2column__right {
    float: none;
    width: 100%;
  }
}
.l-wrap__2column__left {
  float: left;
  width: 77%;
  padding: 0 80px;
}

@media screen and (max-width: 768px) {
  .l-wrap__2column__left {
    float: none;
    width: 100%;
    padding: 0;
  }
}
/* 暮らし */
.p-life {
  /* 一覧 */
  /* 導入 */
  /* あなたの街 */
  /* あなたの街 */
  /* LEARN MORE */
}

@media screen and (max-width: 500px) {
  .p-life__intro .o-c-txt__intro-1__head {
    margin: 16px auto 40px auto;
  }
}
.p-life__town {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-life__products {
  background: #F8F8F8;
  padding: 80px 0;
}

@media screen and (max-width: 500px) {
  .p-life__products {
    padding: 60px 0;
  }
}
.p-life__learn .o-c-link__learn__btn {
  gap: 20px;
  flex-wrap: wrap;
}

.p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__earth,
.p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__lifeline,
.p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__people,
.p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__future {
  width: calc((100% - 90px) / 4);
}

@media screen and (max-width: 1440px) {
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__earth,
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__lifeline,
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__people,
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__future {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 1440px) and (max-width: 1080px) {
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__earth,
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__lifeline,
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__people,
  .p-life__learn .o-c-link__learn__btn .o-c-link__learn__btn__future {
    width: 100%;
  }
}