@charset "UTF-8";
/* child-rearing用css */
/* ==========================================================
 common
========================================================== */
:root {
  --main: #68BE5A;
  --accent: #F3793C;
  --link: #3880ca;
  --bg-base: #F2F3F4;
  --bg-accent: #FAD6A4;
  --bg-accent2: #FDECD4;
  --text: #000000;
  --white: #ffffff;
}

/* pc
---------------------------------------------------------- */
.only-sp,
.no-pc {
  display: none !important;
}

/* sp
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .only-pc,
  .no-sp,
  .only-tb {
    display: none !important;
  }
  .only-sp,
  .no-pc {
    display: block !important;
  }
  img.only-sp,
  img.no-pc {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) {
  body.menuFixed {
    padding-top: 100px;
  }
}
/* ==========================================================
default
========================================================== */
.child-rearing {
  font-size: 1.6em;
  line-height: 2;
  color: var(--text);
}
@media screen and (max-width: 768px) {
  .child-rearing {
    font-size: 1.4em;
  }
}
.child-rearing img {
  max-width: 100%;
  height: auto;
}
.child-rearing sup {
  font-size: 60%;
  position: relative;
  top: 1px;
}

/* ==========================================================
layout
========================================================== */
.l-inner {
  max-width: 1060px;
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-inline: 15px;
  }
}

.l-section {
  max-width: 720px;
  margin-inline: auto;
}
.l-section p + p:not([class]) {
  margin-top: 2em;
}

.l-nav {
  border-image-source: linear-gradient(var(--bg-accent), var(--bg-accent));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
  display: flex;
  justify-content: center;
  padding-block: 40px;
  gap: 20px;
}
@media screen and (max-width: 970px) {
  .l-nav {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    gap: 10px;
  }
}

.l-link {
  border-image-source: linear-gradient(var(--bg-accent), var(--bg-accent));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
  padding: 80px 30px;
}
.l-link:last-child, .l-link:has(+ .p-contact), .l-link:has(+ .pickupSection) {
  margin-top: 80px;
}
.l-link .wrap {
  background-color: var(--white);
  border-radius: 20px;
  padding: 64px 80px;
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  gap: 40px;
}
.l-link .clm {
  width: calc((100% - 80px) / 3);
}
.l-link .list {
  display: flex;
  flex-direction: column;
}
.l-inner:has(.p-intv-wrap) + .l-link {
  margin-top: 0;
}

