@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css);
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
@import url(fix.css);
* {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  outline: 1px solid transparent;
}

@​media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s;
    transition-duration: 0.001s;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  /* smooth scroll */
  scroll-behavior: smooth;
  height: 100%;
  font-size: 0.625rem;
}

body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/*-- EllyLoel/reset --*/
body {
  text-rendering: optimizeLegibility;
  margin: 0;
  background-color: #fff;
  color: #2c2c2c;
  font-size: 10px;
  font-family: "M PLUS 2", "Open Sans", sans-serif;
  position: relative;
  background-size: contain;
  min-height: 100dvh;
  letter-spacing: 2px;
  /*コンテンツはみだしによるスクロールバー防止*/
}

/* stickey */
header {
  position: sticky;
  top: 0;
}

footer {
  position: sticky;
  bottom: 0;
}

pre {
  white-space: pre-wrap;
}

:root {
  line-sizing: normal;
}

:root {
  text-spacing: trim-start allow-end trim-adjacent ideograph-alpha ideograph-numeric;
}

img {
  border-style: none;
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0 0;
}

a {
  word-break: break-all;
  outline: 0;
  transition: all 100ms linear;
}

a {
  color: #304ca4;
}

p,
p > span {
  line-height: 1.5em;
  letter-spacing: 1px;
}

* > span {
  font-size: inherit;
}

address {
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 1px;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

* p,
* input,
* textarea,
* select {
  transform: rotate(0.03deg);
}

.bk {
  color: #000;
}

.red {
  color: #e50012;
}

@media screen and (max-width: 320px) {
  a,
  p,
  li,
  dt,
  dd,
  th,
  td,
  address {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
  * span {
    font-size: inherit;
  }
}
picture {
  display: block;
}

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

/*----------------------------------------------------
  Common
----------------------------------------------------*/
section#wrapper {
  animation: fadein 3s forwards;
}

section#wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.container {
  padding: 0;
}
.container .row {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .container .row {
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  .container .row {
    max-width: 1024px;
  }
}

* a[class^=mailto] {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.8em;
  height: 1.6em;
  line-height: 1.6em;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 1em;
  margin-bottom: 0.5em;
}
* a[class^=mailto]:active {
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff000;
}
@media screen and (min-width: 1024px) {
  * a[class^=mailto]:hover {
    color: #fff000;
  }
}

a.mailto2 {
  background-color: rgba(0, 28, 116, 0.8);
}
a.mailto2:active {
  background-color: rgba(0, 28, 116, 0.4);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
table tr th, table tr td {
  border: solid 1px #aaaaae;
  border-collapse: collapse;
  padding: 8px 5px;
  font-family: "M PLUS 2";
  font-size: clamp(14px, 4vw, 16px);
  letter-spacing: 0;
  vertical-align: middle;
  text-align: justify;
}
table tr th {
  background-color: #e5e5e5;
  text-align: center;
  font-weight: bold;
  text-wrap: balance;
  min-width: 5em;
}
table tr td {
  vertical-align: top;
  min-width: 7em;
}
table .sticky_row {
  position: sticky;
  top: 0;
  left: 0;
  border-left: none;
  border-right: none;
}
table .sticky_row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: solid 2px #9bd653;
  border-right: solid 2px #9bd653;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  table .sticky_row:before {
    display: none;
  }
}
table .sticky_col {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
}
table .sticky_col:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: solid 2px #9bd653;
  border-bottom: solid 2px #9bd653;
  background: #ccc;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  table .sticky_col:before {
    display: none;
  }
}
table .sticky_cross {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  z-index: 1;
}
table .sticky_cross:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: solid 1px #9bd653;
  border-bottom: solid 1px #9bd653;
  border-left: solid 1px #9bd653;
  border-right: solid 1px #9bd653;
  background: #ccc;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  table .sticky_cross:before {
    display: none;
  }
}

