@charset "utf-8";

/* ------------------------------------------------------
* Elements List
------------------------------------------------------ */
:root {
  --main-yellow: #FDD000;
  --sub1-yellow: #FFED76;
  --sub2-yellow: #FFBE41;
  --sub3-yellow: #FFF7BF;
  --accent-bulue: #0072CE;
  --bg-beige: #F9F2E4;
  --bg-stripe: repeating-linear-gradient(-45deg, #FFFBDD 0 4px, #ffffff 4px 16px);
  --bg-marker: linear-gradient(transparent 60%, #FFED76 40%);
  --hover-opacity: 0.6;
  --transition: .5s;
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

/* ----- common ----- */
sup {
  vertical-align: super;
  font-size: smaller;
}

html {
  font-size: 10px;
}

@media all and (max-width: 1715px) {
  html {
    font-size: clamp(6.6px, 0.582vw, 10px);
  }
}

body {
  min-width: 1200px;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.pc_cont {
  display: block;
}

.sp_cont {
  display: none;
}

/* ----- header ----- */
.main-header {
  width: 100%;
  height: 79px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 30px
}

.main-header__logo img {
  height: 36px;
  width: auto;
  vertical-align: middle;
}

@media all and (max-width: 1023px) {
  .main-header {
      height:50px;
      padding: 0 15px
  }

  .main-header__logo img {
      height: 20px
  }
}

/* ----- main - common ----- */
.section-contents__inner {
  max-width: 1200px;
  width: 70%;
  margin: 0 auto;
}

/* @media all and (max-width: 1715px) {
  .section-contents__inner {
    max-width: 1200px;
    width: 70%;
    margin: 0 auto;
  }
} */

.contents-image {
  width: 100%;
  height: auto;
  display: block;
}

.contents-link {
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
}

.contents-link {
  cursor: pointer;
  text-decoration: underline;
}

.contents-link img {
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .contents-link:hover {
    opacity: var(--hover-opacity);
    text-decoration: none;
  }
}

.txt_st {
  font-weight: bold;
}

.common-entry__btn {
  max-width: 790px;
  margin: 0 auto;
  width: calc(790 / 1200 * 100%);
}

/* ----- main-kv ----- */
.main-kv {
  padding-block: 82px 0;
  padding-inline: 0;
  background-size: 100%;
  background: var(--sub1-yellow);
}

.main-kv__title {
  max-width: 1200px;
  margin: 0 auto;
}

.main-kv__content {
  position: relative;
  width: calc(1000 / 1200 * 100%);
  margin-inline: auto;
  margin-block-start: 42px;
  padding-block-end:  60px;
}

.main-kv__content::before {
  content: '';
  position: absolute;
  width: 120%;
  height: calc(100% - 32px);
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-yellow);
  border-radius: 20px;
}

.main-kv__benefit {
  position: relative;
}

.main-kv__benefit-float {
  position: absolute;
  max-width: 197px;
  aspect-ratio: 197 / 197;
  width: calc(197 / 1000 * 100%);
  top: calc(-17 / 433 * 100%);
  left: calc(-147 / 1000 * 100%);
}

.main-kv__benefit:nth-of-type(3) {
  padding-inline-end: 1%;
}

.main-kv__benefit:nth-of-type(3) .main-kv__benefit-float {
  position: absolute;
  max-width: 197px;
  aspect-ratio: 197 / 197;
  width: calc(197 / 1000 * 100%);
  top: calc(-96 / 511 * 100%);
  left: calc(-147 / 1000 * 100%);
}

.main-kv__benefit-note {
  margin-block-start: 15px;
}

.main-kv__benefit-note-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.main-kv__benefit-note-list__row {
  display: flex;
  gap: 13px;
}

.main-kv__benefit-note-list__term {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: auto;
  border: 1px solid #000;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: center;
  flex-shrink: 0;
}

.main-kv__benefit-note-list__desc {
  flex: 1;
  font-size: 1.2rem;
  color: #000;
}

.main-kv__benefit-note-list__txt {
  margin: 0 0 2px;
}

.main-kv__benefit-note-list__ul {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

.main-kv__benefit-note-list__ul li {
  margin-bottom: 1px;
  position: relative;
  padding-left: 1em;
}

.main-kv__benefit-note-list__ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
}

.main-kv .common-entry__btn {
  margin-block-start: 109px;
}

/* ----- content - common ----- */
.contents__title {
  max-width: 1198px;
  margin: 0 auto;
  position: relative;
  padding-block-end: calc(50px + var(--leading-trim));
}

.contents__title::before {
  position: absolute;
  content: '';
  display: block;
  width: calc(100 / 1200 * 100%);
  height: 10px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-yellow);
}

.contents__title .title_txt{
  display: block;
  font-size: 5.6rem;
  font-weight: 800;
  text-align: center;
  margin-top: 0;
  line-height: 1.5;
}

.contents__title .title_sub-txt{
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  text-align: center;
}

.contents__title .txt_marker{
  background-image: var(--bg-marker);
  padding: 0 1%;
}

.txt_marker{
  background-image: var(--bg-marker);
  padding: 0 1%;
}

.contents__title .title_ico{
  display: block;
  max-width: 256px;
  margin: 0 auto;
}

.contents__note {
  font-size: 1.2rem;
  line-height: 1.57;
}

.contents__note .note_txt{
  padding-left: 1em;
  text-indent: -1em;
}

.contents__note .note_txt.no_indent {
  padding-left: 0;
  text-indent: 0;
}

.contents__note .note_txt a{
  color: var(--accent-bulue);
}

.txt_bold {
  font-weight: bold;
}

.txt_indent_1 {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  width: 100%;
}

.txt_indent_2 {
  display: block;
  padding-left: 2em;
  text-indent: -1em;
  width: 100%;
}

.txt_indent_2_h {
  display: block;
  padding-left: 3em;
  text-indent: -1.7em;
  width: 100%;
}

.txt_indent_3 {
  display: block;
  padding-left: 4em;
  text-indent: -1em;
  width: 100%;
}

.txt_indent_p_1 {
  display: block;
  padding-left: 2em;
  width: 100%;
}

.txt_indent_p_2 {
  display: block;
  padding-left: 3em;
  width: 100%;
}

.txt_indent_p_3 {
  display: block;
  padding-left: 4em;
  width: 100%;
}

.contents__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.table_area {
  margin-top: 40px;
}

.contents__list-title {
  font-size: 1.4rem;
  background: var(--bg-beige);
  color: #000;
  padding: calc(24px + var(--leading-trim)) 2%;
  border: 1px solid #ffffff;
}

.contents__list-note {
  font-size: 1.4rem;
  background: #F4F4F4;
  padding: calc(24px + var(--leading-trim)) 2%;
  flex-grow: 1;
  line-height: 2;
  border: 1px solid #ffffff;
}

.accordion_toggle {
  cursor: pointer;
}

.note_txt_margin {
  margin-top: calc(34px + var(--leading-trim));
}

/* ----- content01 ----- */
.contents01 {
  padding: 14% 0 120px;
  background-image:
    url("../images/index_bg01.png");
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

.contents01__item {
  margin-block-start: calc(53px + var(--leading-trim));
}

.contents01__item-image:nth-of-type(1) {
  margin-block-start: calc(100px + var(--leading-trim));
}

.contents01__item-image:nth-of-type(2) {
  margin-block-start: 34px;
}

.contents01__item-image:nth-of-type(3) {
  margin-block-start: 66px;
}

.contents01__item-description {
  font-size: 2.2rem;
  line-height: 2.2;
  letter-spacing: 0.00em;
}

.contents01__item-note.contents__note {
  font-size: 1.2rem;
  line-height: 1.57;
  margin-block-start: calc(22px + var(--leading-trim));
}

.contents01__item-note.contents__note .note_txt{
  padding-left: 1.8em;
  text-indent: -1.8em;
}

.contents01__item .main-kv__benefit-note {
  margin-block-start: calc(28px + var(--leading-trim));
}


/* ----- content02 ----- */
.contents02 {
  padding:  calc(120px + var(--leading-trim)) 0;
  background: var(--sub3-yellow);
}

.contents02__item .common-entry__btn {
  margin-top: 72px;
}

.contents02__list {
  margin-top: calc(96px + var(--leading-trim));
}

.contents02__list-item {
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
      "image description"
      "image description-img";
  margin-inline: auto;
  column-gap: 32px;
  padding: 54px 4.16% 50px 2%;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  margin-bottom: 157px;
  border: 4px solid #000;
}

.contents02__list-item:first-child {
  padding: 54px 4.16% 20px 2%;
}

.contents02__list-item:last-child {
  margin-bottom: 0;
}

.contents02__list-item::after {
  content: '';
  position: absolute;
  background-image: url("../images/index_ic04.png");
  background-size: 100%;
  background-repeat: no-repeat;
  transform: translate(-50%, 0);
  left: 50%;
  bottom: -105px;
  max-width: 70px;
  aspect-ratio: 70 / 70;
  width: calc(70 / 1200 * 100%);
}

.contents02__list-item:last-child::after {
  content: none;
}

.contents02__list-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translate(-50%, -50%);
  max-width: 510px;
  aspect-ratio: 510 / 74;
  width: calc(510 / 1200 * 100%);
}

.contents02__list-item:nth-of-type(1):before {
  background-image: url("../images/index_ic01.png");
}

.contents02__list-item:nth-of-type(2):before {
  background-image: url("../images/index_ic02.png");
}

.contents02__list-item:nth-of-type(3):before {
  background-image: url("../images/index_ic03.png");
}

.contents02__list-image {
  min-width: 160px;
  display: flex;
  align-items: center;
  grid-area: image;
}

.contents02__list-description{
  padding: calc(15px + var(--leading-trim)) 0;
  grid-area: description;
}



.contents02__list-description .contents02__list-txt{
  font-size: 2rem;
  line-height: 2;
  margin-top: calc(30px + var(--leading-trim));
}



.contents02__list-description-img {
  margin-top: calc(30px + var(--leading-trim));
  grid-area: description-img;
}

.contents02__note {
  padding: 60px 28% 80px 10%;
  background-color: #FFED76;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.contents02__note::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 64px solid #ffffff;
  transform: rotate(-180deg);
}

.contents02__note::after {
  content: '';
  position: absolute;
  width: 203px;
  height: 482px;
  top: -42px;
  right: 8%;
  background-image: url(../images/index_im02.png);
}

@media all and (max-width: 1550px) {
  .contents02__note::after {
    content: '';
    position: absolute;
    width: 18%;
    top: initial;
    top: -5vw;
    right: 8%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../images/index_im02.png);
  }
}

.contents02__note-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}