@media screen and (max-width: 1090px) {
  .l-link {
    margin-top: 40px;
  }
  .l-link .wrap {
    padding-inline: 5.504587156vw;
    gap: 2.752293578vw;
  }
  .l-link .clm {
    width: calc((100% - 5.504587156vw) / 3);
  }
}
@media screen and (max-width: 1000px) {
  .l-link .wrap {
    flex-direction: column;
    gap: 30px;
  }
  .l-link .clm {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-link {
    padding: 40px 15px;
  }
  .l-link .wrap {
    padding: 25px;
    gap: 20px;
  }
}
.l-link .clm:has(.c-button-dot.-current) .c-button-border {
  color: var(--text);
}
.l-link .c-button-dot {
  display: block;
  padding: 10px 0 9px 18px;
  border-bottom: 1px dashed #CCCCCC;
}
.l-link .c-button-dot:before {
  top: 17px;
  background-color: var(--white);
  border: 2px solid var(--accent);
}

.l-map {
  margin: 80px auto 0;
  max-width: 720px;
}
.l-map > p {
  font-size: 18px;
}
.l-map .c-image {
  max-width: max-content;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .l-map {
    margin-top: 40px;
  }
  .l-map > p {
    font-size: 14px;
  }
  .l-map .c-image {
    margin-top: 20px;
  }
}

.l-local-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 1001;
  transition: 0.5s opacity;
}
.l-local-nav:not(.-inView) {
  opacity: 0;
  pointer-events: none;
}
.l-local-nav .content {
  position: absolute;
  right: 0;
  display: grid;
  grid-template: auto/1fr;
  gap: 15px;
  max-height: 100%;
  overflow: auto;
  padding: 20px 25px 15px;
  width: 244px;
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px 0 0 20px;
  transition: 0.5s;
  transform: translate(calc(100% + 20px), 0);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .l-local-nav .content {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: calc(100% - 30px);
    height: calc(100% - 174px);
    max-height: none;
    padding: 25px;
    margin: auto;
    border-radius: 20px;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }
}
.l-local-nav:not(.-active) .content {
  transform: translate(0, 0);
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .l-local-nav:not(.-active) .content {
    opacity: 0;
    pointer-events: none;
  }
}
.l-local-nav .nav {
  display: grid;
  grid-template: auto/1fr;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .l-local-nav .nav {
    gap: 20px;
  }
}
.l-local-nav .clm:not(:has(.c-button-border.-current)) .list {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-local-nav .clm:not(:has(.c-button-border.-current)) .list {
    display: block;
  }
}
.l-local-nav .menu {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  width: 120px;
  height: 54px;
  padding: 0 0 0 24px;
  background: var(--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px 0 0 20px;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: var(--accent);
  transform: translate(10px, 0);
}
@media screen and (max-width: 768px) {
  .l-local-nav .menu {
    width: 80px;
    height: 44px;
    padding: 10px;
    justify-content: flex-end;
    bottom: 0;
    background: var(--accent);
    border-radius: 10px 0 0 0;
    font-size: 13px;
    color: var(--white);
    transform: translate(0, 0);
    z-index: 1;
  }
}
@media (hover: hover) {
  .l-local-nav .menu:hover {
    transform: translate(0, 0);
  }
}
.l-local-nav .menu i {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  background-color: var(--accent);
}
@media screen and (max-width: 768px) {
  .l-local-nav .menu i {
    left: 10px;
    right: auto;
    background-color: var(--white);
  }
}
.l-local-nav .menu i span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  background-color: var(--white);
}
@media screen and (max-width: 768px) {
  .l-local-nav .menu i span {
    background-color: var(--accent);
    transition: 0.3s;
  }
}
.l-local-nav .menu i span::before, .l-local-nav .menu i span::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: inherit;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-local-nav .menu i span::before, .l-local-nav .menu i span::after {
    background-color: var(--accent);
  }
}
.l-local-nav .menu i span::before {
  top: -4px;
}
.l-local-nav .menu i span::after {
  bottom: -4px;
}
@media screen and (max-width: 768px) {
  .l-local-nav.-active .menu i span {
    background: transparent;
  }
}
@media screen and (max-width: 768px) {
  .l-local-nav.-active .menu i span::before {
    top: 0;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  .l-local-nav.-active .menu i span::after {
    bottom: 0;
    transform: rotate(45deg);
  }
}
.l-local-nav .close {
  justify-self: end;
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: var(--accent);
  line-height: 100%;
  position: relative;
  padding: 5px 32px 5px 0;
}
@media screen and (max-width: 768px) {
  .l-local-nav .close {
    display: none;
  }
}
.l-local-nav .close i {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 0;
  right: 0;
  background-color: var(--accent);
}
.l-local-nav .close i::before, .l-local-nav .close i::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  background-color: var(--white);
}
.l-local-nav .close i::before {
  transform: rotate(45deg);
}
.l-local-nav .close i::after {
  transform: rotate(-45deg);
}
.l-local-nav .close:hover {
  color: var(--accent);
  text-decoration: none;
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .l-local-nav .ghost {
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    pointer-events: none;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-local-nav.-active .ghost {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-local-nav .c-button-border {
  padding: 10px 34px 10px 0;
  border-bottom-width: 2px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-local-nav .c-button-border {
    padding: 14px 34px 14px 0;
    border-bottom-width: 4px;
  }
}
.l-local-nav .c-button-border:before {
  top: 6px;
}
@media screen and (max-width: 768px) {
  .l-local-nav .c-button-border:before {
    top: 10px;
  }
}
.l-local-nav .c-button-border:after {
  top: 14px;
}
@media screen and (max-width: 768px) {
  .l-local-nav .c-button-border:after {
    top: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-local-nav .clm:has(.c-button-dot.-current) .c-button-border {
    color: var(--text);
  }
}
.l-local-nav .c-button-dot {
  display: block;
  padding: 8px 0 7px 18px;
  font-size: 14px;
  border-bottom: 1px dashed #CCCCCC;
}
@media screen and (max-width: 768px) {
  .l-local-nav .c-button-dot {
    padding: 10px 0 9px 18px;
  }
}
.l-local-nav .c-button-dot:before {
  background-color: var(--white);
  border: 2px solid var(--accent);
}
@media screen and (max-width: 768px) {
  .l-local-nav .c-button-dot:before {
    top: 15px;
  }
}

/* ==========================================================
component
========================================================== */
/* title */
.c-title-lg {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-block: 80px 40px;
}
.c-title-lg + .c-title-md {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .c-title-lg {
    font-size: 1.4em;
    line-height: 150%;
    margin-block: 61px 29px;
  }
}

.c-title-md {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-block: 60px 30px;
}
.c-title-md.-accent {
  color: var(--main);
}
.c-title-md.-mt {
  margin-top: 30px;
}
.c-title-md small {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-title-md {
    font-size: 1.2em;
    line-height: 150%;
    margin-block: 40px 20px;
  }
  .c-title-md.-mt {
    margin-top: 40px;
  }
}

.c-title-sm {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-block: 30px 20px;
}
@media screen and (max-width: 768px) {
  .c-title-sm {
    font-size: 15px;
    margin-block: 20px 15px;
  }
}

.c-title-xs {
  font-weight: bold;
  text-align: center;
  margin-block: 40px 10px;
}
@media screen and (max-width: 768px) {
  .c-title-xs {
    margin-block: 30px 10px;
  }
}

/* button */
.c-button {
  background-color: var(--white);
  border: 4px solid transparent;
  border-radius: 80px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text);
  width: 100%;
  max-width: 400px;
  height: 64px;
  line-height: 120%;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}
.c-button::before, .c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-button::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  right: 16px;
}
.c-button::after {
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) translateY(-50%) rotate(45deg);
  right: 23px;
}
.c-button:hover {
  text-decoration: none;
}
.c-button.-default {
  border-color: var(--main);
}
.c-button.-default::before {
  background-color: var(--main);
}
.c-button.-default:hover {
  color: var(--main);
}
.c-button.-accent {
  border-color: var(--accent);
  height: 80px;
}
.c-button.-accent::before {
  background-color: var(--accent);
}
.c-button.-accent:hover {
  color: var(--accent);
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 16px;
  }
  .c-button.-accent {
    height: 64px;
  }
}

