@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* htmlへの指定を.panel03に変更 */
.panel03 {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 18px;
  /* CSS変数をここで定義 */
  --text-color-01: #009d85;
  --text-color-02: #a3d6ca;
  --text-color-03: #e2eec5;
  --text-color-04: #e0f0e2;
  --bg-color-01: #009d85;
  --bg-color-02: #a3d6ca;
  --bg-color-03: #e2eec5;
  --bg-color-04: #e0f0e2;
}

.panel03 #wrapper {
  width: 100%;
  overflow-x: hidden;
}

@media(max-width:1024px) {
  .panel03 {
    font-size: 16px;
  }
}

/* 共通 */
.panel03 .section {
  margin: 150px 0;
}

.panel03 .sp-br {
  display: none;
}

.panel03 .ttl01 {
  background-color: var(--bg-color-01);
  color: #fff;
  padding: 0.5em;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
  font-size: 36px;
  line-height: 1;
}

.panel03 .ttl02 {
  color: var(--text-color-01);
  font-size: 28px;
  line-height: 1;
}

.panel03 .ttl02 .strong {
  font-size: 1.25em;
}

.panel03 .ttl03 {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-color-01);
  border-bottom: 2px solid var(--text-color-01);
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  text-align: center;
  line-height: 1;
}

@media(max-width:1024px) {
  .panel03 .section {
    margin: 80px 0;
  }

  .panel03 .ttl01 {
    font-size: 28px;
  }

  .panel03 .ttl02 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .panel03 .ttl03 {
    font-size: 22px;
  }
}

@media(max-width:599px) {
  .panel03 .section {
    margin: 50px 0;
  }
  
  .panel03 .section.bottom_large {
    margin: 50px 0 80px;
  }  

  .panel03 .ttl01 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
  }

  .panel03 .ttl02 {
    color: var(--text-color-01);
    font-size: 17px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .panel03 .sp-br {
    display: block;
  }
}

/* header */
/* 注意: .panel03の中にheaderがあるという前提になります */
.panel03 header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 5px solid var(--text-color-01);
}

.panel03 .header-in .logo-box {
  max-width: 180px;
}

.panel03 .header-in .logo-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.panel03 .header-in .nav-box {
  max-width: 60%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.panel03 .list-link li a {
  background-color: var(--bg-color-01);
  color: #fff;
  border-radius: 5px;
  padding: 0.25em 1em;
  display: block;
  width: 100%;
  height: 100%;
}

@media(max-width:599px) {
  .panel03 .header-in .logo-box {
    height: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .panel03 .header-in .logo-box img {
    height: 100%;
    width: auto;
  }

  .panel03 .header-in .nav-box {
    max-width: 100%;
  }

  .panel03 .list-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(1px);
  }

  .panel03 .list-link li a {
    padding: 0.5em 0.9em;
    font-size: 15px;
    line-height: 2;
    border-radius: 5px 5px 0 0;
  }

  .panel03 .list-nav li a {
    font-size: 14px;
  }
}

/* mv */
.panel03 .mv-section {
  position: relative;
}

.panel03 .mv-section .mv-img {
  width: 50%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  height: calc((100vh - 130px));
}

.panel03 .mv-section .mv-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, white 0%, transparent 100%); */
  background: -webkit-gradient(linear, left top, right top, from(white), color-stop(50%, transparent), to(transparent));
  background: linear-gradient(to right, white 0%, transparent 50%, transparent 100%);
  pointer-events: none;
}

.panel03 .mv-section .mv-contents {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.panel03 .mv-section .mv-contents .mv-contents-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  width: 60%;
}

.panel03 .mv-section .mv-contents .copy01 {
  font-size: 42px;
  color: var(--text-color-01);
  font-weight: bold;
}

.panel03 .mv-section .mv-contents .copy01 .mini {
  font-size: 50%;
}

.panel03 .mv-section .mv-contents .copy02 {
  font-size: 42px;
  font-weight: bold;
}

.panel03 .mv-section .microcopy.sp {
  display: none;
}

@media(max-width:1024px) {
  .panel03 .mv-section .mv-img {
    height: auto;
  }

  .panel03 .mv-section .mv-contents .mv-contents-in {
    gap: 20px;
  }

  .panel03 .mv-section .mv-contents .copy01 {
    font-size: 30px;
  }

  .panel03 .mv-section .mv-contents .copy02 {
    font-size: 30px;
  }
}

@media(max-width:599px) {
  .panel03 .mv-section .mv-contents {
    top: 10%;
    -webkit-transform: none;
    transform: none;
  }

  .panel03 .mv-section .mv-contents .mv-contents-in {
    gap: 10px;
    width: 70%;
  }

  .panel03 .mv-section .mv-contents .microcopy.pc {
    display: none;
  }

  .panel03 .mv-section .microcopy.sp {
    display: block;
  }

  .panel03 .mv-section .mv-contents .copy01 {
    font-size: 24px;
  }

  .panel03 .mv-section .mv-contents .copy02 {
    font-size: 18px;
  }
}