.contents02__note-txt {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: calc(10px + var(--leading-trim));
}

/* ----- content03 ----- */
.contents03 {
  padding: calc(112px + var(--leading-trim)) 0;
  background: var(--bg-stripe);
  border-top: 8px solid var(--main-yellow);
  border-bottom: 8px solid var(--main-yellow);
}

.contents03__item {
  margin-top: 70px;
  position: relative;
}

.contents03__item:not(:first-of-type) {
  margin-top: 110px;
}

.contents03__item:before {
  content: '';
  position: absolute;
  top: -70px;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  max-width: 149px;
  aspect-ratio: 149 / 180;
  width: calc(149 / 1200 * 100%);
}

.contents03__item:nth-of-type(1):before {
  background-image: url("../images/index_ic05.png");
}

.contents03__item:nth-of-type(2):before {
  background-image: url("../images/index_ic06.png");
}

.contents03__item:nth-of-type(3):before {
  background-image: url("../images/index_ic07.png");
}

.contents03 .contents__title .title_txt{
  font-size: 4.8rem;
}

.contents03__device {
  background-color: var(--bg-beige);
  padding: 85px 2% 54px 10.6%;
  border-radius: 10px;
}

.contents03__device-title {
  font-size: 2.8rem;
  font-weight: bold;
}