form {
  display: block;
  width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

button:focus {
  outline: 0;
  background-color: transparent;
  border: 0 solid transparent;
}

input[type=text], input[type=tel], input[type=email], input[type=password], input[type=tel] {
  padding: 1rem 0.5rem;
  line-height: 2.5em;
  height: 2.5em;
}
input[type=text], input[type=tel], input[type=email], input[type=password], input[type=date] {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  margin: 0 6px 10px 0;
  min-height: 30px;
}

select {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  padding: 0.6rem;
  min-height: 30px;
  font-size: 1.4rem;
}

textarea {
  border: solid 2px #ccc;
  border-radius: 3px;
  padding: 1rem;
  min-height: 12em;
  display: block;
  width: 100%;
  font-size: 1.4rem;
}

input[type=submit] {
  border: solid #ddd 1px;
  border-radius: 5px;
  padding: 0 1em;
  height: 2.2em;
  line-height: 2.2em;
  font-size: 1.6rem;
}

/* [class^="oversubs"],
#secSchedule .container .row .title-date a .oversubs {
  p:first-child{
    color: $c-red;
    font-size: clamp(20px, 13vw, 75px);
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 2px #fff,
      -2px -2px 2px #fff,
      2px -2px 2px #fff,
      -2px 2px 2px #fff,
      2px 2px 5px #fff,
      -2px -2px 5px #fff,
      2px -2px 5px #fff,
      -2px 2px 5px #fff;
    margin-inline: auto;
    transform: rotate(5deg);
    //position: absolute;
    top: 1em;
    left: 0;
    right: 0;
    z-index: 999;

    @include mq-lg {
      top: 1em;
    }
  }
  p:last-child {
    color: #fff;
    font-weight: normal;
    font-size: clamp(14px, 4vw, 16px);
  }
}
 */
/*-- header --*/
header {
  width: 100%;
  height: 45px;
  position: fixed;
  top: 0;
  transition: top 0.3s;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  header {
    height: 80px;
    max-width: 1024px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
}
header .container {
  background-color: #fff;
}
header .container .row {
  position: relative;
}
header .container .row h1 {
  position: relative;
  padding: 15px;
  width: 70%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  header .container .row h1 {
    padding: 20px;
    width: 40%;
    max-width: 414px;
  }
}
header .menuNav {
  /*#nav-content*/
}
@media screen and (min-width: 768px) {
  header .menuNav {
    height: 25px;
    width: 65%;
    position: absolute;
    top: 1.5em;
    right: 0;
    z-index: 9;
  }
}
header .menuNav #nav-input {
  opacity: 0;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0.6em;
  z-index: 19999;
}
@media screen and (min-width: 1024px) {
  header .menuNav #nav-input {
    width: 100px;
    height: 100px;
  }
}
header .menuNav .header_sp_nav {
  outline: none;
  color: transparent;
  width: 60px;
  height: 60px;
  padding: 0px 18px;
  position: absolute;
  top: 0;
  right: 5px;
  margin: auto;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.8s ease-in-out;
  pointer-events: auto;
}
@media screen and (min-width: 1280px) {
  header .menuNav .header_sp_nav {
    width: 110px;
    height: 110px;
    padding: 33px 24px;
  }
}
header .menuNav .nav_line {
  outline: none;
  display: block;
  width: 100%;
  height: 1px;
  background: #aaaaae;
  transition: 0.3s;
}
header .menuNav .nav_line1 {
  animation: line1_de 1s ease 0s 1 alternate;
  transform: translateY(12px);
}
@media screen and (min-width: 1280px) {
  header .menuNav .nav_line1 {
    transform: translateY(6px);
  }
}
@keyframes line1_de {
  0% {
    transform: translateY(30px) rotate(45deg);
  }
  80% {
    transform: translateY(30px) rotate(0deg);
  }
  100% {
    transform: translateY(12px);
    @media screen and (min-width: 1280px) {
      header .menuNav {
        transform: translateY(6px);
      }
    }
  }
}
header .menuNav .nav_line2 {
  opacity: 1;
  transform: translateY(20px);
  animation: line2_de 1s ease 0s 1 alternate;
}
@keyframes line2_de {
  0% {
    opacity: 0;
    transform: translateY(17px);
  }
  90% {
    opacity: 1;
  }
}
header .menuNav .nav_line3 {
  animation: line3_de 1s ease 0s 1 alternate;
  transform: translateY(28px);
}
@media screen and (min-width: 1280px) {
  header .menuNav .nav_line3 {
    transform: translateY(34px);
  }
}
@keyframes line3_de {
  0% {
    transform: translateY(10px) rotate(-45deg);
  }
  80% {
    transform: translateY(10px) rotate(0deg);
  }
  100% {
    transform: translateY(28px);
    @media screen and (min-width: 1280px) {
      header .menuNav {
        transform: translateY(34px);
      }
    }
  }
}
header .menuNav #nav-input[type=checkbox]:checked ~ .header_sp_nav .nav_line2 {
  opacity: 0;
  animation: line2 1s ease 0s 1 alternate;
}
@keyframes line2 {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
}
header .menuNav #nav-input[type=checkbox]:checked ~ .header_sp_nav .nav_line1 {
  background-color: #aaaaae;
  animation: line1 1s ease 0s 1 alternate;
  transform: translateY(22px) rotate(45deg);
  top: -1px;
  position: relative;
}
@keyframes line1 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  30% {
    transform: translateY(22px) rotate(0deg);
  }
  100% {
    background-color: #aaaaae;
    transform: translateY(22px) rotate(45deg);
  }
}
header .menuNav #nav-input[type=checkbox]:checked ~ .header_sp_nav .nav_line3 {
  background-color: #aaaaae;
  animation: line3 1s ease 0s 1 alternate;
  transform: translateY(18px) rotate(-45deg);
  top: 0px;
  position: relative;
}
@keyframes line3 {
  0% {
    transform: translateY(34px) rotate(0deg);
  }
  30% {
    transform: translateY(18px) rotate(0deg);
  }
  100% {
    background-color: #aaaaae;
    transform: translateY(18px) rotate(-45deg);
  }
}
header .menuNav #nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
header .menuNav .nav-unshown {
  display: none;
}
header .menuNav #nav-input[type=checkbox]:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}
header .menuNav #nav-input[type=checkbox]:checked ~ #nav-content {
  right: 0;
  opacity: 1;
  transition: 0.1s ease-in-out;
}
header .menuNav #nav-content {
  overflow: auto;
  background-color: rgba(238, 238, 255, 0.95);
  z-index: 9999;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  opacity: 0;
  right: -100%;
  transition: 0.1s ease-in-out;
  padding: 60px 0 1rem;
}
header .menuNav #nav-content div.gNav {
  padding: 0;
}
header .menuNav #nav-content div.gNav > ul {
  margin-top: 3em;
  width: 100%;
  /* >li{
      //下層
      >ul{
        position: relative;
        &:after{
          content:"\f078";//arw-u
          font-family: $awesome;
          font-weight: bold;
          font-size: .8rem;
          color:rgba($c-main, .5);
          position: absolute;
          top:-3.3em;
          right:12px;
          left:unset;
        }
        li{
          display: block;
          width:100%;
          a{
            display: block;
            background-color: $c-grey-lightest;
            width:100%;
            padding:.7em 4px .7em 2.7em;
            font-size:14px;
            letter-spacing:0;
            position: relative;
            &:after{left:2em;}
          }
        }
      }
    }//li */
}
header .menuNav #nav-content div.gNav > ul li {
  display: block;
  margin: 2em;
}
header .menuNav #nav-content div.gNav > ul li a {
  display: block;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
  line-height: 2em;
  height: 2em;
  position: relative;
}
header .menuNav #nav-content div.gNav > ul li a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(25, 180, 239, 0.3);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.6s;
}
header .menuNav #nav-content div.gNav > ul li a:active {
  color: rgba(25, 180, 239, 0.15);
}
header .menuNav #nav-content div.gNav > ul li a span {
  font-style: italic;
  color: #001c74;
  font-size: 16px;
  font-family: "M PLUS 2";
  font-weight: 700;
  width: 100%;
  display: block;
  letter-spacing: 1px;
  transform: rotate(0.03deg);
}
header .menuNav #nav-content div.gNav > ul li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (min-width: 768px) {
  header .menuNav #nav-input,
  header .menuNav .header_sp_nav,
  header .menuNav .nav-unshown {
    display: none;
  }
  header .menuNav #nav-content {
    width: 100%;
    height: auto;
    padding: 0;
    background: unset;
    overflow: visible;
    opacity: 1;
    position: absolute;
    top: 0;
    left: clamp(1em, 3vw, 20px);
    right: unset;
    z-index: 9999;
  }
  header .menuNav #nav-content div.gNav {
    margin-top: 0;
    height: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  header .menuNav #nav-content div.gNav > ul {
    margin: 10px auto 0;
    border-top: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*/下層
        >ul{
          position: relative;
          >li{
            height: 0;
            overflow: hidden;
            transition: .2s;
            >a{
              border: solid 1px #fff;
              border-left: none;
              border-top:none;
            }
          }
          li:not(:first-child){
            border: none;
          }
        }

      //下層展開
      li:hover ul{
        height:auto;//!must
        > li {
          border: solid 1px $c-grey-lightest;
          height: 50px;
          overflow: visible;
          a{
            height: 50px;
            line-height:50px;
            padding:0 .8em;
            &:hover{
              color:#fff;
            }
          }
        }
      }*/
  }
  header .menuNav #nav-content div.gNav > ul li {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: inline-block;
    margin: 0;
  }
  header .menuNav #nav-content div.gNav > ul li a {
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    padding: 0 0.4em;
    line-height: 2em;
  }
  header .menuNav #nav-content div.gNav > ul li a:after {
    content: "";
  }
  header .menuNav #nav-content div.gNav > ul li a:hover {
    transition: all 100ms linear;
    color: #19b4ef;
  }
  header .menuNav #nav-content div.gNav > ul li a span {
    font-style: normal;
    color: #000;
    font-size: clamp(13px, 4vw, 15px);
    font-family: "M PLUS 2";
    font-weight: 700;
    width: 100%;
    display: block;
    letter-spacing: 0.03em;
    transform: rotate(0.03deg);
  }
  header .menuNav #nav-content div.gNav > ul li a span:hover {
    color: #19b4ef;
  }
}

