@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 {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 18px;
}

html {
  --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
}

#wrapper {
  width: 100%;
  overflow-x: hidden;
}

@media(max-width:1024px) {
  html {
    font-size: 16px;
  }
}

/* 共通 */
.section {
  margin: 150px 0;
}

.sp-br {
  display: none;
}

.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;
}

.ttl02 {
  color: var(--text-color-01);
  font-size: 28px;
  line-height: 1;
}

.ttl02 .strong {
  font-size: 1.25em;
}

.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) {
  .section {
    margin: 80px 0;
  }

  .ttl01 {
    font-size: 28px;
  }

  .ttl02 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .ttl03 {
    font-size: 22px;
  }
}

@media(max-width:599px) {
  .section {
    margin: 50px 0;
  }
  
  .section.bottom_large {
    margin: 50px 0 80px;
  }  

  .ttl01 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.5;
  }

  .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;
  }

  .sp-br {
    display: block;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 5px solid var(--text-color-01);
}

.header-in .logo-box {
  max-width: 180px;
}

.header-in .logo-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.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;
}

.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) {
  .header-in .logo-box {
    height: 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .header-in .logo-box img {
    height: 100%;
    width: auto;
  }

  .header-in .nav-box {
    max-width: 100%;
  }

  .list-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(1px);
  }

  .list-link li a {
    padding: 0.5em 0.9em;
    font-size: 15px;
    line-height: 2;
    border-radius: 5px 5px 0 0;
  }

  .list-nav li a {
    font-size: 14px;
  }
}

/* mv */
.mv-section {
  position: relative;
}

.mv-section .mv-img {
  width: 50%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  height: calc((100vh - 130px));
}

.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;
}

.mv-section .mv-contents {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
}

.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%;
}

.mv-section .mv-contents .copy01 {
  font-size: 42px;
  color: var(--text-color-01);
  font-weight: bold;
}

.mv-section .mv-contents .copy01 .mini {
  font-size: 50%;
}

.mv-section .mv-contents .copy02 {
  font-size: 42px;
  font-weight: bold;
}

.mv-section .microcopy.sp {
  display: none;
}

@media(max-width:1024px) {
  .mv-section .mv-img {
    height: auto;
  }

  .mv-section .mv-contents .mv-contents-in {
    gap: 20px;
  }

  .mv-section .mv-contents .copy01 {
    font-size: 30px;
  }

  .mv-section .mv-contents .copy02 {
    font-size: 30px;
  }
}

@media(max-width:599px) {
  .mv-section .mv-contents {
    top: 10%;
    -webkit-transform: none;
    transform: none;
  }

  .mv-section .mv-contents .mv-contents-in {
    gap: 10px;
    width: 70%;
  }

  .mv-section .mv-contents .microcopy.pc {
    display: none;
  }

  .mv-section .microcopy.sp {
    display: block;
  }

  .mv-section .mv-contents .copy01 {
    font-size: 24px;
  }

  .mv-section .mv-contents .copy02 {
    font-size: 18px;
  }
}

/* 数字のデザイン */
.circle-container {
  position: relative;
  width: 250px;
  height: 250px;
}

.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;
}

.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;
}

.number {
  font-size: 72px;
  font-weight: bold;
  color: white;
  font-family: "Roboto", sans-serif;
}

.number.ver02 {
  color: #000;
  white-space: nowrap;
  -webkit-transform: translateX(75px);
  transform: translateX(75px);
  font-size: 48px;
}

.number.ver03 {
  color: #000;
  white-space: nowrap;
  font-size: 24px;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}

.number.ver03 .mini {
  font-size: 50%;
}

.circle-container.sp {
  display: none;
}

@media(max-width:1024px) {
  .number {
    font-size: 44px;
  } 
  
  .number.ver02 {
    font-size: 22px;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@media(max-width:599px) {
  .number.ver02 {
    -webkit-transform: translateX(35px);
    transform: translateX(35px);
  }
}


/* list-num */
.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;
}

.list-num01 li+li {
  margin-top: 100px;
}

.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;
}

.list-num01 li .text {
  line-height: 2;
}

@media(max-width:1024px) {
  .circle-container {
    width: 150px;
    height: 150px;
  }

  .left-arc {
    width: 150px;
    height: 150px;
    border: 21px solid var(--text-color-01);
  }

  .right-circle {
    width: 66px;
    height: 66px;
  }

  .list-num01 li .contents-container {
    width: calc((100% - 150px));
    height: auto;
  }

  .list-num01 li+li {
    margin-top: 50px;
  }
}

@media(max-width:599px) {
  .circle-container.sp {
    display: block;
  }

  .circle-container.pc {
    display: none;
  }

  .list-num01 li .contents-container {
    width: 100%;
    height: auto;
  }

  .list-num01 li+li {
    margin-top: 20px;
  }

  .circle-container {
    width: 100px;
    height: 100px;
  }

  .left-arc {
    width: 100px;
    height: 100px;
    border: 14px solid var(--text-color-01);
  }

  .right-circle {
    width: 44px;
    height: 44px;
  }

  .number {
    font-size: 28px;
  }
}

