@charset "UTF-8";
/* ***********************************
*
*    Ire's CSS Reset & Base
*
* *********************************** */
/* Reset margin, padding, border
* *********************************** */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
* *********************************** */
html {
  font-size: 62.5%;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

* {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* Layout
* *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
* *********************************** */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

/* ***********************************
*
*    共通レイアウト
*
* *********************************** */
.l-justify-left {
  display: flex;
  justify-content: flex-start;
}

.l-justify-right {
  display: flex;
  justify-content: flex-end;
}

.l-justify-center {
  display: flex;
  justify-content: center;
}

.l-align-center {
  align-items: center;
}

.l-justify-between {
  display: flex;
  justify-content: space-between;
}

.l-footer {
  width: 100%;
}

/* フォント
* *********************************** */
.font-fot {
  font-weight: 500;
  font-style: normal;
  font-family: fot-udmarugo-large-pr6n, sans-serif;
}

.font-aotf {
  font-weight: 600;
  font-style: normal;
  font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
}

/* リスト
* *********************************** */
ul {
  margin: 0;
}

.list-check {
  position: relative;
}
.list-check li {
  margin-left: 1.5em;
  position: relative;
}
.list-check li::before {
  position: absolute;
  left: -1.5em;
  top: 6px;
  display: inline-block;
  width: 19px;
  height: 14px;
  background: url(../images/icon-check.png) no-repeat;
  content: "";
}

/* 文字色・背景色
* *********************************** */
.txt-pink {
  color: #e75b6b;
}

.txt-white {
  color: #fff;
}

.bg-main {
  background: #0068b7;
}

.bg-sub {
  background: #f8f8f8;
}

.txtbg-yellow-harf {
  background: linear-gradient(transparent 60%, #fff07b 60%);
}

.txtbg-yellow {
  background: #fff07b;
}

.txtbg-pink {
  background: linear-gradient(transparent 60%, #ffa9b3 60%);
}

.item-line {
  position: relative;
}

/* ローディング
* *********************************** */
/* ローディングアニメーション */
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 120px;
  height: 120px;
}

/* Loading テキスト */
.spinner span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
}

/* 1番目のアニメーションの場合 */
.spinner.type1 {
  border-radius: 50%;
  border-width: 8px;
  border-style: solid;
  border-color: #0168b7 rgba(255, 255, 255, 0.12) rgba(255, 255, 255, 0.12);
  /* ローディング要素のアニメーションを指定 */
  animation: spinner1_1 1.5s infinite linear forwards;
}

.spinner.type1 span {
  /* Loading テキストのアニメーションを指定 */
  animation: spinner_loading_text 1.5s infinite linear forwards reverse;
}

/* ローディング要素のアニメーション内容 */
@keyframes spinner1_1 {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Loading テキストのアニメーション内容 */
@keyframes spinner_loading_text {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transition: all 1.5s ease;
  color: #0168b7;
  /* ローディングアニメーションカラー */
  background-color: #fff;
  /* 背景カラー */
}

/* ローディング表示を消すための定義 */
.loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* googlemap
* *********************************** */
.google_map {
  position: relative;
  padding-top: 0;
  width: 100%;
  height: auto;
}
.google_map .map {
  width: 100%;
  height: 450px;
  margin-bottom: 24px;
}

.google_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
.google_map .map {
  height: 250px;

  }
  }


@media screen and (max-width: 767px) {
  body {
    color: #383838;
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  /* レイアウト
  * *********************************** */
  .lsm-header {
    max-width: 100%;
  }
  .l-main {
    padding: 32px 8px 48px;
    max-width: 100%;
  }
  .l-mainTxt {
    text-align: left;
    margin-bottom: 40px;
  }
  .l-content02-img {
    width: 100%;
  }
  .l-content03-img {
    width: 33.3%;
  }
  .l-content02-txt,
  .l-content03-txt {
    margin-bottom: 20px;
    width: 100%;
  }
  .l-content04-img,
  .l-content04-txt,
  .l-content05-img,
  .l-content05-txt {
    width: 100%;
  }
  /* 見出し
  * *********************************** */
  h2 {
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-size: 2.4rem;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    margin-bottom: 16px;
  }
  h2.h2-style-white::after {
    display: inline-block;
    width: 90%;
    height: 38px;
    margin-top: 8px;
    background: url("../images/img-line-white.svg") no-repeat;
    background-size: contain;
    content: "";
    vertical-align: middle;
  }
  h2.h2-style-black::after {
    display: inline-block;
    width: 90%;
    height: 38px;
    background: url("../images/img-line-black.svg") no-repeat;
    background-size: contain;
    content: "";
    vertical-align: middle;
  }
  h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-size: 1.8rem;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  }
  h3.h3-style::after {
    position: absolute;
    bottom: -0.5em;
    left: 0%;
    display: inline-block;
    width: 1.5em;
    height: 4px;
    border-radius: 2px;
    background-color: #383838;
    content: "";
  }
  h3.h3-style.h3-style__none::after {
    content: none;
  }
  .h1-style-serch {
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-size: 2.4rem;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    line-height: 180px;
    padding: 10px;
    color: #fff;
  }
  /* モジュール
  * *********************************** */
  .box {
    margin: 0 0 3rem 0;
    padding: 3rem 2rem;
    border-radius: 5px;
    background: #fff;
    position: relative;
  }
  /* イラスト表示
  * *********************************** */
  .item-arrow-vertical {
    position: absolute;
    bottom: -45px;
    left: 50%;
    width: 7vh;
    z-index: 100;
    display: inline-block;
  }
  .item-soroban {
    position: relative;
  }
  .item-soroban::before {
    position: absolute;
    top: -39px;
    left: 33%;
    z-index: 100;
    display: inline-block;
    width: 6em;
    height: 6em;
    background: url(../images/item-soroban.png) no-repeat;
    background-size: contain;
    content: "";
    transform: translateX(-50%);
  }
  .item-book {
    position: absolute;
    top: -8%;
    right: 0;
    z-index: 100;
    display: inline-block;
    width: 6em;
    height: 6em;
  }
  .item-earth {
    position: absolute;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 5em;
    height: 5em;
  }
  /* content01
  * *********************************** */
  .content01 {
    position: relative;
  }
  .img-hero {
    background: url("../images/bg-hero-sp.png") no-repeat center bottom;
    background-size: cover;
    width: 100%;
    position: relative;
    padding: 20px 0;
  }
  .item-hero {
    width: 85%;
    margin: 0 auto;
  }
  .item-hero02 img {
    width: 80%;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
  }
  .text-item-hero03 {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-shadow: #000 3px 3px 5px;
  }
  .area-img-01 {
    margin-bottom: 16px;
  }
  .l-content01-txt {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
  .content01-txt {
    display: inline-block;
    text-align: left;
    font-size: 1.8rem;
  }
  .ttl-large {
    font-size: 3rem;
  }
  .area-question dt {
    margin-bottom: 0.5em;
    font-size: 2.5rem;
  }
  .area-question dd:first-letter {
    color: #e75b6b;
    font-size: 2.5rem;
  }
  /* content02
  * *********************************** */
  .area-img-02 {
    margin-bottom: 20px;
  }
  .txt-content02-catch {
    text-align: center;
    font-size: 2.4rem;
  }
  /* content03
  * *********************************** */
  .content03 {
    background: url(../images/bg-03.png) no-repeat center center;
    background-size: cover;
  }
  .movie {
    margin-bottom: 32px;
  }
  .area-img-03 {
    margin-bottom: 20px;
  }
  /* content04
  * *********************************** */
  .l-content04-box {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 0;
    margin: auto;
  }
  .l-content04-box .l-content04-txt {
    order: 2;
    width: 95%;
    z-index: 100;
    position: relative;
    top: -50px;
  }
  .l-content04-box .l-content04-img {
    order: 1;
  }
  .l-content04-box .l-content04-img img {
    width: 100%;
  }
  .bg-04-block {
    position: relative;
    margin: 1em 0;
    padding: 4em 2em 2em;
    border-radius: 20px;
    background: url("../images/bg-04-box.png") no-repeat;
    background-size: cover;
  }
  .pennant01::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 8em;
    height: 8em;
    background: url(../images/item-pennant01.png) no-repeat;
    background-size: contain;
    content: "";
  }
  .pennant02::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 8em;
    height: 8em;
    background: url(../images/item-pennant02.png) no-repeat;
    background-size: contain;
    content: "";
  }
  .pennant03::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 8em;
    height: 8em;
    background: url(../images/item-pennant03.png) no-repeat;
    background-size: contain;
    content: "";
  }
  /* content05
  * *********************************** */
  .content05 {
    width: 100%;
    background: url("../images/bg-05.png") no-repeat;
    background-size: cover;
  }
  .l-content05-box {
    padding-bottom: 1em;
    margin-bottom: 48px;
    border-bottom: 5px dotted #bcbcbc;
  }
  .l-content05-box:last-child {
    border: none;
  }
  .l-content05-img {
    text-align: center;
    margin-bottom: 1em;
  }
  .l-content05-img img {
    margin-bottom: 1em;
  }
  .ttl-roundbox {
    background: #ffdf7c;
    border-radius: 30px;
    padding: 0.5em 2em;
    margin-bottom: 1em;
  }
  .ttl-comment {
    position: relative;
    margin-bottom: 0.5em;
    padding-left: 2em;
    font-weight: bold;
  }
  .ttl-comment::before {
    position: absolute;
    left: 0;
    display: inline-block;
    margin: auto 0;
    width: 24px;
    height: 21px;
    background: url(../images/item-comment.png) no-repeat;
    background-size: contain;
    content: "";
  }
  .item-baroon {
    position: relative;
  }
  .item-baroon::before {
    position: absolute;
    bottom: 89%;
    left: -26px;
    display: inline-block;
    width: 5em;
    height: 100px;
    background: url(../images/item-baloon.png) no-repeat;
    background-size: contain;
    content: "";
  }
  .ttl-success {
    font-size: 3.3rem;
    text-align: center;
    font-weight: bold;
    color: #d5043c;
  }
  /* content06
  * *********************************** */
  /* content07
  * *********************************** */
  .l-content07-box {
    width: 90%;
    margin: 0 auto 48px;
  }
  .l-content07-box:last-child {
    margin-bottom: 0;
  }
  .l-number {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
  }
  .l-number img {
    width: 121px;
    height: 83px;
  }
  .l-content07-card {
    padding: 2em;
    background: #fff;
    border-top: 5px solid #ffdf7c;
    border-bottom: 5px solid #ffdf7c;
    height: auto;
    text-align: center;
  }
  .l-content07-card img {
    margin-bottom: 1em;
  }
  .ttl-content07-cell {
    margin-bottom: 1em;
  }
  .txt-content07-cell {
    text-align: left;
  }
  /* content08
  * *********************************** */
  .l-btn-lower {
    display: flex;
    justify-content: center;
  }
  .l-btn-lower li {
    margin-bottom: 24px;
  }
  .tbl {
    width: 100%;
  }
  .tbl th,
  .tbl td {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5em 0;
  }
  .tbl th {
    background: #f7f7f7;
  }
  /* footer
  * *********************************** */
  .box-footer {
    max-width: 100%;
    padding: 32px 8px 48px;
    margin: 0 auto;
    background: url("../images/bg-footer.png") no-repeat center center;
  }
  .page-btn {
    text-align: right;
    color: #fff;
    margin: 0 auto;
    font-size: 0.8em;
  }
  .list-footer {
    margin: 16px auto;
    text-align: center;
    display: block;
  }
  .list-footer-txt {
    color: #fff;
    margin: 48px auto;
  }
  .list-footer-txt th {
    text-align: left;
    vertical-align: top;
    width: 5em;
  }
  .list-footer-txt th::after {
    content: ":";
  }
  /* copy
  * *********************************** */
  .copy {
    margin: 3rem 1rem 0;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
  }
  .btn-linktop {
    margin: 1em;
    text-align: right;
  }
  .btn-linktop a {
    text-decoration: none;
    font-size: 1.4rem;
  }
  /* 2ページ目
  * *********************************** */
  .box-header {
    max-width: 100%;
    height: 200px;
    margin: 0 auto;
    background: url(../images/bg-05lp.jpg) no-repeat center right 26%;
    background-size: cover;
  }
  .box-header-upper {
    max-width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
  }
}
.l-tournament {
  max-width: 100%;
  margin: 0 auto;
}