/*-- header subpage--
header.subp{
  .container{
    .row{
      .logo{
        text-align: center;
        h1{
          margin:0 auto;
          }
      }
    }
  }
}*/
#floating-banner {
  display: none;
  width: 90%;
  max-width: 600px;
  position: fixed;
  bottom: -7px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  #floating-banner {
    bottom: -13px;
  }
}

footer {
  background-color: rgba(0, 28, 116, 0.2);
  display: block;
  min-height: 4em;
  padding-top: 2em;
}
footer ul {
  padding: 0 1em;
  margin: 0 auto 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  footer ul {
    max-width: 80vw;
    gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  footer ul {
    max-width: 720px;
  }
}
footer ul li a {
  text-decoration: none;
}
footer ul li a > span {
  font-weight: bold;
  font-size: clamp(10px, 3vw, 14px);
  letter-spacing: 0.03em;
}
footer ul li a > span:active {
  color: #19b4ef;
}
@media (any-hover: hover) {
  footer ul li a > span:hover {
    color: #19b4ef;
  }
}
footer .footerBtm {
  display: block;
  padding: 5px 0;
  margin: 0 auto;
}
footer .footerBtm p.copy {
  color: #5c5c5c;
  font-size: clamp(10px, 4vw, 14px);
  font-weight: normal;
  font-family: "Oswald", sans-serif;
  letter-spacing: px;
  text-align: center;
  line-height: 1.3;
  margin: 0.5em auto;
}
@media screen and (min-width: 768px) {
  footer .footerBtm p.copy {
    letter-spacing: 2px;
    line-height: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  footer .footerBtm p.copy {
    line-height: 1em;
    height: 1em;
  }
}

#pagetopBtn {
  overflow: hidden;
  border-radius: 50%;
  position: fixed !important;
  z-index: 9999;
  text-align: center;
  text-decoration: none;
  transform: rotateY(270deg);
  transition: 0.5s;
  height: 55px;
  width: 55px;
  bottom: 140px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  #pagetopBtn {
    height: 75px;
    width: 75px;
    right: 25px;
  }
}
#pagetopBtn a {
  background-color: #fff000;
  color: #000;
  font-size: 10px;
  font-family: "Dosis";
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 55px;
  height: 55px;
  width: 55px;
  display: block;
  position: relative;
  filter: saturate(100%);
}
#pagetopBtn a:active {
  background-color: #fffbb3;
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  #pagetopBtn a {
    font-size: 13px;
    line-height: 75px;
    height: 75px;
    width: 75px;
  }
  #pagetopBtn a:hover {
    background-color: #fffbb3;
    filter: saturate(200%);
    text-decoration: none;
  }
  #pagetopBtn a:active {
    background-color: #fff000;
    filter: none;
  }
}
#pagetopBtn a:after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  color: #000;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  #pagetopBtn a:after {
    font-size: 16px;
    top: -28px;
  }
}