/* list-step */
.list-step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid var(--text-color-01);
}

.list-step li+li {
  margin-top: 10px;
}

.list-step li .left {
  width: 4em;
  padding: 0.25em 0.5em;
  background-color: var(--bg-color-01);
  color: #fff;
}

.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 */
.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;
}

.list-num02 li+li {
  margin-top: 100px;
}

.list-num02 li .imgwrap {
  position: relative;
  width: 50%;
}

.list-num02 li .textwrap {
  width: 50%;
  padding: 50px;
  line-height: 2;
}

.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) {
  .list-num02 li .textwrap {
    padding: 20px;
  }

  .list-num02 li+li {
    margin-top: 50px;
  }
}

@media(max-width:599px) {
  .list-num02 li .imgwrap {
    width: 100%;
  }

  .list-num02 li .textwrap {
    width: 100%;
  }

  .list-num02 li+li {
    margin-top: 20px;
  }
}

/* list-num03 */
.list-num03 li {
  background-color: var(--bg-color-04);
  border-radius: 20px;
  border: 2px solid var(--text-color-01);
  padding: 1em 50px;
}

.list-num03 li+li {
  margin-top: 50px;
}

.list-num03 li .text {
  line-height: 2;
}

@media(max-width:1024px) {
  .list-num03 li+li {
    margin-top: 20px;
  }
}

/* 見たまま編集画面用 */
[data-element-id] .mv-section .microcopy.sp {
  max-width: 600px;
  margin: 0 auto;
  display: block;
  position: relative;
  border: 2px solid #000;
  padding-top: 2em;
}

[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;
}

[data-element-id] .circle-container.sp {
  max-width: 250px;
  margin: 0 auto;
  display: block;
  position: relative;
  border: 2px solid #000;
}

[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;
}

[data-element-id] .list-num01 li .contents-container {
  height: auto;
}

.diary-list {
  display: flex;
  flex-wrap: wrap;
}
.diary-list li {
  width: 23%;
  margin: 0 auto;
}

@media (max-width: 599px){
  .diary-list li {
    width: 48%;
    margin: 0 auto 20px;
  }
}

.arrowarrr{
  list-style-type: none;
}

.spnone{
  display: none;
}

.footer-list.ver02{
  gap: 10px;
  margin-bottom: 50px;
}

.footer-list.ver02 li{
  width: calc((100% - 40px) / 5);
}

.footer-list.ver02 li div{
  font-size: 14px;
}

.arrowsnoarcuswrap{
  gap: 10px;
}

.arrowsnoarcuswrap .arrowsnoarcus{
  width: calc((100% - 30px) / 4);
  font-size: 14px;
}

@media(max-width:1024px){
.footer-list.ver02 li{
  width: calc((100% - 20px) / 3);
}

.footer-list.ver02{
  justify-content: flex-start;
}
}

@media(max-width:599px) {
.spnone{
  display: block;
}

.pcnone{
  display: none;
}

.footer-list.ver02{
  width: 100% !important;
}

.footer-list.ver02 li{
  width: calc((100% - 10px) / 2);
}

.arrowsnoarcuswrap .arrowsnoarcus{
  width: calc((100% - 10px) / 2);
}
}

[data-element-id].spnone{
  display: block;
}

/* =========================================
   総合サイトへの固定リンク (footer内限定)
   ========================================= */
footer .fixed-link {
  position: fixed;
  top: 70%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
  --tab-width: 48px;
  --expand-width: 300px;
  width: var(--tab-width);
  background: #fff;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 4px 16px rgba(20, 30, 60, 0.18);
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.3s ease;
  will-change: width;
}

/* PC: hoverで展開 */
@media (hover: hover) and (pointer: fine) {
  footer .fixed-link:hover,
  footer .fixed-link:focus-within {
    width: var(--expand-width);
    box-shadow: -8px 8px 28px rgba(20, 30, 60, 0.28);
  }
  footer .fixed-link:hover .fixed-link__tab,
  footer .fixed-link:focus-within .fixed-link__tab {
    opacity: 0;
    pointer-events: none;
  }
  footer .fixed-link:hover .fixed-link__expand,
  footer .fixed-link:focus-within .fixed-link__expand {
    opacity: 1;
    pointer-events: auto;
  }
}

/* SP: タップで展開 */
footer .fixed-link.is-open {
  width: var(--expand-width);
  box-shadow: -8px 8px 28px rgba(20, 30, 60, 0.28);
}
footer .fixed-link.is-open .fixed-link__tab {
  opacity: 0;
  pointer-events: none;
}
footer .fixed-link.is-open .fixed-link__expand {
  opacity: 1;
  pointer-events: auto;
}

