@charset "UTF-8";

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
  /* Colors */
  --color-text: #2F2F2F;
  --color-white: #ffffff;
  --color-link: #0070C0;
  --color-schedule-bg: #483627;
  --color-bg-white: #fff;
  --color-header-bg: #9FD8E3;
  --color-main-blue: #01AED1;
  --color-marker1: #CE8686;
  --color-marker2: #E6DE6A;
  --color-border-light: #efefef;
  --color-border-table: #ccc;
  --color-table-header-bg: #FFF5D0;
  --color-download-bg: #F4FBE6;
  --color-title-line: #E6DE6A;
  --color-circle: #EC6955;
  --color-title-sec-b: #DD5D84;
  --color-title-sec-b-bg: #FFF5D0;
  --color-button-anchor: #F5E9D2;
  --color-button-anchor-border: #BACED8;
  --color-button-anchor-bg: #FFFFFF;

  /* Fonts */
  --font-main: dnp-shuei-mgothic-std, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-accent: fot-tsukuardgothic-std, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-en: "Noto Sans JP", sans-serif;

  /* Spacing */
  --sp-md: 20px;
  --sp-lg: 60px;

  /* UI Assets */
  --radius-10: 10px;
  --radius-20: 20px;
  --radius-30: 30px;
  --shadow-common: 0px 4px 4px rgba(0, 0, 0, 0.1);

  /* Image Paths */
  /* --bg-cloud-footer: url("../img/bg_cloud.svg");
  --bg-cloud-main: url("../img/cloud.svg");
  --bg-footer: url("../img/bg-footer.svg");
  /* --bg-wave: url("../img/bg-wave.svg");
  --bg-wave-3: url("../img/bg-wave-3.svg");
  --bg-wave-4: url("../img/bg-wave-4.svg");
  --bg-wave-5: url("../img/bg-wave-5.svg");
  --bg-wave-6: url("../img/bg-wave-6.svg");
  --bg-wave-7: url("../img/bg-wave-7.svg");
  --bg-wave-8: url("../img/bg-wave-8.svg");
  --bg-wave-9: url("../img/bg-wave-9.svg"); */
  --bg-wave-leaders: url("../img/bg-wave-leaders_training.svg");
  --icon-link-ar: url("../img/link-ar.svg");
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
html {
  font-size: 10px;
  overflow-x: hidden;
}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.667vw;
  }
}

body {
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.71429;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

::selection {
  background: var(--color-text);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--color-text);
  color: var(--color-white);
}

a {
  color: var(--color-link);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition-property: border, background, color;
}

/* ==========================================================================
   Layout - Main Header & Inner
   ========================================================================== */

@media (max-width: 1024px) {
  .p-style__main-inner {
    padding: 0 var(--sp-md);
  }
}

.p-style__main-head__bg {
  /* background-color: var(--color-header-bg);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%); 
  padding-right: calc(50vw - 50%); */
  padding-bottom: 80px;
}

/* .p-style__main-head__bg::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4rem;
  width: 100%;
  height: 9.6rem;
  background: var(--bg-cloud-footer) repeat-x center;
} */

/* @media (max-width: 1024px) {
  .p-style__main-head__bg { padding: 2rem 1rem 4rem 1rem; }
} */

@media (min-width: 1025px) {
  .p-style__main-head__bg {
    padding: 3rem 0;
  }
}

.p-style__main-head {
  position: relative;
  text-align: center;
}

