@charset "utf-8";

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/*============
loading
=============*/
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #fff;
  text-align: center;
}

#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading_logo img {
  width: 200px;
  opacity: 1;
  animation: fadeUpAnime 0.8s ease forwards;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/*============
body
=============*/
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #0d3258;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.fnt-en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.fntN {
  font-weight: 500;
}

.fntB {
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block;
  border: none;
}

ul,
ol {
  padding: 0;
}

ul li,
ol li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

.line-yellow {
  position: relative;
}

.line-yellow::after {
  content: "";
  width: 40%;
  position: absolute;
  height: 2px;
  bottom: -30px;
  left: 0;
  background: linear-gradient(to right, #fcc700, rgba(255, 255, 255, 0));
}

.line-yellow-before {
  position: relative;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h2.line-yellow::after {
  content: "";
  width: 80%;
  position: absolute;
  height: 2px;
  bottom: -15px;
  left: 0;
  background: linear-gradient(to right, #fcc700, rgba(255, 255, 255, 0));
}

h3 {
  font-size: 1.8rem;
}

h3.line-yellow-before::before {
  content: "";
  width: 30px;
  position: absolute;
  height: 2px;
  bottom: 0;
  left: -40px;
  top: 45%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #fcc700, rgba(255, 255, 255, 0));
}

ul.list-circle li {
  list-style: inside disc;
  margin-left: 0.5rem;
  padding-left: 2.3rem;
  text-indent: -2.3rem;
}

ol.list-number li {
  list-style: outside decimal;
  margin-left: 2rem;
  padding-left: 0.7rem;
}

ol.note li {
  padding-left: 2.2rem;
  text-indent: -2.2rem;
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
}

ol.note li i,
ol.note-num li i {
  font-style: normal;
  margin-right: 0.8rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  position: relative;
}

.sec {
  padding: 70px 60px;
}

.d-block {
  display: block;
}

.underline {
  text-decoration: underline;
}

.PDF-icon {
  padding: 2px 7px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 2;
  vertical-align: text-top;
  margin: 0 5px 0px 2px;
  background-color: #e1241b;
  border-radius: 2px;
}

.small {
  font-size: 1.4rem !important;
}

/* moreボタン */
.more {
  width: 125px;
  margin: 0 auto;
}

.more-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #0d3258;
  transition: 0.3s;
}

.more-txt {
  font-size: 1.4rem;
}

.arrow-extend {
  padding: 20px 20px 22px 30px;
  color: #0d3258;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.arrow-extend::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fcc700;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
  z-index: -1;
}

.arrow-extend::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* hoverはPCのみ */
@media (hover: hover) and (pointer: fine) {
  .arrow-extend:hover::before {
  width: 100%;
  }
}
/* IE11対応用 */
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .arrow-extend:hover::before {
  width: 100%;
  }
}

.sp-only {
  display: none;
}

@media screen and (max-width: 559px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*============
左側メニュー
=============*/
.page_left {
  width: calc((100vw - 560px) / 2);
  height: 100vh;
  position: fixed;
  background: #fff;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .08);
  z-index: 1;
  display: flex;
  justify-content: center;
}

.page_left_inner {
  width: 100%;
  max-height: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.header_pc {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.header_pc .accordion-menu {
  padding: 0;
}

.header_pc nav>ul>li {
  padding: 10px;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.header_pc li a {
  display: block;
  text-decoration: none;
}

.header_pc li a:hover {
  /* color: rgba(13, 50, 88, 0.5); */
  opacity: 0.6;
}

.header_pc li span.nav-txt-s {
  font-size: 1.2rem;
  margin-left: 1rem;
}

.accordion {
  display: block;
}

.accordion-header {
  cursor: pointer;
}

.accordion-arrow {
  position: relative;
  padding-right: 30px;
}

.accordion-arrow::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #fcc700;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.accordion-arrow::after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.4s;
  z-index: 1;
}

.accordion .accordion-header.open .accordion-arrow::after {
  transform: translateY(-50%) rotate(-135deg);
  top: 55%;
}

.accordion-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.accordion-header.open+.accordion-inner {
  max-height: 500px;
}

a.active {
  color: #fcc700;
}

.accordion-inner>ul {
  margin-top: 10px;
}

.accordion-inner>ul>li {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 8px;
}

@media screen and (max-width: 1280px) {
  .page_left {
    display: none;
  }
}

/*============
背景に流れる泡
=============*/
.bubble-layer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

/* オレンジ */
.bubble.orange {
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(252, 199, 0, 0.4));
}

/* 水色 */
.bubble.blue {
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.7));
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

/*============
浮かぶ泡
=============*/
.circle-blue-l {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.4));
  animation: fluffy 3s infinite;
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-blue-m {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.4));
  animation: fluffy 3s infinite;
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-blue-s {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.4));
  animation: fluffy 3s infinite;
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-blue-r {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.4));
  animation: fluffy 3s infinite;
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-orange-c {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(252, 199, 0, 0.4));
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-blue-c {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.4));
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-orange-l {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(252, 199, 0, 0.4));
  animation: fluffy 3s infinite;
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

