/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  font-size: 1.6rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.6vw;
  }
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}
article {
  padding: calc(40px + 66px) 0 30px;
}
@media screen and (max-width: 767px) {
  article {
    padding: calc(20px + 33px) 0 30px;
  }
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
}
table th {
  border: #999 1px solid;
  background: rgba(217, 0, 0, 0.5);
  text-align: center;
  padding: 3px 5px;
}
table td {
  border: #999 1px solid;
  text-align: center;
  padding: 3px 5px;
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #2354AD;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th {
    display: block;
  }
  table.tableResponsive tr {
    display: block;
    margin-top: 10px;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 2rem;
  list-style: disc;
}
.listDisc_01 li::marker {
  color: #ddd;
}
.listDisc_01 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 {
  padding: 0 0 0 2rem;
}
.listDisc_02 li:not(:last-child) {
  margin: 0 0 5px;
}
.listDisc_02 li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
  width: 1.8rem;
  margin: 0 0 0 -1.8rem;
  text-align: center;
}
.listDisc_03 {
  padding: 0 0 0 1.5rem;
}
.listDisc_03 li:not(:last-child) {
  margin: 0 0 0;
}
.listDisc_03 li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #2354AD;
  margin-right: -8px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: "(" counter(number) ") ";
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 > div {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.dlList_01 > div dt {
  min-width: 0;
}
.dlList_01 > div dd {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .dlList_01 > div {
    display: block;
  }
  .dlList_01 > div dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 > div dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 > div dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_01.dlBorder > div {
  border-bottom: #cfcfcf 1px solid;
}
.dlList_02 > div {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.dlList_02 > div dt {
  min-width: 0;
}
.dlList_02 > div dd {
  flex: 1;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
@media screen and (max-width: 1023px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
.pageTop {
  position: fixed;
  bottom: 0;
  left: 0;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	見出し
+++++++++++++++++++++++++++++++++++++++++++ */
hgroup {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  flex-direction: column;
  align-items: center;
  margin: 0 0 60px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  hgroup {
    margin: 0 0 40px;
  }
}
hgroup h2 {
  font-size: 4.8rem;
  font-weight: 500;
}
hgroup h2::after {
  content: "";
  width: 60px;
  height: 4px;
  display: block;
  background: linear-gradient(to right, #00eaff, #b494f4, #ff8eea);
  border-radius: 10px;
  margin: 13px auto 0;
}
@media screen and (max-width: 767px) {
  hgroup h2 {
    font-size: 8.6vw;
  }
  hgroup h2::after {
    bottom: -15px;
  }
}
hgroup p {
  color: #F56648;
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  order: -1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  hgroup p {
    font-size: 4.4vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	main visual
+++++++++++++++++++++++++++++++++++++++++++ */
.mv {
  margin-top: 9%;
  padding-left: 7.7%;
  background: url(../img/mv_bk.png) no-repeat center / cover;
  background-position: -77px -46px;
  min-height: 700px;
}
@media screen and (max-width: 1400px) {
  .mv {
    min-height: 800px;
  }
}
@media screen and (max-width: 1023px) {
  .mv {
    min-height: 450px;
    padding-left: 2%;
    background-position: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 96vw;
    padding-top: 16vw;
    background-size: 223vw;
    background-position: -67vw 7vw;
  }
}
.mv .typing-sub,
.mv .typing-main,
.mv .typing-date,
.mv .typing-place {
  visibility: hidden;
}
.mv .mvText {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  margin-top: 4.3%;
}
.mv .mvText .typing-animation::after {
  content: "";
  border-right: 2px solid #000000;
  margin-left: 2px;
  animation: flashing 1s linear infinite;
  opacity: 0;
}
@keyframes flashing {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.mv .mvText h1 {
  line-height: 1.1;
  background: linear-gradient(90deg, #4f82ee, #e62341);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.mv .mvText h1 .typing-sub {
  font-size: 3.8rem;
  margin-right: -0.5%;
  display: inline-block;
  margin-bottom: 15px;
}
@media screen and (max-width: 1023px) {
  .mv .mvText h1 .typing-sub {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 767px) {
  .mv .mvText h1 .typing-sub {
    font-size: 4.7vw;
    margin-bottom: 0.3em;
    margin-left: 5px;
  }
}
.mv .mvText h1 .typing-main {
  font-size: 10rem;
}
@media screen and (max-width: 1023px) {
  .mv .mvText h1 .typing-main {
    font-size: 8.2vw;
  }
}
@media screen and (max-width: 767px) {
  .mv .mvText h1 .typing-main {
    font-size: 15vw;
    line-height: 1;
  }
}
.mv .mvText::after {
  position: absolute;
  content: "";
  background: url(../img/mv_img1.png) no-repeat center / cover;
  width: 20%;
  max-width: 245px;
  height: auto;
  aspect-ratio: 245 / 197;
  right: 39px;
  top: -24px;
}
@media screen and (max-width: 1220px) {
  .mv .mvText::after {
    width: 130px;
    top: -76px;
    aspect-ratio: 130 / 104;
  }
}
@media screen and (max-width: 767px) {
  .mv .mvText::after {
    right: 32vw;
    top: -19vw;
    width: 20%;
  }
}
.mv .mvText::before {
  position: absolute;
  content: "";
  background: url(../img/mv_img3.png) no-repeat center / cover;
  width: 28%;
  max-width: 359px;
  height: auto;
  aspect-ratio: 359 / 307;
  right: 51px;
  top: 187px;
}
@media screen and (max-width: 1220px) {
  .mv .mvText::before {
    right: 19px;
    top: 151px;
  }
}
@media screen and (max-width: 767px) {
  .mv .mvText::before {
    right: 1vw;
    top: -27vw;
  }
}
.mv .flex {
  gap: 17px;
  align-items: center;
  margin: 23px 0 0 -9px;
}
@media screen and (max-width: 767px) {
  .mv .flex {
    margin: 0;
    gap: 15px;
  }
}
.mv .flex .flexText p {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0;
  min-height: 6.5rem;
}
@media screen and (max-width: 1023px) {
  .mv .flex .flexText p {
    font-size: 2.6vw;
    min-height: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .mv .flex .flexText p {
    font-size: 3.9vw;
    min-height: 7vw;
  }
}
.mv .flex .flexText .typing-date span {
  font-size: 6.3rem;
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  .mv .flex .flexText .typing-date span {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .mv .flex .flexText .typing-date span {
    font-size: 8.8vw;
  }
}
.mv .flex .flexText .typing-date sub {
  vertical-align: baseline;
  font-size: 4.5rem;
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  .mv .flex .flexText .typing-date sub {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .mv .flex .flexText .typing-date sub {
    font-size: 4vw;
  }
}
.mv .flex .flexImg {
  opacity: 0;
  transform: translateY(30px);
}
@media screen and (max-width: 767px) {
  .mv .flex .flexImg {
    width: 25%;
  }
}
.mv .flex .fadeUp {
  animation: fadeUpAnime 0.7s ease-out forwards;
}
@keyframes fadeUpAnime {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1455px) {
  .mv {
    min-height: 600px;
  }
  .mv h1 .typing-sub {
    font-size: 2rem !important;
    margin-right: -0.5%;
    display: inline-block;
    margin-bottom: 15px;
  }
  .mv h1 .typing-main {
    font-size: 8.2rem !important;
  }
  .mv .flex .flexText p {
    font-size: 2rem !important;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0;
    min-height: 2rem !important;
  }
  .mv .flex .flexText .typing-date span {
    font-size: 4.8rem !important;
    font-weight: 800;
  }
  .mv .flex .flexText .typing-date sub {
    vertical-align: baseline;
    font-size: 3rem !important;
    font-weight: 800;
  }
  .mv .mvText::after {
    width: 13%!important;
  }
  .mv .mvText::before {
    width: 25% !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	contents
+++++++++++++++++++++++++++++++++++++++++++ */
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 アスペクト比に対応する */
  height: 0;
  margin: 0 0 25px;
}
.youtube video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(175, 175, 175, 0.3));
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(175, 175, 175, 0.3));
}
.messageArea {
  margin-top: -66px;
  padding: calc(40px + 66px) 0 120px;
}
@media screen and (max-width: 767px) {
  .messageArea {
    padding-bottom: 70px;
  }
}
.messageArea h3 {
  margin: 0 0 10px;
  color: #2354AD;
  font-weight: bold;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .messageArea h3 {
    font-size: 5.6vw;
  }
}
.messageArea .flex {
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .messageArea .flex {
    gap: 20px;
  }
}
.messageArea .flex .flexText {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .messageArea .flex .flexText {
    margin: 0 0 20px;
    font-size: 3.6vw;
    order: 1;
  }
}
.messageArea figure img {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .messageArea figure img {
    width: 60%;
  }
}
.messageArea figure figcaption {
  line-height: 1.5;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .messageArea figure figcaption {
    font-size: 4vw;
  }
}
.messageArea .highlightsArea {
  margin-top: 60px;
  border: 3px solid #ff6e4f;
  border-radius: 12px;
  background: #fff8f6;
  padding: 34px 31px 46px 27px;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea {
    padding: 30px 20px 40px 20px;
  }
}
.messageArea .highlightsArea .flex {
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 1023px) {
  .messageArea .highlightsArea .flex {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .flex {
    text-align: center;
  }
}
.messageArea .highlightsArea .flex img {
  width: 320px;
  height: 166px;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .flex img {
    padding-bottom: 10px;
    width: 95%;
  }
}
.messageArea .highlightsArea .flex p {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .flex p {
    text-align: left;
    font-size: 3.6vw;
  }
}
.messageArea .highlightsArea .accordion_container {
  max-width: 900px;
  margin: 0 auto;
}
.messageArea .highlightsArea .accordion_title {
  background-color: #ff6e4f;
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px 7px 34px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .accordion_title {
    font-size: 3.5vw;
    padding: 7px 46px 7px 34px;
  }
}
.messageArea .highlightsArea .accordion_title:hover {
  opacity: 0.9;
}
.messageArea .highlightsArea .accordion_title.open .icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.messageArea .highlightsArea .accordion_title.open .icon_wrap .icon:before {
  content: none;
}
.messageArea .highlightsArea .accordion_title.open .icon_wrap .icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.messageArea .highlightsArea .accordion_title .br {
  display: none;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .accordion_title .br {
    display: block;
  }
}
.messageArea .highlightsArea .icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 55%;
  right: 3%;
  width: 35px;
  height: 35px;
  margin-top: -20px;
  box-sizing: border-box;
  background-color: #fff;
  /* 背景色を白に設定 */
  border-radius: 50%;
  /* アイコンを丸くする */
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .icon_wrap {
    top: calc(30% + 2vh);
    right: calc(10px + 2vw);
    width: calc(7px + 3.5vw);
    height: calc(7px + 3.5vw);
  }
}
.messageArea .highlightsArea .icon {
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.messageArea .highlightsArea .icon:before,
.messageArea .highlightsArea .icon:after {
  display: flex;
  content: "";
  background-color: #ff6e4f;
  border-radius: 10px;
  width: 15px;
  height: 3px;
  position: absolute;
  top: 5.5px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.messageArea .highlightsArea .icon:before {
  width: 3px;
  /* 縦線の太さを3pxに調整 */
  height: 15px;
  /* 縦線の長さを14pxに設定 */
  top: 0;
  left: 5.5px;
  /* 縦線を中央に配置 */
}
.messageArea .highlightsArea .icon:after {
  width: 15px;
  height: 3px;
}
.messageArea .highlightsArea .accordion_inner {
  display: none;
  padding: 20px 0 0 0;
}
.messageArea .highlightsArea .accordion_inner .ac_inner_wrapper .text .paragraph {
  display: block;
  margin-bottom: 1.5em;
  /* 適切な余白を設定 */
  font-size: 1.6rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .messageArea .highlightsArea .accordion_inner .ac_inner_wrapper .text .paragraph {
    font-size: 3.2vw;
  }
}
.messageArea2 {
  padding: calc(20px + 40px) 0 50px;
}
.overviewArea {
  padding-bottom: 63px;
}
.overviewArea .flex {
  gap: 85px;
}
@media screen and (max-width: 767px) {
  .overviewArea .flex {
    gap: 15px;
  }
}
.overviewArea .flex .flexItem .flexText h3 {
  font-size: 2.5rem;
  display: inline-block;
  min-width: 115px;
  max-width: max-content;
  width: 100%;
  background: #3d7def;
  color: #fff;
  border-radius: 10px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .overviewArea .flex .flexItem .flexText h3 {
    font-size: 5vw;
    min-width: auto;
    padding: 0 3vw;
  }
}
.overviewArea .flex .flexItem .flexText h4 {
  font-size: 2.5rem;
  color: #030303;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .overviewArea .flex .flexItem .flexText h4 {
    font-size: 5vw;
  }
}
.overviewArea .flex .flexItem .flexText span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .overviewArea .flex .flexItem .flexText span {
    font-size: 2.8vw;
  }
}
.overviewArea .flex .flexItem:nth-child(1) {
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .overviewArea .flex .flexItem:nth-child(1) {
    flex: 1;
  }
}
.eventArea {
  padding-top: calc(40px + 66px);
}
.eventArea .flex {
  background: url(../img/event_bk.png) no-repeat center / cover;
  height: 285px;
  padding: 30px;
  border-radius: 5px;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}
.eventArea .flex::before {
  position: absolute;
  content: "";
  width: 450px;
  height: 200px;
  background: url(../img/event_bk.webp) no-repeat center / cover;
  right: 0;
  top: 0;
  z-index: 0;
}
.eventArea .flex:nth-of-type(3)::before {
  left: 0;
  right: auto;
}
.eventArea .flex:nth-of-type(4)::before {
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
}
.eventArea .flex:nth-of-type(5)::before {
  left: 0;
  right: auto;
  width: 500px;
  height: 285px;
}
.eventArea .flex:nth-of-type(7)::before {
  left: 0;
  right: auto;
  bottom: 0;
  top: auto;
  width: 500px;
  height: 189px;
}
.eventArea .flex:nth-of-type(2),
.eventArea .flex:nth-of-type(4),
.eventArea .flex:nth-of-type(6) {
  flex-direction: row-reverse;
}
.eventArea .flex .flexImg {
  position: relative;
  z-index: 1;
}
.eventArea .flex .flexImg img {
  width: 330px;
  height: 229px;
  object-fit: cover;
  border-radius: 5px;
}
.eventArea .flex .flexText {
  background: #fff;
  border-radius: 5px;
  padding: 50px 40px 40px 40px;
  max-height: 229px;
  height: 229px;
  position: relative;
  z-index: 1;
}
.eventArea .flex .flexText h3 {
  font-size: 3rem;
  border-left: 5px solid #659afc;
  line-height: 1.2;
  padding-left: 10px;
  margin-bottom: 20px;
}
.introductionArea {
  margin-top: -66px;
  padding: calc(40px + 66px) 0 68px;
  background: url("../img/bg_introduction.webp") no-repeat center center / cover;
}
@media screen and (max-width: 767px) {
  .introductionArea {
    padding-top: calc(20px + 66px);
  }
}
.introductionArea .box {
  padding: 0 30px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .introductionArea .box {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .introductionArea .box {
    margin: 0;
  }
}
.introductionArea section {
  padding: 42px 0;
}
.introductionArea section:not(:last-child) {
  border-bottom: #ebebeb 1px solid;
}
.introductionArea .flex {
  gap: 0 30px;
}
@media screen and (max-width: 1023px) {
  .introductionArea .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1023px) {
  .introductionArea .flex .flexText {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .introductionArea .flex .flexText {
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 1023px) {
  .introductionArea .flex .flexImg {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .introductionArea .flex .flexImg {
    width: 55%;
    margin: 0 auto;
    margin-bottom: 15px;
  }
}
.introductionArea .time {
  margin: 0 0 25px;
  font-size: 3.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .introductionArea .time {
    font-size: 7.6vw;
  }
}
.introductionArea .time img {
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .introductionArea .time img {
    max-width: 46px;
    width: 10vw;
  }
}
.introductionArea h3 {
  margin: 0 0 25px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .introductionArea h3 {
    font-size: 5.6vw;
    margin: 0;
  }
}
.introductionArea .name {
  margin: 0 0 15px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .introductionArea .name {
    order: 0;
  }
}
@media screen and (max-width: 767px) {
  .introductionArea .name {
    font-size: 4vw;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .introductionArea .text {
    order: 1;
  }
}
.introductionArea .flex-text {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.introductionArea .flexText button {
  cursor: pointer;
  background-color: #00bb00;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  padding: 9px 21px 6px 20px;
  text-align: center;
  border: none;
  border-radius: 4px;
}
.introductionArea .flexText button:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .introductionArea .flexText button {
    font-size: 3.6vw;
  }
}
.introductionArea .fa-brands {
  margin-right: 10px;
}
.visitorsArea hgroup {
  margin-bottom: 30px;
}
.visitorsArea .targetBox h3 {
  font-size: 3rem;
  border-left: 5px solid #659afc;
  line-height: 1;
  padding-left: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox h3 {
    font-size: 6vw;
  }
}
.visitorsArea .targetBox .flex {
  margin-bottom: 80px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox .flex {
    flex-wrap: wrap;
    margin-bottom: 11vw;
  }
}
.visitorsArea .targetBox .flex .flexItem {
  width: 232px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  background: #f56648;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox .flex .flexItem {
    width: calc(85vw / 2);
  }
}
.visitorsArea .targetBox .flex .flexItem h4 {
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox .flex .flexItem h4 {
    font-size: 4.2vw;
  }
}
.visitorsArea .targetBox .flex .flexItem h4 span {
  font-size: 4rem;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox .flex .flexItem h4 span {
    font-size: 8vw;
  }
}
.visitorsArea .targetBox .flex .flexItem h4 sub,
.visitorsArea .targetBox .flex .flexItem h4 small {
  position: relative;
  top: -10px;
}
.visitorsArea .targetBox .flex .flexItem:nth-of-type(2) {
  background: #0070c0;
}
.visitorsArea .targetBox .flex .flexItem:nth-of-type(3) {
  background: #1e9170;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox .flex .flexItem:nth-of-type(3) {
    padding-top: 10px;
  }
}
.visitorsArea .targetBox .flex .flexItem:nth-of-type(4) {
  background: #fecb11;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox .flex .flexItem:nth-of-type(4) {
    padding-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .visitorsArea .targetBox figure figcaption p {
    text-align: left;
  }
}
.visitorsArea .targetBox p + .flex {
  justify-content: flex-start;
}
.priceArea {
  padding-top: calc(20px + 30px);
}
.priceArea table {
  width: 100%;
}
.priceArea table th {
  background: #0070c0;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .priceArea table th {
    font-size: 3.6vw;
    padding: 1vw 0;
  }
}
.priceArea table td {
  border: solid 1px #ddd;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .priceArea table td {
    padding: 1.3vw;
  }
}
.priceArea .table2 th {
  padding: 10px;
}
.priceArea .table2 th:nth-of-type(1) {
  text-align: left;
  background: transparent;
  border: none;
}
@media screen and (max-width: 767px) {
  .priceArea .table2 th {
    padding: 3vw 1vw;
    width: 23vw;
  }
}
.priceArea .table2 td {
  padding: 16px;
  border: none;
}
@media screen and (max-width: 767px) {
  .priceArea .table2 td {
    padding: 2vw;
  }
}
.priceArea .table2 td .red {
  font-size: 1.3rem;
  margin-left: 5px;
  color: #d30a38;
}
@media screen and (max-width: 767px) {
  .priceArea .table2 td .red {
    font-size: 3vw;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .priceArea .table2 td span {
    writing-mode: horizontal-tb;
  }
}
.priceArea .table2 .ttl {
  text-align: left;
  border-right: none;
  border-left: none;
  font-weight: bold;
  max-width: 80px;
  background: #f5faff;
}
@media screen and (max-width: 767px) {
  .priceArea .table2 .ttl {
    line-height: 1;
    text-align: center;
    font-size: 3vw;
    max-width: none;
    width: 1vw;
    height: 17vw;
  }
}
.priceArea .table2 .ttl2 {
  border-left: none;
  border-right: none;
  font-size: 1.5rem;
  max-width: 100px;
}
@media screen and (max-width: 767px) {
  .priceArea .table2 .ttl2 {
    font-size: 3vw;
    writing-mode: horizontal-tb;
    text-align: left;
    line-height: 1.2;
    width: 16vw!important;
  }
}
@media screen and (max-width: 767px) {
  .priceArea .table2 .ttl3 {
    writing-mode: horizontal-tb;
    font-size: 2.6vw;
    padding: 1vw;
  }
}
.priceArea .table2 tr {
  border-bottom: solid 2px #a6cbe5;
}
@media screen and (max-width: 767px) {
  .priceArea .table2 .vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    line-height: 1;
  }
}
.priceArea .attention {
  margin: 0 auto;
  margin-top: 15px;
}
.priceArea .attention p {
  margin-bottom: 0;
}
.priceArea .attention figure img {
  border: 1px solid #b9b9b9;
}
.facilityArea {
  padding-bottom: 50px;
}
.facilityArea hgroup {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .facilityArea .box {
    padding: 0;
  }
}
.facilityArea .box h3 {
  font-size: 3rem;
  border-left: 5px solid #659afc;
  line-height: 1;
  padding-left: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .facilityArea .box h3 {
    font-size: 6vw;
  }
}
.facilityArea .box .flex {
  justify-content: flex-start;
}
.marketplaceArea {
  margin-top: -66px;
  padding: calc(60px + 66px) 0 0px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .marketplaceArea {
    padding: calc(20px + 66px) 0 0px;
  }
}
.marketplaceArea .inner {
  position: relative;
}
.marketplaceArea .flex {
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .marketplaceArea .flex {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .marketplaceArea .flex .flexImg {
    margin: 0 0 20px;
  }
}
.marketplaceArea .flex .flexImg img {
  width: 440px;
  height: 294px;
}
@media screen and (max-width: 1023px) {
  .marketplaceArea .flex .flexImg img {
    width: 75%;
    height: auto;
  }
}
.marketplaceArea .flex .flexText {
  margin-top: 30px;
}
.marketplaceArea section {
  margin: 0 0 60px;
}
.marketplaceArea h3 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #2354AD;
}
@media screen and (max-width: 767px) {
  .marketplaceArea h3 {
    font-size: 5.6vw;
  }
}
.marketplaceArea strong {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .marketplaceArea strong {
    font-size: 4vw;
  }
}
.prezen_box .prezen_subtext {
  margin: -3rem 0 3.8rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_subtext {
    margin: 0 0 3rem 0;
  }
}
.prezen_box .prezen_area {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 22px;
  border-top: 1px dashed #b8b8b8;
  border-bottom: 1px dashed #b8b8b8;
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_area {
    flex-wrap: wrap-reverse;
    padding: 20px 0px;
  }
}
.prezen_box .prezen_img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_img {
    width: 100%;
    text-align: center;
  }
}
.prezen_box .prezen_img img {
  width: 171px;
  height: 226px;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_img img {
    width: 35%;
    height: auto;
  }
}
.prezen_box .prezen_text_box {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_text_box {
    width: 100%;
    margin: 2rem 0;
    text-align: center;
  }
}
.prezen_box .prezen_text_box h4 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_text_box h4 {
    font-size: 4vw;
  }
}
.prezen_box .prezen_text_box p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .prezen_box .prezen_text_box p {
    font-size: 3.2vw;
    display: block;
    text-align: left;
  }
}
.prezen_box .prezen_span {
  font-weight: normal;
  padding-right: 5px;
}
.prezen_box .prezen_bottom {
  margin-bottom: 0;
}
.prezen_box .text_top {
  margin-top: 1rem;
  letter-spacing: 1.1px;
}
.prezen_box .flexImg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .prezen_box .flexImg img {
    width: 60%;
    text-align: center;
  }
}
.exhibitionArea h3 {
  text-align: center;
  color: #000;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .exhibitionArea h3 {
    font-size: 9.6vw;
  }
}
.exhibitionArea h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0 auto 50px;
  background: #F56648;
  border-radius: 4px;
}
.exhibitionArea .exhibition_p {
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  font-weight: bold;
  text-align: center;
  color: #f56648;
}
@media screen and (max-width: 767px) {
  .exhibitionArea .exhibition_p {
    font-size: 4.4vw;
    margin: 20px 0 5px;
  }
}
.exhibitionArea .exhibition_color {
  color: #e94709;
}
.exhibitionArea .platinum,
.exhibitionArea .gold,
.exhibitionArea .silver,
.exhibitionArea .bronze {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .exhibitionArea .platinum,
  .exhibitionArea .gold,
  .exhibitionArea .silver,
  .exhibitionArea .bronze {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
  }
}
.exhibitionArea .platinum a,
.exhibitionArea .gold a,
.exhibitionArea .silver a,
.exhibitionArea .bronze a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.exhibitionArea .platinum a:hover,
.exhibitionArea .gold a:hover,
.exhibitionArea .silver a:hover,
.exhibitionArea .bronze a:hover {
  box-shadow: 0 0 14px rgba(94, 192, 229, 0.5);
  transition: all 0.3s;
}
.exhibitionArea .platinum a:hover img,
.exhibitionArea .gold a:hover img,
.exhibitionArea .silver a:hover img,
.exhibitionArea .bronze a:hover img {
  opacity: 1;
}
.exhibitionArea .platinum a {
  width: 244px;
  height: 244px;
}
@media screen and (max-width: 767px) {
  .exhibitionArea .platinum a {
    width: calc(50% - 10px);
    height: 35vw;
  }
}
.exhibitionArea .gold a {
  width: 190px;
  height: 190px;
}
@media screen and (max-width: 767px) {
  .exhibitionArea .gold a {
    width: calc(33% - 10px);
    height: 28vw;
  }
}
.exhibitionArea .gold a .img {
  max-width: 90%;
}
.exhibitionArea .silver,
.exhibitionArea .bronze {
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .exhibitionArea .silver,
  .exhibitionArea .bronze {
    gap: 10px;
  }
}
.exhibitionArea .silver a,
.exhibitionArea .bronze a {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .exhibitionArea .silver a,
  .exhibitionArea .bronze a {
    width: calc(20% - 10px);
    height: 18vw;
  }
}
.iframe {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .iframe {
    padding: 35px 35px;
  }
}
@media screen and (max-width: 767px) {
  .iframe {
    padding: 25px 15px;
  }
}
.iframe .flex {
  gap: 70px;
}
@media screen and (max-width: 1023px) {
  .iframe .flex {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .iframe .flex {
    display: block;
  }
}
.iframe .flex .flex2 {
  padding: 100px;
}
@media screen and (max-width: 767px) {
  .iframe .flex .flex2 {
    padding: 60px;
  }
}
.iframe .flex .flex2 h2 {
  text-align: center;
  font-size: 6rem;
  color: #adadad;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .iframe .flex .flex2 h2 {
    font-size: 8vw;
    letter-spacing: 0;
  }
}
.iframe .flex .flex2 p {
  text-align: center;
  font-size: 2rem;
  color: #adadad;
  letter-spacing: 1px;
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  .iframe .flex .flex2 p {
    font-size: 4vw;
    letter-spacing: 0;
  }
}
.iframe .flex .flexText {
  margin: 0 0 20px;
}
.iframe .flex .flexText h4 {
  margin: 30px 0 15px;
  padding: 0 0 0 15px;
  line-height: 1.2;
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .iframe .flex .flexText h4 {
    font-size: 4.4vw;
  }
}
.iframe .flex .flexText h4::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #F56648;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.iframe .flex .flexText h4:nth-of-type(1) {
  margin-top: 0;
}
.iframe .flex .flexText a {
  word-break: break-all;
}
.iframe .flex .flexImg .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 240px;
  margin: 0 auto 17px;
  padding: 25px;
  border: #707070 1px solid;
}
@media screen and (max-width: 1023px) {
  .iframe .flex .flexImg .logo {
    width: 360px;
  }
}
@media screen and (max-width: 767px) {
  .iframe .flex .flexImg .logo {
    width: 75%;
    height: 35vw;
  }
}
.iframe .flex .flexImg .logo img {
  max-height: 100%;
}
.iframe .flex .flexImg .movie {
  margin-top: 20px;
}
.iframe .flex .flexImg .movie video {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .iframe .flex .flexImg .movie video {
    width: 100%;
  }
}
.iframe .flex .flexImg .youtube {
  margin-top: 20px;
}
.iframe .flex .flexImg .youtube .shadow {
  filter: drop-shadow(0 0 10px rgba(175, 175, 175, 0.3));
}
.iframe .flex .flexImg .label {
  max-width: max-content;
  display: block;
  margin: 0 auto;
  padding: 3px 14px 1px;
  color: #F56648;
  border: #F56648 1px solid;
}
.iframe .mfp-close {
  font-size: 3.2rem;
  opacity: 1;
  right: 5px;
  top: 5px;
}
@media screen and (max-width: 1023px) {
  .iframe .mfp-close {
    right: 0;
    top: 0;
  }
}
.iframe .mfp-close:hover {
  opacity: 0.7;
}
.programArea {
  margin-top: -66px;
  padding: calc(40px + 66px) 0 68px;
  background: url("../img/bg_program.png") repeat-y top center / 100%;
}
@media screen and (max-width: 767px) {
  .programArea {
    padding-top: calc(15px + 66px);
  }
}
.programArea .box {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 46px 38px;
}
@media screen and (max-width: 767px) {
  .programArea .box {
    padding: 0 20px;
  }
}
.programArea .box ul li {
  border-bottom: dashed 1px #b8b8b8;
  display: flex;
  padding: 19px 10px;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .programArea .box ul li {
    flex-direction: column;
    padding: 19px 0;
    align-items: flex-start;
    gap: 5px;
  }
}
.programArea .box ul li .top_row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 18px;
}
.programArea .box ul li .time_1 {
  background: #f56648;
  color: #fff;
  font-size: 2.2rem;
  padding: 2px 20px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .programArea .box ul li .time_1 {
    font-size: 4.4vw;
  }
}
.programArea .box ul li .venue {
  color: #fff;
  font-size: 2.2rem;
  padding: 2px 20px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .programArea .box ul li .venue {
    font-size: 4.4vw;
  }
}
.programArea .box ul li .venue.color_1 {
  background: #49a6b5;
}
.programArea .box ul li .venue.color_2 {
  background: #9a9116;
}
.programArea .box ul li .venue.color_3 {
  background: #2856a7;
  max-width: 250px;
}
.programArea .box ul li .text {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .programArea .box ul li .text {
    font-size: 4vw;
  }
}
.programArea .box ul li .time_2 {
  color: #4a9cee;
  font-size: 1.8rem;
  border: solid 1px #4a9cee;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .programArea .box ul li .time_2 {
    font-size: 3.6vw;
  }
}
.programArea .box .ai_fs {
  align-items: flex-start;
}
.programArea .box .ai_fs .time_2 {
  color: #4a9cee;
  font-size: 1.8rem;
  border: solid 1px #4a9cee;
  padding: 4px 10px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .programArea .box .ai_fs .time_2 {
    font-size: 3.6vw;
  }
}
.programArea .program_box {
  background-color: rgba(255, 255, 255, 0.86);
}
@media screen and (max-width: 767px) {
  .programArea .program_box {
    padding: 23px 20px;
  }
}
#privacy {
  padding: 50px 0 66px;
  background: #e8f6f6;
}
#privacy h2 {
  margin: 0 0 50px;
  text-align: center;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #privacy h2 {
    margin-bottom: 20px;
    font-size: 6.8vw;
  }
}
#privacy h3 {
  margin: 0 0 20px;
  padding: 0 0 20px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: #ccc 1px solid;
}
@media screen and (max-width: 767px) {
  #privacy h3 {
    font-size: 5.6vw;
  }
}
#privacy .box {
  padding: 32px;
}
@media screen and (max-width: 767px) {
  #privacy .box {
    padding: 16px;
  }
}
.contactArea {
  margin-top: -66px;
  padding: calc(25px + 66px) 0 35px;
  background: #e8f6f6;
}
@media screen and (max-width: 767px) {
  .contactArea {
    padding-top: calc(0px + 66px);
  }
}
.contactArea .center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactArea .columnItem {
  max-width: 520px;
  padding: 35px 10px;
  text-align: center;
  margin: 0 auto;
}
.contactArea .columnItem .text {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  line-height: 1.5;
  font-size: 2rem;
}
.contactArea .columnItem .text.ai_fs {
  align-items: flex-start;
}
.contactArea .columnItem .text.ai_c {
  align-items: center;
}
.contactArea .columnItem .text.ai_fe {
  align-items: flex-end;
}
.contactArea .columnItem .text.jc_fs {
  justify-content: flex-start;
}
.contactArea .columnItem .text.jc_c {
  justify-content: center;
}
.contactArea .columnItem .text .flexText {
  flex: 1;
}
.contactArea .columnItem .text .flexImg {
  text-align: center;
}
.contactArea .columnItem .text .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .contactArea .columnItem .text.flexRight {
    order: none;
  }
  .contactArea .columnItem .text.sp_flexColumn {
    flex-direction: column;
  }
  .contactArea .columnItem .text.sp_block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .contactArea .columnItem .text {
    font-size: 5vw;
  }
}
.contactArea .columnItem .btn:disabled {
  background: #969696;
}
.contactArea .columnItem .btn:disabled:hover {
  opacity: 1;
  cursor: auto;
}
.contactArea .columnItem .btn {
  border: none !important;
  cursor: pointer;
}
.contactArea .columnItem .btn:hover {
  opacity: 0.8;
}
.contactArea .columnItem .btn2 {
  background-color: #cfcfcf;
  pointer-events: none;
  cursor: not-allowed;
}
.contactArea .columnItem .btn2.enabled {
  background-color: #2354ad;
  /* ボタンが有効なときの色 */
  pointer-events: auto;
  cursor: pointer;
}
.contactArea .btn_box {
  text-align: center;
  margin-top: 30px;
}
.contactArea .btn_box .btn_text {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contactArea .btn_box .btn_text {
    font-size: 5vw;
  }
}
.contactArea .btn_box .btn_2 {
  font-weight: bold;
}
.sponsorArea {
  padding: 0 0 70px;
}
.sponsorArea .sponsor_text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sponsorArea .sponsor_text {
    font-size: 3.2vw;
  }
}
.sponsorArea .sponsor-box {
  padding: 20px 0;
  border-bottom: solid 1px #eee;
  border-top: solid 1px #eee;
}
.sponsorArea .sponsor-box > p {
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  font-weight: bold;
  text-align: center;
  color: #f56648;
}
.sponsorArea .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .sponsorArea .flex.type_1 img {
    max-width: 100%;
  }
  .sponsorArea .flex.type_2 {
    gap: 25px;
  }
  .sponsorArea .flex.type_3 {
    gap: 1%;
  }
  .sponsorArea .flex.type_3 img {
    width: 32%;
  }
}
.sponsorArea hgroup {
  margin-bottom: 20px;
  margin-top: 70px;
}
.sponsorArea .sponsor_back {
  background: #c9c9c9;
  width: 330px;
  height: 82px;
}
.sponsorArea .sponsor_back2 {
  background: #c9c9c9;
  width: 230px;
  height: 65px;
}
.accessArea {
  padding: 40px 0;
  background: #e8f6f6;
}
.accessArea .box {
  padding: 25px;
}
@media screen and (max-width: 767px) {
  .accessArea .box {
    padding: 10px;
  }
}
.accessArea address {
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .accessArea iframe {
    width: 100%;
  }
}
.comingsoon {
  padding-bottom: 50px;
}
.comingsoon h4 {
  text-align: center;
  font-size: 7rem;
  color: #ccc;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .comingsoon h4 {
    font-size: 10vw;
  }
}
.comingsoon p {
  text-align: center;
  color: #ccc;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .comingsoon p {
    font-size: 3.6vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	form
+++++++++++++++++++++++++++++++++++++++++++ */
.formArea {
  max-width: 920px;
  margin: 0 auto;
}
form h2 {
  margin: 0 0 10px;
  color: #2354AD;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  form h2 {
    font-size: 5.6vw;
  }
}
form em {
  display: inline-block;
  width: 50px;
  padding: 4px 0;
  margin: 0 0 0 12px;
  line-height: 1;
  background: #f33;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
form em.notReq {
  background: #0183b5;
}
form .dlList_01 {
  margin: 0 0 50px;
  border-top: #cfcfcf 1px solid;
}
form .dlList_01 div {
  padding: 25px 0;
}
form .dlList_01 div dt {
  width: 40%;
  max-width: 388px;
  padding: 12px 43px 0 0;
  text-align: right;
  color: #000;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  form .dlList_01 div dt {
    width: 100%;
    max-width: none;
    text-align: left;
    padding: 0 0 2px;
  }
}
input {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
input[type="text"],
input[type="search"],
input[type="tel"],
input[type="email"] {
  height: 50px;
  padding: 5px 10px;
  border: #ccc 1px solid;
  max-width: 100%;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="submit"] {
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}
input[type="button"] {
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}
textarea {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 5px 10px;
  border: #ccc 1px solid;
}
select {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 5px 10px;
  border: #ccc 1px solid;
}
label {
  display: inline-block;
  cursor: pointer;
}
button {
  -webkit-appearance: none;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
::-webkit-input-placeholder {
  color: #aaa;
}
::-moz-placeholder {
  color: #aaa;
}
.inputL {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .inputL {
    width: 100%;
  }
}
.inputM {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .inputM {
    width: 80%;
  }
}
.inputS {
  width: 100px;
}
.inputSS {
  width: 60px;
}
.help {
  display: inline-block;
  color: #666;
  font-size: 92.8%;
  vertical-align: middle;
}
.submit {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .submit .floatR,
  .submit .floatL {
    display: block;
    float: none;
    margin: 0 auto 30px;
  }
}
.completeArea h2 {
  font-size: 2.8rem;
  color: #2354ad;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .completeArea h2 {
    font-size: 5.6vw;
  }
}
.completeArea .box {
  background: #f6f6f6;
  margin: 15px 0 40px 0;
}
.completeArea .box .listDisc_01 li::marker {
  color: #2354ad;
}
.completeArea .btn {
  margin-bottom: 30px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 27px;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}
header.ai_fs {
  align-items: flex-start;
}
header.ai_c {
  align-items: center;
}
header.ai_fe {
  align-items: flex-end;
}
header.jc_fs {
  justify-content: flex-start;
}
header.jc_c {
  justify-content: center;
}
header .flexText {
  flex: 1;
}
header .flexImg {
  text-align: center;
}
header .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  header.flexRight {
    order: none;
  }
  header.sp_flexColumn {
    flex-direction: column;
  }
  header.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  header {
    justify-content: flex-start;
    padding: 0 70px 0 15px;
  }
}
header .logo {
  margin: 0 auto 0 0;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
#gNav {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  #gNav {
    width: 28rem;
    min-width: 0;
  }
}
#gNav ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: flex-end;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  #gNav ul {
    gap: 0 15px;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  #gNav ul {
    gap: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 1023px) {
  #gNav ul li {
    width: 100%;
    border-bottom: #CCC 1px solid;
  }
}
#gNav ul li a {
  gap: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  color: #000;
  text-decoration: none;
  font-size: 1.7rem;
}
#gNav ul li a.ai_fs {
  align-items: flex-start;
}
#gNav ul li a.ai_c {
  align-items: center;
}
#gNav ul li a.ai_fe {
  align-items: flex-end;
}
#gNav ul li a.jc_fs {
  justify-content: flex-start;
}
#gNav ul li a.jc_c {
  justify-content: center;
}
#gNav ul li a .flexText {
  flex: 1;
}
#gNav ul li a .flexImg {
  text-align: center;
}
#gNav ul li a .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  #gNav ul li a.flexRight {
    order: none;
  }
  #gNav ul li a.sp_flexColumn {
    flex-direction: column;
  }
  #gNav ul li a.sp_block {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  #gNav ul li a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  #gNav ul li a {
    display: block;
    padding: 15px 0;
    text-align: center;
  }
}
#gNav ul li a.current,
#gNav ul li a:hover {
  color: #F56648;
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media screen and (max-width: 1023px) {
  .drawer--right .drawer-nav {
    right: -28rem !important;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 28rem !important;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
}
header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .drawer-toggle {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 28rem;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-hamburger {
    background: #2856a7;
    z-index: 10000;
    width: 3rem;
    padding: 25px 15px 37px;
  }
  header .drawer-hamburger .drawer-text {
    white-space: nowrap;
    color: #fff;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
    display: none;
  }
  header .drawer-hamburger:hover {
    background: #2856a7;
  }
  header .drawer-hamburger-icon {
    margin: 0;
    position: relative;
    top: 6px;
    background: #fff;
    height: 4px;
  }
  header .drawer-hamburger-icon::before,
  header .drawer-hamburger-icon::after {
    background: #fff;
    height: 4px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  padding-bottom: 30px;
}
footer small {
  display: block;
  margin: 30px 0 0;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer small {
    font-size: 2.8vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #0000ee;
  text-underline-offset: 3px;
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a.link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7.5px;
  border-color: transparent transparent transparent #2da7e0;
  margin: 0 3px 0 0;
  vertical-align: baseline;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #fcc !important;
}
.error {
  color: #f00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center !important;
}
.texLeft {
  text-align: left !important;
}
.texRight {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500 !important;
}
.weightBold {
  font-weight: bold !important;
}
.borderNone {
  border: none !important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D90000;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	font-size
+++++++++++++++++++++++++++++++++++++++++++ */
.fs10 {
  font-size: 1rem !important;
}
.fs11 {
  font-size: 1.1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs13 {
  font-size: 1.3rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs15 {
  font-size: 1.5rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs17 {
  font-size: 1.7rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs19 {
  font-size: 1.9rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs21 {
  font-size: 2.1rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs23 {
  font-size: 2.3rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs25 {
  font-size: 2.5rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs27 {
  font-size: 2.7rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs29 {
  font-size: 2.9rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
@media screen and (max-width: 1023px) {
  .fs42_tab {
    font-size: 3rem!important;
  }
}
@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw!important;
  }
  .fs11 {
    font-size: 2.2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs13 {
    font-size: 2.6vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs15 {
    font-size: 3vw!important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs17 {
    font-size: 3.4vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs19 {
    font-size: 3.8vw !important;
  }
  .fs20 {
    font-size: 4vw!important;
  }
  .fs21 {
    font-size: 4.2vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs23 {
    font-size: 4.6vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs25 {
    font-size: 5vw!important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs27 {
    font-size: 5.4vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs29 {
    font-size: 5.8vw !important;
  }
  .fs30 {
    font-size: 6vw!important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw!important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw!important;
  }
  .fs11_sp {
    font-size: 2.2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs13_sp {
    font-size: 2.6vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs15_sp {
    font-size: 3vw!important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs17_sp {
    font-size: 3.4vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs19_sp {
    font-size: 3.8vw !important;
  }
  .fs20_sp {
    font-size: 4vw!important;
  }
  .fs21_sp {
    font-size: 4.2vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs23_sp {
    font-size: 4.6vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs25_sp {
    font-size: 5vw!important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs27_sp {
    font-size: 5.4vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs29_sp {
    font-size: 5.8vw !important;
  }
  .fs30_sp {
    font-size: 6vw!important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw!important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	margin
+++++++++++++++++++++++++++++++++++++++++++ */
.mt0 {
  margin-top: 0 !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml0 {
  margin-left: 0 !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.ml50 {
  margin-left: 50px !important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px!important;
  }
  .mt5_sp {
    margin-top: 5px!important;
  }
  .mt10_sp {
    margin-top: 10px!important;
  }
  .mt15_sp {
    margin-top: 15px!important;
  }
  .mt20_sp {
    margin-top: 20px!important;
  }
  .mt25_sp {
    margin-top: 25px!important;
  }
  .mt30_sp {
    margin-top: 30px!important;
  }
  .mt35_sp {
    margin-top: 35px!important;
  }
  .mt40_sp {
    margin-top: 40px!important;
  }
  .mt45_sp {
    margin-top: 45px!important;
  }
  .mt50_sp {
    margin-top: 50px!important;
  }
  .mb0_sp {
    margin-bottom: 0px!important;
  }
  .mb5_sp {
    margin-bottom: 5px!important;
  }
  .mb10_sp {
    margin-bottom: 10px!important;
  }
  .mb15_sp {
    margin-bottom: 15px!important;
  }
  .mb20_sp {
    margin-bottom: 20px!important;
  }
  .mb25_sp {
    margin-bottom: 25px!important;
  }
  .mb30_sp {
    margin-bottom: 30px!important;
  }
  .mb35_sp {
    margin-bottom: 35px!important;
  }
  .mb40_sp {
    margin-bottom: 40px!important;
  }
  .mb45_sp {
    margin-bottom: 45px!important;
  }
  .mb50_sp {
    margin-bottom: 50px!important;
  }
  .mr0_sp {
    margin-right: 0px!important;
  }
  .mr5_sp {
    margin-right: 5px!important;
  }
  .mr10_sp {
    margin-right: 10px!important;
  }
  .mr15_sp {
    margin-right: 15px!important;
  }
  .mr20_sp {
    margin-right: 20px!important;
  }
  .mr25_sp {
    margin-right: 25px!important;
  }
  .mr30_sp {
    margin-right: 30px!important;
  }
  .mr35_sp {
    margin-right: 35px!important;
  }
  .mr40_sp {
    margin-right: 40px!important;
  }
  .mr45_sp {
    margin-right: 45px!important;
  }
  .mr50_sp {
    margin-right: 50px!important;
  }
  .ml0_sp {
    margin-left: 0px!important;
  }
  .ml5_sp {
    margin-left: 5px!important;
  }
  .ml10_sp {
    margin-left: 10px!important;
  }
  .ml15_sp {
    margin-left: 15px!important;
  }
  .ml20_sp {
    margin-left: 20px!important;
  }
  .ml25_sp {
    margin-left: 25px!important;
  }
  .ml30_sp {
    margin-left: 30px!important;
  }
  .ml35_sp {
    margin-left: 35px!important;
  }
  .ml40_sp {
    margin-left: 40px!important;
  }
  .ml45_sp {
    margin-left: 45px!important;
  }
  .ml50_sp {
    margin-left: 50px!important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  background: #fff;
  padding: 15px;
  border-radius: 13px;
}
@media screen and (max-width: 767px) {
  .box {
    border-radius: 4px;
  }
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.btn {
  width: 100%;
  max-width: max-content;
  padding: 5px 30px;
  background: #2354AD;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: 296px;
  height: 52px;
  text-align: center;
  border-radius: 26px;
  font-size: 2rem;
}
.btn:hover {
  opacity: 0.7;
}
.btn_2 {
  width: 100%;
  max-width: max-content;
  padding: 5px 30px;
  background: #999;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: 296px;
  height: 52px;
  text-align: center;
  border-radius: 26px;
  font-size: 2rem;
}
.btn_2:hover {
  opacity: 0.7;
}
.btn_3 {
  font-weight: bold;
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox > * {
  display: block;
  width: 49%;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 0;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
}
.flex.ai_fs {
  align-items: flex-start;
}
.flex.ai_c {
  align-items: center;
}
.flex.ai_fe {
  align-items: flex-end;
}
.flex.jc_fs {
  justify-content: flex-start;
}
.flex.jc_c {
  justify-content: center;
}
.flex .flexText {
  flex: 1;
}
.flex .flexImg {
  text-align: center;
}
.flex .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .flex.flexRight {
    order: none;
  }
  .flex.sp_flexColumn {
    flex-direction: column;
  }
  .flex.sp_block {
    display: block;
  }
}
.strong {
  text-decoration: underline;
  text-underline-offset: -1px;
  text-decoration-color: #f9fc65;
  text-decoration-thickness: 8px;
  text-decoration-skip-ink: none;
}
.end {
  color: #c70606;
  font-weight: bold;
}