@media (min-width: 1025px) {
  .p-style__main-head {
    margin: 2rem auto 8rem;
    margin-bottom: 0;
    max-width: 600px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .p-style__main-head {
    margin: auto auto 3.5rem;
  }

  .p-style__main-head picture {
    display: block;
    margin: auto;
    max-width: 420px;
  }
}

/* ==========================================================================
   新メインビジュアル
   ========================================================================== */

.l-main-visual {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}

.l-main-visual__inner {
  background: url("../img/kankyou_bg.svg") no-repeat center top / cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.l-main-visual__title {
  width: 100%;
  max-width: 650px;
  margin: 0;
  line-height: 0;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.l-main-visual__title img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .l-main-visual__inner {
    height: 300px;
  }

  .l-main-visual__title {
    width: 90%;
    max-width: 450px;
  }
}

/* ==========================================================================
   Layout - Main Content Area
   ========================================================================== */
.p-style__main {
  position: relative;
  z-index: 3;
}

@media (min-width: 1025px) {
  .p-style__main {
    margin: 0 auto 60px;
    max-width: 1700px;
    min-height: 562px;
  }
}

/* @media (max-width: 1024px) {
  .p-style__main {
    border-top: solid 1px var(--color-border-light);
    min-height: 562px;
    padding-bottom: 120px;
  }
} */

/* ==========================================================================
   Special Feature - Head Cloud Title
   ========================================================================== */
.p-style__main-head-title {
  position: relative;
  height: 360px;
  width: 100%;
  background: var(--bg-cloud-main) no-repeat center top / contain;
}

@media (max-width: 1024px) {
  .p-style__main-head-title {
    height: 240px;
    background: var(--bg-cloud-main) no-repeat center center / contain;
  }
}

.p-style__main-head-title .title {
  font-family: var(--font-accent);
  color: var(--color-main-blue);
  font-size: 36px;
  line-height: 1.2;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-text-stroke: 9px var(--color-main-blue);
  width: 100%;
}

@media (max-width: 1024px) {
  .p-style__main-head-title .title {
    top: 28%;
    -webkit-text-stroke: 6px var(--color-main-blue);
    font-size: 2.8rem;
  }
}

.p-style__main-head-title .upper {
  font-family: var(--font-accent);
  font-size: 36px;
  line-height: 1.2;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-white);
  width: 100%;
}

@media (max-width: 1024px) {
  .p-style__main-head-title .upper {
    top: 28%;
    font-size: 2.8rem;
  }
}

.p-style__main-head-title .title .marker {
  background: linear-gradient(transparent 70%, var(--color-title-sec-b-bg) 70%);
  padding-bottom: 0.3em;
  border-radius: 8px;
}

.p-style__main-head-title .year {
  position: absolute;
  top: 30%;
  left: 10%;
  transform: translateX(-20%);
  height: 80px;
  width: 80px;
  background-color: var(--color-title-sec-b-bg);
  border-radius: 999px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .p-style__main-head-title .year {
    top: -5%;
    left: 50%;
    transform: translateX(-50%) scale(.7);
  }
}

.p-style__main-head-title .year b {
  font-weight: 900;
  font-size: 2.4rem;
}

.p-style__main-head-title .illust {
  position: absolute;
  z-index: 3;
  width: 160px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1024px) {
  .p-style__main-head-title .illust {
    width: 140px;
    bottom: -20%;
  }
}

/* ==========================================================================
   Component - Lead & Schedule
   ========================================================================== */
.p-style__main .lead {
  font-size: 1.6rem;
}

/* .p-style__main .schedule {
  background-color: var(--color-schedule-bg);
  padding: 5px;
  width: 100%;
} */

@media (min-width: 1025px) {
  .p-style__main .schedule {
    margin: 30px auto;
    max-width: 1150px;
  }
}

@media (max-width: 1024px) {
  .p-style__main .schedule {
    margin: 20px auto;
  }
}

.p-style__main .schedule-inner {
  background-color: var(--color-bg-white);
  padding: 5px;
}

.p-style__main .schedule-inner dd {
  border: solid 2px var(--color-schedule-bg);
  padding: 15px;
}

@media (min-width: 1025px) {
  .p-style__main .schedule-inner dl {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

.p-style__main .schedule-inner dl dt {
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.p-style__main .schedule-inner dl dt span {
  color: var(--color-marker2);
}

.p-style__main .schedule-inner dl dt span:first-child {
  margin-right: 10px;
}

.p-style__main .schedule-inner dl dt span:last-child {
  margin-left: 10px;
}


@media (min-width: 1025px) {
  .p-style__main .schedule-inner dl dt {
    padding-left: 10px;
  }

  .p-style__main .schedule-inner dl dd {
    flex: 1;
    padding-left: 25px;
    margin-top: 1rem;
  }
}

.p-style__main .schedule-inner dl dd ul.m {
  font-size: 1.6rem;
}

.p-style__main .schedule-inner dl dd ul li {
  margin: 5px 0;
  padding: 0 0 0 26px;
  position: relative;
  font-size: 1.6rem;
}

.p-style__main .schedule-inner dl dd ul li::before {
  color: var(--color-marker1);
  content: "●";
  display: block;
  left: 0;
  position: absolute;
}

.p-style .p-style__main .schedule-inner dl dd ul li::before {
  color: var(--color-marker2);
}

/* ==========================================================================
   Section - p-style__1 (Intro)
   ========================================================================== */
@media (min-width: 1025px) {
  .p-style__1 {
    display: block;
  }

  /* .p-style__1-text {
    width: 65%;
    margin: 0 auto;
  } */
}

.p-style__1-text .c-title__round {
  margin-bottom: 15px;
  margin-top: 7px;
}

.p-style__1-text .c-list {
  font-size: 1.9rem;
  padding-bottom: 40px;
}

.p-style__1-text .note {
  margin-bottom: 50px;
}

@media (min-width: 1025px) {
  /* .p-style__1-img {
    margin: 0 auto;
    width: 70%;
  } */

  .p-style__1-img figure {
    margin: 0 0 var(--sp-lg) 0;
  }
}

@media (max-width: 1024px) {
  .p-style__1-img {
    display: flex;
    gap: 30px;
  }

  .p-style__1-img figure {
    margin: 0 0 var(--sp-md) 0;
  }
}

.p-style__1-img {
  display: flex;
  gap: 20px;
}


@media (max-width: 500px) {
  .p-style__1-img {
    display: block;
  }
}

.p-style__1-img figure img {
  border-radius: var(--radius-20);
}

.p-style__1-img figure figcaption {
  text-align: right;
}

.c-list.number li {
  border-bottom: dotted 2px var(--color-marker2);
}

/* ==========================================================================
   Section - p-style__2 (Features)
   ========================================================================== */
@media (min-width: 1025px) {
  .p-style__2 {
    display: block;
  }

  /* .p-style__2-text {
    width: 65%;
    margin: 0 auto;
  } */
}

@media (min-width: 1025px) {
  .p-style__2-text .c-title__round {
    margin-bottom: var(--sp-md);
    margin-top: 7px;
  }
}

@media (max-width: 1024px) {
  .p-style__2-text .c-title__round {
    margin-bottom: 15px;
    margin-top: 15px;
    font-size: 1.6rem;
  }
  .p-style__1-text .c-list {
    font-size: 1.6rem;
  }
}

.p-style__2-text .c-list {
  font-size: 1.6rem;
  padding-bottom: 40px;
}

.p-style__2-text .note {
  margin-bottom: 50px;
}


@media (min-width: 1025px) {
  /* .p-style__2-img {
    width: 70%;
    margin: 0 auto;
  } */

  .p-style__2-img figure {
    margin: 0 0 var(--sp-lg) 0;
  }
}

.p-style__2-img {
  display: flex;
  gap: 30px;
}

@media (max-width: 1024px) {
  .p-style__2-img figure {
    margin: 0 0 var(--sp-md) 0;
  }
}

@media (max-width: 500px) {
  .p-style__2-img {
    display: block;
  }
}

.p-style__2-img figure img {
  border-radius: var(--radius-20);
}

.p-style__2-img figure figcaption {
  text-align: right;
}

/* ==========================================================================
   Section - p-style__3 & 4 (Actions)
   ========================================================================== */
@media (max-width: 1024px) {
  .p-style__3 {
    margin-top: -25px;
    padding-bottom: 25px;
  }
}

.p-style__3 .c-flex {
  justify-content: center;
}

@media (max-width: 1024px) {
  .p-style__3 .c-flex {
    display: block;
  }
}

.p-style__3 .c-flex .c-button__round {
  width: 100%;
}

@media (min-width: 1025px) {
  .p-style__3 .c-flex .c-button__round {
    margin: 30px 20px;
  }

  .p-style__3 .c-list {
    margin-top: 70px;
  }

  .p-style__3 p.text {
    font-size: 1.6rem;
    padding: 2.2rem 0 1.2rem 0;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .p-style__3 p.text {
    font-size: 1.4rem;
    padding: 2rem 0 1rem 0;
    text-align: center;
  }

  .p-style__4 {
    padding-bottom: 25px;
  }
}

.p-style__4 .c-flex {
  justify-content: center;
}

@media (max-width: 1024px) {
  .p-style__4 .c-flex {
    display: block;
  }
}

.p-style__4 .c-flex .c-button__round {
  width: 100%;
}

@media (min-width: 1025px) {
  .p-style__4 .c-flex .c-button__round {
    margin: 30px 20px;
  }

  .p-style__4 .c-list {
    margin-top: 70px;
  }
}

/* ==========================================================================
   Component - Table
   ========================================================================== */
.p-style table {
  font-size: 1.6rem;
  margin: var(--sp-md) auto;
  table-layout: fixed;
  width: 90%;
}

@media (min-width: 1025px) {
  .p-style table {
    margin: 70px auto var(--sp-md);
  }
}

@media (max-width: 1024px) {
  .p-style table {
    margin: 30px auto;
    width: 95%;
  }
}

.p-style table th,
.p-style table td {
  border: solid 1px var(--color-border-table);
  padding: 8px 16px;
  word-break: break-all;
}

.p-style table th {
  background-color: var(--color-table-header-bg);
  font-weight: bold;
}

@media (min-width: 1025px) {
  .p-style table th {
    width: 16%;
  }

  .contact-info {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 1024px) {
  .p-style table th {
    width: 16px;
  }
}

/* ==========================================================================
   Footer & Other Custom Elements
   ========================================================================== */
.p-style .l-footer__inner {
  background-color: var(--color-bg-white);
  padding: 0 15px;
}

#style .p-style__main-head {
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

#style .download {
  background-color: var(--color-bg-white);
  border: solid 2px var(--color-download-bg);
  border-radius: var(--radius-20);
  /* margin: 16px auto; */
  margin: 16px 0 16px 2.5em;
  /* max-width: 960px; */
}
#style .download2 {
  background-color: var(--color-bg-white);
  border: solid 2px var(--color-download-bg);
  border-radius: var(--radius-20);
  margin: 16px 0 16px;
}
#style .download.download-youtube {
  margin-top: 2.5em;
} 
#style .download .c-flex {
  padding: 0 20px;
}

#style .download li h3 {
  background-color: var(--color-download-bg);
  border-radius: 18px 18px 0 0;
  font-size: 16px;
  padding: 12px;
  text-align: center;
}

/* @media (max-width: 1024px) {
  #style #qa {
    margin-top: 40px;
  }
} */

#style #movie p.text {
  font-size: 1.6rem;
  padding: 2.2rem 0 0 0;
  text-align: center;
}