.circle-orange-m {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(252, 199, 0, 0.4));
  animation: fluffy 3s infinite;
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
}

@keyframes fluffy {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}

/*============
ハンバーガーメニュー
=============*/
.page_sp nav.h-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -400px;
  bottom: 0;
  width: 350px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}

#navArea.open nav.h-nav {
  left: 0;
  opacity: 1;
}

.page_sp nav.h-nav .h-nav-inner {
  padding: 20px;
}

.page_sp nav.h-nav .h-nav-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page_sp nav.h-nav .h-nav-inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #0d3258;
}

.page_sp nav.h-nav .h-nav-inner ul li a {
  display: block;
  color: #0d3258;
  font-size: 1.8rem;
  padding: 0.5em;
  text-decoration: none;
  transition-duration: 0.2s;
}

.page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion {
  padding: 0.5em;
  font-size: 1.8rem;
}

.page_sp nav.h-nav .h-nav-inner ul li a span.nav-txt-s {
  font-size: 1.2rem;
}

.page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion span.nav-txt-s {
  font-size: 1.2rem;
}

.page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion .accordion-inner ul li {
  padding-bottom: 0;
}

.page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion .accordion-inner ul li:last-child {
  border: none;
}

.page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion .accordion-inner ul li a {
  font-size: 1.4rem;
}

.page_sp nav.h-nav .h-nav-inner ul li a:hover {
  background: rgba(13, 50, 88, 0.1);
}

@media screen and (max-width: 767px) {
  .page_sp nav.h-nav {
    left: -284px;
    width: 284px;
  }

  .page_sp nav.h-nav .h-nav-inner ul li a {
    font-size: 1.6rem;
  }

  .page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion {
    padding: 0.5em;
    font-size: 1.6rem;
  }

  .page_sp nav.h-nav .h-nav-inner ul li a span.nav-txt-s {
    font-size: 1.1rem;
  }

  .page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion span.nav-txt-s {
    font-size: 1.1rem;
  }

  .page_sp nav.h-nav .h-nav-inner .accordion-menu .accordion .accordion-inner ul li a {
    font-size: 1.3rem;
  }
}

/* toggle_btn */
.sp_nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.toggle_btn {
  display: block;
  position: absolute;
  right: 0;
  width: 34px;
  height: 34px;
  transition: all 0.6s;
  cursor: pointer;
  z-index: 3;
  margin-top: 14px;
}

.toggle_btn span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 34px;
  height: 2px;
  background-color: #0d3258;
  border-radius: 2px;
  transition: all 0.6s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

#navArea.open .toggle_btn span {
  background-color: #fff;
}

#navArea.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
}

#navArea.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
}

/* mask */
#mask {
  display: none;
  transition: all 0.5s;
}

#navArea.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 2;
  cursor: pointer;
}

/*============
中央SPコンテンツ
=============*/
.page_sp {
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  width: 560px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

/* Chrome, Safari 対応 */
.page_sp::-webkit-scrollbar {
  display: none;
}

.page_sp .header_sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  margin: 0px 60px;
}

.header_sp .logo {
  width: 135px;
}

@media screen and (max-width: 559px) {
  .page_sp {
    width: 100%;
  }

  .page_sp .header_sp {
    margin: 0px 30px;
  }
}