/* 通常時: 縦書きタブ(PC) */
footer .fixed-link__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tab-width);
  min-height: 220px;
  padding: 20px 0;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
footer .fixed-link__tab:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: -4px;
}
footer .fixed-link__tab-text {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #1a2238;
  white-space: nowrap;
  pointer-events: none;
}

/* 円形ロゴ(SP用、PCでは非表示) */
footer .fixed-link__toggle {
  display: none;
}

/* 展開表示(リンク) */
footer .fixed-link__expand {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  width: var(--expand-width);
  padding: 12px 18px 12px 12px;
  text-decoration: none;
  color: #1a2238;
  opacity: 0;
  pointer-events: none;
  /* 閉じる時: 即座にフェードアウト */
  transition: opacity 0.15s ease 0s;
  -webkit-tap-highlight-color: transparent;
}
/* 開く時: 幅アニメ完了後にフェードイン */
@media (hover: hover) and (pointer: fine) {
  footer .fixed-link:hover .fixed-link__expand,
  footer .fixed-link:focus-within .fixed-link__expand {
    transition: opacity 0.25s ease 0.3s;
  }
}
footer .fixed-link.is-open .fixed-link__expand {
  transition: opacity 0.25s ease 0.3s;
}
footer .fixed-link__expand:focus-visible {
  outline: 2px solid #c9a96e;
  outline-offset: -2px;
}

footer .fixed-link__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
}
footer .fixed-link__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
footer .fixed-link__expand-text {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
  color: #1a2238;
  font-family: "Noto Serif JP", serif;
}

/* 1024px以下 */
@media (max-width: 1024px) {
  footer .fixed-link {
    --tab-width: 42px;
    --expand-width: 270px;
  }
  footer .fixed-link__tab { min-height: 200px; }
  footer .fixed-link__tab-text {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  footer .fixed-link__logo {
    width: 48px;
    height: 48px;
  }
  footer .fixed-link__expand-text { font-size: 13px; }
  footer .fixed-link__expand {
    gap: 12px;
    padding: 10px 16px 10px 10px;
  }
}

/* 599px以下 */
@media (max-width: 599px) {
  footer .fixed-link {
    top: auto;
    bottom: 80px;
    --tab-width: 56px;
    --expand-width: 240px;
    width: var(--tab-width);
    height: 56px;
    border-radius: 28px 0 0 28px;
    transform: translate(0, 0);
  }
  /* PC用縦書きタブを非表示 */
  footer .fixed-link__tab {
    display: none;
  }
  /* SP用円形ロゴを表示(展開後も最前面に残して閉じるボタンに) */
  footer .fixed-link__toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  footer .fixed-link__toggle-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
  }
  footer .fixed-link__toggle-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  /* 展開時のサイズ */
  footer .fixed-link.is-open {
    width: var(--expand-width);
    height: 56px;
  }
  /* 展開コンテンツのSP調整(右側にtoggle分の余白を確保) */
  footer .fixed-link__expand {
    padding: 0 64px 0 12px;
    gap: 10px;
    height: 56px;
    width: var(--expand-width);
  }
  footer .fixed-link__logo {
    display: none;
  }
  footer .fixed-link__expand-text {
    font-size: 12px;
    text-align: left;
  }
}

/* --- Section --- */
.section-group-link {
  margin-bottom: 0px;
  margin-top: 50px;
  padding: 50px;
  background-color: #fff;
}
 
.section-group-link__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}
 
/* --- Card --- */
.group-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 28px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}
 
.group-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
 
/* --- Logo Area --- */
.group-card__logo {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.group-card__logo-img {
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
}
 
/* --- Body --- */
.group-card__body {
  flex: 1;
  min-width: 0;
}
 
.group-card__name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
 
.group-card__sub {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
 
/* --- Arrow --- */
.group-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00002e;
  position: relative;
}
 
.group-card__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}
 
/* --- 1024px以下 --- */
@media screen and (max-width: 1024px) {
  .section-group-link {
    padding: 40px 0;
  }
 
  .group-card {
    gap: 20px;
    padding: 18px 24px;
  }
}
 
/* --- 599px以下 --- */
/* --- 599px以下 --- */
@media screen and (max-width: 599px) {
  .section-group-link {
    padding: 32px 0;
  }

  .section-group-link__inner {
    padding: 0 16px;
  }

  .group-card {
    gap: 12px;
    padding: 14px 16px;
    /* flex-direction: column; ← これを削除 */
  }

  .group-card__logo {
    width: 70px;
  }

  .group-card__logo-img {
    max-width: 100%;
  }

  .group-card__name {
    font-size: 14px;
  }

  .group-card__sub {
    font-size: 11px;
  }

  .group-card__arrow {
    width: 28px;
    height: 28px;
  }
}