.c-button-border {
  display: block;
  border-bottom: 4px solid var(--accent);
  font-weight: bold;
  font-size: 18px;
  color: var(--text);
  line-height: 100%;
  position: relative;
  padding: 3px 24px 19px 0;
}
.c-button-border::before, .c-button-border::after {
  content: "";
  position: absolute;
}
.c-button-border::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 0;
  right: 0;
  background-color: var(--accent);
}
.c-button-border::after {
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  top: 8px;
  right: 7px;
}
.c-button-border:hover {
  text-decoration: none;
  color: var(--accent);
}
.c-button-border.-down::after {
  transform: translateX(-25%) rotate(135deg);
  top: 7px;
  right: 6px;
}
.c-button-border.-current {
  color: var(--accent);
  transition: none;
}
@media screen and (max-width: 768px) {
  .c-button-border {
    font-size: 16px;
    padding: 14px 24px 14px 0;
  }
  .c-button-border::before {
    top: 10px;
  }
  .c-button-border::after {
    top: 18px;
  }
  .c-button-border.-down::after {
    top: 16px;
  }
}

.c-button-dot {
  font-weight: bold;
  color: var(--text);
  line-height: 150%;
  display: inline-block;
  padding: 6px 0 6px 18px;
  position: relative;
}
.c-button-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  position: absolute;
  top: 13px;
  left: 0;
}
.c-button-dot:hover {
  text-decoration: none;
  color: var(--accent);
}
.c-button-dot.-current, .c-button-dot.-inView {
  color: var(--accent);
  transition: none;
}
.c-button-dot.-current:before, .c-button-dot.-inView:before {
  background-color: var(--accent);
}
@media screen and (max-width: 768px) {
  .c-button-dot::before {
    top: 11px;
  }
}