.contents03__device-subtitle {
  font-size: 1.2rem;
  text-align: center;
}

.contents03__device-div {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.contents03__device-description {
  width: 34%;
}

.contents03__device-description .contents03__device-txt {
  font-size: 1.6rem;
  line-height: 1.75;
  margin-top:  calc(40px + var(--leading-trim));
}

.contents03__device-note {
  margin-top:  calc(40px + var(--leading-trim));
}

.contents03__device-image {
  max-width: 644px;
  width: 62.666%;
}

.contents03__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  gap: 40px 20px;
}

.contents03__list-item {
  width: calc(50% - 10px);
  background-color: var(--bg-beige);
  border-radius: 10px;
  padding: 10px 3.33% 10px 6.66%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 146px;
  position: relative;
}

.contents03__list-description {
  width: 100%;
}

.contents03__list-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}

.contents03__list-txt {
  font-size: 1.6rem;
  line-height: 1.5;
}

.contents03__list-image {
  max-width: 160px;
  position: absolute;
  right: 3.33%;
  bottom: 10px;
}

.contents03__list-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background-color: #fff;
}

.contents03__list-note {
  font-size: 1.4rem;
  margin-top: 5px;
}

/* ----- content04 ----- */
.contents04 {
  padding: 120px 0 120px;
}

