@charset "UTF-8";
/* ==========================================================================
   カラー変数
   ========================================================================== */
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .HIDE-PC {
    display: none !important;
  }
}
@media screen and (min-width: 1439.9px) and (max-width: 1439.9px) {
  .HIDE-PC {
    display: none !important;
  }
}
@media screen and (min-width: 1440px) {
  .HIDE-PC {
    display: none !important;
  }
}
@media screen and (min-width: 1439.9px) and (max-width: 1439.9px) {
  .HIDE-MID {
    display: none !important;
  }
}
@media screen and (max-width: 1023.9px) {
  .HIDE-SP {
    display: none !important;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background: transparent;
}

a {
  text-decoration: none;
  color: #232323;
}

@font-face {
  font-family: "YasashisaGothic";
  src: url("../font/07やさしさゴシック.ttf?v8783b896c3c640e12c68977a4909f89c") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "YasashisaGothic";
  src: url("../font/07やさしさゴシックボールド.ttf?v2ac7f3929f9f40e9a8f506a92daa973b") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 10%;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  body {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  body {
    font-size: 3.7333333333vw;
  }
}

/* ==========================================================================
   Common Components (Modules)
   ========================================================================== */
.text-dot {
  --dot-color: currentColor;
  display: inline-block;
  background-image: radial-gradient(circle, var(--dot-color) 1px, transparent 2px);
  background-size: 8px 5px;
  background-repeat: repeat-x;
  background-position: left bottom;
  letter-spacing: 0;
}
@media screen and (max-width: 1023.9px) {
  .text-dot {
    letter-spacing: -0.02em;
  }
}

.bg-obj {
  position: absolute;
  font-size: 0;
}
.bg-obj img {
  width: 100%;
}

.sec-title {
  color: #FF8031;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-title {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-title {
    font-size: 48px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-title {
    font-size: 17.0666666667vw;
  }
}

.js-inview,
.js-inview-item {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.js-inview.inview-up,
.js-inview-item.inview-up {
  transform: translateY(20px);
}
.js-inview.inview-down,
.js-inview-item.inview-down {
  transform: translateY(-20px);
}
.js-inview.inview-left,
.js-inview-item.inview-left {
  transform: translateX(20px);
}
.js-inview.inview-right,
.js-inview-item.inview-right {
  transform: translateX(-20px);
}
.js-inview.inview-scale,
.js-inview-item.inview-scale {
  transform: scale(0.95);
}
.js-inview.is-inview,
.js-inview-item.is-inview {
  opacity: 1;
  transform: none;
}
.js-inview.delay-100,
.js-inview-item.delay-100 {
  transition-delay: 0.1s;
}
.js-inview.delay-200,
.js-inview-item.delay-200 {
  transition-delay: 0.2s;
}
.js-inview.delay-300,
.js-inview-item.delay-300 {
  transition-delay: 0.3s;
}
.js-inview.delay-400,
.js-inview-item.delay-400 {
  transition-delay: 0.4s;
}
.js-inview.delay-500,
.js-inview-item.delay-500 {
  transition-delay: 0.5s;
}
.js-inview.delay-600,
.js-inview-item.delay-600 {
  transition-delay: 0.6s;
}
.js-inview.delay-700,
.js-inview-item.delay-700 {
  transition-delay: 0.7s;
}
.js-inview.delay-800,
.js-inview-item.delay-800 {
  transition-delay: 0.8s;
}
.js-inview.delay-900,
.js-inview-item.delay-900 {
  transition-delay: 0.9s;
}
.js-inview.delay-1000,
.js-inview-item.delay-1000 {
  transition-delay: 1s;
}
.js-inview.delay-1100,
.js-inview-item.delay-1100 {
  transition-delay: 1.1s;
}
.js-inview.delay-1200,
.js-inview-item.delay-1200 {
  transition-delay: 1.2s;
}
.js-inview.delay-1300,
.js-inview-item.delay-1300 {
  transition-delay: 1.3s;
}
.js-inview.delay-1400,
.js-inview-item.delay-1400 {
  transition-delay: 1.4s;
}
.js-inview.delay-1500,
.js-inview-item.delay-1500 {
  transition-delay: 1.5s;
}
.js-inview.delay-1600,
.js-inview-item.delay-1600 {
  transition-delay: 1.6s;
}
.js-inview.delay-1700,
.js-inview-item.delay-1700 {
  transition-delay: 1.7s;
}
.js-inview.delay-1800,
.js-inview-item.delay-1800 {
  transition-delay: 1.8s;
}
.js-inview.delay-1900,
.js-inview-item.delay-1900 {
  transition-delay: 1.9s;
}
.js-inview.delay-2000,
.js-inview-item.delay-2000 {
  transition-delay: 2s;
}
.js-inview.duration-slow,
.js-inview-item.duration-slow {
  transition-duration: 1.2s;
}
.js-inview.duration-fast,
.js-inview-item.duration-fast {
  transition-duration: 0.4s;
}

/* ==========================================================================
   共通
   ========================================================================== */
.l-inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .l-inner {
    max-width: 100vw;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner {
    max-width: 1440px;
  }
}

body.is-menu-open {
  overflow: hidden;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header.scrolled .header-logo {
    top: 0vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header.scrolled .header-logo {
    top: 0px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header.scrolled .header-logo {
    top: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header.scrolled .header-logo {
    left: 0vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header.scrolled .header-logo {
    left: 0px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header.scrolled .header-logo {
    left: 0vw;
  }
}
#site-header.scrolled .header-logo a {
  background: transparent;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header.scrolled .header-logo a {
    width: 9.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header.scrolled .header-logo a {
    width: 134px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header.scrolled .header-logo a {
    width: 21.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header.scrolled .header-logo a {
    height: 9.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header.scrolled .header-logo a {
    height: 134px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header.scrolled .header-logo a {
    height: 21.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header.scrolled .header-logo a img {
    width: 9.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header.scrolled .header-logo a img {
    width: 134px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header.scrolled .header-logo a img {
    width: 21.3333333333vw;
  }
}
#site-header .header-inner {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-end;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header .header-inner {
    padding-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header .header-inner {
    padding-top: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header .header-inner {
    padding-top: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header .header-inner {
    padding-right: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header .header-inner {
    padding-right: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header .header-inner {
    padding-right: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header .header-inner {
    padding-left: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header .header-inner {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-header .header-inner {
    padding-left: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-header .header-inner {
    max-width: 94.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-header .header-inner {
    max-width: 1360px;
  }
}

.header-logo {
  position: absolute;
  z-index: 1000;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo {
    top: -4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo {
    top: -70px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo {
    top: -10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo {
    left: -4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo {
    left: -60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo {
    left: -10.6666666667vw;
  }
}
.header-logo img {
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo img {
    top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo img {
    top: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo img {
    top: 3.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo img {
    left: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo img {
    left: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo img {
    left: 3.2vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo img {
    width: 14.5833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo img {
    width: 210px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo img {
    width: 25.3333333333vw;
  }
}
.header-logo a {
  text-decoration: none;
  display: block;
  transition: opacity 0.25s;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo a {
    width: 21.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo a {
    width: 312px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo a {
    width: 41.6vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-logo a {
    height: 21.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-logo a {
    height: 312px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-logo a {
    height: 41.6vw;
  }
}
@media (pointer: fine) {
  .header-logo a:hover {
    opacity: 0.7;
  }
}

.header-hamburger {
  display: none;
}
@media screen and (max-width: 1023.9px) {
  .header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;
  }
}
@media screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header-hamburger {
    top: 4vw;
  }
}
@media screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header-hamburger {
    right: 4vw;
  }
}
@media screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header-hamburger {
    width: 10.6666666667vw;
  }
}
@media screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header-hamburger {
    height: 10.6666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-hamburger span {
    position: absolute;
    left: 50%;
    display: block;
    background-color: #232323;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}
@media screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header-hamburger span {
    width: 5.8666666667vw;
  }
}
@media screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header-hamburger span {
    height: 0.5333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-hamburger span:nth-child(1) {
    top: 30%;
    transform: translate(-50%, -50%);
  }
  .header-hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header-hamburger span:nth-child(3) {
    top: 70%;
    transform: translate(-50%, -50%);
  }
  .is-menu-open .header-hamburger span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .is-menu-open .header-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .is-menu-open .header-hamburger span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

@media screen and (max-width: 1023.9px) {
  .header-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    background-color: #FAF6F1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
  }
  .is-menu-open .header-nav {
    opacity: 1;
    pointer-events: auto;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1023.9px) {
  .header-nav__list {
    padding-top: 40vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__list {
    gap: 0.6944444444vw 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__list {
    gap: 10px 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__list {
    gap: 2.6666666667vw 2.6666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__list {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
}
.header-nav__item a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a {
    border-radius: 4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a {
    width: 10.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a {
    width: 155px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a {
    width: 74.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a {
    height: 3.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a {
    height: 56px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a {
    height: 14.9333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a {
    padding-left: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a {
    padding-left: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a {
    padding-left: 4.8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a {
    gap: 0.6944444444vw 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a {
    gap: 10px 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a {
    gap: 2.6666666667vw 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item a svg {
    width: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item a svg {
    width: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item a svg {
    width: 4.2666666667vw;
  }
}
@media (pointer: fine) {
  .header-nav__item a:hover {
    opacity: 0.7;
  }
}
.header-nav__item--news a {
  border: 2px solid #EC54B1;
  background-color: #FFFFFF;
}
.header-nav__item--news a span {
  background-color: #EC54B1;
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--news a {
    border-color: #EC54B1;
    color: #232323;
  }
}
.header-nav__item--request a {
  border: 2px solid #FF8031;
  background-color: #FFFFFF;
}
.header-nav__item--request a span {
  background-color: #FF8031;
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--request a {
    border-color: #FF8031;
    color: #232323;
  }
}
.header-nav__item--access a {
  border: 2px solid #51C81D;
  background-color: #FFFFFF;
}
.header-nav__item--access a span {
  background-color: #51C81D;
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--access a {
    border-color: #51C81D;
    color: #232323;
  }
}
.header-nav__item--contact a {
  border: 2px solid #9D78E5;
  background-color: #FFFFFF;
}
.header-nav__item--contact a span {
  background-color: #9D78E5;
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--contact a {
    border-color: #9D78E5;
    color: #232323;
  }
}
.header-nav__item--donate a {
  justify-content: center;
  border: 2px solid #FF8031;
  color: #FFFFFF;
  background-color: #FF8031;
  padding-left: 0;
  font-family: "mizoletbokutoh", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item--donate a {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item--donate a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--donate a {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item--donate a {
    width: 13.4027777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item--donate a {
    width: 193px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--donate a {
    width: 80.5333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__item--donate a {
    margin-left: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__item--donate a {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__item--donate a {
    background-color: #FF8031;
    border-color: #FF8031;
    color: #FFFFFF;
  }
}
.header-nav__icon {
  border-radius: 50%;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__icon {
    width: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__icon {
    width: 32px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__icon {
    width: 8.5333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .header-nav__icon {
    height: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav__icon {
    height: 32px;
  }
}
@media screen and (max-width: 1023.9px) {
  .header-nav__icon {
    height: 8.5333333333vw;
  }
}

/* ==========================================================================
   KV（ヒーロー）
   ========================================================================== */
.kv {
  overflow: visible;
  position: relative;
  background-color: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv {
    max-width: 85.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv {
    max-width: 1236px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv {
    max-width: 93.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv {
    padding-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv {
    padding-top: 18.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv {
    padding-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv {
    padding-bottom: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj1 {
    top: -5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj1 {
    top: -80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj1 {
    top: -10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj1 {
    left: 16.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj1 {
    left: 240px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj1 {
    left: 32vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj1 {
    width: 13.75vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj1 {
    width: 198px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj1 {
    width: 26.4vw;
  }
}
.kv .obj2 {
  z-index: 10;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj2 {
    bottom: -14.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj2 {
    bottom: -208px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj2 {
    bottom: -27.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj2 {
    right: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj2 {
    right: 50px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj2 {
    right: 6.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj2 {
    width: 23.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj2 {
    width: 334px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj2 {
    width: 44.5333333333vw;
  }
}
.kv .obj3 {
  z-index: 10;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj3 {
    bottom: -1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj3 {
    bottom: -15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj3 {
    bottom: -2.1333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj3 {
    right: -7.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj3 {
    right: -102px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj3 {
    right: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .obj3 {
    width: 18.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .obj3 {
    width: 262px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .obj3 {
    width: 34.9333333333vw;
  }
}
.kv__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__inner {
    width: 85.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__inner {
    width: 1236px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__inner {
    width: 93.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__inner {
    height: 50.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__inner {
    height: 721px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__inner {
    height: 128vw;
  }
}
.kv .kv-imgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .kv-imgs {
    height: 50.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .kv-imgs {
    height: 721px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .kv-imgs {
    height: 136vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-list {
    height: 50.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-list {
    height: 721px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-list {
    height: 136vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-list {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-list {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-list {
    border-radius: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-slide {
    height: 50.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-slide {
    height: 721px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-slide {
    height: 136vw;
  }
}
.kv__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.kv__bg-circle--pink {
  position: absolute;
}
.kv__bg-circle--blue {
  position: absolute;
}
.kv__body {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__body {
    padding-left: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__body {
    padding-left: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__body {
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__body {
    padding-bottom: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__body {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__body {
    padding-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__body {
    gap: 0.8333333333vw 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__body {
    gap: 12px 12px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__body {
    gap: 2.1333333333vw 2.1333333333vw;
  }
}
.kv__caption {
  position: relative;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  z-index: 10;
  letter-spacing: -0.06em;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption {
    border-radius: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption {
    border-radius: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--small {
    padding-top: 0.0694444444vw;
    padding-bottom: 0.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--small {
    padding-top: 1px;
    padding-bottom: 1px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--small {
    padding-top: 0.2666666667vw;
    padding-bottom: 0.2666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--small {
    padding-right: 1.3888888889vw;
    padding-left: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--small {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--small {
    padding-right: 2.6666666667vw;
    padding-left: 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--small {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--small {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--small {
    font-size: 3.2vw;
  }
}
.kv__caption--title {
  line-height: 1;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--title {
    padding-top: 0.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--title {
    padding-top: 1px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--title {
    padding-top: 0.2666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--title {
    padding-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--title {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--title {
    padding-bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--title {
    padding-right: 1.0416666667vw;
    padding-left: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--title {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--title {
    padding-right: 2.1333333333vw;
    padding-left: 2.1333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--title {
    font-size: 4.5833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--title {
    font-size: 66px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--title {
    font-size: 12vw;
  }
}
.kv__caption--title .pink {
  color: #EC54B1;
}
.kv__caption--title .orange {
  color: #FF8031;
}
.kv__caption--title .green {
  color: #51C81D;
}
.kv__caption--title .purple {
  color: #9D78E5;
}
.kv__caption--title .blue {
  color: #296FCC;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--desc {
    padding-top: 0.0694444444vw;
    padding-bottom: 0.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--desc {
    padding-top: 1px;
    padding-bottom: 1px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--desc {
    padding-top: 0.2666666667vw;
    padding-bottom: 0.2666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--desc {
    padding-right: 1.6666666667vw;
    padding-left: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--desc {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--desc {
    padding-right: 3.2vw;
    padding-left: 3.2vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv__caption--desc {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv__caption--desc {
    font-size: 22px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv__caption--desc {
    font-size: 4vw;
  }
}
.kv .slick-dots {
  position: absolute;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-dots {
    left: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-dots {
    left: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots {
    left: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-dots {
    bottom: -2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-dots {
    bottom: -40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots {
    bottom: -4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-dots {
    gap: 0.5555555556vw 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-dots {
    gap: 8px 8px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots {
    gap: 1.3333333333vw 1.3333333333vw;
  }
}
.kv .slick-dots li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots li {
    width: 1.8666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots li {
    height: 1.8666666667vw;
  }
}
.kv .slick-dots li button {
  display: block;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background-color: #ebd1df;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-dots li button {
    width: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-dots li button {
    width: 12px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots li button {
    width: 1.8666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .kv .slick-dots li button {
    height: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .kv .slick-dots li button {
    height: 12px;
  }
}
@media screen and (max-width: 1023.9px) {
  .kv .slick-dots li button {
    height: 1.8666666667vw;
  }
}
.kv .slick-dots li button:before {
  display: none;
}
.kv .slick-dots li.slick-active button {
  background-color: #EC54B1;
}

/* ==========================================================================
   紹介セクション
   ========================================================================== */
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro {
    padding-top: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro {
    padding-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro {
    padding-bottom: 2.6666666667vw;
  }
}
.sec-intro .intro-card {
  background-color: #FAF6F1;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card {
    padding-top: 5.5555555556vw;
    padding-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card {
    padding-right: 10.4166666667vw;
    padding-left: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card {
    padding-right: 150px;
    padding-left: 150px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card {
    max-width: 85.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card {
    max-width: 1236px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card {
    border-radius: 10.6666666667vw;
  }
}
.sec-intro .intro-card__circle {
  position: absolute;
  top: -45px;
  right: 60px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__circle {
    width: 11.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__circle {
    width: 160px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__circle {
    width: 26.6666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__circle {
    top: -30px;
    right: 25px;
  }
}
.sec-intro .intro-card__circle img {
  width: 100%;
  height: auto;
  display: block;
}
.sec-intro .intro-card__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__grid {
    max-width: 89.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__grid {
    gap: 4.1666666667vw 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__grid {
    gap: 60px 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__grid {
    gap: 8vw 8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__grid {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
}
.sec-intro .intro-card__bubbles {
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__bubbles {
    width: 29.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__bubbles {
    width: 430px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__bubbles {
    width: 74.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__bubbles {
    height: 29.2361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__bubbles {
    height: 421px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__bubbles {
    height: 74.6666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__bubbles {
    margin: 0 auto;
  }
}
.sec-intro .intro-card__content {
  flex: 1;
  text-align: left;
}
.sec-intro .intro-card__title {
  line-height: 1.6;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__title {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__title {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__title {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__title {
    font-size: 8.5333333333vw;
  }
}
.sec-intro .intro-card__title span {
  --dot-color: #EC54B1;
}
.sec-intro .intro-card__text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-card__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-card__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-card__text {
    font-size: 3.7333333333vw;
  }
}
.sec-intro .intro-bubble {
  position: absolute;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-bubble {
    width: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-bubble {
    width: 200px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-bubble {
    width: 34.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-intro .intro-bubble {
    height: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-intro .intro-bubble {
    height: 200px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-intro .intro-bubble {
    height: 34.6666666667vw;
  }
}
.sec-intro .intro-bubble__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.sec-intro .intro-bubble--topleft {
  top: 0;
  left: 0;
}
.sec-intro .intro-bubble--topright {
  top: 0;
  right: 0;
}
.sec-intro .intro-bubble--left {
  bottom: 0;
  left: 0;
}
.sec-intro .intro-bubble--right {
  bottom: 0;
  right: 0;
}

.sec-about {
  background: #FFFFFF;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about {
    padding-top: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about {
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about {
    padding-bottom: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj1 {
    top: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj1 {
    top: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj1 {
    top: 1.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj1 {
    right: 11.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj1 {
    right: 170px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj1 {
    right: 22.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj1 {
    width: 13.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj1 {
    width: 190px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj1 {
    width: 25.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj2 {
    bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj2 {
    bottom: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj2 {
    bottom: 1.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj2 {
    left: 36.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj2 {
    left: 530px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj2 {
    left: 70.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj2 {
    width: 11.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj2 {
    width: 164px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj2 {
    width: 21.8666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj3 {
    top: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj3 {
    top: 35px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj3 {
    top: 4.8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj3 {
    right: 7.9861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj3 {
    right: 115px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj3 {
    right: 15.4666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .obj3 {
    width: 18.8194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .obj3 {
    width: 271px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .obj3 {
    width: 36.2666666667vw;
  }
}
.sec-about .sec-about__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .sec-about__inner {
    gap: 7.6388888889vw 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .sec-about__inner {
    gap: 110px 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .sec-about__inner {
    gap: 21.3333333333vw 0vw;
  }
}
.sec-about .about-point {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point {
    gap: 5.4166666667vw 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point {
    gap: 78px 78px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point {
    gap: 9.3333333333vw 9.3333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point {
    flex-direction: column !important;
  }
}
.sec-about .about-point--1 .about-point__title span {
  --dot-color: #FF8031;
}
.sec-about .about-point--2 .about-point__title span {
  --dot-color: #51C81D;
}
.sec-about .about-point--3 .about-point__title span {
  --dot-color: #9D78E5;
}
.sec-about .about-point--reverse {
  flex-direction: row-reverse;
}
.sec-about .about-point--reverse .about-point__image-wrap img {
  border-radius: 80px 0 0 80px;
}
.sec-about .about-point--reverse .about-point__badge {
  right: auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point--reverse .about-point__badge {
    left: -2.7083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point--reverse .about-point__badge {
    left: -39px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point--reverse .about-point__badge {
    left: 0vw;
  }
}
.sec-about .about-point__image-wrap {
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__image-wrap {
    width: 53.125vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__image-wrap {
    width: 765px;
  }
}
.sec-about .about-point__image-wrap img {
  border-radius: 0 80px 80px 0;
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__image-wrap {
    width: 100%;
  }
}
.sec-about .about-point__img {
  width: 100%;
  height: auto;
  display: block;
}
.sec-about .about-point__badge {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  color: #FFFFFF;
  text-align: center;
  line-height: 0.9;
  letter-spacing: -0.1em;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge {
    font-size: 3.75vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge {
    font-size: 54px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge {
    font-size: 9.6vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge {
    top: -2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge {
    top: -32px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge {
    top: -8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge {
    right: -2.7083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge {
    right: -39px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge {
    right: 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge {
    width: 8.2638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge {
    width: 119px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge {
    width: 21.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge {
    height: 8.2638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge {
    height: 119px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge {
    height: 21.3333333333vw;
  }
}
.sec-about .about-point__badge span {
  position: relative;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge span {
    top: -0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge span {
    top: -2px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge span {
    top: -0.5333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__badge span {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__badge span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__badge span {
    font-size: 4.8vw;
  }
}
.sec-about .about-point__badge.point1 {
  background-color: #FF8031;
}
.sec-about .about-point__badge.point2 {
  background-color: #51C81D;
}
.sec-about .about-point__badge.point3 {
  background-color: #9D78E5;
}
.sec-about .about-point__content {
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__content {
    width: 28.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__content {
    width: 410px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__content {
    width: 89.3333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__content {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}
.sec-about .about-point__title {
  line-height: 1.6;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__title {
    margin-bottom: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__title {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__title {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__title {
    font-size: 7.4666666667vw;
  }
}
.sec-about .about-point__text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-about .about-point__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-about .about-point__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-about .about-point__text {
    font-size: 4.2666666667vw;
  }
}

/* ==========================================================================
   歓迎（はじめてでも、大丈夫）セクション
   ========================================================================== */
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome {
    padding-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome {
    padding-bottom: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome {
    padding-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .obj1 {
    top: -5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .obj1 {
    top: -80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .obj1 {
    top: -10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .obj1 {
    right: 12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .obj1 {
    right: 180px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .obj1 {
    right: 24vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .obj1 {
    width: 14.0277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .obj1 {
    width: 202px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .obj1 {
    width: 26.9333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .obj2 {
    bottom: -8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .obj2 {
    bottom: -120px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .obj2 {
    bottom: -16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .obj2 {
    left: 11.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .obj2 {
    left: 170px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .obj2 {
    left: 22.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .obj2 {
    width: 15.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .obj2 {
    width: 222px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .obj2 {
    width: 29.6vw;
  }
}
.sec-welcome .welcome-card {
  background-color: #FAF6F1;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card {
    border-radius: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card {
    padding-top: 6.9444444444vw;
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card {
    padding-right: 8.3333333333vw;
    padding-left: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card {
    padding-right: 120px;
    padding-left: 120px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card {
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card {
    max-width: 85.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card {
    max-width: 1236px;
  }
}
.sec-welcome .welcome-card .welcome-circle-group {
  position: absolute;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card .welcome-circle-group {
    width: 18.6111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card .welcome-circle-group {
    width: 268px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card .welcome-circle-group {
    width: 35.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card .welcome-circle-group {
    height: 18.6111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card .welcome-circle-group {
    height: 268px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card .welcome-circle-group {
    height: 35.7333333333vw;
  }
}
.sec-welcome .welcome-card .welcome-circle-group img {
  width: 100%;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card .welcome-circle-group--left {
    bottom: -2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card .welcome-circle-group--left {
    bottom: -40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card .welcome-circle-group--left {
    bottom: -24vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card .welcome-circle-group--left {
    left: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card .welcome-circle-group--left {
    left: 25px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card .welcome-circle-group--left {
    left: 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card .welcome-circle-group--right {
    top: -1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card .welcome-circle-group--right {
    top: -20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card .welcome-circle-group--right {
    top: -24vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card .welcome-circle-group--right {
    right: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card .welcome-circle-group--right {
    right: 35px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card .welcome-circle-group--right {
    right: 2.6666666667vw;
  }
}
.sec-welcome .welcome-card__content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card__content {
    width: 100%;
  }
}
.sec-welcome .welcome-card__title {
  margin: 0;
  --dot-color: #296FCC;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card__title {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card__title {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card__title {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card__title {
    font-size: 8.5333333333vw;
  }
}
.sec-welcome .welcome-card__text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-welcome .welcome-card__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-welcome .welcome-card__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-welcome .welcome-card__text {
    font-size: 3.7333333333vw;
  }
}

/* ==========================================================================
   Instagramセクション
   ========================================================================== */
.sec-instagram {
  background: #FFFFFF;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram {
    padding-top: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram {
    padding-top: 32vw;
  }
}
.sec-instagram .sec-instagram__inner {
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram .sec-instagram__inner {
    max-width: 55.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram .sec-instagram__inner {
    max-width: 793px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram .sec-instagram__inner {
    max-width: 89.3333333333vw;
  }
}
.sec-instagram .sec-instagram__title {
  --dot-color: #2BB9D2;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram .sec-instagram__title {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram .sec-instagram__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram .sec-instagram__title {
    font-size: 6.4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram .sec-instagram__feed {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram .sec-instagram__feed {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram .sec-instagram__feed {
    margin-top: 8vw;
  }
}
.sec-instagram .sec-instagram__feed {
  width: 100%;
  min-height: 100px;
}
.sec-instagram .sec-instagram__btn-wrap {
  text-align: center;
}
.sec-instagram .sec-instagram__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #f27329;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.25s ease;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram .sec-instagram__btn {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram .sec-instagram__btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram .sec-instagram__btn {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram .sec-instagram__btn {
    width: 19.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram .sec-instagram__btn {
    width: 276px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram .sec-instagram__btn {
    width: 73.6vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-instagram .sec-instagram__btn {
    height: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-instagram .sec-instagram__btn {
    height: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-instagram .sec-instagram__btn {
    height: 16vw;
  }
}
@media (pointer: fine) {
  .sec-instagram .sec-instagram__btn:hover {
    opacity: 0.75;
  }
}

/* ==========================================================================
   やなやが、また走り出した理由
   ========================================================================== */
.sec-reason {
  background-color: #FAF6F1;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason {
    border-radius: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason {
    margin-top: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .obj1 {
    top: -12.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .obj1 {
    top: -180px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .obj1 {
    top: -16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .obj1 {
    left: -4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .obj1 {
    left: -60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .obj1 {
    left: -8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .obj1 {
    width: 16.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .obj1 {
    width: 244px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .obj1 {
    width: 32.5333333333vw;
  }
}
.sec-reason .reason-card {
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason-card {
    padding-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason-card {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason-card {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason-card {
    max-width: 71.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason-card {
    max-width: 1036px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason-card {
    max-width: 89.3333333333vw;
  }
}
.sec-reason .reason-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason-grid {
    margin-top: -2.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason-grid {
    margin-top: -38px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason-grid {
    width: 72.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason-grid {
    width: 1037px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason-grid {
    gap: 4.1666666667vw 3.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason-grid {
    gap: 60px 56px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason-grid {
    gap: 8vw 8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason-grid {
    align-items: center;
    flex-direction: column;
  }
}
.sec-reason .reason__content {
  flex: 1;
  text-align: left;
  width: 50%;
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason__content {
    width: 100%;
  }
}
.sec-reason .reason__title {
  line-height: 1.5;
  --dot-color: #EC54B1;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason__title {
    margin-bottom: 0vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason__title {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason__title {
    margin-bottom: 9.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason__title {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason__title {
    font-size: 8.5333333333vw;
  }
}
.sec-reason .reason__text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason__text {
    font-size: 3.7333333333vw;
  }
}
.sec-reason .reason__image-wrap {
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-reason .reason__image-wrap {
    width: 16.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-reason .reason__image-wrap {
    width: 233px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-reason .reason__image-wrap {
    width: 53.3333333333vw;
  }
}
.sec-reason .reason__image-wrap img {
  width: 100%;
}

/* ==========================================================================
   コンセプトは "みんなで彩るキャンバス"
   ========================================================================== */
.sec-concept {
  background: #FAF6F1;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept {
    padding-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept {
    padding-top: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept {
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept {
    padding-bottom: 21.3333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .obj1 {
    top: 48vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .obj1 {
    bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .obj1 {
    bottom: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .obj1 {
    left: 15.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .obj1 {
    left: 220px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .obj1 {
    left: 56vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .obj1 {
    width: 12.5694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .obj1 {
    width: 181px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .obj1 {
    width: 24vw;
  }
}
.sec-concept .concept-card {
  background-color: #FFFFFF;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-card {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-card {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-card {
    border-radius: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-card {
    padding-top: 3.4722222222vw;
    padding-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-card {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-card {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-card {
    padding-left: 3.2638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-card {
    padding-left: 47px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-card {
    padding-left: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-card {
    padding-right: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-card {
    padding-right: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-card {
    padding-right: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-card {
    max-width: 71.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-card {
    max-width: 1036px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-card {
    max-width: 89.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-circle-img {
    width: 21.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-circle-img {
    width: 310px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-circle-img {
    width: 53.3333333333vw;
  }
}
.sec-concept .concept-circle-img img {
  width: 100%;
}
.sec-concept .concept-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept-grid {
    gap: 4.1666666667vw 2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept-grid {
    gap: 60px 42px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-grid {
    gap: 8vw 8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept-grid {
    flex-direction: column;
  }
}
.sec-concept .concept__content {
  flex: 1;
  text-align: left;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept__content {
    width: 37.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept__content {
    width: 536px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept__content {
    width: 80vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept__content {
    margin-right: auto;
    margin-left: auto;
  }
}
.sec-concept .concept__title {
  line-height: 1.5;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept__title {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept__title {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept__title {
    font-size: 7.4666666667vw;
  }
}
.sec-concept .concept__title span {
  --dot-color: #FF8031;
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept__title span {
    letter-spacing: -0.11em;
  }
}
.sec-concept .concept__text {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-concept .concept__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-concept .concept__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-concept .concept__text {
    font-size: 3.7333333333vw;
  }
}

/* ==========================================================================
   寄付セクション
   ========================================================================== */
.sec-donate {
  background: #FAF6F1;
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .obj1 {
    bottom: -4.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .obj1 {
    bottom: -62px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .obj1 {
    bottom: -8.2666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .obj1 {
    left: -8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .obj1 {
    left: -120px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .obj1 {
    left: -16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .obj1 {
    width: 17.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .obj1 {
    width: 258px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .obj1 {
    width: 34.4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate__bg-photo {
    height: 29.2361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate__bg-photo {
    height: 421px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate__bg-photo {
    height: 64vw;
  }
}
.sec-donate .donate__bg-photo {
  width: 100%;
  overflow: hidden;
}
.sec-donate .donate__bg-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.sec-donate .donate-card {
  background-color: #FFFFFF;
  position: relative;
  box-sizing: border-box;
  z-index: 10;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card {
    border-radius: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card {
    margin-top: -8.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card {
    margin-top: -122px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card {
    margin-top: -16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card {
    padding-top: 3.4722222222vw;
    padding-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card {
    padding-right: 90px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card {
    padding-right: 6.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card {
    max-width: 71.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card {
    max-width: 1036px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card {
    max-width: 89.3333333333vw;
  }
}
.sec-donate .donate-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.sec-donate .donate-card__title {
  line-height: 1.5;
  --dot-color: #51C81D;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__title {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__title {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__title {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__title {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__title {
    letter-spacing: -0.03em;
  }
}
.sec-donate .donate-card__text {
  line-height: 2;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__text {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__text {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__text {
    font-size: 3.7333333333vw;
  }
}
.sec-donate .donate-card__buttons {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__buttons {
    gap: 2.5vw 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__buttons {
    gap: 36px 36px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__buttons {
    gap: 4vw 0vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.sec-donate .donate-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: #FF8031;
  text-decoration: none;
  transition: opacity 0.25s ease;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__btn {
    border-radius: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__btn {
    border-radius: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__btn {
    border-radius: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__btn {
    width: 22.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__btn {
    width: 323px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__btn {
    width: 74.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__btn {
    height: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__btn {
    height: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__btn {
    height: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-donate .donate-card__btn {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-donate .donate-card__btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-donate .donate-card__btn {
    font-size: 4vw;
  }
}
@media (pointer: fine) {
  .sec-donate .donate-card__btn:hover {
    opacity: 0.75;
  }
}

/* ==========================================================================
   お知らせセクション
   ========================================================================== */
.sec-news {
  background: #FAF6F1;
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news {
    padding-top: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news {
    padding-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news {
    padding-bottom: 16vw;
  }
}
.sec-news .news-card {
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news-card {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news-card {
    padding-right: 90px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news-card {
    padding-right: 6.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news-card {
    max-width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news-card {
    max-width: 1200px;
  }
}
.sec-news .news-card {
  margin: 0 auto;
}
.sec-news .news-grid {
  position: relative;
  z-index: 2;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news-grid {
    gap: 5vw 5vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news-grid {
    gap: 72px 72px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news__title-wrap {
    width: 100%;
    text-align: center;
  }
}
.sec-news .news__title {
  line-height: 1.5;
  --dot-color: #9D78E5;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news__title {
    font-size: 2.6388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news__title {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news__title {
    margin-bottom: 4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news__content {
    width: 42.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news__content {
    width: 605px;
  }
}
.sec-news .news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec-news .news__item {
  border-bottom: 1px solid #D5D5D5;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news__item {
    padding-top: 1.3888888889vw;
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news__item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news__item {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}
.sec-news .news__item:first-child {
  padding-top: 0;
}
.sec-news .news__item:last-child {
  border-bottom: none;
}
.sec-news .news__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}
@media (pointer: fine) {
  .sec-news .news__link:hover {
    opacity: 0.7;
  }
}
.sec-news .news__date {
  display: block;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news__date {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news__date {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news__date {
    font-size: 3.2vw;
  }
}
.sec-news .news__text {
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-news .news__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-news .news__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-news .news__text {
    font-size: 3.7333333333vw;
  }
}

/* ==========================================================================
   会社概要セクション
   ========================================================================== */
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company {
    padding-top: 5.9027777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company {
    padding-top: 85px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company {
    padding-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company {
    padding-bottom: 5.3333333333vw;
  }
}
.sec-company {
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company .obj1 {
    top: -17.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company .obj1 {
    top: -248px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company .obj1 {
    top: -33.0666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company .obj1 {
    right: 4.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company .obj1 {
    right: 70px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company .obj1 {
    right: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company .obj1 {
    width: 18.5416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company .obj1 {
    width: 267px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company .obj1 {
    width: 35.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__inner {
    max-width: 100vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__inner {
    max-width: 1440px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__inner {
    max-width: 89.3333333333vw;
  }
}
.sec-company__title {
  border-bottom: 1px solid #54686C;
  font-family: "mizoletbokutoh", sans-serif;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__title {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__title {
    font-size: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__title {
    padding-bottom: 3.0555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__title {
    padding-bottom: 44px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__title {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__title {
    letter-spacing: -0.15em;
  }
}
.sec-company__wrap {
  position: relative;
}
.sec-company__grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__grid {
    gap: 5.5555555556vw 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__grid {
    gap: 80px 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__grid {
    gap: 10.6666666667vw 10.6666666667vw;
  }
}
.sec-company__grid {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023.9px) {
  .sec-company__grid {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__col--info {
    width: 35.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__col--info {
    width: 507px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__col--info {
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__col--info {
    padding-top: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__col--info {
    padding-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__col--info {
    margin-left: 7.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__col--info {
    margin-left: 104px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__col--info {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__col--map {
    width: 52.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__col--map {
    width: 749px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__col--map {
    width: 100%;
  }
}
.sec-company__item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #CFCFCF;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__item {
    padding-top: 1.8055555556vw;
    padding-bottom: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__item {
    padding-top: 26px;
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__item {
    padding-top: 4.2666666667vw;
    padding-bottom: 4.2666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__item {
    gap: 0vw 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__label {
    width: 10.0694444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__label {
    width: 145px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__label {
    width: 32vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__label {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__label {
    font-size: 15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__label {
    font-size: 4vw;
  }
}
.sec-company__value {
  word-break: break-all;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__value {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__value {
    font-size: 15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__value {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__value {
    flex: 1;
  }
}
.sec-company__map-iframe {
  width: 100%;
  filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.1));
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__map-iframe {
    height: 17.0138888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__map-iframe {
    height: 245px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__map-iframe {
    height: 64vw;
  }
}
.sec-company__map-iframe iframe {
  border-radius: 80px 0px 0px 80px;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 1023.9px) {
  .sec-company__map-iframe iframe {
    border-radius: 40px;
  }
}
.sec-company__map-desc {
  line-height: 1.7;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__map-desc {
    width: 43.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__map-desc {
    width: 624px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__map-desc {
    margin-top: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__map-desc {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__map-desc {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__map-desc {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__map-desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__map-desc {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office {
    margin-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office {
    margin-left: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office {
    margin-left: 24px;
  }
}
.sec-company__office-title {
  letter-spacing: 0;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office-title {
    font-size: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-title {
    font-size: 5.8666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office-title {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-title {
    margin-bottom: 3.7333333333vw;
  }
}
.sec-company__office-photos {
  display: flex;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office-photos {
    gap: 1.5972222222vw 1.5972222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office-photos {
    gap: 23px 23px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-photos {
    gap: 4vw 4vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-photos {
    flex-direction: column;
    align-items: center;
  }
}
.sec-company__office-photo {
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office-photo {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office-photo {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-photo {
    border-radius: 21.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office-photo {
    width: 20.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office-photo {
    width: 300px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-photo {
    width: 80vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-company__office-photo {
    height: 11.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-company__office-photo {
    height: 160px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-company__office-photo {
    height: 42.6666666667vw;
  }
}
.sec-company__office-photo img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ==========================================================================
   イベント出店のご依頼セクション
   ========================================================================== */
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event {
    padding-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event {
    padding-top: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .obj1 {
    top: -13.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .obj1 {
    top: -190px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .obj1 {
    top: -25.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .obj1 {
    left: -3.8194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .obj1 {
    left: -55px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .obj1 {
    left: -7.4666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .obj1 {
    width: 18.9583333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .obj1 {
    width: 273px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .obj1 {
    width: 36.5333333333vw;
  }
}
.sec-event .event-card {
  background-color: #FAF6F1;
  border-radius: 40px;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-card {
    padding-top: 5.5555555556vw;
    padding-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-card {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-card {
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-card {
    padding-right: 6.25vw;
    padding-left: 6.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-card {
    padding-right: 90px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-card {
    padding-right: 6.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-card {
    max-width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-card {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-card {
    max-width: 89.3333333333vw;
  }
}
.sec-event .event-card {
  margin: 0 auto;
}
.sec-event .event-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-grid {
    gap: 4.1666666667vw 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-grid {
    gap: 60px 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-grid {
    gap: 8vw 8vw;
  }
}
.sec-event .event-grid {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-grid {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__image-wrap {
    width: 36.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__image-wrap {
    width: 529px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__image-wrap {
    height: 32.2916666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__image-wrap {
    height: 465px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__image-wrap {
    width: 100%;
  }
}
.sec-event .event__img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__img {
    border-radius: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__img {
    border-radius: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__img {
    border-radius: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__content {
    width: 30.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__content {
    width: 442px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__content {
    width: 80vw;
  }
}
.sec-event .event__title {
  line-height: 1.5;
  text-align: center;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__title {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__title {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__title {
    margin-left: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__title {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__title {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__title {
    font-size: 6.4vw;
  }
}
.sec-event .event__title span {
  --dot-color: #296FCC;
}
.sec-event .event__text {
  line-height: 2;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__text {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__text {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__text {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event__text {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event__text {
    font-size: 3.7333333333vw;
  }
}
.sec-event .event-info-box {
  background-color: #FFFFFF;
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box {
    border-radius: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box {
    border-radius: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box {
    border-radius: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box {
    padding-top: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box {
    padding-top: 32px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box {
    padding-top: 8.5333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box {
    padding-bottom: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box {
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box {
    padding-right: 2.2222222222vw;
    padding-left: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box {
    padding-right: 5.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.sec-event .event-info-box__label {
  background-color: #296FCC;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box__label {
    margin-bottom: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box__label {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box__label {
    margin-bottom: 4.8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box__label {
    border-radius: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box__label {
    border-radius: 22px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box__label {
    border-radius: 5.8666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box__label {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box__label {
    font-size: 22px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box__label {
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box__label {
    padding-top: 0.1388888889vw;
    padding-bottom: 0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box__label {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box__label {
    padding-top: 1.6vw;
    padding-bottom: 1.6vw;
  }
}
.sec-event .event-info-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: max-content max-content;
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box__list {
    grid-template-columns: 1fr;
  }
}
.sec-event .event-info-box__list li {
  line-height: 2;
  position: relative;
  padding-left: 15px;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-event .event-info-box__list li {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-event .event-info-box__list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-event .event-info-box__list li {
    font-size: 3.7333333333vw;
  }
}
.sec-event .event-info-box__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ==========================================================================
   お問い合わせフォーム (Contact Form 7 連携)
   ========================================================================== */
.sec-contact {
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact .obj1 {
    top: -4.0277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact .obj1 {
    top: -58px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact .obj1 {
    top: -7.7333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact .obj1 {
    right: -13.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact .obj1 {
    right: -190px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact .obj1 {
    right: 0vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact .obj1 {
    width: 13.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact .obj1 {
    width: 190px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact .obj1 {
    width: 25.3333333333vw;
  }
}
.sec-contact__inner {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact__inner {
    padding-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact__inner {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact__inner {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact__inner {
    padding-bottom: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact__inner {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact__inner {
    padding-bottom: 26.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact__inner {
    max-width: 52.1527777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact__inner {
    max-width: 751px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact__inner {
    max-width: 89.3333333333vw;
  }
}
.sec-contact__title {
  --dot-color: #EC54B1;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact__title {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact__title {
    font-size: 6.4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sec-contact__title {
    margin-bottom: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .sec-contact__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sec-contact__title {
    margin-bottom: 9.3333333333vw;
  }
}
.sec-contact__form {
  width: 100%;
  text-align: left;
}

.form-container {
  position: relative;
  letter-spacing: 0;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-container {
    max-width: 52.1527777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-container {
    max-width: 751px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-container {
    max-width: 89.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-container {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-container {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-container {
    margin-bottom: 8.5333333333vw;
  }
}

.form-row {
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-row {
    margin-bottom: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-row {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-row {
    margin-bottom: 4.8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-row {
    flex-direction: column;
    justify-content: space-between;
  }
}
.form-row.align-top {
  align-items: flex-start;
}

.form-label {
  font-weight: 700;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label {
    padding-top: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label {
    padding-top: 10px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label {
    width: 16.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label {
    width: 240px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label {
    width: 56.5333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label {
    margin-bottom: 1.3333333333vw;
  }
}
.form-label .required {
  color: #D11643;
  vertical-align: super;
  line-height: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label .required {
    margin-left: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label .required {
    margin-left: 5px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label .required {
    margin-left: 1.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label .required {
    font-size: 0.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label .required {
    font-size: 11px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label .required {
    font-size: 2.9333333333vw;
  }
}
.form-label .label-sub {
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label .label-sub {
    margin-top: 0.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label .label-sub {
    margin-top: 4px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label .label-sub {
    margin-top: 1.0666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-label .label-sub {
    font-size: 0.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-label .label-sub {
    font-size: 11px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-label .label-sub {
    font-size: 2.9333333333vw;
  }
}

.form-field {
  width: 100%;
}
@media screen and (max-width: 1023.9px) {
  .form-field {
    text-align: right;
  }
}
.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=tel],
.form-field input[type=number],
.form-field select,
.form-field textarea {
  width: 100%;
  background: #FAF6F1;
  border: none;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    font-size: 15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    padding-top: 0.6944444444vw;
    padding-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    padding-top: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    padding-right: 1.1111111111vw;
    padding-left: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    padding-right: 16px;
    padding-left: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field input[type=text],
  .form-field input[type=email],
  .form-field input[type=tel],
  .form-field input[type=number],
  .form-field select,
  .form-field textarea {
    padding-right: 4.2666666667vw;
    padding-left: 4.2666666667vw;
  }
}
.form-field input[type=text]::-moz-placeholder, .form-field input[type=email]::-moz-placeholder, .form-field input[type=tel]::-moz-placeholder, .form-field input[type=number]::-moz-placeholder, .form-field select::-moz-placeholder, .form-field textarea::-moz-placeholder {
  color: #BCB9B1;
}
.form-field input[type=text]::placeholder,
.form-field input[type=email]::placeholder,
.form-field input[type=tel]::placeholder,
.form-field input[type=number]::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
  color: #BCB9B1;
}
.form-field textarea {
  resize: vertical;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field textarea {
    height: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field textarea {
    height: 100px;
  }
}
.form-field .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio {
    padding-top: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio {
    padding-top: 8px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio {
    gap: 1.1111111111vw 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio {
    gap: 16px 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio {
    gap: 4.8vw 9.8666666667vw;
  }
}
.form-field .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.form-field .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio .wpcf7-list-item label {
    gap: 0.4166666667vw 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio .wpcf7-list-item label {
    gap: 6px 6px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio .wpcf7-list-item label {
    gap: 0.8vw 0.8vw;
  }
}
.form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  background-color: #FAF6F1;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
    width: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
    width: 24px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
    width: 6.4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
    height: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
    height: 24px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio] {
    height: 6.4vw;
  }
}
.form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #FF8031;
  transform: scale(0);
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
    width: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
    width: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
    width: 2.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
    height: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
    height: 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio .wpcf7-list-item input[type=radio]::before {
    height: 2.6666666667vw;
  }
}
.form-field .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::before {
  transform: scale(1);
}
.form-field .wpcf7-radio .wpcf7-list-item-label {
  font-weight: 500;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .form-field .wpcf7-radio .wpcf7-list-item-label {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .form-field .wpcf7-radio .wpcf7-list-item-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023.9px) {
  .form-field .wpcf7-radio .wpcf7-list-item-label {
    font-size: 3.7333333333vw;
  }
}

.submit-section {
  text-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .submit-section {
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .submit-section {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .submit-section {
    margin-bottom: 4.2666666667vw;
  }
}
.submit-section .wpcf7-spinner {
  display: none;
}
.submit-section .btn-submit {
  background: #FF8031;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .submit-section .btn-submit {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .submit-section .btn-submit {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023.9px) {
  .submit-section .btn-submit {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .submit-section .btn-submit {
    width: 14.8611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .submit-section .btn-submit {
    width: 214px;
  }
}
@media screen and (max-width: 1023.9px) {
  .submit-section .btn-submit {
    width: 57.0666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .submit-section .btn-submit {
    height: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .submit-section .btn-submit {
    height: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  .submit-section .btn-submit {
    height: 10.6666666667vw;
  }
}
.submit-section .btn-submit {
  transition: opacity 0.25s;
}
@media (pointer: fine) {
  .submit-section .btn-submit:hover {
    opacity: 0.7;
  }
}
.submit-section .submit-note {
  text-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .submit-section .submit-note {
    margin-top: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .submit-section .submit-note {
    margin-top: 22px;
  }
}
@media screen and (max-width: 1023.9px) {
  .submit-section .submit-note {
    margin-top: 5.8666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .submit-section .submit-note {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .submit-section .submit-note {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023.9px) {
  .submit-section .submit-note {
    font-size: 4.2666666667vw;
  }
}

/* ==========================================================================
   フッター
   ========================================================================== */
#site-footer {
  width: 100%;
  background-color: #f8f6f0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-footer {
    padding-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-footer {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-footer {
    padding-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  #site-footer {
    padding-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #site-footer {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  #site-footer {
    padding-bottom: 8vw;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-inner {
    padding-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-inner {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-inner {
    padding-bottom: 8vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-inner {
    max-width: 71.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-inner {
    max-width: 1036px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-inner {
    max-width: 56.8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-inner {
    gap: 8vw 8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
}

.footer-logos {
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-logos {
    gap: 2.0833333333vw 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-logos {
    gap: 30px 50px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-logos {
    gap: 4vw 8vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-logos {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1023.9px) {
  .footer-logo {
    margin: 0 auto;
    text-align: center;
  }
}
.footer-logo img {
  height: auto;
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 1023.9px) {
  .footer-logo img {
    margin: 0 auto;
  }
}
.footer-logo p {
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-logo p {
    margin-top: 0.4861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-logo p {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-logo p {
    margin-top: 1.8666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-logo p {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-logo p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-logo p {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-logo--bh {
    width: 17.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-logo--bh {
    width: 251px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-logo--bh {
    width: 53.3333333333vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-logo--posc {
    width: 26.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-logo--posc {
    width: 384px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-logo--posc {
    width: 56.8vw;
  }
}

.footer-address {
  margin: 0;
  line-height: 1.6;
  color: #616161;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-address {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-address {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-address {
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-address {
    margin-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-address {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-address {
    margin-bottom: 2.6666666667vw;
  }
}

.sns-wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .sns-wrap {
    gap: 0.6944444444vw 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .sns-wrap {
    gap: 10px 10px;
  }
}
@media screen and (max-width: 1023.9px) {
  .sns-wrap {
    gap: 2.6666666667vw 2.6666666667vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .sns-wrap {
    justify-content: center;
  }
}

.footer-sns {
  border-radius: 50%;
  background-color: #EC54B1;
  transition: opacity 0.25s;
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-sns {
    width: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-sns {
    width: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-sns {
    width: 10.6666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-sns {
    height: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-sns {
    height: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-sns {
    height: 10.6666666667vw;
  }
}
.footer-sns.x {
  background-color: #000;
}
@media (pointer: fine) {
  .footer-sns:hover {
    opacity: 0.7;
  }
}
.footer-sns__link {
  display: block;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-sns__link {
    width: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-sns__link {
    width: 26px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-sns__link {
    width: 7.4666666667vw;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .footer-sns__link {
    height: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .footer-sns__link {
    height: 26px;
  }
}
@media screen and (max-width: 1023.9px) {
  .footer-sns__link {
    height: 7.4666666667vw;
  }
}
.footer-sns__link img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .copyright {
    margin-top: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .copyright {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1023.9px) {
  .copyright {
    margin-top: 8vw;
  }
}
.copyright p {
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1439.8px) {
  .copyright p {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .copyright p {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023.9px) {
  .copyright p {
    font-size: 3.2vw;
  }
}

.c-float-btns {
  position: fixed;
  z-index: 1000;
}
@media screen and (max-width: 1023.9px) {
  .c-float-btns {
    right: 5.3333333333vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .c-float-btns {
    bottom: 2.4vw;
  }
}

.c-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #FF8031;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.35);
  text-align: center;
  font-family: "mizoletbokutoh", sans-serif;
}
@media screen and (max-width: 1023.9px) {
  .c-float-btn {
    width: 16vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .c-float-btn {
    height: 16vw;
  }
}
@media screen and (max-width: 1023.9px) {
  .c-float-btn {
    font-size: 3.2vw;
  }
}
/*# sourceMappingURL=style.css.map */