.c-button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.c-button-wrap.-mt {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .c-button-wrap.-mt {
    margin-top: 20px;
  }
}

/* link */
.c-link {
  color: var(--link);
  text-decoration: underline;
  word-break: break-all;
}
.c-link:hover {
  color: var(--link);
  text-decoration: none;
}
.c-link[target=_blank] {
  display: inline;
  padding-left: 0;
}
.c-link[target=_blank]::before {
  display: none;
}

/* image */
figure img {
  width: 100%;
}

.c-image {
  margin-top: 20px;
}

.c-image-block {
  margin-block: 30px;
}
@media screen and (max-width: 768px) {
  .c-image-block {
    margin-block: 20px;
  }
}

.c-image-intv {
  margin-block: 40px;
}
.c-image-intv figcaption {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-image-intv {
    margin-block: 30px;
  }
  .c-image-intv figcaption {
    margin-top: 5px;
    font-size: 12px;
  }
}

.c-image-credit {
  position: relative;
}
.c-image-credit figcaption {
  font-size: 14px;
  color: var(--white);
  text-align: right;
  line-height: 100%;
  width: 100%;
  padding: 40px 10px 10px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
}
.c-image-credit.-small figcaption {
  font-size: 12px;
  padding: 20px 10px 10px;
}
@media screen and (max-width: 768px) {
  .c-image-credit figcaption {
    font-size: 12px;
    padding-top: 20px;
  }
}

.c-image-wrap {
  display: flex;
  gap: 5px;
  margin-block: 30px;
}
.c-image-wrap > * {
  width: calc((100% - 10px) / 3);
}
@media screen and (max-width: 768px) {
  .c-image-wrap {
    flex-direction: column;
    margin-block: 20px;
  }
  .c-image-wrap > * {
    width: 100%;
  }
}

/* note */
.c-note {
  font-size: 14px;
  line-height: 150%;
  margin-top: 20px;
  position: relative;
  padding-left: 1em;
}
.c-note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.c-note + .c-note {
  margin-top: 0;
}
.c-note.-important {
  color: #FF0000;
}
@media screen and (max-width: 768px) {
  .c-note {
    margin-top: 10px;
    font-size: 12px;
  }
}

.c-note-num {
  font-size: 14px;
  line-height: 150%;
  margin-top: 20px;
}
.c-note-num li {
  position: relative;
  padding-left: 2em;
}
.c-note-num li span {
  width: 2em;
  position: absolute;
  top: 0;
  left: 0;
}
.c-note-num li + li {
  margin-top: 5px;
}
.c-note-num + p:not([class]) {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .c-note-num {
    margin-top: 10px;
    font-size: 12px;
  }
}

