@charset "UTF-8";

@font-face {
  font-family: "MOBO";
  src: url("../font/MOBO-Regular.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MOBO";
  src: url("../font/MOBO-SemiBold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MOBO";
  src: url("../font/MOBO-Bold.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GenWanMinJP";
  src: url("../font/GenWanMin2JP-L.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "soratohikouki";
  src: url("../font/空とひこうき.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/**
 * サイト全体で使用するテーマカラー
 */
:root {
  --color-main: #E60012;
  --color-sub: #038FD5;
  --color-dark: #1E100F;
  --color-bg: #F6F6F6;
}


/*
 * LPテンプレート用CSS
 * 必要最低限のリセットと共通設定のみ記述しています。
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, calc(12.5714px + 0.2857vw), 16px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-dark);
  font-family: YakuHanJP, "MOBO", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  background-color: #fff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

[class$="_sect"] {
  margin: 120px auto;
}

@media screen and (max-width: 1000px) {
  [class$="_sect"] {
    margin: 80px auto;
  }
}

.center {
  text-align: center;
}


@media screen and (min-width: 1001px) {
  .sp {
    display: none !important;
  }

  .pc-center {
    text-align: center;
  }
}

@media screen and (max-width: 1000px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 850px) {
  .pc_850 {
    display: none !important;
  }
}

@media screen and (max-width: 650px) {
  .pc_650 {
    display: none !important;
  }
}

@media screen and (min-width: 651px) {
  .sp_650 {
    display: none !important;
  }
}

@media screen and (min-width: 851px) {
  .sp_850 {
    display: none !important;
  }
}


.inner_1000 {
  width: 1040px;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.inner_1200 {
  width: 1240px;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.headLine {
  font-size: clamp(24px, calc(12px + 1.3333vw), 35px);
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 7px 0;
  margin-bottom: 30px;
}

.headLine span {
  color: var(--color-main);
  font-size: clamp(14px, calc(8px + 0.6667vw), 18px);
  position: relative;
}

.headLine span:before {
  content: "・ ";
}

.headLine.center {
  align-items: center;
}

.headLine.center span:before {
  content: "";
}

@media screen and (min-width: 1001px) {
  .headLine.pc-center {
    align-items: center;
  }

  .headLine.pc-center span:before {
    content: "";
  }
}

.headLine.white span {
  color: #fff;
  opacity: 0.5;
}

.headLine_img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.white {
  color: #fff;
}

.subHead {
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  font-weight: 500;
  line-height: 1.4;
}

.title {
  font-size: clamp(24px, calc(12px + 1.3333vw), 35px);
}

.title span {
  color: var(--color-main);
}

.site-main {
  min-height: 60vh;
}


/* header */

header {
  position: fixed;
  top: 24px;
  left: 30px;
  width: calc(100% - 60px);
  z-index: 100;
}

header .header_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

header .header_logo {
  display: inline-block;
  background: #fff;
  border-radius: 100px;
  padding: 10px 45px 10px 30px;
  box-shadow: 0 5px 10px #00000016;
}

header .header_logo img {
  height: 50px;
}

header .header_contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--color-sub);
  border: 2px solid var(--color-sub);
  height: 70px;
  border-radius: 100px;
  padding-left: 24px;
  padding-right: 8px;
  gap: 24px;
  font-size: clamp(16px, calc(10px + 0.6667vw), 20px);
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 5px 10px #00000016;
}

header .header_contact * {
  transition: 0.3s;
}

header .header_contact figure {
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 3px;
}

header .header_contact figure img {
  filter: brightness(1);
  width: 25px;
}

@media screen and (min-width: 1001px) {
  header .header_contact:hover {
    background: #fff;
    color: var(--color-sub);
  }

  header .header_contact:hover figure {
    background: var(--color-sub);
  }

  header .header_contact:hover figure img {
    filter: brightness(0) invert(1);
  }
}


@media screen and (max-width: 850px) {
  header {
    width: calc(100% - 20px);
    top: 10px;
    left: 10px;
  }

  header .header_logo {
    padding: 8px 15px;
  }

  header .header_logo img {
    height: 33px;
  }

  header .header_contact {
    height: 50px;
    padding-right: 5px;
    gap: 10px;
    padding-left: 10px;
    font-size: 14px;
  }

  header .header_contact figure {
    height: 40px;
    width: 40px;
  }
}


/* footer */

footer {
  width: 100%;
  background: var(--color-main);
}

.site-footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #fff;
  padding: 20px 0;
}

.site-footer__copyright a {
  text-decoration: underline;
}

.cta {
  padding: 60px 20px;
}

.cta .cta_bg {
  background: #fff;
  padding: 60px 0;
  border-radius: 20px;
}

.cta .cta_dl {
  max-width: 825px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.cta .cta_dl .cta_dl_ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 20px 40px;
}

.cta .cta_dl .cta_dl_ttl h2 {
  margin-bottom: 0;
}

.cta .cta_dl .cta_dl_ttl h2 img {
  width: 26px;
  height: 33px;
  object-fit: contain;
}

.cta .cta_dl .cta_dl_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}

.cta .cta_dl .cta_dl_wrap a {
  width: 48%;
  background: var(--color-main);
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  border: 2px solid #fff;
  transition: 0.3s;
}

.cta .cta_dl .cta_dl_wrap a * {
  transition: 0.3s;
}

.cta .cta_dl .cta_dl_wrap a>img {
  height: 70px;
  max-height: 90%;
  width: 60px;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  left: 10px;
  bottom: 0;
}

.cta .cta_dl .cta_dl_wrap a p {
  padding: 23px 0;
  color: #fff;
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  text-align: center;
  line-height: 1;
  margin: 0 auto;
  padding-left: 50px;
}

.cta .cta_dl .cta_dl_wrap a span {
  background: #fff;
  height: calc(100% - 14px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
}

.cta .cta_dl .cta_dl_wrap a span img {
  width: 27px;
  height: 32px;
  margin-left: 3px;
  filter: brightness(1);
}

.cta .cta_dl .cta_dl_wrap a:hover {
  background: #fff;
  border-color: var(--color-main);
}

.cta .cta_dl .cta_dl_wrap a:hover p {
  color: var(--color-main);
}

.cta .cta_dl .cta_dl_wrap a:hover span {
  background: var(--color-main);
}

.cta .cta_dl .cta_dl_wrap a:hover span img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 650px) {
  .cta .cta_dl .cta_dl_wrap a {
    width: 100%;
  }

  .site-footer__copyright {
    flex-direction: column;
    align-items: center;
  }

  .site-footer__copyright span {
    display: none;
  }
}

.cta_bg+.cta_bg {
  position: relative;
}

.cta_bg+.cta_bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  border-top: 4px dashed var(--color-main);
  top: -2px;
  left: 0;
}

.cta .cta_contact {
  max-width: 825px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  gap: 30px;
}

.cta .cta_contact .headLine span {
  color: var(--color-sub);
}

.cta .cta_contact .cta_contact_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta .cta_contact .cta_contact_ttl {
  margin-top: 20px;
}

.cta .cta_contact .cta_contact_wrap .cta_tell,
.cta .cta_contact .cta_contact_wrap .cta_mail {
  background: var(--color-bg);
  padding: 13px 22px;
  border-radius: 5px;
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  display: flex;
  align-items: center;
  line-height: 1;
  height: 70px;
  font-weight: 700;
  border: 2px solid var(--color-bg);
  transition: 0.3s;
}

.cta .cta_contact .cta_contact_wrap .cta_tell:hover,
.cta .cta_contact .cta_contact_wrap .cta_mail:hover {
  border-color: var(--color-sub);
}

.cta .cta_contact .cta_contact_wrap .cta_tell span,
.cta .cta_contact .cta_contact_wrap .cta_mail span {
  color: var(--color-sub);
  width: 90px;
  text-align: center;
  display: inline-block;
  position: relative;
  padding-right: 20px;
}

.cta .cta_contact .cta_contact_wrap .cta_tell span:after,
.cta .cta_contact .cta_contact_wrap .cta_mail span:after {
  position: absolute;
  content: "：";
  right: 4px;
}

.cta .cta_contact .cta_contact_wrap .cta_mail small {
  font-size: 12px;
  font-weight: 400;
  color: #777;
  margin-top: -3px;
}

.cta .cta_contact .cta_contact_wrap .cta_mail span {
  margin-bottom: auto;
}

.cta .cta_contact .cta_form {
  background: var(--color-sub);
  color: #fff;
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  font-weight: 400;
  padding: 7px 7px 7px 30px;
  display: flex;
  border-radius: 50px;
  line-height: 2;
  border: #fff 2px solid;
  transition: 0.3s;
}

.cta .cta_contact .cta_form * {
  transition: 0.3s;
}

.cta .cta_contact .cta_form p {
  margin: 0 auto;
}

.cta .cta_contact .cta_form span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
}

