@charset "UTF-8";

/*$font02: "Comfortaa", sans-serif;
$font03: "vdl-penletter", sans-serif;*/
/* @font-face {
  font-family: 'font02';
  src: url('../../font/FOT-TsukuARdGothicStd-E.otf');
} */
/*
$width640: 640px;
$width768: 768px;
$width992: 992px;
$width1200: 1200px;
$width1400: 1400px;

@mixin w640 {
  @media (max-width: ($width640)) {
    @content;
  }
}
@mixin w768 {
  @media (max-width: ($width768)) {
    @content;
  }
}
@mixin w992 {
  @media (max-width: ($width992)) {
    @content;
  }
}
@mixin w1200 {
  @media (max-width: ($width1200)) {
    @content;
  }
}
@mixin w1400 {
  @media (max-width: ($width1400)) {
    @content;
  }
}
*/
@keyframes pyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }

  50% {
    transform: scale(1, 1) translate(0%, -7%);
  }

  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}

@keyframes fuwa {
  from {
    opacity: 0;
    margin-top: 60px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes fuwa2 {
  from {
    opacity: 0;
    margin-top: -30px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

/*白*/
/*グレー*/
/*グレー2*/
/*紺*/
/*水色*/
/*グレー3*/
/*オレンジ*/
/*水色2*/
/*透明*/
/*オレンジ2*/
/*水色3*/
/*水色4*/
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

::selection {
  background-color: #ffae00 !important;
  color: #ffffff !important;
}

p {
  font-size: 15px;
  line-height: 25px;
  color: #4c4a4a;
  margin: 0;
  word-wrap: break-word;
}

@media (min-width: 992px) {
  p {
    font-size: 18px;
    line-height: 30px;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  display: block;
}

a:before,
a:after,
.hovercon:before,
.hovercon:after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

a,
a:before,
a:after,
.hovercon,
.hovercon:before,
.hovercon:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#questionary a .hover-af {
  display: none !important;
}

#questionary a:hover .hover-be {
  display: none !important;
}

#questionary a:hover .hover-af {
  display: inline-block !important;
}

body {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.display-sp {
  display: block;
}

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

.display-pc {
  display: none;
}

@media (min-width: 991px) {
  .display-pc {
    display: block;
  }
}

.display-pc2 {
  display: none;
}

@media (min-width: 991px) {
  .display-pc2 {
    display: inline-block;
  }
}

/* 背景のグラデ↓ */
/* ▼▼▼ 背景固定用のコンテナ ▼▼▼ */
#bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(120deg, #fddb45, #ffbf00, #ffb347);
  overflow: hidden;
}

/* ▼▼▼ 丸の共通設定（ここがスマホ用の基本スタイルに） ▼▼▼ */
/* Mobile (Demo02) の仕様: 400px~800px / blur 40px */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 1.0;
  transition: transform 4s ease-in-out;
  will-change: transform;
  mix-blend-mode: normal;
  /* スマホ用: JSのベース値(300-600)を約1.33倍 */
  /* 結果として 400px 〜 800px 程度 */
  width: calc(var(--blob-size) * 1.33);
  height: calc(var(--blob-size) * 1.33);
  /* スマホ用のぼかし量 */
  filter: blur(40px);
}

/* ▼▼▼ PCサイズ(768px以上)の設定 ▼▼▼ */
/* PC (Demo04) の仕様: 3倍サイズ / blur 60px */
@media (min-width: 768px) {
  .blob {
    /* PC用: Demo04の仕様通り、ベース値を3倍 */
    width: calc(var(--blob-size) * 3);
    height: calc(var(--blob-size) * 3);
    /* 丸が大きくなる分、ぼかしを強くする(Demo04仕様) */
    filter: blur(60px);
  }
}

/* ▼▼▼ 色の設定 ▼▼▼ */
.blob.lime {
  background: radial-gradient(circle, #BAD834 20%, rgba(186, 216, 52, 0) 70%);
}

.blob.orange {
  background: radial-gradient(circle, #FFAB2D 20%, rgba(255, 171, 45, 0) 70%);
}

/* ▼▼▼ コンテンツエリア（確認用） ▼▼▼ */
#wrap {
  position: relative;
  width: 100%;
}

section {
  height: 800px;
  margin: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 背景のグラデ↑ */
@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }

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

#content {
  margin: 0 auto;
}

header .headerinner1 {
  width: 100%;
  height: 70px;
  border-bottom: solid 1px #ffffff;
}

@media (min-width: 992px) {
  header .headerinner1 {
    height: 90px;
  }
}

header .headerinner1 h1 {
  display: inline-block;
}

header .headerinner1 h1 a {
  display: block;
  padding: 20px;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
}

@media (min-width: 992px) {
  header .headerinner1 h1 a {
    padding: 30px;
    font-size: 32px;
    line-height: 30px;
  }
}

.nav {
  position: fixed;
  right: 0;
  display: inline-block;
  float: right;
  margin: 5px 30px;
  z-index: 99;
}

@media (min-width: 992px) {
  .nav {
    margin: 15px 30px;
  }
}

.nav .drawer_hidden {
  display: none;
  margin: 5px 30px;
}

.nav .drawer_open {
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 101;
  cursor: pointer;
  filter: drop-shadow(1px 1px 10px #ffae00);
}

.nav .drawer_open span,
.nav .drawer_open span:before,
.nav .drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 35px;
  border-radius: 3px;
  background-color: #ffffff;
  transition: 0.5s;
  position: absolute;
}

.nav .drawer_open span:before {
  bottom: 10px;
}

.nav .drawer_open span:after {
  top: 10px;
}

.nav .drawer_open p {
  margin-bottom: -50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.nav #drawer_input:checked+.drawer_open {
  filter: none;
}

.nav #drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

.nav #drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

.nav #drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav .nav_content {
  position: fixed;
  width: 80%;
  height: 100%;
  padding: 80px 40px;
  top: 0;
  right: -100%;
  z-index: 100;
  background-color: rgba(30, 120, 160, 0.9);
  transition: .5s;
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .nav .nav_content {
    width: 470px;
    height: 100%;
    padding: 100px 75px;
  }
}