@media (max-width: 1024px) {
  #style #movie p.text {
    font-size: 1.4rem;
    padding: 1rem 0 0 0;
    text-align: center;
  }
}

#style .c-list.number li {
  padding-left: 0;
}

#style .c-list.number li::before {
  content: none;
}

.c-button__round.-large {
  max-width: 600px;
  width: 100%;
}

.mt60 {
  margin-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

#archive {
  z-index: 2;
}

.l-footer {
  background-color: var(--color-text);
  text-align: center;
}

.p-style .l-footer {
  background-color: var(--color-schedule-bg);
}

.l-footer a {
  text-decoration: none;
}

.l-footer .disabled a {
  pointer-events: none;
  opacity: 0.5;
}

.l-footer__contact {
  text-align: center;
  line-height: 2;
  padding: 0 0 50px 0;
}

.l-footer__contact a {
  color: var(--color-link);
}

.l-footer__nav {
  text-align: center;
  padding-top: 30px;
}

@media (min-width: 1025px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}

.l-footer__nav ul li {
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .l-footer__nav ul li {
    margin: 10px 0;
  }
}

.l-footer .copyright {
  text-align: center;
  font-size: 1.1rem;
  padding: 20px 0;
  color: var(--color-white);
}

.l-content {
  background: var(--bg-footer) repeat-x bottom;
  position: relative;
  z-index: 2;
}