[class^=paraImage] {
  margin: 0 auto;
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: scroll;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  [class^=paraImage] {
    height: 250px;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media screen and (min-width: 1024px) {
  [class^=paraImage] {
    height: 400px;
  }
}

.paraImage1 {
  background-image: url(../images/sec03_bg_ph_sp.png);
  background-position: center center;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .paraImage1 {
    background-image: url(../images/sec03_bg_ph_pc.png);
    background-position: center center;
    background-size: 180% auto;
    background-attachment: fixed;
  }
}

section[id^=sec] {
  padding: 0;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  /*/skew
  .container.skewL {
    position: relative;
    z-index: 0;
    &:before {
      content: '';
      position: absolute;
      left: 0;
      top: -3vh;
      /*四角形を傾けます/
      transform: skewY(3deg);
      transform-origin: top right;
      z-index: -1;
      width: 100%;
      height: calc(100% + 6vh);
      background: $c-base;
    }
  }
  .container.skewR {
    position: relative;
    z-index: 0;
    &:before {
      content: '';
      position: absolute;
      left: 0;
      top: -3vh;
      /*四角形を傾けます/
      transform: skewY(-3deg);
      transform-origin: top right;
      z-index: -1;
      width: 100%;
      height: calc(100% + 6vh);
      background: $c-base;
    }
  }
  */
}
section[id^=sec] .container.arcUp, section[id^=sec] .container.arcUp2 {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
  z-index: 0;
}
section[id^=sec] .container.arcUp:before, section[id^=sec] .container.arcUp2:before {
  content: "";
  background: #baeefa;
  display: block;
  position: absolute;
  top: 10vh;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 400vw;
  height: 600vw;
  border-radius: 100% 100% 0 0;
}
@media screen and (min-width: 1280px) {
  section[id^=sec] .container.arcUp:before, section[id^=sec] .container.arcUp2:before {
    width: 510vw;
  }
}
section[id^=sec] .container.arcUp .row, section[id^=sec] .container.arcUp2 .row {
  padding-bottom: 100px;
}
section[id^=sec] .container.arcUp .row .titleArc, section[id^=sec] .container.arcUp2 .row .titleArc {
  width: 100%;
  margin: 0 auto 2em;
  position: relative;
  top: 0;
  z-index: 9;
}
section[id^=sec] .container.arcUp2:before {
  background: #e9ffd7;
}
section[id^=sec] .container.cloudUp, section[id^=sec] .container.cloudUp2 {
  position: relative;
  z-index: 0;
}
section[id^=sec] .container.cloudUp:before, section[id^=sec] .container.cloudUp2:before {
  content: "";
  background: url(../images/bg_cloud_sp.png) center top/cover no-repeat;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 15vh;
  margin: 0 auto;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  section[id^=sec] .container.cloudUp:before, section[id^=sec] .container.cloudUp2:before {
    background: url(../images/bg_cloud_pc.png) center top/cover no-repeat;
    max-width: 1280px;
    top: -150px;
    height: 200px;
  }
}
section[id^=sec] .container.cloudUp2:before {
  content: "";
  background: url(../images/bg_cloud_sp.png) center bottom/cover no-repeat;
  top: -30px;
}
@media screen and (min-width: 1024px) {
  section[id^=sec] .container.cloudUp2:before {
    background: url(../images/bg_cloud_pc.png) center bottom/cover no-repeat;
    top: -2px;
  }
}

section[id^=sec] .container {
  padding: 0;
}
section[id^=sec] .container .row {
  padding: 30px 20px 30px;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row {
    padding: 30px 40px 60px;
  }
}
section[id^=sec] .container .row p, section[id^=sec] .container .row li, section[id^=sec] .container .row dt, section[id^=sec] .container .row dd {
  font-size: 1.4rem;
  line-height: 1.6;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row p, section[id^=sec] .container .row li, section[id^=sec] .container .row dt, section[id^=sec] .container .row dd {
    font-size: 16px;
  }
}
section[id^=sec] .container .row p + p {
  margin-top: 1.5em;
}
section[id^=sec] .container .row [class^=title] {
  width: calc(100% + 40px);
  padding: 15px 0;
  margin: 0 -20px 20px;
  position: relative;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row [class^=title] {
    width: calc(100% + 80px);
    margin: 0 -40px 2em;
  }
}
section[id^=sec] .container .row [class^=title] h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row [class^=title] h2 {
    font-size: 45px;
  }
}
section[id^=sec] .container .row [class^=title] h2 img {
  margin: 0 auto;
  max-width: 720px;
}
section[id^=sec] .container .row .lineBtn {
  width: 100%;
  max-width: 680px;
  position: relative;
  margin: 4em auto 10px;
}
section[id^=sec] .container .row .lineBtn a:active {
  filter: brightness(130%) saturate(150%);
  position: relative;
}
@media (any-hover: hover) {
  section[id^=sec] .container .row .lineBtn a:hover {
    filter: brightness(130%) saturate(150%);
    position: relative;
  }
}
section[id^=sec] .container .row .telBtn {
  width: 100%;
  max-width: 680px;
  display: block;
  width: 100%;
  margin: 0 auto;
}
section[id^=sec] .container .row .telBtn a {
  width: 100%;
}
section[id^=sec] .container .row .telBtn a:active {
  filter: saturate(150%) brightness(150%);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .telBtn a:hover {
    filter: saturate(200%);
  }
}

section#secTop {
  margin-top: 45px;
  margin-bottom: 0;
}
section#secTop .container .row {
  padding: 0;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row {
    padding-top: 3em;
  }
}
section#secTop .container .row #topImage {
  padding: 0;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
  position: relative;
}
section#secTop .container .row #topImage [class^=top] {
  position: relative;
  display: flex;
  flex-direction: column;
}
section#secTop .container .row #topImage [class^=top]:after {
  content: "";
  -webkit-clip-path: polygon(0 0, 50% 60%, 100% 0);
          clip-path: polygon(0 0, 50% 60%, 100% 0);
  position: absolute;
  margin: 0 auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 13vh; /* ビューポートの高さの10%を高さとする */
  z-index: 9;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage [class^=top]:after {
    height: 200px;
  }
}
section#secTop .container .row #topImage [class^=top] ul {
  border-bottom: solid 1px #fff;
  min-height: calc(460px + 5vw);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