/* free */
.c-free .item {
  border-radius: 20px;
  background-color: var(--bg-accent2);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.c-free .item + .item {
  margin-top: 20px;
}
.c-free .title {
  width: 100px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 6px;
}
.c-free .title span {
  padding-bottom: 3px;
  border-bottom: 4px solid var(--main);
  font-weight: bold;
}
.c-free .text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .c-free .item {
    padding: 25px;
    flex-direction: column;
    gap: 15px;
  }
  .c-free .item + .item {
    margin-top: 10px;
  }
  .c-free .title {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .c-free .title span {
    padding-bottom: 4px;
  }
}

/* support */
.c-support {
  background-color: var(--bg-base);
  border-radius: 20px;
  padding: 32px 40px;
}
.c-support .item {
  position: relative;
  padding-left: 40px;
}
.c-support .item + .item {
  margin-top: 10px;
}
.c-support .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  background-color: var(--main);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
::-webkit-full-page-media, :future, :root .c-support .num {
  padding-top: 3px;
}

@media screen and (max-width: 768px) {
  .c-support {
    padding: 25px;
  }
  .c-support .item {
    line-height: 150%;
    padding: 1px 0 1px 29px;
  }
  .c-support .num {
    width: 24px;
    height: 24px;
    font-size: 12px;
    padding-top: 2px;
  }
  ::-webkit-full-page-media, :future, :root .c-support .num {
    padding-top: 2px;
  }
}

/* copy */
.c-copy {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 80px;
  position: relative;
}
.c-copy .text {
  font-size: 18px;
  text-align: center;
}
.c-copy .image {
  position: absolute;
  bottom: 3px;
  left: -200px;
}
@media screen and (max-width: 768px) {
  .c-copy {
    padding-block: 40px;
  }
  .c-copy .text {
    font-size: 14px;
    text-align: left;
    display: table;
    margin-inline: auto;
  }
  .c-copy .image {
    width: 76px;
    left: -10px;
    bottom: -26px;
  }
}

/* label */
.c-label {
  text-align: center;
  margin-bottom: 20px;
}
.c-label span {
  display: grid;
  place-content: center;
  width: 100px;
  height: 30px;
  margin-inline: auto;
  border-radius: 30px;
  background-color: var(--main);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

/* hr */
.c-hr {
  border: none;
  height: 4px;
  background: url(../img/line-dot.svg) repeat-x left;
  margin-block: 80px;
}
@media screen and (max-width: 768px) {
  .c-hr {
    margin-block: 60px;
  }
}

/* qa */
.c-qa .item + .item {
  margin-top: 40px;
}
.c-qa .question {
  background-color: var(--bg-base);
  border-radius: 20px;
  display: flex;
  gap: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.c-qa .num {
  display: grid;
  place-content: center;
  width: 40px;
  height: 32px;
  background-color: var(--main);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
}
::-webkit-full-page-media, :future, :root .c-qa .num {
  padding-top: 3px;
}

.c-qa .title {
  font-weight: bold;
  line-height: 150%;
  flex: 1;
  padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .c-qa .item + .item {
    margin-top: 30px;
  }
  .c-qa .question {
    padding: 15px;
    margin-bottom: 15px;
  }
  .c-qa .num {
    height: 26px;
    font-size: 12px;
  }
  ::-webkit-full-page-media, :future, :root .c-qa .num {
    padding-top: 2px;
  }
  .c-qa .title {
    padding-top: 2px;
  }
}

/* detail */
.c-detail {
  margin-top: 30px;
}
.c-detail .row {
  line-height: 150%;
  overflow: hidden;
}
.c-detail .row + .row {
  margin-top: 10px;
}
.c-detail dt {
  float: left;
}
@media screen and (max-width: 768px) {
  .c-detail {
    margin-top: 20px;
  }
}

/* row */
.c-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.c-row .column {
  width: calc((100% - 20px) / 2);
}
.c-row .c-title-md {
  font-size: 16px;
  margin-block: 0 15px;
}
.c-row figure + p {
  margin-top: 20px;
}
.c-row .c-detail {
  margin-top: 20px;
}
.c-detail + .c-row {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .c-row .c-title-md {
    font-size: 14px;
  }
  .c-row .column {
    width: 100%;
  }
  .c-detail + .c-row {
    margin-top: 40px;
  }
}

/* ==========================================================
project
========================================================== */
/* hero */
.p-hero {
  max-width: 1060px;
  padding-inline: 30px;
  margin-inline: auto;
  position: relative;
}
.p-hero img {
  border-radius: 10px;
}
.p-hero .title {
  font-size: 36px;
  font-weight: bold;
  color: var(--main);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 680px;
  width: 77.2727272727vw;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 120%;
  border-radius: 10px;
  padding: 30px;
}
.p-hero .title.top {
  background: none;
  padding: 18px 0 0;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) and (max-width: 1060px) {
  .p-hero .title.top {
    font-size: 3.3962264151vw;
  }
}
@media screen and (max-width: 768px) {
  .p-hero {
    margin-top: 45px;
    padding-inline: 0;
  }
  .p-hero img {
    width: 100%;
    border-radius: 0;
  }
  .p-hero .title {
    font-size: 6.4vw;
    width: calc(100% - 30px);
    padding: 3.2vw;
  }
  .p-hero .title.top {
    line-height: 150%;
    padding: 0;
  }
}

/* breadcrumb */
.p-breadcrumb {
  margin: 20px 0 40px;
  font-size: 0.9em;
}
.p-breadcrumb a {
  color: var(--link);
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    margin: 20px 0 48px;
    font-size: 0.8em;
  }
}

/* contact */
.p-contact {
  text-align: center;
  max-width: 1060px;
  margin-inline: auto;
  padding: 80px 30px 90px;
}
.p-contact .title {
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  color: #333333;
}
.p-contact .title-s {
  font-weight: bold;
}
.p-contact .txt01 {
  font-size: 13px;
}
.p-contact .txt02 {
  margin-top: 10px;
  font-weight: bold;
  color: #42944f;
}
.p-contact .txt03 {
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding: 40px 15px 50px;
  }
  .p-contact .title {
    font-size: 20px;
  }
  .p-contact .title-s {
    font-size: 16px;
  }
  .p-contact .txt02 {
    font-size: 14px;
  }
}

/* top
---------------------------------------------------------- */
.p-top-lead {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-block: 80px;
  position: relative;
}
.p-top-lead > .image {
  position: absolute;
}
.p-top-lead > .image01 {
  top: 60px;
  left: -140px;
}
.p-top-lead > .image02 {
  bottom: 40px;
  right: -200px;
}
.p-top-lead p {
  font-size: 18px;
}
.p-top-lead p + p {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-top-lead {
    max-width: 460px;
    text-align: left;
    padding-block: 69px 100px;
  }
  .p-top-lead > .image01 {
    width: 76px;
    top: -20px;
    left: -5px;
  }
  .p-top-lead > .image02 {
    width: 100px;
    bottom: 10px;
    right: -5px;
  }
  .p-top-lead p {
    font-size: 14px;
  }
}

.p-top-visual {
  max-width: 720px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-top-visual {
    max-width: 375px;
    margin-inline: -15px;
  }
}

.p-top-text-center {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-top-text-center {
    margin-top: 20px;
  }
}

.p-top-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.p-top-btn-wrap .c-button {
  max-width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 768px) {
  .p-top-btn-wrap {
    margin-top: 20px;
    gap: 10px;
  }
  .p-top-btn-wrap .c-button {
    max-width: none;
  }
}

/* interview
---------------------------------------------------------- */
.p-intv-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.p-intv-list .item {
  width: calc((100% - 80px) / 3);
}
.p-intv-list .link {
  color: var(--text);
}
.p-intv-list .link:hover {
  text-decoration: none;
  color: var(--main);
}
.p-intv-list .image {
  position: relative;
}
.p-intv-list .num {
  background-color: var(--main);
  width: 100px;
  height: 30px;
  display: grid;
  place-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  border-radius: 0 10px 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-intv-list .title {
  margin-top: 10px;
}
.p-intv-list .data {
  margin-top: 5px;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-intv-list {
    gap: 30px;
  }
  .p-intv-list .item {
    width: 100%;
  }
  .p-intv-list .data {
    font-size: 12px;
  }
}

.p-interviewer {
  font-weight: bold;
  color: var(--main);
  padding-left: 50px;
  position: relative;
  margin-top: 80px;
}
.p-interviewer::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--main);
  position: absolute;
  top: 16px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-interviewer {
    padding-left: 30px;
    margin-top: 60px;
  }
  .p-interviewer::before {
    width: 20px;
    top: 14px;
  }
}