.l-content a {
  text-decoration: none;
}

@media (min-width: 1025px) {
  .l-content {
    max-width: 1100px;
    margin: 0 auto;
    /* padding-bottom: 150px; */
  }
}

/* @media (max-width: 1024px) {
  .l-content { padding-bottom: 75px; }
}
 */
/* .l-content::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 123px;
  background: var(--bg-wave) no-repeat;
  background-size: cover;
} */
.youtube {
  padding: 20px 40px;

}

.youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* .l-content .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */
@media (max-width:1024px) {
  .youtube {
    padding: 0;
  }
}

/* ==========================================================================
   Common UI - Titles
   ========================================================================== */
.c-title__line {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 40px;
}

@media (min-width: 1025px) {
  .c-title__line.l {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .c-title__line.l {
    font-size: 2.4rem;
  }
}

@media (min-width: 1025px) {
  .c-title__line.l .font-en {
    font-size: 4.2rem;
  }
}

@media (max-width: 1024px) {
  .c-title__line.l .font-en {
    font-size: 2.2rem;
  }
}

.c-title__line .caption {
  color: var(--color-marker1);
  display: block;
  font-size: 19px;
}

.c-title__line .font-en {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
}

.c-title__line::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 50px;
  border-top: 5px dotted var(--color-marker2);
  transform: translateX(-50%);
}

