@charset "UTF-8";
/*
 Share Style <
-------------------------------------------------
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
dialog,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
button,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  background: none;
}
ul {
  list-style: none;
}
div,
p,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table {
  padding: 0;
  margin: 0;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
}
html {
  font-size: 100%;
  /* -webkit-text-size-adjust: 100%; */
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}
a,
a:link {
  color: #e67500;
}
a:hover {
  text-decoration: none;
}

:root {
  --font-size-min: 10;
  --font-size-max: 14;

  --font-ratio-min: 1.2;
  --font-ratio-max: 1.25;

  --font-width-min: 375;
  --font-width-max: 1000;

  --variable-unit: 100vi;

  --color-Gray: #333;
  --color-White: #fff;
  --color-Red: #e60012;

  --radius-30: 30px;
  --radius-50: 50px;

  --width-size80per: 80%;
  --width-size90per: 90%;
  --width-size95per: 95%;
  --width-size100per: 100%;
}
.fluid {
  --fluid-min: calc(var(--font-size-min) * pow(var(--font-ratio-min), var(--font-level)));
  --fluid-max: calc(var(--font-size-max) * pow(var(--font-ratio-max), var(--font-level)));

  --fluid-preferred: calc((var(--fluid-max) - var(--fluid-min)) / (var(--font-width-max) - var(--font-width-min)));

  --fluid-type: clamp(
    (var(--fluid-min) / 16) * 1rem,
    ((var(--fluid-min) / 16) * 1rem) - (((var(--fluid-preferred) * var(--font-width-min)) / 16) * 1rem) + (var(--fluid-preferred) * var(--variable-unit)),
    (var(--fluid-max) / 16) * 1rem
  );

  font-size: var(--fluid-type);
  line-height: 1.8;
}

.xxxlg_txt {
  --font-level: 6;
}
.xxlg_txt {
  --font-level: 5;
}
.xlg_txt {
  --font-level: 4;
}
.mlg_txt {
  --font-level: 3;
}
.lg_txt {
  --font-level: 2;
}
.mid_txt {
  --font-level: 1;
}
.sm_txt {
  --font-level: 0.5;
}
.xsm_txt {
  --font-level: -1;
}
.txtRed {
  color: var(--color-Red);
}

@media screen and (max-width: 700px) {
  .fluid {
    line-height: 1.7;
  }
  .xxxlg_txt {
    --font-level: 6.5;
  }
  .xxlg_txt {
    --font-level: 5.5;
  }
  .xlg_txt {
    --font-level: 4.5;
  }
  .mlg_txt {
    --font-level: 3.5;
  }
  .lg_txt {
    --font-level: 2.5;
  }
  .mid_txt {
    --font-level: 1.5;
  }
  .sm_txt {
    --font-level: 1;
  }
  .xsm_txt {
    --font-level: 1;
  }
}

/* 全て fluid 計算を適用 */
.lg_txt,
.mid_txt,
.sm_txt,
.xsm_txt,
body {
  font-size: var(--fluid-type);
}

/*=== header ===*/
#wrap #header-block {
  background-color: #ffdd54;
  background-image: url(../images/headerTop.webp), url(../images/flag.webp), url(../images/headerBack.webp);
  background-position:
    center top,
    center top,
    center;
  background-size: auto, auto, 200px;
  background-repeat: repeat-x, no-repeat, repeat;
  padding: 50px 0;
}
#wrap h1 {
  text-align: center;
  padding: 70px 0 0;
  margin: 0 auto;
  max-width: 800px;
  width: 90%;
  transition: transform 0.2s ease;
  animation: poyoyon 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes poyoyon {
  0% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.1, 0.9);
  }
  30% {
    transform: scale(0.83, 1.17);
  }
  45% {
    transform: scale(1.11, 0.89);
  }
  60% {
    transform: scale(0.89, 1.11);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  88% {
    transform: scale(0.99, 1.01);
  }
  100% {
    transform: scale(1, 1);
  }
}
#wrap .date {
  max-width: 800px;
  margin: 0 auto 30px;
  width: 90%;
  opacity: 0;
  transform: translateY(50px);
  animation-name: dateanime;
  animation-duration: 0.5s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
}
@keyframes dateanime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#wrap .place {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 20px;
  width: 90%;
  opacity: 0;
  transform: translateY(50px);
  animation-name: placeanime;
  animation-duration: 0.5s;
  animation-delay: 1.1s;
  animation-fill-mode: forwards;
}
#wrap .place img {
  width: 49%;
}
@keyframes placeanime {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 800px) {
  #wrap #header-block {
    background-size: 20%, 100%, 30%;
    padding: 6% 0;
  }
  #wrap h1 {
    padding: 5% 0 0;
  }
  #wrap .date {
    margin: 0 auto 3%;
  }
  #wrap .place {
    margin: 0 auto 2%;
  }
}