.cta .cta_contact .cta_form span img {
  width: 25px;
  aspect-ratio: 1;
  margin-right: 3px;
  display: inline-block;
  filter: brightness(1);
}

.cta .cta_contact .cta_form:hover {
  background: #fff;
  border-color: var(--color-sub);
  color: var(--color-sub);
}

.cta .cta_contact .cta_form:hover span {
  background: var(--color-sub);
}

.cta .cta_contact .cta_form:hover span img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 850px) {
  .cta .cta_contact {
    flex-direction: column;
  }

  .cta .cta_contact .cta_contact_ttl {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
  }

  .cta .cta_contact .cta_form span {
    height: auto;
    width: 40px;
  }

  .cta .cta_contact .cta_contact_wrap .cta_tell,
  .cta .cta_contact .cta_contact_wrap .cta_mail {
    font-size: 17px;
    height: 62px;
    padding: 13px 10px;
    letter-spacing: -1px;
  }

  .cta .cta_contact .cta_contact_wrap .cta_tell span,
  .cta .cta_contact .cta_contact_wrap .cta_mail span {
    width: 60px;
    padding-right: 12px;
  }

  .cta .cta_contact .cta_form {
    font-size: 14px;
    line-height: 40px;
  }

  .cta .cta_contact .cta_contact_wrap .cta_mail small {
    font-size: 10px;
    letter-spacing: 0px;
    display: inline-block;
    margin-top: 2px;
    line-height: 1.2;
  }
}