/* 数字のデザイン */
.panel03 .circle-container {
  position: relative;
  width: 250px;
  height: 250px;
}

.panel03 .left-arc {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 40px solid var(--text-color-01);
  border-right: none;
  -webkit-clip-path: inset(0 50% 0 0);
  clip-path: inset(0 50% 0 0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.panel03 .right-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  background-color: var(--bg-color-02);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.panel03 .number {
  font-size: 72px;
  font-weight: bold;
  color: white;
  font-family: "Roboto", sans-serif;
}

.panel03 .number.ver02 {
  color: #000;
  white-space: nowrap;
  -webkit-transform: translateX(75px);
  transform: translateX(75px);
  font-size: 48px;
}

.panel03 .number.ver03 {
  color: #000;
  white-space: nowrap;
  font-size: 24px;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}

.panel03 .number.ver03 .mini {
  font-size: 50%;
}

.panel03 .circle-container.sp {
  display: none;
}

@media(max-width:1024px) {
  .panel03 .number {
    font-size: 44px;
  } 
  
  .panel03 .number.ver02 {
    font-size: 22px;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@media(max-width:599px) {
  .panel03 .number.ver02 {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
}


/* list-num */
.panel03 .list-num01 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.panel03 .list-num01 li+li {
  margin-top: 100px;
}

.panel03 .list-num01 li .contents-container {
  width: calc((100% - 250px));
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.panel03 .list-num01 li .text {
  line-height: 2;
}

@media(max-width:1024px) {
  .panel03 .circle-container {
    width: 150px;
    height: 150px;
  }

  .panel03 .left-arc {
    width: 150px;
    height: 150px;
    border: 21px solid var(--text-color-01);
  }

  .panel03 .right-circle {
    width: 66px;
    height: 66px;
  }

  .panel03 .list-num01 li .contents-container {
    width: calc((100% - 150px));
    height: auto;
  }

  .panel03 .list-num01 li+li {
    margin-top: 50px;
  }
}

@media(max-width:599px) {
  .panel03 .circle-container.sp {
    display: block;
  }

  .panel03 .circle-container.pc {
    display: none;
  }

  .panel03 .list-num01 li .contents-container {
    width: 100%;
    height: auto;
  }

  .panel03 .list-num01 li+li {
    margin-top: 20px;
  }

  .panel03 .circle-container {
    width: 100px;
    height: 100px;
  }

  .panel03 .left-arc {
    width: 100px;
    height: 100px;
    border: 14px solid var(--text-color-01);
  }

  .panel03 .right-circle {
    width: 44px;
    height: 44px;
  }

  .panel03 .number {
    font-size: 28px;
  }
}

/* list-step */
.panel03 .list-step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid var(--text-color-01);
}

.panel03 .list-step li+li {
  margin-top: 10px;
}

.panel03 .list-step li .left {
  width: 4em;
  padding: 0.25em 0.5em;
  background-color: var(--bg-color-01);
  color: #fff;
}

.panel03 .list-step li .right {
  width: 10%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 0.25em 0.5em;
  background-color: var(--bg-color-03);
}

/* list-num02 */
.panel03 .list-num02 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-shadow: 10px 10px 10px #555;
  box-shadow: 10px 10px 10px #555;
}

.panel03 .list-num02 li+li {
  margin-top: 100px;
}

.panel03 .list-num02 li .imgwrap {
  position: relative;
  width: 50%;
}

.panel03 .list-num02 li .textwrap {
  width: 50%;
  padding: 50px;
  line-height: 2;
}

.panel03 .list-num02 li .imgwrap .circle-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5%;
  z-index: 1;
}

@media(max-width:1024px) {
  .panel03 .list-num02 li .textwrap {
    padding: 20px;
  }

  .panel03 .list-num02 li+li {
    margin-top: 50px;
  }
}

@media(max-width:599px) {
  .panel03 .list-num02 li .imgwrap {
    width: 100%;
  }

  .panel03 .list-num02 li .textwrap {
    width: 100%;
  }

  .panel03 .list-num02 li+li {
    margin-top: 20px;
  }
}

/* list-num03 */
.panel03 .list-num03 li {
  background-color: var(--bg-color-04);
  border-radius: 20px;
  border: 2px solid var(--text-color-01);
  padding: 1em 50px;
}

.panel03 .list-num03 li+li {
  margin-top: 50px;
}

.panel03 .list-num03 li .text {
  line-height: 2;
}

@media(max-width:1024px) {
  .panel03 .list-num03 li+li {
    margin-top: 20px;
  }
}

/* 見たまま編集画面用 */
.panel03 [data-element-id] .mv-section .microcopy.sp {
  max-width: 600px;
  margin: 0 auto;
  display: block;
  position: relative;
  border: 2px solid #000;
  padding-top: 2em;
}

.panel03 [data-element-id] .mv-section .microcopy.sp:before{
  content: "モバイルで表示";
  display: block;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.panel03 [data-element-id] .circle-container.sp {
  max-width: 250px;
  margin: 0 auto;
  display: block;
  position: relative;
  border: 2px solid #000;
}

.panel03 [data-element-id] .circle-container.sp:before {
  content: "モバイルで表示";
  display: block;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.panel03 [data-element-id] .list-num01 li .contents-container {
  height: auto;
}

.panel03 .diary-list {
  display: flex;
  flex-wrap: wrap;
}
.panel03 .diary-list li {
  width: 23%;
  margin: 0 auto;
}

@media (max-width: 599px){
  .panel03 .diary-list li {
    width: 48%;
    margin: 0 auto 20px;
  }
}

.panel03 .arrowarrr{
  list-style-type: none;
}

.panel03 .spnone{
  display: none;
}

.panel03 .footer-list.ver02{
  gap: 10px;
  margin-bottom: 50px;
}

.panel03 .footer-list.ver02 li{
  width: calc((100% - 40px) / 5);
}

.panel03 .footer-list.ver02 li div{
  font-size: 14px;
}

.panel03 .arrowsnoarcuswrap{
  gap: 10px;
}

.panel03 .arrowsnoarcuswrap .arrowsnoarcus{
  width: calc((100% - 30px) / 4);
  font-size: 14px;
}

@media(max-width:1024px){
  .panel03 .footer-list.ver02 li{
    width: calc((100% - 20px) / 3);
  }

  .panel03 .footer-list.ver02{
    justify-content: flex-start;
  }
}

@media(max-width:599px) {
  .panel03 .spnone{
    display: block;
  }

  .panel03 .pcnone{
    display: none;
  }

  .panel03 .footer-list.ver02{
    width: 100% !important;
  }

  .panel03 .footer-list.ver02 li{
    width: calc((100% - 10px) / 2);
  }

  .panel03 .arrowsnoarcuswrap .arrowsnoarcus{
    width: calc((100% - 10px) / 2);
  }
}

.panel03 [data-element-id].spnone{
  display: block;
}

/* --- ベース設定 (.panel01 内のハイブリッドセクション) --- */
.panel01 .hybrid-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

.panel01 .inner {
  max-width: 900px;
  margin: 0 auto;
}

/* --- ロゴエリア --- */
.panel01 .logo-area {
  text-align: center;
  margin-bottom: 40px;
}

.panel01 .logo-area img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* --- 図解エリア（フレックスボックス） --- */
.panel01 .diagram-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}

/* カラム共通設定 */
.panel01 .col {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* アイテム（ボタン）共通設定 */
.panel01 .item {
  width: 100%;
  padding: 12px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  box-sizing: border-box;
  /* 影をつけて立体感を出す */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* 青グループの色設定（グラデーション変更） */
.panel01 .col-blue .item {
  /* background-color: #6CBFE9; */ /* 旧カラーリング */
  /* 濃い青のグラデーション */
  background: linear-gradient(to bottom, #0056b3, #007bff);
}

/* 緑グループの色設定（グラデーション変更） */
.panel01 .col-green .item {
  /* background-color: #69C0A5; */ /* 旧カラーリング */
  /* 濃い緑のグラデーション */
  background: linear-gradient(to bottom, #007b5e, #00a87d);
}

/* --- 中央の円（グラデーション変更） --- */
.panel01 .center-circle {
  width: 120px;
  height: 120px;
  /* background-color: #5EB7B1; */ /* 旧カラーリング */
  /* 濃い青緑のグラデーション */
  background: linear-gradient(to bottom, #008f7a, #00cba9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
  border: 4px solid #fff;
  z-index: 2;
  flex-shrink: 0;
  /* 影をつけて立体感を出す */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- 説明文エリア --- */
.panel01 .description-area {
  font-size: 15px;
  line-height: 2;
  text-align: left;
  color: #333;
}

/* --- レスポンシブ対応 --- */

/* タブレット (1024px以下) */
@media (max-width: 1024px) {
  .panel01 .diagram-container {
    gap: 10px;
  }
  
  .panel01 .col {
    width: 100%;
    max-width: 280px;
  }
  
  .panel01 .item {
    font-size: 16px;
    padding: 10px 0;
  }
  
  .panel01 .center-circle {
    width: 100px;
    height: 100px;
    font-size: 16px;
  }
}

/* スマホ (599px以下) */
@media (max-width: 599px) {
  .panel01 .hybrid-section {
    padding: 40px 15px;
  }

  /* 縦並びに変更 */
  .panel01 .diagram-container {
    flex-direction: column;
    gap: 20px;
  }

  .panel01 .col {
    width: 100%;
    max-width: 100%;
  }

  /* 中央の円の配置調整 */
  .panel01 .center-circle {
    width: 100px;
    height: 100px;
    margin: 10px 0;
  }

  .panel01 .logo-area img {
    max-width: 100%;
  }
  
  .panel01 .description-area {
    font-size: 14px;
    text-align: justify;
  }
}