/*============
パンクズリスト
=============*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0px 60px 30px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 1;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0.6em;
  color: #0d3258;
}

.breadcrumb li a {
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: rgba(13, 50, 88, 0.5);
}

@media screen and (max-width: 559px) {
  .breadcrumb {
    margin: 0px 30px 30px;
  }
}

/*============
メインビジュアル
=============*/
.page_sp .mv {
  display: grid;
  justify-items: flex-start;
  align-content: center;
  height: 100%;
  margin: 0 60px 100px;
}

.page_sp .mv>h1 {
  font-size: 3.4rem;
  line-height: 1.3;
}

.page_sp .mv>h1.line-yellow::after {
  width: 80%;
  bottom: 5px;
}

.page_sp .mv.sub-page>h1 {
  font-size: 2.8rem;
}

.page_sp .mv.sub-page>h1.line-yellow::after {
  width: 80%;
  bottom: -3px;
}

.page_sp .mv>p:not(:nth-child(n + 3)) {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  position: relative;
}

.page_sp .mv .mv-txt {
  text-align: center;
  margin: 100px auto;
  position: relative;
  width: 100%;
}

.page_sp .mv .mv-txt p:first-of-type {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.page_sp .mv .mv-txt p:last-of-type {
  position: relative;
  z-index: 1;
}

.page_sp .mv .mv-txt .circle-orange-c {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}

.page_sp .mv .mv-txt .circle-blue-r {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 0;
}

.page_sp .mv .mv-txt .circle-blue-l {
  position: absolute;
  bottom: -80px;
  left: 0;
  z-index: 0;
}

.page_sp .mv.sub-page {
  position: relative;
}

.page_sp .mv.sub-page .circle-orange-l {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 0;
}

.page_sp .mv.sub-page .circle-orange-m {
  position: absolute;
  bottom: 80px;
  right: 110px;
  z-index: 0;
}

@media screen and (max-width: 559px) {
  .page_sp .mv {
    margin: 0px 30px 100px;
  }

  .circle-orange-c {
    width: 240px;
    height: 240px;
  }

  .page_sp .mv .mv-txt .circle-blue-r {
    top: -90px;
  }

  .page_sp .mv .mv-txt .circle-blue-l {
    bottom: -90px;
  }
}

/*============
カード型セクション
=============*/
.sec-card {
  background: linear-gradient(to bottom, #fcc700 30%, rgba(255, 255, 255, 0));
  padding: 100px 40px 150px;
  position: relative;
  /* 波の基準 */
  overflow: visible;
}

/* カード型セクションの波 */
.sec-card canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-90%);
  /* ← 上にはみ出させる量 */
  pointer-events: none;
}

.sec-card ul {
  margin: 0;
}

.sec-card ul li {
  padding: 60px 30px 25px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
}

.sec-card ul li .card-ttl {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}

.sec-card ul li .card-ttl h2 {
  font-size: 2.2rem;
  margin: 3px 0 0;
}

.sec-card ul li .card-ttl h2.line-yellow::after {
  width: 70%;
  bottom: 5px;
  left: 0;
}

.sec-card ul li .card-ttl .card-icon {
  width: 50px;
  height: 50px;
}

.sec-card ul li h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sec-card ul li>p {
  margin-bottom: 20px;
}

.sec-card ul li .more {
  margin-right: 0;
}

.sec-card ul li.card-container {
  display: flex;
  align-items: center;
  padding: 20px 30px 20px;
}

@media screen and (max-width: 559px) {
  .sec-card {
    padding: 100px 20px 130px;
  }
  .sec-card ul li.card-container {
    flex-direction: column;
    padding: 20px 30px 10px;
  }
  .sec-card ul li.card-container .card-ttl {
    margin-right: auto;
  }
}

/*============
通常セクション
=============*/
.sec-sub {
  background: linear-gradient(to bottom,
      #fcc700 10px,
      rgba(255, 255, 255, 0) 50px,
      rgba(255, 255, 255, 0));
  padding: 0;
  position: relative;
  /* 波の基準 */
  overflow: visible;
}

/* 通常セクションの波 */
.sec-sub canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-90%);
  /* ← 上にはみ出させる量 */
  pointer-events: none;
}