@media screen and (min-width: 360px) and (max-width: 375px) {
  section#secTop .container .row #topImage [class^=top] ul {
    min-height: calc(380px + 15vw);
  }
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage [class^=top] ul {
    min-height: calc(720px + 12vw);
  }
}
@media screen and (min-width: 1024px) {
  section#secTop .container .row #topImage [class^=top] ul {
    min-height: 820px;
  }
}
@media screen and (min-width: 1280px) {
  section#secTop .container .row #topImage [class^=top] ul {
    min-height: 1020px;
  }
}
section#secTop .container .row #topImage [class^=top] ul li {
  position: relative;
}
section#secTop .container .row #topImage [class^=top] ul li a:active {
  filter: brightness(130%) saturate(150%);
  position: relative;
}
@media (any-hover: hover) {
  section#secTop .container .row #topImage [class^=top] ul li a:hover {
    filter: brightness(130%) saturate(150%);
    position: relative;
  }
}
section#secTop .container .row #topImage .top2 {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #83c72f;
  background-color: #83c72f;
  padding-top: 10vh;
  top: -13vh;
  z-index: 8;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage .top2 {
    padding-top: 200px;
    top: -200px;
  }
}
@media screen and (min-width: 1280px) {
  section#secTop .container .row #topImage .top2 {
    padding-top: 200px;
    top: -200px;
  }
}
section#secTop .container .row #topImage .top2:after {
  content: "";
  bottom: -13vh;
  z-index: 9;
  background-color: #83c72f;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage .top2:after {
    bottom: -200px;
  }
}
section#secTop .container .row #topImage .top2 ul {
  border-bottom: solid 1px #83c72f;
  min-height: calc(500px + 10vw);
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  section#secTop .container .row #topImage .top2 ul {
    padding: 0 100px;
  }
}
section#secTop .container .row #topImage .top2 ul li {
  margin-top: 1em;
}
section#secTop .container .row #topImage .top2 ul li > p {
  font-size: clamp(14px, 5vw, 20px);
  color: #fff;
  padding: 0 1em;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage .top2 ul li > p {
    text-align: center;
  }
}
section#secTop .container .row #topImage .top2 ul li .lineBtn {
  margin-top: 2em;
}
section#secTop .container .row #topImage .top2 ul li .lineBtn, section#secTop .container .row #topImage .top2 ul li .telBtn {
  position: relative;
  z-index: 10;
}
section#secTop .container .row #topImage .top3 {
  background-color: #e9ffd7;
  padding-top: 10vh;
  top: -13vh;
  z-index: 7;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage .top3 {
    padding-top: 200px;
    top: -200px;
  }
}
section#secTop .container .row #topImage .top3:after {
  content: "";
  bottom: -13vh;
  z-index: 9;
  background-color: #e9ffd7;
}
@media screen and (min-width: 768px) {
  section#secTop .container .row #topImage .top3:after {
    bottom: -200px;
  }
}
section#secTop .container .row #topImage .top3 ul {
  border-bottom: solid 1px #e9ffd7;
  min-height: calc(335px + 10vw);
  padding: 0 20px;
}
section#secTop .container .row #topImage .top3 ul li {
  margin-top: 1em;
}
section#secTop .container .row #topImage .topTxt {
  margin-top: -2em;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  section#secTop .container .row #topImage .topTxt {
    margin-top: -4em;
  }
}
section#secTop .container .row #topImage .topTxt:after {
  display: none;
}
section#secTop .container .row #topImage .topTxt p {
  line-height: 1.8;
  margin-bottom: 0.5em;
}
section#secTop .container .row #topImage .topTxt p span {
  color: #e50012;
  background: linear-gradient(transparent 95%, #e50012 0%);
}

