@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;
}