.l-tournament iframe {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.ttl-sub-tournament {
  text-align: center;
}

@media screen and (min-width: 767px) {
  .l-tournament {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 64px;
  }
  .l-tournament iframe {
    height: 300px;
  }
}
@media screen and (min-width: 767px) {
  body {
    color: #383838;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .sp_only {
    display: none;
  }
  .pc_only {
    display: block;
  }
  /* レイアウト
    * *********************************** */
  .l-header {
    max-width: 100%;
  }
  .l-main {
    padding: 48px 8px;
    max-width: 100%;
  }
  .l-mainTxt {
    text-align: center;
    margin-bottom: 40px;
  }
  .l-sub {
    margin: 0 auto;
    max-width: 816px;
  }
  .l-glid1of3 {
    width: 33.3%;
  }
  .l-glid2of3 {
    width: 66.6%;
  }
  .btn-style a:hover {
    opacity: 0.6;
    transition: color 0.3s;
  }
  /* 見出し
  * *********************************** */
  h2 {
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-size: 5.09rem;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    margin-bottom: 16px;
    line-height: 1.3;
  }
  h2.h2-style-white::after {
    display: inline-block;
    width: 90%;
    height: 38px;
    margin-top: 16px;
    background: url("../images/img-line-white.svg") no-repeat center;
    background-size: contain;
    content: "";
  }
  h2.h2-style-black::after {
    display: inline-block;
    width: 90%;
    height: 38px;
    margin-top: 16px;
    background: url("../images/img-line-black.svg") no-repeat center;
    background-size: contain;
    content: "";
    vertical-align: middle;
  }
  h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
    text-align: center;
    font-weight: 600;
    font-style: normal;
    font-size: 3.59rem;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
  }
  h3.h3-style::after {
    position: absolute;
    bottom: -0.1em;
    left: 0;
    display: inline-block;
    width: 1.5em;
    height: 4px;
    border-radius: 2px;
    background-color: #383838;
    content: "";
  }
  h3.h3-style.h3-style__none::after {
    content: none;
  }
  .h1-style-serch {
    text-align: center;
    font-size: 5.09rem;
    font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
    margin-bottom: 16px;
    line-height: 345px;
    padding: 10px 50px;
    color: #fff;
  }
  .ttl-sub {
    font-size: 2.54rem;
    margin-bottom: 16px;
  }
  /* モジュール
  * *********************************** */
  .box {
    padding: 6rem;
    background: #fff;
    margin: 0 auto 48px;
    border-radius: 12px;
    max-width: 980px;
    position: relative;
  }
  /* イラスト表示
  * *********************************** */
  .item-arrow-vertical {
    position: absolute;
    bottom: -58px;
    left: 50%;
    z-index: 100;
    display: inline-block;
  }
  .item-soroban {
    position: relative;
  }
  .item-soroban::before {
    position: absolute;
    top: -61px;
    left: 38%;
    z-index: 100;
    display: inline-block;
    width: 172px;
    height: 112px;
    background: url(../images/item-soroban.png) no-repeat;
    background-size: contain;
    content: "";
    transform: translateX(-50%);
  }
  .item-book {
    position: absolute;
    top: -34px;
    right: -29px;
    z-index: 100;
    display: inline-block;
    width: 224px;
    height: 107px;
  }
  .item-earth {
    position: absolute;
    left: -70px;
    z-index: 100;
    display: inline-block;
    width: 157px;
    height: 174px;
  }
  /* content01
  * *********************************** */
  .content01 {
    position: relative;
  }
  .img-hero {
    background: url("../images/bg-hero.jpg") no-repeat right bottom;
    background-size: cover;
    height: 97vh;
    width: 100%;
    position: relative;
  }
  .item-hero {
    position: absolute;
    left: 23%;
    top: 32%;
    transform: translate(-23%, -32%);
    width: 100%;
    max-width: 85%;
  }
  .item-hero01 img {
    width: 60vh;
  }
  .item-hero02 {
    margin: 20px 0;
    display: flex;
  }
  .item-hero02 img {
    width: 50%;
  }
  .item-hero03 {
    width: 86vh;
  }
  .text-item-hero03 {
    font-size: 4vh;
    line-height: 1.5;
    color: #fff;
    text-shadow: #000 3px 3px 5px;
  }
  .area-img-01 {
    text-align: center;
    margin-bottom: 48px;
  }
  .area-img-01-2 {
    text-align: center;
    max-width: 758px;
    margin: 0 auto 16px;
  }
  .area-img-01-2 img {
    width: 80%;
  }
  .l-content01-txt {
    text-align: center;
    width: 80%;
    margin: 0 auto 104px;
  }
  .content01-txt {
    display: inline-block;
    text-align: left;
    font-size: 1.8rem;
  }
  .ttl-large {
    font-size: 3rem;
  }
  .area-question dt {
    margin-bottom: 0.5em;
    font-size: 3.59rem;
  }
  .area-question dd:first-letter {
    color: #e75b6b;
    font-size: 2.5rem;
  }
  /* content02
  * *********************************** */
  .area-img-02 {
    margin-bottom: 20px;
  }
  .txt-content02-catch {
    text-align: center;
    font-size: 5.09rem;
  }
  .l-content02-img {
    width: 228px;
  }
  /* content03
  * *********************************** */
  .content03 {
    background: url(../images/bg-03.png) no-repeat center center;
    background-size: cover;
  }
  .l-content03-img,
  .l-content03-txt {
    margin: 0 20px 20px;
    display: flex;
    align-items: center;
  }
  .movie {
    margin-bottom: 32px;
  }
  .area-img-03 {
    margin-bottom: 20px;
  }
  /* content04
  * *********************************** */
  .content04 {
    margin-bottom: 48px;
  }
  .l-content04-box {
    display: flex;
    justify-content: center;
    position: relative;
    top: 80px;
    margin-bottom: 64px;
  }
  .l-content04-box .l-content04-txt {
    width: 520px;
    z-index: 100;
    position: relative;
    top: -80px;
    right: -40px;
  }
  .l-content04-box .l-content04-img {
    position: relative;
    left: -40px;
  }
  .l-content04-box .l-content04-img img {
    width: 100%;
  }
  .bg-04-block {
    position: relative;
    margin: 1em 0;
    padding: 4em 2em 2em;
    border-radius: 20px;
    background: url("../images/bg-04-box.png") no-repeat;
    background-size: cover;
  }
  .pennant01::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 8em;
    height: 8em;
    background: url("../images/item-pennant01.png") no-repeat;
    background-size: contain;
    content: "";
  }
  .pennant02::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 8em;
    height: 8em;
    background: url("../images/item-pennant02.png") no-repeat;
    background-size: contain;
    content: "";
  }
  .pennant03::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: inline-block;
    width: 8em;
    height: 8em;
    background: url("../images/item-pennant03.png") no-repeat;
    background-size: contain;
    content: "";
  }
  /* content05
  * *********************************** */
  .content05 {
    width: 100%;
    background: url("../images/bg-05.png") no-repeat;
    background-size: cover;
  }
  .l-content05-box {
    padding-bottom: 1em;
    margin-bottom: 48px;
    border-bottom: 5px dotted #bcbcbc;
    display: flex;
    justify-content: center;
  }
  .l-content05-box:last-child {
    border: none;
  }
  .l-content05-img {
    text-align: center;
    margin-bottom: 1em;
  }
  .l-content05-img img {
    margin-bottom: 1em;
    width: 225px;
  }
  .l-content05-txt {
    width: 568px;
    margin-left: 32px;
    display: flex;
    align-items: center;
  }
  .ttl-roundbox {
    background: #ffdf7c;
    border-radius: 30px;
    padding: 0.5em 2em;
    margin-bottom: 1em;
  }
  .ttl-comment {
    position: relative;
    padding-left: 2em;
    font-weight: bold;
  }
  .ttl-comment::before {
    position: absolute;
    left: 0;
    display: inline-block;
    margin: auto 0;
    width: 1.5em;
    height: 1.5em;
    background: url("../images/item-comment.png") no-repeat;
    background-size: contain;
    content: "";
  }
  .item-baroon {
    position: relative;
  }
  .item-baroon::before {
    position: absolute;
    bottom: 88px;
    left: -120px;
    display: inline-block;
    width: 400px;
    height: 289px;
    background: url("../images/item-baloon.png") no-repeat;
    background-size: contain;
    content: "";
  }
  .ttl-success {
    font-size: 5.09rem;
    text-align: center;
    font-weight: bold;
    color: #d5043c;
    line-height: 1.3;
  }
  .txt-small {
    font-size: 2.54rem;
  }
  /* content06
  * *********************************** */
  /* content07
  * *********************************** */
  .l-point-box {
    max-width: 980px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  .l-content07-box {
    width: 32.3%;
    margin: 1%;
  }
  .l-content07-box:last-child {
    margin-bottom: 0;
  }
  .l-number {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 8px;
  }
  .l-number img {
    width: 130px;
  }
  .l-content07-card {
    min-height: 490px;
    padding: 2em;
    background: #fff;
    border-top: 5px solid #ffdf7c;
    border-bottom: 5px solid #ffdf7c;
    height: auto;
    text-align: center;
  }
  .l-content07-card img {
    margin-bottom: 1em;
  }
  .ttl-content07-cell {
    margin-bottom: 1em;
  }
  .txt-content07-cell {
    text-align: left;
  }
  /* content08
  * *********************************** */
  .l-btn-lower {
    display: flex;
    justify-content: center;
  }
  .l-btn-lower ul {
    display: flex;
    justify-content: space-between;
  }
  .l-btn-lower li {
    margin: 32px 24px 48px;
  }
  .tbl {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
  }
  .tbl th {
    text-align: left;
    padding: 0.5em 1em;
    border: 1px solid #ccc;
    background: #f3f3f3;
    border-collapse: collapse;
    width: 30%;
  }
  .tbl td {
    text-align: left;
    padding: 0.5em 1em;
    border: 1px solid #ccc;
    border-collapse: collapse;
  }
  /* footer
  * *********************************** */
  .box-footer {
    max-width: 100%;
    padding: 32px 8px 48px;
    margin: 0 auto;
    background: url("../images/bg-footer.png") center center;
  }
  .page-btn {
    text-align: right;
    color: #fff;
    max-width: 980px;
    margin: 0 auto;
  }
  .list-footer {
    margin: 16px auto;
    text-align: center;
    display: block;
  }
  .list-footer-txt {
    color: #fff;
    margin: 24px auto;
  }
  .list-footer-txt th {
    text-align: left;
    vertical-align: top;
  }
  .list-footer-txt th::after {
    content: ":";
  }
  /* copy
  * *********************************** */
  .copy {
    margin: 8rem 1rem 0;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
  }
  .btn-linktop {
    margin: 1em;
    text-align: right;
  }
  .btn-linktop a {
    text-decoration: none;
    font-size: 1.4rem;
  }
  /* 2ページ目
  * *********************************** */
  .box-header {
    max-width: 100%;
    height: 365px;
    margin: 0 auto;
    background: url("../images/bg-05lp.jpg") no-repeat center center;
    background-size: cover;
  }
  .box-header-upper {
    max-width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
  }
}
@media screen and (min-width: 1000px) {
  .item-hero {
    max-width: 65%;
  }
  .item-hero02 img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .swal2-select {
    font-size: 16px !important;
  }
}