section#secReason {
  margin-bottom: 0;
}
section#secReason .container .row {
  display: block;
  width: 100%;
}
section#secReason .container .row .reasonList {
  background-color: rgba(14, 148, 199, 0.7);
  border-radius: 1.5em;
  padding: 1.5em;
  margin: 0 auto 2em;
  position: relative;
}
@media screen and (min-width: 768px) {
  section#secReason .container .row .reasonList {
    max-width: 680px;
    margin: 20px auto;
  }
}
section#secReason .container .row .reasonList li {
  color: #fff;
  font-size: clamp(14px, 4vw, 20px);
  letter-spacing: 1px;
  line-height: 3;
  padding-left: 3em;
  text-indent: -1.5em;
}
@media screen and (min-width: 768px) {
  section#secReason .container .row .reasonList li {
    letter-spacing: 2px;
  }
}
section#secReason .container .row .reasonList li:before {
  position: absolute;
  content: "";
  margin: auto 0;
  display: grid;
  place-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 2px solid #fff;
}
section#secReason .container .row .reasonList li:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 6px;
  margin: auto 0;
  display: grid;
  place-items: center;
  top: -0.4em;
  bottom: 0;
  left: 0.2em;
  border-left: 2px solid #fff000;
  border-bottom: 2px solid #fff000;
  transform: rotate(-45deg);
}
section#secReason .container .row .reasonList li + li {
  border-top: dotted 2px #fff;
}

section#secTsuyomi {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  section#secTsuyomi .container .row {
    padding-bottom: 180px;
  }
}
section#secTsuyomi .container .row .tsuyomiCnt {
  margin: 0 auto;
  max-width: 800px;
}
section#secTsuyomi .container .row .tsuyomiCnt dl > div {
  background-color: #fff;
  border-radius: 1.5em;
  padding: 0.5em 1em 1em;
}
@media screen and (min-width: 768px) {
  section#secTsuyomi .container .row .tsuyomiCnt dl > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section#secTsuyomi .container .row .tsuyomiCnt dl > div h3 {
  border-bottom: dotted 2px #19b4ef;
  color: #19b4ef;
  font-size: clamp(16px, 7vw, 28px);
  line-height: 2em;
  height: 2em;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
section#secTsuyomi .container .row .tsuyomiCnt dl > div dt, section#secTsuyomi .container .row .tsuyomiCnt dl > div dd {
  width: 100%;
  padding: 3px 1em;
}
section#secTsuyomi .container .row .tsuyomiCnt dl > div dt {
  margin-bottom: 10px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  section#secTsuyomi .container .row .tsuyomiCnt dl > div dt {
    width: 25%;
  }
}
section#secTsuyomi .container .row .tsuyomiCnt dl > div dd {
  text-align: justify;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  section#secTsuyomi .container .row .tsuyomiCnt dl > div dd {
    width: 73%;
  }
}
section#secTsuyomi .container .row .tsuyomiCnt div + div {
  margin-top: 2em;
}

section#secStep {
  margin-top: -150px;
}
@media screen and (min-width: 768px) {
  section#secStep {
    margin-top: -210px;
  }
}
@media screen and (min-width: 768px) {
  section#secStep .container .row .stepCnt {
    max-width: 640px;
    margin: 0 auto;
  }
}
section#secStep .container .row .stepCnt dl > div {
  border: solid 3px #9bd653;
  border-radius: 2em;
  background-color: #fff;
  padding: 0 1em 1em;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section#secStep .container .row .stepCnt dl > div p {
  background-color: #9bd653;
  text-align: center;
  color: #fff000;
  font-size: clamp(14px, 5vw, 18px);
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.6em;
  height: 1.6em;
  width: calc(100% + 2em);
  margin: 0 -1em;
  transform: rotate(0);
}
section#secStep .container .row .stepCnt dl > div h3 {
  border-bottom: dotted 2px #19b4ef;
  color: #19b4ef;
  font-size: clamp(14px, 5vw, 24px);
  line-height: 2em;
  height: 2em;
  margin: 0 auto 15px;
  text-align: center;
  width: 100%;
}
section#secStep .container .row .stepCnt dl > div dt, section#secStep .container .row .stepCnt dl > div dd {
  padding: 3px 1em;
}
section#secStep .container .row .stepCnt dl > div dt {
  width: 60%;
  margin-bottom: 10px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  section#secStep .container .row .stepCnt dl > div dt {
    font-size: 18px;
    width: 75%;
  }
}
section#secStep .container .row .stepCnt dl > div dd {
  width: 40%;
  text-align: justify;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  section#secStep .container .row .stepCnt dl > div dd {
    width: 25%;
  }
}
section#secStep .container .row .stepCnt div + div {
  margin-top: 2em;
}