.p-style .c-title__line::before {
  border-top: 5px dotted var(--color-marker2);
}

.c-title__round {
  /* border: solid 3px var(--color-title-line); */
  background-color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  padding: 8px 20px;
}

.p-style .c-title__round {
  border: solid 3px var(--color-marker2);
}

.c-title__round small {
  display: inline-block;
  line-height: 1.4;
}

@media (min-width: 1025px) {
  .c-title__round {
    border-radius: var(--radius-10);
    box-shadow: 5px 3px 5px var(--color-marker2);
  }
}

@media (max-width: 1024px) {
  .c-title__round {
    border-radius: var(--radius-10);
    box-shadow: 5px 3px 0 var(--color-marker2);
    font-size: 1.6rem;
  }
}

.c-title__circle {
  font-weight: 700;
}

@media (min-width: 1025px) {
  .c-title__circle {
    margin: 7px 0;
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
  .c-title__circle {
    font-size: 1.8rem;
  }
}

.c-title__circle::before {
  content: "●";
  color: var(--color-circle);
  margin-right: 6px;
}

/* ==========================================================================
   Common UI - Section Titles & Balloons
   ========================================================================== */
.c-title__sec {
  font-family: var(--font-accent);
  line-height: 1.3;
  position: relative;
}

.c-title__sec .text-2 {
  font-family: var(--font-accent);
  line-height: 1.1;
  position: absolute;
  right: 0;
  top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  color: #333;
  font-size: 1.6rem;
  text-align: center;
  background: url("../img/deco.svg") no-repeat;
}

.c-title__sec .text-2 b {
  font-size: 2.4rem;
}

.c-title__sec span.number {
  color: var(--color-marker2);
  position: absolute;
  left: 0;
  top: 32px;
}

.c-title__sec span.text {
  display: inline-block;
  padding-left: 33px;
  letter-spacing: 0;
}

.p-style .c-title__sec span.text b {
  color: var(--color-title-sec-b);
  position: relative;
  display: inline-block;
  margin-top: 5px;
}

@media (min-width: 1025px) {
  .c-title__sec {
    padding: 30px 120px 20px 0;
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .c-title__sec {
    font-size: 2.2rem;
    padding: 10px 0 0 0;
  }
}

@media (min-width: 1025px) {
  .c-title__sec.m {
    font-size: 2.2rem;
    padding: 30px 20px 20px 0;
  }
}

@media (max-width: 1024px) {
  .c-title__sec.m {
    font-size: 1.7rem;
  }

  .c-title__sec .text-2 {
    top: -10.5rem;
    width: 100px;
    height: 100px;
    font-size: 1.5rem;
  }
  .c-title__sec .text-2 b {
    font-size: 2rem;
  }

  .c-title__sec span.number {
    top: 1rem;
  }
}

@media (min-width: 1025px) {
  .p-style .c-title__sec span.text b {
    font-size: 2.4rem;
    position: relative;
  }

  .c-title__sec .balloon {
    transform: translateY(-50%);
  }
}

.p-style .c-title__sec span.text b::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--color-title-sec-b-bg);
  border-radius: var(--radius-30);
}