.contents04__toggle-area:nth-of-type(2) {
  margin-top: 40px;
}

.contents04__toggle-title {
  font-size: 2.4rem;
  font-weight: bold;
  background: #000;
  color: #fff;
  padding: calc(28px + var(--leading-trim)) 3.5%;
  position: relative;
}

.contents04__toggle-title::before,
.contents04__toggle-title::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 4px;
  background-color: #fff;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.contents04__toggle-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.open .contents04__toggle-title::before {
  transform: translateY(-50%) rotate(180deg);
}

.open .contents04__toggle-title::after {
  transform: translateY(-50%) rotate(180deg);
}

.open .contents04__toggle-note {
  padding: 0;
}

.contents04__toggle-note .contents__list-title {
  min-width: 21.5%;
  width: 21.5%;
  word-break: break-all;
}

.contents04__toggle-note {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  line-height: 1.77;
}

.contents04__toggle-note .contents__list-title {
  border: 1px solid #888888;
}

.contents__list:not(:first-of-type) .contents__list-title {
  border-top: none;
}

.contents04__toggle-note .contents__list-note {
  border: 1px solid #888888;
  border-left: none;
  background: #fff;
  word-break: break-all;
}

.contents__list:not(:first-of-type) .contents__list-note {
  border-top: none;
}

.contents04__toggle-note .contents04__toggle-description {
  font-size: 1.6rem;
  padding: 40px 0 0 0;
  line-height: 1.75;
}

.contents04 .common-entry__btn {
  margin-top: 80px;
}

/* ----- content05 ----- */
.contents05 {
  padding: 25px 0 98px;
  background: linear-gradient(transparent 30%, var(--bg-beige) 30%);
}

.contents05__notice {
  background-color: var(--main-yellow);
  border-radius: 20px;
  padding: calc(70px + var(--leading-trim)) 8.5%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.contents05__notice-content {
  width: 65%;
  z-index: 1;
}

.contents05__notice-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: calc(40px + var(--leading-trim));
}

.contents05__notice-subtitle {
  font-size: 1.6rem;
  margin-bottom: calc(32px + var(--leading-trim));
}

.contents05__notice-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents05__notice-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contents05__notice-icon {
  width: 48px;
  flex-shrink: 0;
}

.contents05__notice-icon img {
  width: 100%;
  height: auto;
}

.contents05__notice-text {
  font-size: 1.6rem;
  line-height: 1.45;
}