.nav .nav_content ul {
  list-style: none;
  margin-bottom: 30px;
}

.nav .nav_content ul li {
  border-bottom: solid 1px #ffffff;
  padding: 15px 0;
}

.nav .nav_content ul li:last-of-type {
  border-bottom: none;
}

.nav .nav_content ul li a,
.nav .nav_content ul li p {
  display: block;
  padding: 5px 0;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
}

.nav #drawer_input:checked~.nav_content {
  right: 0;
}

/* アコーディオンここから */
details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
}

details[open]::details-content {
  opacity: 1;
}

details[open] .icon {
  transform: rotate(180deg);
}

details[open] .link-01b>div:before {
  transform: rotate(45deg);
}

details[open] .link-01b>div:after {
  transform: rotate(135deg);
}

details[open] .link-01b .p1 {
  display: none !important;
}

details[open] .link-01b .p2 {
  display: block !important;
}

details summary {
  position: relative;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
}

details summary:before,
details summary:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: #ffffff;
  position: absolute;
  left: -30px;
  top: 15px;
  transform: translateY(-50%);
  transition: opacity 1s;
}

details summary:after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}

details summary.show:before {
  opacity: 0;
}

details summary.show:after {
  transform: translateY(-50%) rotate(180deg);
}

details summary a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 992px) {
  details summary a {
    font-size: 18px;
  }
}

details>a {
  display: block;
  margin-left: 20px;
  color: #ffffff;
  font-size: 15px !important;
  font-weight: 500;
}