.c-title__sec .balloon {
  left: 0;
  position: absolute;
  max-width: 220px;
  bottom: 50%;
}

@media (max-width: 1024px) {
  .c-title__sec .balloon {
    max-width: 180px;
    bottom: 100%;
  }
}

/* ==========================================================================
   Common UI - Buttons
   ========================================================================== */
.c-button a {
  color: var(--color-marker1);
  text-decoration: none;
}

.c-button.disabled a {
  pointer-events: none;
  opacity: 0.5;
}

.c-button__round {
  border-radius: var(--radius-30);
  border: solid 3px var(--color-title-line);
  background-color: #fff;
  max-width: 380px;
  text-align: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-common);
}

@media (min-width: 1025px) {
  .c-button__round {
    margin: var(--sp-md) auto;
    transition: all ease-out 0.15s;
  }

  .c-button__round:hover {
    background-color: var(--color-title-line);
  }

  .c-button__round a {
    padding: 15px 30px;
  }
}

@media (max-width: 1024px) {
  .c-button__round {
    margin: 15px auto;
  }

  .c-button__round a {
    padding: 7px 15px;
  }
}

.c-button__round a {
  color: var(--color-text);
  text-decoration: none;
  display: block;
  background: var(--icon-link-ar) no-repeat 94% 50%;
}

/* ==========================================================================
   Common UI - Anchor Buttons
   ========================================================================== */
.c-button__anchor {
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .c-button__anchor {
    max-width: 1150px;
    padding-bottom: 120px;
  }
}

@media (max-width: 1024px) {
  .c-button__anchor {
    width: 100%;
    padding-bottom: 60px;
  }
}

.c-button__anchor ul {
  display: flex;
}

@media (max-width: 1024px) {
  .c-button__anchor ul {
    flex-wrap: wrap;
    width: 100%;
  }
}

.c-button__anchor li {
  text-align: center;
  color: var(--color-button-anchor);
}

@media (min-width: 1025px) {
  .c-button__anchor li {
    margin: 0 5px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .c-button__anchor li {
    width: 100%;
    margin: 0 0 12px 0;
  }
}

.c-button__anchor li a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  background: var(--color-button-anchor-bg);
  border: 4px solid var(--color-button-anchor-border);
  box-sizing: border-box;
  box-shadow: var(--shadow-common);
  border-radius: 16px;
  color: var(--color-button-anchor);
  line-height: 1.4;
  padding-top: 10px;
  position: relative;
}

@media (min-width: 1025px) {
  .c-button__anchor li a {
    min-width: 173px;
    height: 100px;
  }
}

@media (max-width: 1024px) {
  .c-button__anchor li a {
    height: 84px;
    padding: 0;
    box-sizing: content-box;
  }

  .c-button__anchor li a br {
    display: none;
  }
}

.c-button__anchor li a::before {
  content: "1";
  position: absolute;
  top: 6px;
  font-size: 19px;
}

@media (max-width: 1024px) {
  .c-button__anchor li a::before {
    font-size: 16px;
  }
}

.c-button__anchor li a::after {
  content: "";
  position: absolute;
  bottom: 9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--color-button-anchor) transparent transparent transparent;
}

.c-button__anchor li:nth-child(1) a::before {
  content: "1";
}

.c-button__anchor li:nth-child(2) a::before {
  content: "2";
}

.c-button__anchor li:nth-child(3) a::before {
  content: "3";
}

.c-button__anchor li:nth-child(4) a::before {
  content: "4";
}

.c-button__anchor li:nth-child(5) a::before {
  content: "5";
}

/* ==========================================================================
   Global Section Components
   ========================================================================== */
.c-section {
  position: relative;
  box-sizing: border-box;
}

/* @media (min-width: 1025px) {
  .c-section {
    padding: var(--sp-lg) var(--sp-lg) 40px var(--sp-lg);
  }
} */

@media (max-width: 1024px) {
  .c-section {
    padding: var(--sp-md) var(--sp-md) 30px var(--sp-md);
  }
}

.c-section.bg {
  background-color: #f6f6f6;
  padding: 20px var(--sp-lg);
}

.c-section.bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 415px;
  height: 100%;
  background: url("/roudouryoku/assetsassets/images/kankyou/top/roudouryoku.jpg") no-repeat;
  background-size: cover;
}