.contents05__notice-text a {
  text-decoration: underline;
  font-weight: normal;
  display: inline-block;
  margin-top: 5px;
}

.contents05__notice-image {
  position: absolute;
  bottom: 9.25%;
  right: 8.1%;
  max-width: 281px;
}

.contents05__notice-image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----- content06 ----- */
.contents06 {
  padding: 0 0 89px;
  background-color: var(--bg-beige);

}

.contents06 .contents__title .title_txt{
  font-size: 4.8rem;
  margin-top: 0;
}

.contents06 .contents__title::before {
  content: none;
}

.contents06__tab-wrapper {
  margin: 0 auto;
  margin-top: 40px;
}

.contents06__tab-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  bottom: -4px;
}

.contents06__tab-nav-item {
  width: 50%;
  cursor: pointer;
  border: 4px solid #000;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background-color: #ccc; /* Inactive color */
  position: relative;
  transition: background-color 0.3s;
  overflow: visible;
  border-bottom: 4px solid #000;
}

.contents06__tab-nav-item:first-child {
  margin-right: 2%;
  background-color: #FFBE41;
}

.contents06__tab-nav-item:last-child {
  background-color: #A0E5EB;
}

.contents06__tab-nav-item.active {
  opacity: 1;
  z-index: 3;
  background-color: #FFBE41;
  border-bottom: none;
}

.contents06__tab-nav-item:last-child.active {
  background-color: #A0E5EB;
  border-bottom: none;
}

.contents06__tab-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 108px;
  position: relative;
}

.contents06__tab-icon {
  width: 141px;
  height: auto;
  border-radius: 0;
  overflow: visible;
  background-color: transparent;
  border: none;
  position: absolute;
  bottom: 0;
  left: 31px;
}

.contents06__tab-nav-item:nth-of-type(2) .contents06__tab-icon {
 width: 157px;
}

.contents06__tab-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

.contents06__tab-text {
  font-size: 3.2rem;
  font-weight: bold;
  margin-left: 80px;
}

.contents06__tab-body {
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 4px solid #000;
  border-radius: 0 0 10px 10px;
  padding: 60px 7%;
}

.contents06__tab-content {
  display: none;
}

.contents06__tab-content.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contents06__qa-list {
  margin: 0;
}

.contents06__qa-item {
  border-bottom: 1px solid #ccc;
  padding: 40px 0;
}

.contents06__qa-item:first-child {
  padding-top: 0;
}

.contents06__qa-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contents06__qa-question,
.contents06__qa-answer {
  display: flex;
  align-items: center;
  gap: 32px;
}

.contents06__qa-question {
  margin-bottom: 24px;
  font-weight: bold;
}

.contents06__qa-answer {
  margin: 0;
}

.qa-icon {
  flex-shrink: 0;
  width: 40px;
}

.qa-icon img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.qa-text {
  font-size: 2rem;
  line-height: 1.5;
  padding-top: 0.2em;
}

.contents06__qa-answer .qa-text {
  font-size: 1.6rem;
}

/* ----- content07 ----- */
.contents07 {
  padding: calc(115px + var(--leading-trim)) 0 calc(105px + var(--leading-trim));
}

.contents07 .contents__title .title_txt {
  font-size: 4.8rem;
  margin-top: 0;
}

.contents07 .contents__title::before {
  content: none;
}

.contents07__title.contents__title {
  padding-block-end: calc(46px + var(--leading-trim));
}

.contents07__inquiry-btn {
  display: block;
  padding: calc(35px + var(--leading-trim)) 32px;
  font-size: 2.4rem;
  background: #000;
  font-weight: bold;
  border-radius: 8px;
  max-width: 489px;
  margin: 0 auto;
  color: #fff;
  margin-top: calc(20px + var(--leading-trim));
  text-align: center;
  position: relative;
}

a.contents07__inquiry-btn::after {
    position: absolute;
    content: '';
    display: block;
    color: #fff;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(45deg);
    top: calc(50% - 0.1em);
    right: 5%;
}