@media (min-width: 992px) {
  details>a {
    font-size: 16px !important;
  }
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  details[open]::details-content {
    height: auto;
  }
}

/* 既存の @supports not ブロックをこのように変更してください */
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    /* 隙間の原因となっていた固定高さとスクロールを解除 */
    height: auto;
    overflow-y: visible;
  }
}

/* 念のため、Firefox等で details::details-content が 
   正しくブロック要素として認識されるよう補強 */
details::details-content {
  display: block;
}

/* アコーディオンここまで */
/* 検索窓ここから */
.search-form {
  display: flex;
  width: 260px;
  height: 50px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-radius: 25px;
  background-color: #ffffff;
}

@media (min-width: 992px) {
  .search-form {
    width: 260px;
    height: 60px;
    border-radius: 30px;
  }
}

.search-form input {
  height: 45px;
  padding: 5px 0 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
  outline: none;
}

.search-form input::placeholder {
  color: #b4b4b4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.search-form button::after {
  width: 24px;
  height: 24px;
  content: '';
}

.search-form button .material-icons {
  color: #1e78a0;
}

/* 検索窓ここまで */
.svgcircle {
  display: none;
  position: fixed;
  z-index: -1;
  width: 450px;
  height: 450px;
}

@media (min-width: 992px) {
  .svgcircle {
    display: block;
    width: 600px;
    height: 600px;
  }
}

.svgcircle.svgcircle1 {
  margin-top: 500px;
  margin-left: -100px;
}

.svgcircle.svgcircle2 {
  top: 2000px;
  right: -100px;
  margin-left: auto;
}

@media (min-width: 992px) {
  .svgcircle.svgcircle2 {
    top: 1600px;
  }
}

.svgcircle.svgcircle3 {
  margin-top: 3200px;
  margin-left: -100px;
}

@media (min-width: 992px) {
  .svgcircle.svgcircle3 {
    margin-top: 3300px;
  }
}

.svgcircle svg text {
  display: inline-block;
  animation: rotation1 35s linear infinite;
  transform-origin: center;
}

.svgcircle svg text textPath {
  font-size: 42px;
}

.svgcircle svg text textPath tspan {
  fill: #ffffff;
  letter-spacing: 2.5px;
  font-weight: 400;
}

.seccion-a {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .seccion-a {
    margin-bottom: 0;
  }
}

.seccion-b {
  display: block;
  margin-bottom: 100px;
}

@media (min-width: 992px) {
  .seccion-b {
    margin-bottom: 200px;
  }
}

.seccion-c {
  display: block;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .seccion-c {
    margin-bottom: 50px;
  }
}

.main-title {
  display: inline-block;
}

.subtext {
  z-index: 3;
  position: relative;
  /*display: inline-block;*/
  transform: skew(0, -10deg);
  /*&.subtext01 {
      top: -50px;
      left: auto;
      float: right;
      z-index: 2;
      @include desktops {
          top: auto;
          bottom: 350px;
          left: -10%;
          float: none;
          z-index: -1;
      }
      p {
          @include font03;
          font-size: 30px;
          line-height: 36px;
          letter-spacing: -6px;
          @include desktops {
              font-size: 46px;
              line-height: 60px;
          }
      }
  }*/
}

.subtext img {
  position: absolute;
  top: -60px;
  left: auto;
  right: 10px;
  float: right;
  width: auto;
  max-width: 190px;
  isolation: isolate;
  /* --- 【iOS対策2】GPUレンダリングの強制 --- */
  /* スクロール時のチラつきや、transformによる画像のボケを防止 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);

  /* --- 【iOS対策3】レンダリングの安定化 --- */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, top, right;
}

@media (min-width: 768px) {
  .subtext img {
    bottom: 150px;
    top: auto;
    left: -5%;
    right: auto;
    float: none;
    max-width: 300px;
  }
}

@media (min-width: 1200px) {
  .subtext img {
    bottom: 250px;
    max-width: 400px;
  }
}