/* TOPに戻る */

.top_back {
  position: relative;
  z-index: 1;
}

.top_back .top_back_button {
  width: fit-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.top_back .top_back_button img {
  width: 140px;
  transform: translateY(12px);
}

.top_back .top_back_button p {
  background: var(--color-sub);
  padding: 10px 40px;
  position: relative;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(14px, calc(8px + 0.6667vw), 18px);
}

.top_back .top_back_button p:before {
  position: absolute;
  content: "";
  top: 29%;
  right: 5px;
  height: 15px;
  width: 15px;
  background-color: var(--color-sub);
  transform: rotate(120deg) skewY(30deg) scaleX(.86666) translateY(-50%);
  border-radius: 2px;
}

/* FV */
.FV {
  background: var(--color-main);
  display: flex;
  gap: 34px;
  position: relative;
  display: flex;
  gap: 34px;
  position: relative;
  padding-bottom: 100px;
  min-height: 95vh;
  overflow: hidden;
}

.FV:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70px;
  background: url("../images/wave.svg") no-repeat center / 100% 100%;
  z-index: 1;
  left: 0;
  bottom: -5px;
}

.FV h1 {
  font-size: clamp(45px, calc(28px + 2.6667vw), 68px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 5%;
  margin-left: 30px;
  padding-top: 25%;
  font-feature-settings: "palt" 1;
  line-height: 1;
}

.FV h1 span {
  letter-spacing: -5px;
  padding-right: 5px;
}

.FV h1 span.tume {
  padding: 0;
  margin-right: -5px;
}

.FV .FV_text {
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.FV .FV_text_inner {
  background: #fff;
  padding: 35px 48px 28px;
  display: inline-block;
  border-radius: 0 50px 50px 0;
  box-shadow: 0 5px 10px #00000016;
  display: flex;
  flex-direction: column;
  position: relative;
}

.FV .FV_text_inner:before {
  position: absolute;
  content: "";
  width: 90px;
  aspect-ratio: 61 / 56;
  background: url(../images/himarin_top.png)no-repeat center / contain;
  bottom: 0;
  left: 20px;
}

.FV .FV_text_inner h2 {
  font-size: clamp(22px, calc(12px + 1.3333vw), 35px);
  color: var(--color-main);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
}

.FV .FV_text_inner .FV_text_catch p {
  font-size: clamp(18px, calc(8px + 1vw), 25px);
  margin-bottom: 20px;
  line-height: 1.4;
}

.FV .FV_text_inner .FV_text_inner_num_flex {
  display: flex;
  gap: 16px 10px;
}

.FV .FV_text_inner .FV_text_inner_num .year {
  background: #038fd5;
  color: #fff;
  border: 2px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(20px, calc(8px + 1vw), 25px);
  z-index: 1;
  position: relative;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;
}

.FV .FV_text_inner .FV_text_inner_num .FV_text_inner_num_item {
  background: var(--color-bg);
  padding: 20px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px 22px;
  flex: 1;
}

.FV .FV_text_inner .FV_text_inner_num div.wide {
  padding: 15px 10px;
  flex-direction: row;
  margin-bottom: 10px;
  margin-top: 10px;
}

.FV .FV_text_inner .FV_text_inner_num div p {
  font-size: clamp(18px, calc(12px + 0.6667vw), 22px);
  font-weight: 500;
  line-height: 1;
  width: 100%;
  text-align: center;
}

.FV .FV_text_inner .FV_text_inner_num div.wide p {
  width: fit-content;
}

.FV .FV_text_inner .FV_text_inner_num div p span {
  font-size: clamp(22px, calc(13px + 1vw), 28px);
}

.FV .FV_text_inner .FV_text_inner_num div h3 {
  color: var(--color-sub);
  font-size: clamp(60px, calc(44px + 2vw), 74px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
}

.FV .FV_text_inner .FV_text_inner_num div h3 span {
  font-size: clamp(28px, calc(14px + 1.3333vw), 35px);
}

@media screen and (max-width: 1000px) {
  .top_back .top_back_button img {
    width: 110px;
  }

  .FV {
    padding-bottom: 70px;
  }

  .FV:before {
    height: 40px;
  }

  .FV h1 {
    padding-top: 120px;
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .FV .FV_text {
    margin: 0;
    width: 100%;
  }

  .FV .FV_text_inner {
    margin-top: 78vw;
    z-index: 1;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .FV .FV_text_inner:before {
    bottom: auto;
    top: 0;
    left: 10px;
    transform: translateY(-100%);
    width: 70px;
  }

  .FV .FV_text_catch {
    background: #fff;
    padding: 30px 20px;
    padding-left: 60px;
    width: 80%;
    min-width: 350px;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 40px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  .FV_text_inner_num {
    width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .FV .FV_text_inner .FV_text_catch p {
    margin-bottom: 0;
  }

  .FV .FV_text_inner .FV_text_inner_num div.wide {
    margin: 0;
    width: calc(40% - 10px);
    flex-direction: column;
  }

  .FV .FV_text_inner .FV_text_inner_num_flex {
    gap: 10px;
    flex: 1;
  }

  .FV .FV_text_inner .FV_text_inner_num .FV_text_inner_num_item {
    flex: initial;
  }

  .FV .FV_text_inner .FV_text_inner_num_flex .FV_text_inner_num_item {
    flex: 1;
  }

  .marg_L {
    margin-right: 3%;
    color: #fff;
  }
}


@media screen and (max-width: 850px) {
  .FV h1 {
    padding-top: 80px;
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .FV .FV_text_catch {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 650px) {
  .FV .FV_text_inner .FV_text_inner_num div.wide {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .top_back .top_back_button img {
    width: 110px;
    transform: translateY(9px);
  }
}


/* FV スライドショー */

.FV_slider {
  display: flex;
  gap: 30px;
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: absolute;
  width: calc(100% - 18.807vw - 295.214px);
  right: 0;
}

@media screen and (min-width: 1720px) {
  .FV_slider {
    width: calc(100% - 618.7px);
  }
}

.FV_slider_track {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  height: 200%;
  animation: vertical-slide-down 40s linear infinite;
  will-change: transform;
}

.FV_slider_track:nth-child(2) {
  animation: vertical-slide-up 40s linear infinite;
}

.FV_slider_track img {
  display: block;
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 27px;
}

.FV_slider_track:nth-child(2) img {
  border-radius: 20px 0 0 20px;
}

@keyframes vertical-slide-down {
  0% {
    transform: translateY(calc(-50%));
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes vertical-slide-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50%));
  }
}


@media screen and (max-width: 1000px) {
  .FV_slider {
    flex-direction: column;
    width: 100%;
    height: 75vw;
    top: clamp(180px, calc(163px + 2.6667vw), 203px);
    gap: 15px;
  }

  .FV_slider_track {
    flex-direction: row;
    width: 200%;
    height: auto;
    min-height: 0;
    animation: horizontal-slide-right 40s linear infinite;
  }

  .FV_slider_track:nth-child(2) {
    animation: horizontal-slide-left 40s linear infinite;
  }

  .FV_slider_track img {
    width: 50%;
    height: 100%;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .FV_slider_track img {
    border-radius: 10px;
  }

  /* PC用の角丸指定をリセット */
  .FV_slider_track:nth-child(2) img {
    border-radius: 10px;
  }

  /* 1段目：左から右へ流す */
  @keyframes horizontal-slide-right {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0);
    }
  }

  /* 2段目：右から左へ流す */
  @keyframes horizontal-slide-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

@media screen and (max-width: 850px) {
  .FV_slider {
    top: clamp(150px, calc(133px + 2.6667vw), 173px);
  }
}


.FV_cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  width: 200px;
  aspect-ratio: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: clamp(20px, calc(10px + 1vw), 22px);
  line-height: 1.2;
  font-weight: 400;
  filter: drop-shadow(0px 0px 5px #00000060);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.FV_cta:hover {
  transform: translateY(-25px);
}

.FV_cta:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/cta_bg.svg)no-repeat center / cover;
  top: 0;
  left: 0;
  z-index: -1;
  animation: rotate 50s infinite;
}

.FV_cta img {
  width: 45px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1000px) {
  .FV_cta {
    bottom: auto;
    top: -55px;
    width: 120px;
    left: 70%;
    right: auto;
    font-size: 13px;
  }

  .FV_cta img {
    width: 30px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 650px) {
  .FV_cta {
    width: 100px;
    font-size: 11px;
  }

  .FV_cta img {
    width: 23px;
  }
}


/* 理念と背景 */

.phirosophy_sect .subHead {
  margin-bottom: 30px;
}

.phirosophy_sect .subHead span {
  background: var(--color-main);
  border-radius: 5px;
  padding: 0 10px;
  margin: 0 3px;
  display: inline-block;
  color: #fff;
}

.phirosophy_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.phirosophy_wrap .phirosophy_item {
  background: var(--color-bg);
  padding: 30px;
  border-radius: 20px;
  width: calc(100% / 3 - 20px);
}

.phirosophy_wrap .phirosophy_item h4 {
  color: var(--color-main);
  margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
  .phirosophy_wrap .phirosophy_item {
    width: calc(50% - 15px);
    text-align: center;
  }
}

@media screen and (max-width: 650px) {
  .phirosophy_wrap .phirosophy_item {
    width: 100%;
    text-align: center;
  }
}

/* ちばぎんの教育スタンス */

.stance_sect .stance_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 48px;
}

.stance_sect .stance_wrap img {
  width: 300px;
  max-width: 80%;
}

.stance_sect .stance_wrap .stance_txt {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stance_sect .stance_wrap .stance_txt p:first-child {
  font-size: 18px;
  color: #fff;
  background: var(--color-main);
  padding: 5px 15px 5px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
  line-height: 1;
}

.stance_sect .stance_wrap .stance_txt h3 {
  color: var(--color-main);
  font-weight: 500;
  margin-bottom: 10px;
}


/* なぜ千葉銀行が */

.purpose_sect .headLine {
  word-break: auto-phrase;
  padding: 0 20px;
}

.purpose_sect .purpose_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  padding-bottom: 60px;
}

.purpose_sect .purpose_img {
  width: calc(95% - clamp(264px, calc(132px + 14.6663vw), 385px));
  max-width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.purpose_sect .purpose_img img {
  width: calc(50% - 10px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 20px;
}

.purpose_sect .purpose_img img:nth-child(odd) {
  border-radius: 0 20px 20px 0;
}

.purpose_sect .purpose_img img:nth-child(2n) {
  position: relative;
  bottom: -60px;
}

.purpose_sect .purpose_img .subHead {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20px, calc(12px + 1.3333vw), 35px);
  white-space: nowrap;
}

.purpose_sect .purpose_img .subHead span {
  position: absolute;
  top: -4px;
  left: -4px;
  font-family: "soratohikouki";
  color: var(--color-main);
  transform: rotate(-10deg) translate(-40%, -70%);
  letter-spacing: -2px;
}

.purpose_sect .purpose_img .subHead:before {
  position: absolute;
  content: "";
  width: 78%;
  height: calc(50% + 15px);
  top: -13px;
  left: -45px;
  background: #fff;
  z-index: -1;
  box-shadow: 5px 5px 5px #00000016;
}

.purpose_sect .purpose_img .subHead:after {
  position: absolute;
  content: "";
  width: calc(100% + 30px);
  height: calc(50% + 15px);
  bottom: -5px;
  right: -30px;
  background: #fff;
  z-index: -1;
  box-shadow: 5px 5px 5px #00000016;
}

.purpose_sect .purpose_txt {
  line-height: 2.2;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
}

.purpose_sect .purpose_txt h3 {
  margin-bottom: 40px;
}

@media screen and (max-width: 850px) {
  .purpose_sect .purpose_wrap {
    padding-bottom: 30px;
  }

  .purpose_sect .purpose_txt {
    order: -1;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 40px;
    box-sizing: border-box;
  }

  .purpose_sect .purpose_txt h3 {
    margin-bottom: 10px;
    word-break: auto-phrase;
  }

  .purpose_sect .purpose_img {
    width: 100%;
    max-width: initial;
    gap: 8px;
  }

  .purpose_sect .purpose_img img {
    width: calc(50% - 4px);
    border-radius: 0 10px 10px 0;
  }

  .purpose_sect .purpose_img img:nth-child(2n) {
    border-radius: 10px 0 0 10px;
    bottom: -30px;
  }

  .purpose_sect .purpose_img .subHead {
    top: calc(50% + 15px);
  }

  .purpose_sect .purpose_img .subHead:before {
    left: -20px;
  }

  .purpose_sect .purpose_img .subHead:after {
    width: calc(100% + 20px);
    right: -10px;
  }

  .purpose_sect .purpose_img .subHead span {
    top: -3px;
    left: 6px;
  }
}


/* ちばぎんが考えるキャリア教育 */

.howTo_sect {
  width: calc(100% - 60px);
  margin-right: 60px;
  margin-bottom: 50px;
}

.howTo_sect .howTo_bg {
  background: var(--color-main);
  padding: 60px 0 100px;
  border-radius: 0 40px 40px 0;
}

.howTo_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 27px;
}

.howTo_box {
  width: 380px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.howTo_head {
  display: flex;
  width: 100%;
}

.howTo_box .howTo_head>span {
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.howTo_box h3 {
  background: #fff;
  padding: 20px 15px;
  border-radius: 20px 20px 0 0;
  flex: 1;
  position: relative;
  line-height: 1;
  text-align: center;
}

.howTo_box h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  --curve-radius: 20px;
  width: var(--curve-radius);
  height: var(--curve-radius);
  background-color: #ffffff;
  -webkit-mask-image: radial-gradient(circle at left top, transparent calc(var(--curve-radius) - 0.5px), #000 var(--curve-radius));
  mask-image: radial-gradient(circle at left top, transparent calc(var(--curve-radius) - 0.5px), #000 var(--curve-radius));
  transform: translateX(-100%);
}

.howTo_box h3 span {
  color: var(--color-sub);
  font-weight: 600;
}

.howTo_box p {
  background: #fff;
  border-radius: 20px 0 20px 20px;
  width: 100%;
  padding: 30px 24px;
  font-feature-settings: "halt";
  flex: 1;
  margin-top: -1px;
}

@media screen and (max-width: 850px) {
  .howTo_sect {
    width: calc(100% - 20px);
    margin-right: 20px;
  }

  .howTo_sect .howTo_bg {
    padding: 60px 0;
  }

  .howTo_sect .headLine {
    white-space: nowrap;
    transform: scale(0.95);
  }

  .howTo_box {
    width: 320px;
  }

  .howTo_box h3 {
    padding: 15px 10px;
  }

  .howTo_box p {
    padding: 20px 24px;
  }
}


/* ちばぎんが考える金融教育 */

.education_sect {
  width: calc(100% - 60px);
  margin-left: 60px;
  margin-top: 50px;
}

.education_sect .education_bg {
  background: var(--color-sub);
  padding: 60px 0 0;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}

.education_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.education_wrap .education_ttl {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-top: auto;
}

.education_wrap .education_ttl h3 {
  background: #fff;
  padding: 20px 60px;
  position: relative;
  border-radius: 100px;
  margin-right: 20px;
  line-height: 1.8;
  font-size: clamp(22px, calc(9px + 1vw), 24px);
}

.education_wrap .education_ttl h3 span {
  padding-top: .3em;
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  background-image: -webkit-radial-gradient(.15em .15em at center center, var(--color-sub), var(--color-sub) 100%, transparent);
  background-image: radial-gradient(.1em .1em at center center, var(--color-sub), var(--color-sub) 100%, transparent);
}

.education_wrap .education_ttl :before {
  position: absolute;
  content: "";
  width: 25px;
  height: 15px;
  background: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
}

.education_txt {
  width: 55%;
  margin-bottom: 80px;
}

.education_txt .education_txt_box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 35px;
  border: 2px solid #fff;
  border-radius: 100px;
  background: #ffffff50;
}

.education_txt .education_txt_box+.education_txt_box {
  margin-top: 30px;
}

.education_txt .education_txt_box img {
  width: 70px;
  aspect-ratio: 1;
}

.education_txt .education_txt_box h3 {
  margin-bottom: 13px;
  font-weight: 400;
}

@media screen and (max-width: 1000px) {
  .education_txt {
    order: -1;
    width: 100%;
    margin: 0;
  }

  .education_wrap .education_ttl {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 850px) {
  .education_sect {
    width: calc(100% - 20px);
    margin-left: 20px;
  }

  .education_sect .headLine {
    word-break: auto-phrase;
  }

  .education_txt .education_txt_box {
    padding: 20px;
    border-radius: 20px;
    position: relative;
  }

  .education_txt .education_txt_box img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
  }

  .education_txt .education_txt_box h3 {
    padding-left: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    word-break: auto-phrase;
  }

  .education_wrap .education_ttl h3 {
    padding: 20px 34px;
    width: 100%;
    margin: 0 auto;
    width: 400px;
  }
}

@media screen and (max-width: 550px) {
  .education_wrap .education_ttl h3 {
    padding: 20px 35px;
    font-size: 18px;
    width: 320px;
  }
}

/* キャリアと金融 */
.career_sect .headLine+p {
  margin-bottom: 50px;
}

.career_sect .headLine {
  word-break: auto-phrase;
}

.career_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.career_wrap .career_box {
  width: calc(100% / 3 - 40px / 3);
  padding: 30px 18px;
  border-radius: 10px;
  background: var(--color-bg);
}

.career_wrap .career_box h3 {
  color: var(--color-main);
  margin-bottom: 10px;
}

.career_wrap .career_box p {
  line-height: 1.8;
  word-break: auto-phrase;
}

.career_step {
  display: flex;
  align-items: center;
  margin-top: 65px;
  padding-right: 40px;
}

.career_step .process {
  width: 28%;
  background: var(--color-main);
  text-align: center;
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  color: #fff;
  position: relative;
  padding: 10px 0;
  padding-left: 50px;
}

.career_step .process:before {
  position: absolute;
  content: "";
  background-color: var(--color-main);
  clip-path: polygon(0 0, 34% 0, 64.8% 50%, 34% 100%, 0 100%);
  width: 30%;
  height: 100%;
  right: 1px;
  z-index: 2;
  top: 0;
  transform: translateX(100%);
}

.career_step .process:after {
  position: absolute;
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 34% 0, 64.8% 50%, 34% 100%, 0 100%);
  width: 30%;
  height: 100%;
  right: -3px;
  top: 0px;
  z-index: 1;
  transform: translateX(100%);
}

.career_step .process:first-child {
  background: #F38088;
  border-radius: 5px 0 0 5px;
  padding-left: 0;
}

.career_step .process:first-child:before {
  background: #F38088;
}

.career_step .process:nth-child(2) {
  background: #EC404D;
}

.career_step .process:nth-child(2):before {
  background: #EC404D;
}

.career_step .goal {
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  text-align: center;
  margin-left: auto;
  position: relative;
  line-height: 1.2;
}

.career_step .goal:before {
  position: absolute;
  content: "";
  width: calc(100% + 50px);
  aspect-ratio: 142 / 151;
  background: url(../images/rotate.png)no-repeat center / contain;
  top: 40%;
  left: 48%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1000px) {
  .career_wrap .career_box {
    width: calc(50% - 10px);
  }

  .career_step .process {
    width: 27%;
  }
}

@media screen and (max-width: 750px) {
  .career_step {
    flex-wrap: wrap;
    gap: 45px 0;
    margin: 60px -20px 20px;
    padding: 0;
    overflow: hidden;
    padding-bottom: 40px;
  }

  .career_step .process {
    width: 50%;
  }

  .career_step .goal:before {
    width: calc(100% + 30px);
  }

  .career_step .process:first-child {
    margin-left: 40px;
    width: calc(50% - 40px);
    border-radius: 3px 0 0 3px;
    z-index: 1;
  }

  .career_step .process:nth-child(2):before,
  .career_step .process:nth-child(2):after {
    top: 101px;
    right: auto;
    left: -115%;
  }

  .career_step .process:nth-child(2):after {
    left: calc(-115% + 5px);
  }

  .career_step .process:nth-child(2) {
    width: 60%;
    margin-right: -10%;
    text-align: left;
    padding-left: 20%;
  }

  .career_step .goal {
    margin-left: 10%;
  }
}

@media screen and (max-width: 600px) {
  .career_wrap .career_box {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {
  .career_sect .headLine+p {
    font-size: 13px;
  }
}

/* なぜ一緒に学ぶのか */

.why_wrap {
  margin: 30px auto 0;
  width: fit-content;
}

.why_wrap .why_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 7px;
}

.why_wrap .why_box h3 {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--color-main);
}

.why_wrap .why_box h3 span {
  background: var(--color-main);
  color: #fff;
  width: 80px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why_wrap .why_box:nth-child(2) {
  margin-top: 46px;
}

.why_wrap .why_box:nth-child(2) span {
  border-radius: 50%;
}

@media screen and (max-width: 650px) {
  .why_wrap .why_box h3 span {
    width: 60px;
  }

  .why_wrap .why_box {
    flex-direction: column;
  }

  .why_wrap .why_box h3 {
    flex-direction: column;
  }

  .why_wrap .why_box:nth-child(2) {
    margin-top: 20px;
  }
}


/* コンセプト */

.concept_sect {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.concept_sect img {
  width: calc(100% - 408px);
  border-radius: 0 20px 20px 0;
  max-width: 60vw;
  object-fit: cover;
  object-position: 80%;
}

.concept_sect .concept_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: flex-start;
}

.concept_sect .concept_txt h3 {
  padding-left: 10px;
  border-left: 2px solid var(--color-main);
  position: relative;
  margin-bottom: 30px;
}

.concept_sect .concept_txt h3:before {
  position: absolute;
  content: "";
  width: 40%;
  aspect-ratio: 142 / 151;
  background: url(../images/rotate.png)no-repeat center / contain;
  top: -40%;
  right: -30px;
  z-index: -1;
  filter: hue-rotate(140deg) brightness(0.95);
  opacity: 0.5;
}

@media screen and (max-width: 850px) {
  .concept_sect img {
    width: 95%;
    max-width: initial;
  }

  .concept_sect .concept_txt {
    width: 100%;
    padding: 0 20px;
  }

  .concept_sect .concept_txt h3:before {
    width: 100px;
    right: -10px;
    top: -120%;
    z-index: 1;
  }
}


/* 発達段階に応じたアプローチ */

.approach_sect {
  background: var(--color-bg);
  padding: 120px 0;
}

.approach_sect .approach_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 25px;
}

@media screen and (max-width: 1200px) {
  .approach_sect .approach_wrap {
    max-width: 900px;
  }
}

.approach_sect .approach_wrap .approach_box {
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  padding: 40px 0;
}

.approach_sect .approach_wrap .approach_box span {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  color: var(--color-sub);
  font-weight: 300;
  font-size: clamp(16px, calc(10px + 0.6667vw), 20px);
}

.approach_sect .approach_wrap .approach_box h3 {
  font-size: clamp(22px, calc(13px + 1vw), 28px);
  color: var(--color-main);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  width: 100%;
  line-height: 1;
}

.approach_sect .approach_wrap .approach_box h3:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: #D9D9D9;
  bottom: 0;
  left: 10%;
}

.approach_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
  gap: 30px;
}

.approach_list h3 {
  background: var(--color-main);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 5px;
  font-weight: 400;
}

.approach_list ul {
  max-width: calc(100% - 170px);
}

.approach_list ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.approach_list ul li:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 14px;
  background: url(../images/check.png)no-repeat center / cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
  .approach_list {
    gap: 20px;
  }

  .approach_list ul {
    max-width: calc(100% - 160px);
  }
}

@media screen and (max-width: 650px) {
  .approach_list {
    justify-content: flex-start;
  }

  .approach_list h3 {
    width: 100%;
    padding: 10px 20px;
    margin-left: -40px;
    border-radius: 0 5px 5px 0;
    justify-content: flex-start;
    padding-left: 60px;
  }

  .approach_list ul {
    max-width: initial;
  }

  .approach_list h3 br {
    display: none;
  }
}


/* プログラムから得られる学び */

.program_sect {
  padding: 240px 0;
  margin: -120px 0;
  overflow: hidden;
}

.program_sect .program_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px 90px;
}

.program_sect .program_curcle {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}

.program_sect .program_curcle:before {
  position: absolute;
  content: "";
  width: 450px;
  height: 620px;
  left: -450px;
  top: -20%;
  background: linear-gradient(to right, #fff, transparent);
}

.program_sect .program_curcle div {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: clamp(24px, calc(12px + 1.3333vw), 35px);
}

.program_sect .program_curcle div:nth-child(3) {
  color: var(--color-sub);
}

.program_sect .program_curcle div:before {
  position: absolute;
  content: "";
  width: 300px;
  height: 200px;
  border-radius: 50%;
  background: #038FD5aa;
  top: 50%;
  right: -80px;
  transform: rotate(-10deg) translateY(-50%);
  z-index: -1;
}

.program_sect .program_curcle div:nth-child(2):before {
  width: 600px;
  height: 400px;
  background: #038FD570;
}

.program_sect .program_curcle div:nth-child(3):before {
  width: 900px;
  height: 600px;
  background: #038FD535;
}

.program_sect .program_txt h2 {
  margin-bottom: 10px;
}

.program_sect .program_txt .program_subTtl {
  font-size: clamp(14px, calc(8px + 0.6667vw), 18px);
  margin-bottom: 24px;
}

.program_sect .program_txt ul li+li {
  margin-top: 30px;
}

.program_sect .program_txt ul h3 {
  font-size: clamp(20px, calc(10px + 1vw), 24px);
  color: var(--color-main);
  margin-bottom: 8px;
  line-height: 1;
}

.program_sect .program_txt ul h3 span {
  font-size: clamp(24px, calc(12px + 1.3333vw), 35px);
  font-weight: 600;
  margin-right: 24px;
}

@media screen and (max-width: 1000px) {
  .program_sect .program_wrap {
    gap: 100px 10px;
    justify-content: space-around;
  }

  .program_sect .program_curcle:before {
    display: none;
  }

  .program_sect {
    padding-top: 100px;
  }

  .program_sect .program_curcle {
    gap: 40px;
    margin-left: -30px;
  }

  .program_sect .program_curcle div:before {
    right: -49px;
  }

  .program_sect .program_curcle div:nth-child(3):before {
    right: -80px;
  }

  .program_sect .program_curcle div:nth-child(2):before {
    right: -60px;
  }
}

@media screen and (max-width: 850px) {
  .program_sect {
    padding: 80px 0 120px;
  }

  .program_sect .program_wrap {
    flex-direction: column;
  }

  .program_sect .program_curcle {
    margin-left: 0px;
  }

  .program_sect .program_wrap .program_txt {
    margin-left: auto;
    position: relative;
    z-index: 1;
  }

  .program_sect .program_wrap .program_txt:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    filter: blur(60px);
    z-index: -1;
  }
}

@media screen and (max-width: 550px) {
  .program_sect .program_txt ul h3 span {
    display: block;
    line-height: 1.8;
  }

  .program_sect .program_txt ul h3 {
    line-height: 1.4;
  }

  .program_sect .program_txt .program_subTtl br {
    display: none;
  }
}


/* 今日の教室から広がる未来の選択肢 */

.catch_sect {
  background: linear-gradient(to right, #A6D1F0 80%, #A6D1F020 100%);
  position: relative;
  z-index: 1;
  padding: 60px 0 120px;
  margin-bottom: -60px;
}

.catch_sect:before {
  position: absolute;
  content: "";
  background: url(../images/catch_bg.jpg)no-repeat right / auto 100%;
  width: 43%;
  height: 100%;
  top: 0;
  right: 57%;
  z-index: -2;
}

.catch_sect::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, #fff, transparent);
  z-index: -1;
}

.catch_sect .catch_txt {
  width: fit-content;
  margin-left: auto;
}

.catch_sect .catch_txt h2 {
  font-size: clamp(22px, calc(-6px + 5.6vw), 55px);
  font-family: YakuHanJP, "GenWanMinJP", serif;
  line-height: 1.2;
  text-align: right;
}

.catch_sect .catch_txt h2 span {
  font-size: clamp(24px, calc(-7px + 6.2vw), 60px);

}

.catch_sect .catch_txt h2 strong {
  font-size: clamp(27px, calc(-16px + 8.6vw), 75px);
  font-weight: 500;
  position: relative;
}

.catch_sect .catch_txt h2 strong:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background: url(../images/line.svg)no-repeat center / contain;
  bottom: -10px;
  left: 0;
}

.catch_sect .catch_txt ul {
  padding: 32px 20px;
  background: #ffffff88;
  border-radius: 20px;
  margin-top: 36px;
}

.catch_sect .catch_txt ul li+li {
  margin-top: 32px;
}

.catch_sect .catch_txt ul li h3 {
  color: var(--color-main);
  margin-bottom: 4px;
  font-weight: 400;
  position: relative;
  padding-left: 16px;
}

.catch_sect .catch_txt ul li h3:before {
  position: absolute;
  content: "・";
  left: 0px;
  top: 0;
}

.catch_sect .catch_txt ul li p {
  padding-left: 16px;
}

@media screen and (max-width: 1000px) {
  .catch_sect {
    padding-bottom: 60px;
  }

  .catch_sect:before {
    background-size: 300px;
    background-position: top right;
  }

  .catch_sect .catch_txt {
    width: 100%;
  }

  .catch_sect .catch_txt ul {
    position: relative;
  }

  .catch_sect .catch_txt ul:before {
    position: absolute;
    content: "";
    width: 70%;
    height: 110%;
    left: -100px;
    bottom: 10%;
    background: linear-gradient(to top, #A6D1F0 80%, transparent);
    z-index: -1;
  }
}

@media screen and (max-width: 600px) {
  .catch_sect:before {
    background-size: 200px;
    right: 60%;
  }
}