.p-intv-wrap {
  border-image-source: linear-gradient(var(--bg-base), var(--bg-base));
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
  padding-block: 80px;
  margin-top: 80px;
}
.p-intv-wrap > p {
  text-align: center;
}
.p-intv-wrap .p-intv-list {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-intv-wrap {
    padding-block: 40px;
  }
  .p-intv-wrap .p-intv-list {
    margin-top: 30px;
  }
}

/* support
---------------------------------------------------------- */
.p-support-link {
  display: flex;
  flex-wrap: wrap;
  gap: 43px 40px;
}
.p-support-link .item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 768px) {
  .p-support-link {
    gap: 20px 21px;
  }
  .p-support-link .item {
    width: calc((100% - 21px) / 2);
  }
  .p-support-link .c-button-border {
    line-height: 120%;
    padding-block: 10px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .p-support-link .c-button-border::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-support-link .c-button-border::after {
    top: 24px;
  }
}

.p-support-explain {
  margin-top: 80px;
  font-size: 18px;
}
.p-support-explain .icon {
  display: inline-block;
  vertical-align: middle;
  margin-inline: 7px 4px;
}
@media screen and (max-width: 768px) {
  .p-support-explain {
    margin-top: 60px;
    font-size: 14px;
  }
  .p-support-explain .icon {
    margin-inline: 0 4px;
  }
}

.p-support-sec {
  padding-top: 80px;
}
.p-support-sec .c-title-lg {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-support-sec {
    padding-top: 60px;
  }
}

.p-support-flow {
  max-width: 680px;
  margin-inline: auto;
}
.p-support-flow tr:last-of-type td.type1,
.p-support-flow tr:last-of-type td.type2 {
  padding-bottom: 0;
}
.p-support-flow tr:has(.type1 + .type2) td.type1::after {
  background: none;
}
.p-support-flow tr:has(.type1 + .type2) td.type2::after {
  background: url(../img/icon_support_circle.svg) no-repeat;
}
.p-support-flow th {
  text-align: center;
  width: 50%;
  padding-bottom: 40px;
}
.p-support-flow th span {
  display: inline-block;
  width: 220px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
  border-radius: 30px;
}
.p-support-flow th.type1 {
  padding-right: 20px;
}
.p-support-flow th.type1 span {
  background-color: var(--main);
}
.p-support-flow th.type2 {
  padding-left: 20px;
}
.p-support-flow th.type2 span {
  background-color: var(--accent);
}
.p-support-flow td {
  line-height: 150%;
  position: relative;
  vertical-align: baseline;
}
.p-support-flow td small {
  font-size: 14px;
}
.p-support-flow td.type1::after, .p-support-flow td.type2::after {
  content: "";
  width: 19px;
  height: 19px;
  border-radius: 50%;
  position: absolute;
  top: 0;
}
.p-support-flow td.type1 {
  padding: 0 48px 22px 0;
  border-right: 1px solid #999999;
}
.p-support-flow td.type1::after {
  background-color: var(--main);
  right: -10px;
}
.p-support-flow td.type1 .icon {
  right: 20px;
}
.p-support-flow td.type2 {
  padding: 0 28px 22px 20px;
  border-left: 1px solid #999999;
}
.p-support-flow td.type2::after {
  background-color: var(--accent);
  left: -10px;
}
.p-support-flow td.type2 .icon {
  right: 0;
}
.p-support-flow td.illust1 {
  text-align: right;
  vertical-align: middle;
}
.p-support-flow td.illust1 img {
  right: -98px;
}
.p-support-flow td.illust2 {
  text-align: right;
  vertical-align: middle;
  padding-right: 5px;
}
.p-support-flow td.image03 img {
  width: 160px;
  left: -40px;
}
.p-support-flow td.image04 {
  vertical-align: middle;
  text-align: left;
}
.p-support-flow td.image04 img {
  left: -40px;
}
.p-support-flow td.image05 {
  vertical-align: middle;
}
.p-support-flow td.image05 img {
  left: -110px;
}
.p-support-flow td.image06 {
  vertical-align: top;
  padding-top: 37px;
}
.p-support-flow td.image06 img:nth-of-type(1) {
  left: -21px;
}
.p-support-flow td.image06 img:nth-of-type(2) {
  left: -194px;
  margin-top: 283px;
}
.p-support-flow td.image07 {
  vertical-align: top;
  padding-top: 32px;
}
.p-support-flow td.image07 img {
  left: -154px;
}
.p-support-flow td .icon {
  position: absolute;
  top: 0;
}
.p-support-flow img:not([class]) {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-support-flow {
    max-width: none;
  }
  .p-support-flow th {
    padding-bottom: 28px;
  }
  .p-support-flow th span {
    max-width: 154px;
    width: 100%;
    height: 36px;
    font-size: 18px;
  }
  .p-support-flow th.type1 {
    padding-inline: 5px 14px;
  }
  .p-support-flow th.type2 {
    padding-inline: 13px 5px;
  }
  .p-support-flow td small {
    font-size: 12px;
  }
  .p-support-flow td.type1 {
    padding: 0 42px 24px 0;
  }
  .p-support-flow td.type1 .icon {
    right: 15px;
  }
  .p-support-flow td.type2 {
    padding: 0 24px 24px 18px;
  }
  .p-support-flow td.type2 .icon {
    right: -3px;
  }
  .p-support-flow td.illust1 {
    vertical-align: top;
    padding-top: 131px;
  }
  .p-support-flow td.illust1 img {
    max-width: 129px;
    width: 34.4vw;
    right: 0;
  }
  .p-support-flow td.illust2 {
    padding: 25px 0 0;
  }
  .p-support-flow td.illust2 img {
    max-width: 149px;
    width: 39.7333333333vw;
    right: -3px;
  }
  .p-support-flow td.image03 img {
    max-width: 124px;
    width: 33.0666666667vw;
    left: 0;
  }
  .p-support-flow td.image04 img {
    max-width: 155px;
    width: 41.3333333333vw;
    right: -7px;
  }
  .p-support-flow td.image05 {
    padding-top: 40px;
  }
  .p-support-flow td.image05 img {
    max-width: 118px;
    width: 31.4666666667vw;
    left: 4.8vw;
  }
  .p-support-flow td.image06 {
    padding-top: 150px;
  }
  .p-support-flow td.image06 img:nth-of-type(1) {
    max-width: 131px;
    width: 34.9333333333vw;
    left: auto;
    right: 10px;
    position: absolute;
  }
  .p-support-flow td.image06 img:nth-of-type(2) {
    max-width: 127px;
    width: 33.8666666667vw;
    left: 0;
    margin-top: 0;
    position: absolute;
    bottom: 204px;
  }
  .p-support-flow td.image07 {
    padding-top: 195px;
  }
  .p-support-flow td.image07 img {
    max-width: 132px;
    width: 35.2vw;
    left: 0;
  }
  .p-support-flow td small {
    font-size: 12px;
    line-height: 120%;
  }
}

/* ==========================================================
utility
========================================================== */
.u-dib {
  display: inline-block;
  font-weight: inherit;
}

.u-mt0 {
  margin-top: 0;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-pb0 {
  padding-bottom: 0;
}

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