section#secNayami {
  margin-top: -50px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  section#secNayami .container .row article {
    padding-bottom: 200px;
  }
}
section#secNayami .container .row article ul {
  margin: 0 auto 2em;
}
@media screen and (min-width: 768px) {
  section#secNayami .container .row article ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section#secNayami .container .row article ul li {
  max-width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  section#secNayami .container .row article ul li {
    max-width: 320px;
    margin-top: 2em;
  }
}
section#secNayami .container .row article ul li + li {
  margin-top: 2em;
}

section#secChigai {
  z-index: 1;
  top: -50px;
}
@media screen and (min-width: 768px) {
  section#secChigai {
    top: -250px;
    margin-bottom: 0;
  }
}
section#secChigai .container {
  background-color: #e9ffd7;
}
section#secChigai .container .row {
  padding-top: 50px;
  padding-bottom: 150px;
}
section#secChigai .container .row article .title {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  section#secChigai .container .row article .title {
    margin-top: 320px;
  }
}
section#secChigai .container .row article p.chigaiTxt {
  margin-bottom: 2em;
  text-align: justify;
}
section#secChigai .container .row article p.chigaiTxt span {
  font-weight: bold;
}
section#secChigai .container .row article .chigaiTbl {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
section#secChigai .container .row article .chigaiTbl table {
  background-color: #fff;
}
section#secChigai .container .row article .chigaiTbl table th, section#secChigai .container .row article .chigaiTbl table td {
  border: solid 2px #9bd653;
  border-collapse: collapse;
}
section#secChigai .container .row article .chigaiTbl table th {
  background-color: #d7efba;
}
section#secChigai .container .row article .chigaiTbl table td {
  letter-spacing: 0.02em;
  line-height: 1.3;
}
section#secChigai .container .row article .chigaiTbl table td em {
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: bold;
}
section#secChigai .container .row article .chigaiTbl table tr:nth-child(1) > th:nth-child(2) {
  color: #fff000;
  background-color: #9bd653;
  border-left: none;
}
section#secChigai .container .row article .chigaiTbl table tr:nth-child(2) > td:nth-child(2) span, section#secChigai .container .row article .chigaiTbl table tr:nth-child(2) > td:nth-child(2) em {
  color: #e50012;
  font-weight: bold;
}
section#secChigai .container .row article .chigaiTbl table tr:nth-child(2) td {
  text-align: center;
}
section#secChigai .container .row article .chigaiTbl table tr:nth-child(2) > td {
  border-left: none;
}
section#secChigai .container .row article .chigaiTbl table tr:nth-child(n+1) > th:nth-child(1) {
  border-left: none;
  border-right: none;
}
@media screen and (min-width: 768px) {
  section#secChigai .container .row article .chigaiTbl table tr:nth-child(n+1) > th:nth-child(1) {
    border-left: solid 2px #9bd653;
    border-right: solid 2px #9bd653;
  }
}
section#secChigai .container .row article .chigaiTbl table tr:nth-child(n+1) > td:nth-child(2) {
  background-color: rgba(255, 240, 0, 0.3);
  border-left: none;
}

section#secVoice .container {
  margin-top: -250px;
}
@media screen and (min-width: 768px) {
  section#secVoice .container {
    margin-top: -450px;
  }
}
section#secVoice .container .row article .title {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  section#secVoice .container .row article .title {
    margin-top: 200px;
  }
}
section#secVoice .container .row article .title + p {
  text-align: center;
  font-weight: bold;
  font-size: clamp(16px, 5.5vw, 28px);
  margin-top: -0.5em;
  margin-bottom: 2em;
}
section#secVoice .container .row article ul li {
  background-color: #fff;
  border-radius: 1em;
  filter: drop-shadow(0.2em 0.2em 0.2em #ccd);
  padding: 1.2em;
}
section#secVoice .container .row article ul li dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section#secVoice .container .row article ul li dl dt {
  width: 60%;
  color: #ff5000;
  font-weight: bold;
  font-size: clamp14px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  section#secVoice .container .row article ul li dl dt {
    font-size: clamp(16px, 6vw, 20px);
    padding: 0 0.5em;
  }
}
section#secVoice .container .row article ul li dl dd {
  width: 40%;
  text-align: right;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  section#secVoice .container .row article ul li dl dd {
    font-size: clamp(14px, 5vw, 16px);
    padding: 0 0.5em;
  }
}
section#secVoice .container .row article ul li dl p {
  border-top: 1px solid #19b4ef;
  text-align: justify;
  padding-top: 10px;
  margin-top: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  section#secVoice .container .row article ul li dl p {
    font-size: 16px;
    padding: 1em 0.5em;
  }
}
section#secVoice .container .row article ul li + li {
  margin-top: 2em;
}