@media (min-width: 1450px) {
  .subtext img {
    bottom: 280px;
    left: -10%;
  }
}

.text-b {
  font-weight: 600;
}

.text-01 {
  font-weight: 700;
  font-size: 37px;
  line-height: 46px;
  color: #1e78a0;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .text-01 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (min-width: 1450px) {
  .text-01 {
    font-size: 58px;
    line-height: 70px;
  }
}

.text-01.text-01b {
  font-size: 32px;
  line-height: 42px;
}

@media (min-width: 1200px) {
  .text-01.text-01b {
    font-size: 45px;
    line-height: 60px;
  }
}

.text-02 {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .text-02 {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (min-width: 1450px) {
  .text-02 {
    font-size: 22px;
    line-height: 37px;
  }
}

.text-03 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (min-width: 992px) {
  .text-03 {
    font-size: 55px;
    line-height: 75px;
    letter-spacing: 6px;
  }
}

.text-04 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .text-04 {
    font-size: 25px;
    line-height: 36px;
  }
}

.text-05,
.text-05-a a {
  font-size: 20px;
  line-height: 26px;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  border-bottom: solid 1px #4c4a4a;
  font-weight: 700;
}

@media (min-width: 992px) {

  .text-05,
  .text-05-a a {
    font-size: 26px;
    line-height: 35px;
  }
}

.text-05-a {
  padding: 0 !important;
}

.text-05-a a {
  color: #4c4a4a !important;
}

.text-05-a a:hover {
  color: #878788 !important;
}

.text-06 {
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: solid 1px #4c4a4a;
}

@media (min-width: 992px) {
  .text-06 {
    font-size: 26px;
    line-height: 32px;
  }
}

.text-07 {
  color: #1e78a0;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 992px) {
  .text-07 {
    font-size: 18px;
  }
}

.text-07.text-07b {
  text-align: left;
}

@media (min-width: 992px) {
  .text-08 {
    text-align: center;
  }
}

.text-09 {
  text-align: center;
  font-weight: 600;
}

.text-10 {
  display: inline-block;
  width: auto;
  height: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
  line-height: 30px;
  font-weight: 600;
  background-color: #c9e2e4;
  border-radius: 5px;
}

@media (min-width: 992px) {
  .text-10 {
    height: 36px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.text-10 a,
.text-10 p {
  color: #4c4a4a;
  line-height: 30px;
  font-weight: 600;
}

@media (min-width: 992px) {

  .text-10 a,
  .text-10 p {
    line-height: 36px;
  }
}

.text-11 {
  position: relative;
  left: 0;
  width: 80px;
  height: 30px;
  padding-left: 10px;
  margin-top: -15px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 10px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 600;
}

@media (min-width: 992px) {
  .text-11 {
    margin-top: -60px;
    margin-bottom: -20px;
    width: 100px;
    height: 50px;
    line-height: 50px;
  }
}

.text-11.text-11a {
  background-color: #ff7821;
}

.text-11.text-11b {
  background-color: #97d2d2;
}

.text-12 {
  font-size: 16px;
}

.text-12 span {
  font-size: 22px;
  padding-right: 10px;
}

@media (min-width: 992px) {
  .text-12 {
    font-size: 18px;
  }

  .text-12 span {
    font-size: 30px;
  }
}

.text-13 {
  width: 90%;
  font-size: 20px;
  line-height: 25px;
  padding: 20px 0;
  margin: 20px auto;
  font-weight: 700;
  border-top: solid 1px #4c4a4a;
  border-bottom: solid 1px #4c4a4a;
  text-align: center;
}

@media (min-width: 992px) {
  .text-13 {
    width: 400px;
    margin: 30px auto;
    font-size: 26px;
    line-height: 32px;
  }
}

.text-14 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 992px) {
  .text-14 {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 50px;
  }
}

.text-15 {
  margin-bottom: 5px;
}

@media (min-width: 992px) {
  .text-15 {
    margin-bottom: 20px;
  }
}

.text-16 {
  display: block;
  width: 80%;
  max-width: 280px;
  height: 35px;
  margin: 0 auto 10px auto;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  background-color: #c9e2e4;
}

@media (min-width: 992px) {
  .text-16 {
    width: 380px;
    height: 70px;
    margin: 0 auto 30px auto;
    font-size: 30px;
    line-height: 70px;
  }
}

.text-17 {
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 30px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  text-align: center;
  background-color: #c9e2e4;
}

@media (min-width: 992px) {
  .text-17 {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    font-size: 30px;
    line-height: 50px;
  }
}

.text-18 {
  font-size: 14px;
  margin: 0 auto 15px auto;
  color: #b4b4b4;
}

@media (min-width: 992px) {
  .text-18 {
    font-size: 16px;
    margin: 0 auto 25px auto;
  }
}

.text-19 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 20px;
  margin: 0 auto 20px auto;
  border-bottom: solid 1px #4c4a4a;
}

@media (min-width: 992px) {
  .text-19 {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 30px;
    margin: 0 auto 30px auto;
  }
}

.table-01 {
  width: 100%;
  margin: 0 auto 20px auto;
  border: none !important;
}

.table-01 tbody {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.table-01 tr {
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 0 0 10px 0 !important;
}

.table-01 tr:last-child {
  border-bottom: solid 1px #4c4a4a;
  padding: 0 0 25px 0 !important;
}

.table-01 tr th,
.table-01 tr td {
  font-size: 16px !important;
  line-height: 30px;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  border-top: none !important;
  /*border-bottom: solid 1px #4c4a4a;
      @include tablets {
          border-bottom: none;
      }*/
}

@media (min-width: 768px) {

  .table-01 tr th,
  .table-01 tr td {
    width: auto;
    display: table-cell;
    padding: 0 16px 0 0 !important;
    font-size: 18px !important;
  }
}

.table-01 tr th {
  /*display: inline-block;*/
  /*text-align: center;
      border: 1px solid #ccc;*/
  /*@include tablets {
          margin-right: 20px;
      }*/
}

@media (min-width: 768px) {
  .table-01 tr th {
    text-align: left;
    /*border: none;*/
    color: #878788;
  }
}

.table-01 tr td {
  font-weight: bold;
  color: #4c4a4a;
  /*@include desktops {
          margin-bottom: 5px;
      }*/
}

@media (min-width: 768px) {
  .table-01 tr td {
    font-weight: 600;
  }
}

.link a,
.link>div {
  position: relative;
  display: block;
  background: linear-gradient(90deg, #97d2d2, #4e92cd);
  z-index: 2;
  overflow: hidden;
}

.link a:before,
.link>div:before {
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background: #97d2d2;
  border-radius: 17.5px;
  z-index: 3;
}

@media (min-width: 1200px) {

  .link a:before,
  .link>div:before {
    border-radius: 25px;
  }
}

.link a:hover:before,
.link>div:hover:before {
  width: 100%;
}

.link a span,
.link>div span {
  position: relative;
  z-index: 4;
  color: #ffffff;
  display: block;
  height: 35px;
  padding: 3px;
}

@media (min-width: 1200px) {

  .link a span,
  .link>div span {
    height: 50px;
    padding: 5px;
  }
}

.link.link-01 {
  width: 35px;
  height: 35px;
}

@media (min-width: 992px) {
  .link.link-01 {
    width: 50px;
    height: 50px;
  }
}

.link.link-01 a,
.link.link-01>div {
  height: 35px;
  border-radius: 17.5px;
}

@media (min-width: 992px) {

  .link.link-01 a,
  .link.link-01>div {
    height: 50px;
    border-radius: 25px;
  }
}

.link.link-01 a span,
.link.link-01>div span {
  font-size: 30px;
}

@media (min-width: 992px) {

  .link.link-01 a span,
  .link.link-01>div span {
    font-size: 42px;
  }
}

.link.link-01b>div:before,
.link.link-01b>div:after {
  content: '';
  position: absolute;
  top: 17px;
  left: 9px;
  display: inline-block;
  width: 17px;
  z-index: 5;
  height: 3px;
  background-color: #ffffff;
  transition: transform 0.5s;
}

@media (min-width: 992px) {

  .link.link-01b>div:before,
  .link.link-01b>div:after {
    width: 25px;
    top: 24px;
    left: 13px;
  }
}

.link.link-01b>div:after {
  transform: rotate(90deg);
}

.link.link-01b>div p {
  position: absolute;
  width: 100px;
  top: 50px;
  left: -24px;
  text-align: center;
}

.link.link-01b>p.p1 {
  display: block;
}

.link.link-01b>p.p2 {
  display: none;
}

.link.link-01c a span {
  font-size: 22px;
  padding: 7px;
}

@media (min-width: 992px) {
  .link.link-01c a span {
    font-size: 27px;
    padding: 11px;
  }
}

/* --- ボタン全体のコンテナ --- */
.link.link-02 {
  width: 235px;
  height: auto;
  margin: 20px auto;
}

@media (min-width: 992px) {
  .link.link-02 {
    width: 380px;
    margin: 30px auto;
  }
}

/* --- Aタグ：ここをFlexboxにする --- */
.link.link-02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 25px;
  padding: 10px 15px;
  text-decoration: none;
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .link.link-02 a {
    border-radius: 35px;
    padding: 15px 25px;
  }
}

/* --- Pタグ：テキスト部分 --- */
.link.link-02 a p {
  position: relative;
  z-index: 4;
  flex-grow: 1;
  /* テキストエリアを広げる */
  margin: 0;
  /* 余計なマージンをリセット */
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  /* 行高は倍率指定が安全 */
  text-align: center;
}

@media (min-width: 992px) {
  .link.link-02 a p {
    font-size: 20px;
  }
}

/* --- SPANタグ：アイコン部分 --- */
.link.link-02 a span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* Figmaのサイズに合わせる */
  color: #ffffff;
  margin-left: 10px;
  /* テキストとの間隔 */
  /* float, padding, margin(top/left) などの複雑な指定は全て削除 */
}

.link-03 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .link-03 {
    margin-bottom: 30px;
  }
}