/*=== introduction ===*/
.sectionBlock {
  padding: 120px 0 50px;
  border-top: 1px solid #000;
}
.sectionBlock .sectionWrap {
  max-width: 800px;
  margin: 0 auto;
}
#introduction.sectionBlock {
  background: #ec5900 url(../images/line01.png) repeat-x top 2% center;
}
.sectionBlock h2 {
  text-align: center;
  padding: 0 0 10px 0;
}
.sectionBlock h2 span {
  display: block;
}
.sectionBlock h2 span.text {
  color: #fff;
  font-weight: 900;
}

.entry-block {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
  margin: 20px auto;
  border: 1px solid #000;
}
.entry-block h3 {
  text-align: center;
  padding: 20px 0 0;
  font-weight: 900;
  color: #ec3700;
}

.entry-block dl .dtddBlock {
  display: flex;
  padding: 15px 20px;
  margin: 10px auto;
  background-color: #faf8f6;
  border: 1px solid #ccc;
  border-radius: 15px;
}
.entry-block dl .dtddBlock dt {
  width: 20%;
  font-weight: 800;
  color: #ec3700;
  margin-right: 10px;
}

@media screen and (max-width: 800px) {
  .entry-block {
    border-radius: 20px;
    padding: 20px;
    margin: 10px auto;
  }
  .sectionBlock {
    padding: 13% 0 5%;
    border-top: 1px solid #000;
  }
  #introduction.sectionBlock {
    background: #ec5900 url(../images/line01.png) repeat-x top 1.5% center;
    background-size: 150%;
  }
  .sectionBlock .sectionWrap {
    padding: 0 15px;
  }
}
@media screen and (max-width: 700px) {
  #introduction.sectionBlock {
    background: #ec5900 url(../images/line01.png) repeat-x top 1% center;
    background-size: 150%;
  }
}

/*=== plan ===*/
#plan.sectionBlock {
  background: #1aba96 url(../images/line02.png) repeat-x top 3% center;
}
.plan-block {
  background-color: #fff;
  border-radius: 30px;
  padding: 40px 50px;
  margin: 20px auto;
  border: 1px solid #000;
}
.plan-block .planTitle {
  text-align: center;
  color: #333;
  display: block;
  padding: 0 0 20px;
  font-weight: 900;
}
.plan-block p {
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  #plan.sectionBlock {
    background: #1aba96 url(../images/line02.png) repeat-x top 3% center;
    background-size: 120%;
  }
  .plan-block {
    background-color: #fff;
    border-radius: 30px;
    padding: 20px;
    margin: 15px auto;
  }
}

@media screen and (max-width: 700px) {
  #plan.sectionBlock {
    background: #1aba96 url(../images/line02.png) repeat-x top 1% center;
    background-size: 120%;
  }
}

.imgmidashi {
  display: block;
  text-align: center;
  font-size: 13px;
  margin: 30px auto 16px;
  color: #666;
}
.flexImg {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  margin: 10px auto 10px;
}
.flexImg li {
  width: 48%;
}
.flexImg li img {
  border-radius: 20px;
}
.flexImg li span {
  text-align: center;
  display: block;
  font-size: 11px;
}
@media screen and (max-width: 700px) {
  .flexImg {
    display: flex;
    flex-direction: column;
  }
  .flexImg li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
}