.sec-sub-cont {
  padding: 100px 40px;
}

.sub-cont-ttl {
  text-align: center;
  margin-bottom: 30px;
}

.sub-cont-ttl>h2 {
  font-size: 2.6rem;
}

.sub-cont-ttl>p.fnt-en {
  font-size: 1.4rem;
  color: #fcc700;
}

.sub-cont-txt {
  text-align: center;
}

@media screen and (max-width: 559px) {
  .sec-sub-cont {
    padding: 100px 30px;
  }
}

/*============
囲みの枠
=============*/
/* 薄いオレンジ */
.frame-orange {
  padding: 40px 20px;
  background: rgba(252, 199, 0, 0.1);
  border-radius: 10px;
}

/* 薄い水色 */
.frame-blue {
  padding: 40px 20px;
  background: rgba(175, 221, 242, 0.2);
  border-radius: 10px;
}

/* 丸 */
.circle-box {
  position: absolute;
  top: -15px;
  left: -70px;
}

.circle-box-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(175, 221, 242, 0.4));
  box-shadow:
    inset -5px 5px 20px rgba(255, 255, 255, 0.1),
    inset 5px -10px 20px rgba(137, 203, 229, 0.1);
  position: relative;
}

.circle-box-item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.5;
}

/*============
背景に大きめの円を置く
=============*/
.circle-c-list {
  display: flex;
  flex-wrap: wrap;
}

.circle-c-item {
  position: relative;
  text-align: center;
  padding: 16px 40px;
}

.circle-c-item .circle-c-txt {
  position: relative;
  z-index: 1;
}

.circle-c-item .circle-c-txt .circle-c-num {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  margin: 1rem 0;
}

.circle-c-item .circle-c-txt .circle-c-num::after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #0d3258;
}

.circle-c-item .circle-blue-c {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
}

.circle-c-item .circle-c-icon {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 559px) {
  .circle-c-list {
    flex-direction: column;
  }
}

/*============
取引実績一覧
=============*/
.client-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 30px;
  font-size: 1.4rem;
  padding-left: 20px;
}

.client-list li {
  list-style-type: disc;
}

.client-list li::marker {
  color: #fcc700;
}

/*============
Webサイト制作 4つのポイント
=============*/
.point-list {
  padding: 30px;
  margin: 60px;
  background: #fff;
  border-radius: 10px;
}

.point-icon {
  display: flex;
  justify-content: center;
}

.point-list-num {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  margin: 1rem 0;
  color: #fcc700;
}

.point-list-num::after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #fcc700;
}

@media screen and (max-width: 559px) {
  .point-list {
    padding: 20px;
    margin: 30px 10px;
  }
}

/*============
Webサイト制作 制作の流れ
=============*/
.step-num {
  font-size: 20px;
  line-height: 0;
  margin-left: -2px;
}

.flow-item {
  position: relative;
  padding: 40px 80px 20px;
  background: rgba(175, 221, 242, 0.2);
  border-radius: 10px;
  margin-bottom: 60px;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
}