section#secFaq {
  margin-top: -50px;
}
section#secFaq .container .row article.faq .title + p {
  text-align: center;
  font-weight: bold;
  font-size: clamp(16px, 5.5vw, 28px);
  margin-top: -0.5em;
  margin-bottom: 2em;
}
section#secFaq .container .row article.faq .qa {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(25, 180, 239, 0.5);
}
section#secFaq .container .row article.faq .qa summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  cursor: pointer;
}
section#secFaq .container .row article.faq .qa summary::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
section#secFaq .container .row article.faq .qa summary img {
  display: inline-block;
  height: 3em;
  width: 3em;
  position: relative;
  left: -1.9em;
}
section#secFaq .container .row article.faq .qa summary span {
  width: 80%;
  display: inline-block;
  color: #9bd653;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section#secFaq .container .row article.faq .qa summary span {
    width: 88%;
    font-size: clamp(16px, 5.5vw, 20px);
  }
}
section#secFaq .container .row article.faq .qa p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}
section#secFaq .container .row article.faq .qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}
section#secFaq .container .row article.faq .qa[open] summary::after {
  transform: rotate(225deg);
}
section#secFaq .container .row article.faq .qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
  font-size: clamp(14px, 4vw, 16px);
}
section#secFaq .container .row article.faq .qa[open] p {
  transform: rotate(0.03deg);
  opacity: 1;
}
section#secFaq .container .row article.faq .qa p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}

section#secPlan {
  margin-bottom: 0;
}
section#secPlan .container {
  background-color: #e9ffd7;
}
section#secPlan .container .row {
  padding-top: 0;
}
section#secPlan .container .row .title {
  padding-top: 0;
}
section#secPlan .container .row .title h2 img {
  max-width: 800px;
}
section#secPlan .container .row .planCnt {
  background-color: #fff;
  border-radius: 1.5em;
  margin: -80px auto 4em;
  padding: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  section#secPlan .container .row .planCnt {
    margin-top: -160px;
    max-width: 600px;
  }
}
section#secPlan .container .row .planCnt p {
  font-size: clamp(14px, 5vw, 18px);
  padding: 0.5em;
  margin-bottom: 1em;
}
section#secPlan .container .row .planCnt picture + picture {
  margin-top: 2em;
}
section#secPlan .container .row .payCnt {
  background-color: #83c72f;
  border-radius: 1.5em;
  margin: 0 auto 2em;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  section#secPlan .container .row .payCnt {
    max-width: 600px;
  }
}
section#secPlan .container .row .payCnt h3 {
  color: #fff;
  font-size: clamp(16px, 7vw, 24px);
  text-align: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}
section#secPlan .container .row .payCnt p {
  font-weight: bold;
  margin: 0 auto 10px;
}
section#secPlan .container .row .payCnt p img {
  width: 70%;
  margin: 0 auto;
}
section#secPlan .container .row .payCnt p.ttl {
  background-color: rgba(255, 255, 255, 0.1843137255);
  font-size: clamp(14px, 6vw, 20px);
  color: #fff000;
  margin: 0 auto 10px;
  padding: 0.1em 0.1em 0.1em 0.5em;
  width: 100%;
}
section#secPlan .container .row .payCnt p + p.ttl {
  margin-top: 1.5em;
}

section#secLinesoudan {
  margin-bottom: 0;
}
section#secLinesoudan .container .row {
  padding-top: 0;
}
section#secLinesoudan .container .row .linesoudanCnt {
  width: calc(100% + 40px);
  margin: 0 -20px -2em;
}
@media screen and (min-width: 768px) {
  section#secLinesoudan .container .row .linesoudanCnt {
    width: calc(100% + 80px);
    margin: 0 -40px -30px;
  }
}
@media screen and (min-width: 1024px) {
  section#secLinesoudan .container .row .linesoudanCnt {
    width: 100%;
    max-width: 720px;
    margin: 0 auto -30px;
  }
}
section#secLinesoudan .container .row .linesoudanCnt picture.mb {
  margin-bottom: 3em;
}

section#secTokusho .container, #secTerms .container {
  padding: 4em 0;
  position: relative;
}
section#secTokusho .container .row article .title, #secTerms .container .row article .title {
  border-bottom: solid 1px #e5e5e5;
  width: 100%;
  margin: 50px auto 1.5em;
}
section#secTokusho .container .row article .title h2, #secTerms .container .row article .title h2 {
  color: #001c74;
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
  height: 3.3em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  section#secTokusho .container .row article .title h2, #secTerms .container .row article .title h2 {
    font-size: clamp(24px, 12vw, 36px);
  }
}
section#secTokusho .container .row article dl, #secTerms .container .row article dl {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  section#secTokusho .container .row article dl, #secTerms .container .row article dl {
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  section#secTokusho .container .row article dl div, #secTerms .container .row article dl div {
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section#secTokusho .container .row article dl div dt, #secTerms .container .row article dl div dt {
  font-weight: bold;
  background-color: #e5e5e5;
  padding: 0.5em;
  display: block;
}
@media screen and (min-width: 1024px) {
  section#secTokusho .container .row article dl div dt, #secTerms .container .row article dl div dt {
    background-color: transparent;
    width: 35%;
  }
}
section#secTokusho .container .row article dl div dd, #secTerms .container .row article dl div dd {
  font-weight: normal;
  padding: 0.5em;
  display: block;
}
@media screen and (min-width: 1024px) {
  section#secTokusho .container .row article dl div dd, #secTerms .container .row article dl div dd {
    width: 63%;
  }
}
section#secTokusho .container .row article dl div + div, #secTerms .container .row article dl div + div {
  margin-top: 1.5em;
}
@media screen and (min-width: 1024px) {
  section#secTokusho .container .row article dl div:nth-child(odd), #secTerms .container .row article dl div:nth-child(odd) {
    background-color: #e5e5e5;
  }
}/*# sourceMappingURL=style.css.map */