@media (hover: hover) and (pointer: fine) {
  .contents07__inquiry-btn:hover {
    opacity: var(--hover-opacity);
    text-decoration: none;
  }
}

.contents07__inquiry-txt {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.common-entry__btn {
  margin: 110px auto 0;
}

/* ----- flex-nav ----- */
.flex-nav {
  position:fixed;
  top: 20%;
  right: 0;
  width: calc(15% + 20px);
  max-width: 320px;
  z-index: 999;
}

.flex-nav__list {
  margin: 20px 0 20px auto;
}

.flex-nav__list .flex-nav__list-item{
  font-size: clamp(1.4rem, 1vw, 1.8rem);
}

.flex-nav__list .flex-nav__list-item > a{
  display: block;
  padding: 20px 4% 20px 8%;
}

@media (hover: hover) and (pointer: fine) {
  .flex-nav__list .flex-nav__list-item > a:hover{
    transition: var(--transition);
    opacity: var(--hover-opacity);
  }
}

.flex-nav__list .flex-nav__list-item:nth-of-type(1){
  border-radius: 20px 0 0 0;
  color: #ffffff;
  background: linear-gradient(110deg, #3DB70D, #98D36A);
}

.flex-nav__list .flex-nav__list-item:nth-of-type(n + 2){
  border-top: 1px solid #D8D8D8;
}

.flex-nav__list .flex-nav__list-item:last-child{
  border-radius: 0 0 0 20px;
}

/* ----- footer ----- */
#footer {
  background: #000;
  color: #fff;
}

.footer-wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.footer__eneosp {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 50px;
  padding: 38px 4% 38px 50px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-wrapper a:hover {
    display: inline-block;
    opacity: var(--hover-opacity);
    text-decoration: none;
  }
}

.footer__eneosp-logo-image {
  max-width: 387px;
}

.footer__eneosp-link {
  max-width: 890px;
}

.footer__eneosg {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 50px;
  padding: 38px 4% 10px 50px;
  border-top: 1px solid #fff;
}

.footer__eneosg-logo-image {
  max-width: 261px;
}

.footer__eneosg-link {
  max-width: 1000px;
}

.footer__link-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: calc(15px + var(--leading-trim));
}

.footer__eneosg .footer__link-list {
  row-gap: calc(13px + var(--leading-trim));
}

.footer__link-list > li {
  font-size: 2rem;
}

.footer__eneosg .footer__link-list {
  column-gap: 50px;
}

.footer__link-item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  align-items: center;
}

.footer__link-item::after {
  content: '';
  display: block;
  background-image: url("../images/index_footer08.png");
  background-size: 100%;
  background-repeat: no-repeat;
  margin-left: 5px;
  width: 10px;
  height: 11px;
}

.footer__eneosg-link .footer__link-list .footer__link-item:nth-of-type(1) a {
  height: 20px;
}

.footer__eneosg-link .footer__link-list .footer__link-item:nth-of-type(2) a {
  height: 20px;
}

.footer__eneosg-link .footer__link-list .footer__link-item:nth-of-type(3) a {
  height: 26px;
}

.footer__eneosg-link .footer__link-list .footer__link-item:nth-of-type(4) a {
  height: 20px;
}

.footer__eneosg-link .footer__link-list .footer__link-item:nth-of-type(5) a {
  height: 20px;
}

.footer__eneosg-link .footer__link-list::after {
  content: '';
  width: 100%;
}

@media all and (max-width: 1275px) {
  .footer__eneosg-link .footer__link-list::after {
    content: none;
    width: 100%;
  }
}

.footer__eneosg .contents-image {
  width: auto;
}

.footer__eneosg-link .footer__link-item:nth-child(n+3) {
  order: 1;
}

.copyright {
  font-size: 1.4rem;
  text-align: right;
  color: #CBCBCB;
  padding-bottom: 10px;
  padding-right: 40px;
}