.flow-item::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(175, 221, 242, 0.2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.flow-item:first-of-type::before {
  display: none;
}

.flow-item:last-of-type:after {
  display: none;
}

.flow-item>div:first-of-type {
  text-align: center;
}

.flow-item>div h3 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.flow-item h3>span {
  font-size: 1.8rem;
}

@media screen and (max-width: 559px) {
  .flow-item {
    padding: 40px 30px 20px;
    margin-bottom: 40px;
  }
}

/*============
WebPDF制作　ご注文の流れ
=============*/
.wemoria {
  display: block;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
}

/*============
グラフィックデザイン 
=============*/
.graphic-design-list h3 {
  display: inline-block;
}

.graphic-design-list h3.line-yellow::after {
  width: 70%;
  bottom: 0;
}

.request-list {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

/*============
表組（line型）
=============*/
.table-cont dl.tableline {
  display: flex;
  margin: 0 0 16px;
  padding-bottom: 16px;
  position: relative;
}

.table-cont dl.tableline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, #fcc700, rgba(255, 255, 255, 0));
  width: 100%;
}

.table-cont dl.tableline dt {
  width: 30%;
  font-weight: 700;
}

.table-cont dl.tableline dd {
  width: 70%;
  margin-left: 10px;
}

/*============
表組（box型）
=============*/

.tablebox {
  width: 100%;
  line-height: 1.5;
  border-spacing: 0px 5px;
}

.tablebox th {
  background: #fcc700;
  font-weight: 700;
  text-align: left;
  padding: 15px 20px;
}

.tablebox td {
  background: rgba(252, 199, 0, 0.1);
  font-weight: 500;
  padding: 15px 20px;
}

.tablebox thead th {
  border-radius: 10px;
  font-weight: 700;
}

.tablebox tbody td {
  border-radius: 10px;
}

/*============
Q & A 開閉式
=============*/
.accordion.QA {
  margin-bottom: 20px;
}

.accordion.QA .accordion-header {
  background: #fcc700;
  font-weight: 700;
  text-align: left;
  padding: 15px 20px;
  border-radius: 10px;
}

.accordion.QA .accordion-header.open {
  border-radius: 10px 10px 0 0;
}

.accordion.QA .accordion-inner>div {
  background: rgba(252, 199, 0, 0.1);
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
}

/*============
フッター
=============*/
.footer {
  background: linear-gradient(to bottom, #fcc700 10%, rgba(255, 255, 255, 0));
  padding: 10px 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* 波の基準 */
  overflow: visible;
}

/* フッターの波 */
.footer canvas {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-90%);
  /* ← 上にはみ出させる量 */
  pointer-events: none;
}

.footer_logo {
  width: 120px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 70px;
}

.footer_logo a img {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.5));
}

.footer .copy {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 20px;
}

/*============
右側背景
=============*/
.scroll-section {
  position: relative;
}

.scroll-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  z-index: -1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.scroll-section.show .scroll-bg {
  opacity: 1;
}

.scroll-bg.bg_creative {
  background-image: url(../creative/images/img_creative.jpg);
  background-position: 40% center;
}

.scroll-bg.bg_company {
  background-image: url(../company/images/img_company.jpg);
}

.scroll-bg.bg_outline {
  background-image: url(../company/outline/images/img_outline.jpg);
}

.scroll-bg.bg_vision {
  background-image: url(../company/vision/images/img_vision.jpg);
}

.scroll-bg.bg_business-record {
  background-image: url(../company/business-record/images/img_business-record.jpg);
  background-position: 0 bottom;
}

.scroll-bg.bg_web-site {
  background-image: url(../creative/web-site/images/img_web-site.jpg);
  background-position: 30% center;
}

.scroll-bg.bg_graphic-design {
  background-image: url(../creative/graphic-design/images/img_graphic-design.jpg);
  background-position: -30px bottom;
}

.scroll-bg.bg_report-production {
  background-image: url(../creative/report-production/images/img_report-production.jpg);
  background-position: 0 center;
}

.scroll-bg.bg_web-PDF {
  background-image: url(../creative/web-PDF/images/img_web-PDF.jpg);
  background-position: -30% center;
}

.scroll-bg.bg_digital-book {
  background-image: url(../creative/digital-book/images/img_digital-book.jpg);
  background-position: 30% center;
}

.scroll-bg.bg_sustainability-career {
  background-image: url(../sustainability-career/images/img_sustainability-career.jpg);
}

.scroll-bg.bg_sustainability-publicity {
  background-image: url(../sustainability-publicity/images/sustainability-publicity.jpg);
}

.scroll-bg.bg_sales-promotion {
  background-image: url(../sales-promotion/images/sales-promotion.jpg);
  background-position: 10% center;
}

.scroll-bg.bg_contact {
  background-image: url(../contact/images/img_contact.jpg);
}

@media screen and (max-width: 559px) {
  .scroll-section.show .scroll-bg {
    display: none;
  }
}

/*============
出現アニメーション
=============*/
/* 下からふわっと */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 一文字ずつ横から */
.title-animate {
  display: inline-block;
  overflow: hidden;
  visibility: hidden;
}

.title-animate.ready {
  visibility: visible;
}