.link-03 a {
  display: block;
  width: 230px;
  height: 35px;
  margin: 0 10px 15px 10px;
  line-height: 35px;
  background-color: #c9e2e4;
  border-radius: 5px;
  color: #4c4a4a;
  text-align: center;
  font-weight: 600;
}

@media (min-width: 992px) {
  .link-03 a {
    margin: 0 10px 0 10px;
  }
}

.link-03 a:hover {
  color: #ffffff;
  background-color: #1e78a0;
  border-radius: 17.5px;
}

.links01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .links01 {
    padding: 0 35px;
  }
}

@media (min-width: 992px) {
  .links01.links01a .links01-con {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .links01.links01b .links01-con {
    width: 33.3%;
  }
}

.links01 .links01-con {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .links01 .links01-con {
    line-height: 36px;
  }
}

.links01 .links01-con a {
  display: block;
  color: #1e78a0;
  font-weight: 600;
  line-height: 22px;
}

.img-link:hover {
  opacity: 0.8;
}

/*    */

.cat-link {
  pointer-events: all;
}

.cat-link.cat-link2 {
  width: 100%;
  height: auto;
  text-align: center;
}

@media (min-width: 992px) {
  .cat-link.cat-link2 {
    height: auto;
  }
}

.cat-link.cat-link2 p {
  font-size: 16px;
}

@media (min-width: 992px) {
  .cat-link.cat-link2 p {
    padding-top: 10px;
    font-size: 22px;
    padding-top: 10px;
  }
}

.cat-link.cat-link2 p span {
  display: block;
  font-size: 12px;
  line-height: 10px;
  padding-bottom: 10px;
}

@media (min-width: 992px) {
  .cat-link.cat-link2 p span {
    font-size: 16px;
    line-height: 20px;
  }
}

.cat-link:hover {
  background-color: #1e78a0;
}

.cat-link:hover p {
  color: #ffffff;
}

/*    */

.titlearea {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 35px;
  text-align: center;
}

@media (min-width: 992px) {
  .titlearea {
    width: 100%;
  }
}

.content {
  width: 90%;
}

@media (min-width: 992px) {
  .content {
    width: 80%;
  }
}

.content.content-03,
.content.content-04 {
  animation: fuwa 2s 1 forwards ease;
  background-color: #ffffff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  margin: 0 auto 35px auto;
  padding: 30px;
}

@media (min-width: 992px) {

  .content.content-03,
  .content.content-04 {
    padding: 45px;
    margin: 0 auto 50px auto;
  }
}

.content.content-01 {
  height: auto;
  margin: 0 auto 35px auto;
  animation: fuwa 2s 1 forwards ease;
  /*.table-01 {
        border-bottom: solid 1px $c2;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }*/
}

@media (min-width: 768px) {
  .content.content-01 {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .content.content-01 {
    width: 960px;
    height: auto;
    /*height: 500px;*/
  }
}

.content.content-01:not(.content-01-nolink):hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
}

.content.content-01.content-01-nolink {
  animation: fuwa 3s 1 forwards ease;
}

.content.content-01.content-01-nolink,
.content.content-01:not(.content-01-nolink) a {
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

@media (min-width: 992px) {

  .content.content-01.content-01-nolink,
  .content.content-01:not(.content-01-nolink) a {
    padding: 45px;
  }
}

.content .con-01 {
  vertical-align: top;
  width: 100%;
  margin: 0 auto;
  /*@include desktops {
        width: 400px;
    }*/
}

.content .con-01 img {
  width: 70%;
  max-width: 70%;
  height: auto;
  object-fit: contain;
  margin-left: 30px;
  margin-bottom: 30px;
}

.content .con-01.con-01-left {

  display: inline-block;
  width: 100%;
  height: auto 0;
}

@media (min-width: 992px) {
  .content .con-01.con-01-left {
    width: 45%;
    margin: auto 0;
    margin-bottom: 0;
  }
}

.content .con-01.con-01-right1 {
  display: inline-block;
  width: 100%;
  margin-top: 0px;
}

@media (min-width: 992px) {
  .content .con-01.con-01-right1 {
    width: 45%;
  }
}

.content .con-01.con-01-right2 {
  display: inline-block;
}

@media (min-width: 992px) {
  .content .con-01.con-01-right2 {
    width: 400px;
  }
}

@media (min-width: 992px) {

  .content .con-01.con-01-right2 p.text-05,
  .content .con-01.con-01-right2 p.text-06 {
    margin-bottom: 13px;
    padding-bottom: 13px;
  }
}

@media (min-width: 992px) {
  .content .con-01.con-01-right2 .table-01 {
    margin-bottom: 13px;
  }

  .content .con-01.con-01-right2 .table-01 tr:last-child {
    padding-bottom: 13px;
  }
}

.content.content-02 {
  width: 90%;
  margin: 0 auto 30px auto;
}

@media (min-width: 768px) {
  .content.content-02 {
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (min-width: 992px) {
  .content.content-02 {
    width: 960px;
  }
}

.content.content-02 .con-02 {
  width: 100%;
  margin: 0 auto 30px auto;
  animation: fuwa 2s 1 forwards ease;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

@media (min-width: 992px) {
  .content.content-02 .con-02 {
    padding: 45px;
  }
}

@media (min-width: 768px) {
  .content.content-02 .con-02 {
    width: 47%;
    margin: 0 10px 30px 10px;
  }
}

@media (min-width: 992px) {
  .content.content-02 .con-02 {
    width: 460px;
  }
}

.content.content-02 .con-02 img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
  height: auto;
}

.content.content-02 .con-02 .con-inner {
  border-bottom: solid 1px #4c4a4a;
  margin-bottom: 20px;
}

.content.content-02 .con-02 .text-05,
.content.content-02 .con-02 .text-05-a a {
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {

  .content.content-02 .con-02 .text-05,
  .content.content-02 .con-02 .text-05-a a {
    margin-bottom: 15px !important;
  }
}

@media (min-width: 768px) {
  .content.content-03 {
    width: 70%;
  }
}

@media (min-width: 992px) {
  .content.content-03 {
    width: 500px;
  }
}

.content.content-03 img {
  width: auto;
  max-width: 420px;
  height: auto;
  margin: 0 auto 50px 0;
}

@media (min-width: 992px) {
  .content.content-04 {
    width: 760px;
  }
}

.content.content-05 {
  width: 90%;
}

@media (min-width: 992px) {
  .content.content-05 {
    width: 1080px;
  }
}

.content.content-06 {
  position: relative;
  width: 90%;
  max-width: 350px;
  height: 150px;
  background-color: #ffffff;
  border-radius: 20px;
  margin: 0 auto 20px auto;
  animation: fuwa 3s 1 forwards ease;
}

@media (min-width: 992px) {
  .content.content-06 {
    max-width: 500px;
    height: 180px;
    margin: 0 auto 30px auto;
  }
}

.content.content-06 div {
  display: inline-block;
}

.content.content-06 p {
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .content.content-06 p {
    font-size: 30px;
    line-height: 42px;
  }
}

.content.content-06 p.con6p2 {
  display: block;
  margin: auto;
  padding: 50px 0;
}

.content.content-06 .link-01 {
  position: absolute;
  top: 60px;
  right: 15px;
}

@media (min-width: 992px) {
  .content.content-06 .link-01 {
    top: 65px;
    right: 30px;
  }
}

.sample-01 {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
}

@media (min-width: 992px) {
  .sample-01 {
    width: 420px;
  }
}

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 70px;
  z-index: 99;
  text-align: center;
  opacity: 0;
}

@media (min-width: 992px) {
  #page-top {
    bottom: 20px;
    right: 20px;
  }
}

#page-top a {
  display: block;
  transition: all .3s ease;
}

#page-top a:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

#page-top a img {
  width: 35px;
  height: 35px;
  filter: drop-shadow(1px 1px 10px #ffae00);
}

@media (min-width: 992px) {
  #page-top a img {
    width: 50px;
    height: 50px;
  }
}

#page-top a p {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  #page-top a p {
    font-size: 15px;
  }
}

#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

footer {
  width: 100%;
  height: 300px;
  padding: 30px;
  background-color: #ffffff;
  text-align: center;
}

@media (min-width: 992px) {
  footer {
    padding: 50px;
  }
}

footer .foot-logo {
  margin: 0 auto 25px auto;
}

footer .foot-logo a {
  display: inline-block;
}

footer .foot-logo img {
  width: 80px;
  height: auto;
  margin: 0 auto 15px auto;
}

footer .foot-logo p {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3px;
}

@media (min-width: 992px) {
  footer .foot-logo p {
    font-size: 30px;
  }
}

footer .icons {
  margin: 0 auto 20px auto;
}

footer .icons a {
  display: inline-block;
}

footer .icons a:hover img {
  transform: rotate(10deg);
  transition: all .2s ease-in-out;
}

footer .icons a img {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 5px;
}

footer small {
  font-size: 12px;
}

@media (min-width: 992px) {
  footer small {
    font-size: 18px;
  }
}