.c-section.bg-1 {
  background-color: var(--color-download-bg);
}

.c-section.bg-2 {
  background-color: #fdeeb4;
}

.c-section.bg-4 {
  background-color: #eee9d3;
}

.c-section.bg-5 {
  background-color: #fff6f6;
}

.c-section.bg-6 {
  background-color: #f9f3bd;
}

.c-section.bg-7 {
  background-color: #f4e87c;
}

.c-section.bg-8 {
  background-color: #FFFBEA;
}

/* 追加 */
@media (min-width: 1225px) {

  .c-section.bg-8,
  .c-section.bg-1 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

/* 追加end */
/* .c-section.bg-1::before,
.c-section.bg-2::before,
.c-section.bg-3::before,
.c-section.bg-4::before,
.c-section.bg-5::before,
.c-section.bg-6::before,
.c-section.bg-7::before,
.c-section.bg-8::before {
  content: "";
  display: block;
  position: absolute;
  top: -123px;
  left: 0;
  width: 100%;
  height: 123px;
  background-size: cover;
  background-repeat: no-repeat;
}

.c-section.bg-1::before {
  background-image: var(--bg-wave-3);
}

.c-section.bg-2::before {
  background-image: var(--bg-wave-4);
}

.c-section.bg-3::before {
  background-image: var(--bg-wave);
}

.c-section.bg-4::before {
  background-image: var(--bg-wave-leaders);
}

.c-section.bg-5::before {
  background-image: var(--bg-wave-5);
}

.c-section.bg-6::before {
  background-image: var(--bg-wave-6);
}

.c-section.bg-7::before {
  background-image: var(--bg-wave-7);
}

.c-section.bg-8::before {
  background-image: var(--bg-wave-8);
} */

@media (min-width: 1025px) {
  .c-section .inner {
    padding: 80px 0;
  }
}
@media (max-width: 1024px) {
  .c-section .inner {
    padding: 60px 0;
  }
}
.c-list.m {
  font-size: 1.6rem;
}

.c-list li {
  position: relative;
  margin: 5px 0;
  padding: 0 0 0 26px;
}

.c-list li::before {
  content: "●";
  display: block;
  position: absolute;
  left: 0;
  color: var(--color-marker1);
}

.p-style .c-list li::before {
  color: var(--color-marker2);
}

.c-flex {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   Utility - Responsive Display
   ========================================================================== */
@media (min-width: 1025px) {
  .u-hide-pc {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .u-hide-sp {
    display: inline-block;
  }
}

@media (max-width: 1024px) {
  .u-hide-pc {
    display: inline-block;
  }
}

@media (max-width: 1024px) {
  .u-hide-sp {
    display: none !important;
  }
}

.bg-gradation {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);

  background: linear-gradient(135deg, #FFF5F7 0%, #FFFDEB 100%);

  padding-top: 60px;
  padding-bottom: 60px !important;
}

/* ==========================================================================
   ボタン無効化のスタイル
   ========================================================================== */
.c-button__round.is-disabled {
  background-color: #ccc !important;
  border-color: #bbb !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

.c-button__round.is-disabled a {
  color: #888 !important;
  text-decoration: none;
}

/* ホバー時の効果も無効化 */
.c-button__round.is-disabled:hover {
  background-color: #ccc !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   問い合わせ・提出先
   ========================================================================== */
.c-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 30px 20px;
  font-size: 1.6rem;
}

.c-contact-qr {
  text-align: center;
  flex-shrink: 0;
  background: var(--color-white);
  padding: 10px;
  border: 1px solid var(--color-border-table);
  border-radius: 5px;
}

.c-contact-qr img {
  width: 80px;
  margin-bottom: 5px;
}

.c-contact-qr span {
  font-size: 10px;
  display: block;
  color: var(--color-text);
}

.c-contact-text .u-link {
  color: var(--color-link);
  text-decoration: underline;
  word-break: break-all;
}

.u-fw-bold {
  font-weight: bold;
}

.u-mt-10 {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .c-contact-container {
    margin-left: 0;
  }

  .c-contact-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .c-contact-qr {
    align-self: center;
    margin-top: 15px;
  }
}