.title-animate span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.title-animate span.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes proFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*============
margin
=============*/
.mT0 {
  margin-top: 0 !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mT60 {
  margin-top: 60px !important;
}

.mT70 {
  margin-top: 70px !important;
}

.mT80 {
  margin-top: 80px !important;
}

.mT90 {
  margin-top: 90px !important;
}

.mT100 {
  margin-top: 100px !important;
}

.mB0 {
  margin-bottom: 0 !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB25 {
  margin-bottom: 25px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mB60 {
  margin-bottom: 60px !important;
}

.mB70 {
  margin-bottom: 70px !important;
}

.mB80 {
  margin-bottom: 80px !important;
}

.mB90 {
  margin-bottom: 90px !important;
}

.mB100 {
  margin-bottom: 100px !important;
}

.mL0 {
  margin-left: 0 !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mL20 {
  margin-left: 20px !important;
}

.mL30 {
  margin-left: 30px !important;
}

.mL40 {
  margin-left: 40px !important;
}

.mL50 {
  margin-left: 50px !important;
}

.mL60 {
  margin-left: 60px !important;
}

.mL70 {
  margin-left: 70px !important;
}

.mL80 {
  margin-left: 80px !important;
}

.mL90 {
  margin-left: 90px !important;
}

.mL100 {
  margin-left: 100px !important;
}

.mR0 {
  margin-right: 0 !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mR30 {
  margin-right: 30px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.mR50 {
  margin-right: 50px !important;
}

.mR60 {
  margin-right: 60px !important;
}

.mR70 {
  margin-right: 70px !important;
}

.mR80 {
  margin-right: 80px !important;
}

.mR90 {
  margin-right: 90px !important;
}

.mR100 {
  margin-right: 100px !important;
}

/*============
padding
=============*/
.pT0 {
  padding-top: 0 !important;
}

.pT10 {
  padding-top: 10px !important;
}

.pT20 {
  padding-top: 20px !important;
}

.pT30 {
  padding-top: 30px !important;
}

.pT40 {
  padding-top: 40px !important;
}

.pT50 {
  padding-top: 50px !important;
}

.pT60 {
  padding-top: 60px !important;
}

.pT70 {
  padding-top: 70px !important;
}

.pT80 {
  padding-top: 80px !important;
}

.pT90 {
  padding-top: 90px !important;
}

.pT100 {
  padding-top: 100px !important;
}

.pB0 {
  padding-bottom: 0 !important;
}

.pB10 {
  padding-bottom: 10px !important;
}

.pB20 {
  padding-bottom: 20px !important;
}

.pB30 {
  padding-bottom: 30px !important;
}

.pB40 {
  padding-bottom: 40px !important;
}

.pB50 {
  padding-bottom: 50px !important;
}

.pB60 {
  padding-bottom: 60px !important;
}

.pB70 {
  padding-bottom: 70px !important;
}

.pB80 {
  padding-bottom: 80px !important;
}

.pB90 {
  padding-bottom: 90px !important;
}

.pB100 {
  padding-bottom: 100px !important;
}

.pL0 {
  padding-left: 0 !important;
}

.pL10 {
  padding-left: 10px !important;
}

.pL20 {
  padding-left: 20px !important;
}

.pL30 {
  padding-left: 30px !important;
}

.pL40 {
  padding-left: 40px !important;
}

.pL50 {
  padding-left: 50px !important;
}

.pL60 {
  padding-left: 60px !important;
}

.pL70 {
  padding-left: 70px !important;
}

.pL80 {
  padding-left: 80px !important;
}

.pL90 {
  padding-left: 90px !important;
}

.pL100 {
  padding-left: 100px !important;
}

.pR0 {
  padding-right: 0 !important;
}

.pR10 {
  padding-right: 10px !important;
}

.pR20 {
  padding-right: 20px !important;
}

.pR30 {
  padding-right: 30px !important;
}

.pR40 {
  padding-right: 40px !important;
}

.pR50 {
  padding-right: 50px !important;
}

.pR60 {
  padding-right: 60px !important;
}

.pR70 {
  padding-right: 70px !important;
}

.pR80 {
  padding-right: 80px !important;
}

.pR90 {
  padding-right: 90px !important;
}

.pR100 {
  padding-right: 100px !important;
}

/*============
text-align
=============*/
.algR {
  text-align: right !important;
}

.algC {
  text-align: center !important;
}

.algL {
  text-align: left !important;
}

