@charset "UTF-8";

/*********************
ROOT
*********************/
:root {
  --JP-gothic: "Zen Kaku Gothic Antique", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic Medium", "Yu Gothic", sans-serif;
  --JP-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  --EN-gothic: "Roboto", sans-serif;
  --bg-color: #fafafa;
  --bg-color-pale: #ffffff;
  --main-color: #222222;
  --sub-color: #000;
  --point-color: #d91760;
  --append-color: #999999;
  --border-color: #dfdfdf;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 575px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

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

/*********************
clearfix
*********************/

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}

.clearfix:after,
.container:after,
.row:after {
  clear: both;
}

/*********************
COLOR
*********************/

/* font-color */

.color-red {
  color: #c00 !important;
}

.color-blue {
  color: #5186c0 !important;
}

.color-purple {
  color: #9370db !important;
}

.color-white {
  color: white !important;
}

.color-yellow {
  color: yellow !important;
}

.color-green {
  color: #00af5b !important;
}

.color-gray {
  color: #CCC !important;
}


.color-sub {
  color: var(--sub-color) !important;
}

.color-point {
  color: var(--point-color) !important;
}

.color-append {
  color: var(--append-color) !important;
}

.marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}

.bg-gray {
  background-color: #fafafa !important;
}

.bg-darkgray {
  background-color: #554e4f !important;
}

.bg-black {
  background-color: #222 !important;
}

.bg-white {
  background-color: white !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-pale {
  background-color: var(--bg-color-pale) !important;
}

/* A TAG */

a {
  transition: 0.14s ease-out;
  color: var(--main-color);
}

a.ar {
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: var(--main-color);
  margin: 5px 0;
  padding-right: 34px;
}

a.ar::before,
a.btn.bullet::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  background: #EEE;
  top: calc(50% - 11px);
  right: 7px;
  border-radius: 50%;
  transition: 0.2s;
}

a.btn.bullet.fill::before {
  background: white;
  opacity: .3;
}

a.ar::after,
a.btn.bullet::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  position: absolute;
  top: calc(50% - 3.5px);
  right: 15px;
  transform: rotate(45deg);
}

a.ar:hover::before {
  filter: var(--filter-point-color);
}

a.underline {
  text-decoration: underline !important;
}

a:hover {
  color: var(--append-color);
}

a.img:hover {
  opacity: .7;
}

a.outlink::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 6px;
  display: inline-block;
  background: url(../images/icon-outlink.svg) no-repeat left center;
  background-size: contain;
}

/*********************
BUTTON
*********************/

a.btn {
  position: relative;
  text-decoration: none;
  font-weight: bold;
  font-size: .9em;
  text-align: center;
  display: inline-block;
  padding: 9px 20px;
  margin: 5px 0 10px;
  background-color: var(--main-color);
  color: white;
  border-radius: 50px;
}
a.btn:hover {
  opacity: .6;
}

a.btn.btn-ar {
  padding: 1.2em 4em 1.2em 2em;
  text-align: left;
}

a.btn-ar::before {
  position: absolute;
  top: calc(50% - 9px);
  right: 12px;
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/icon-ar.svg) no-repeat left center;
  transition: 0.2s;
}

a.btn.full {
  width: 100%;
}

a.btn.small {
  padding: 0.3em 1.2em 0.4em;
  min-width: auto;
}

a.btn.bullet {
  padding: 9px 38px 9px 20px;
  min-width: auto;
  border-radius: 40px;
  font-size: .9em;
  line-height: 1.4;
  position: relative;
  border: 1px solid #eee;
  background-color: white;
  color: var(--main-color);
}
a.btn.bullet.dark {
  border: 1px solid #000;
  background-color: var(--main-color);
  color: white;
}
a.btn.bullet:hover {
  color: white;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

a.btn.bullet.fill {
  background-color: var(--point-color);
  border-color: var(--point-color);
  color: white;
}

a.btn.bullet.fill:hover {
  opacity: .7;
}

a.btn.bullet.reverse {
  padding: 9px 20px 9px 38px;
}
a.btn.bullet.reverse::before {
  right: auto;
  left: 7px;
}
a.btn.bullet.reverse::after {
  left: 16px;
  transform: rotate(225deg);
}

a.btn.bullet.small {
  font-size: .8em;
}

a.btn.bullet.large {
  min-width: 260px;
  padding: 14px 28px 14px 18px;
  border-radius: 30px;
  font-size: 1em;
}

span.btn.under {
  position: relative;
  display: block;
  min-width: auto;
  width: fit-content;
  padding: 9px 28px 9px 18px;
  background: var(--border-color-pale);
  color: #878172;
  border-radius: 20px;
  font-size: 0.8em;
  line-height: 1.4;
}

@media screen and (min-width: 681px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

@media screen and (max-width: 680px) {
  a.btn {
    min-width: auto;
  }

  a[href^="tel:"] {
    text-decoration: none;
    border-bottom: 1px dotted #5186c0;
  }
}

@media screen and (max-width: 480px) {
  a.btn {
    display: block;
    width: 100%;
    margin: 5px auto 10px;
    padding: 12px;
  }

  a.btn.bullet {
    width: fit-content;
    margin-right: inherit;
    margin-left: inherit;
  }

  .align-center a.btn.bullet {
    margin-right: auto;
    margin-left: auto;
  }

  a.btn.box {
    width: 100%;
  }
}

/*********************
ELEMENTS
*********************/

html {
  font-size: 62.5%;
  height: 100%;
  background-color: var(--bg-color);
}

body,
input,
textarea {
  font-family: var(--JP-gothic);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--main-color);
  position: relative;
}

input,
textarea {
  font-weight: normal;
}

@media screen and (min-width: 991px) {
  body {
    font-size: 1.6rem;
  }

  section.content-wrapper {
    padding: 80px 0;
  }
}

@media screen and (max-width: 990px) {
  html {
    height: 100%;
  }

  body {
    height: 100%;
    font-size: 1.5rem;
  }

  section.content-wrapper {
    padding: 60px 0;
  }
}

@media screen and (max-width: 680px) {
  html {
    height: 100%;
  }

  body {
    height: 100%;
    font-size: 1.3rem;
  }

  section.content-wrapper {
    padding: 40px 0;
  }
}

/* title */
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
}

h3.title.style-box {
  font-size: 1.4em;
  padding: 1.2em 2em;
  background: #f0f0f0;
  margin-bottom: 2em;
  border-radius: 3px;
}

h3.title.en,
h3.title.jp {
  font-size: 1.1em;
  margin-bottom: .8em;
  letter-spacing: 1px;
}
h3.title.en {
  font-weight: 800;
}
h3.title small {
  font-size: .6em;
}

h4 {
  font-size: 1.1em;
}

h4.title {
  padding-bottom: 1em;
}
h4.title.border {
  border-left: 6px solid var(--border-color);
  padding-left: 1em;
  padding-bottom: 0;
  margin-bottom: 1em;
}

h5 {
  font-size: 0.9em;
}

@media screen and (max-width: 680px) {}

th {
  text-align: left;
}

dt {
  font-weight: bold;
}

dl,
dt,
dd {
  margin: 0;
}

em {
  font-style: normal;
  font-weight: 800;
  color: var(--point-color);
  background: linear-gradient(transparent 90%, yellow 10%);
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.list {
  list-style: none;
}

ul.list>li {
  padding: 0.2em 0;
}

ul.odd li,
ol.odd li {
  padding: 0.8em 0.4em;
}

ul.odd li:nth-child(odd),
ol.odd li:nth-child(odd) {
  background-color: #fff;
  border-top: 1px solid var(--sub-color-append);
  border-bottom: 1px solid var(--sub-color-append);
}

ul.voice li {
  padding-left: 28px;
  background: url(../images/voice.svg) top 1em left 6px no-repeat;
  background-size: 14px;
}

ul.list-disc {
  margin-left: 1.5em;
}

ul.list-disc li {
  list-style: disc;
  list-style-position: outside;
  margin-bottom: 0.5em;
}

ul.list-disc li:last-child {
  margin-bottom: 0;
}

ul.list-disc li ul li {
  list-style: circle;
}

ol {
  counter-reset: item;
}

ol li {
  list-style: none;
  margin-bottom: 1em;
  position: relative;
  padding-left: 2em;
}

ol.odd li {
  list-style: none;
  margin-bottom: 1em;
  position: relative;
  padding-left: 2.4em !important;
}

ol li:before {
  position: absolute;
  left: 0.4em;
  counter-increment: item;
  content: counter(item) " )";
  display: inline-block;
  font-weight: bold;
}

ul.list-disc-small {
  margin-left: 1em;
  font-size: 0.86em;
}

ul.list-disc-small li {
  list-style: circle;
  list-style-position: outside;
  margin-bottom: 1em;
}

img.img100 {
  width: 100%;
}

img.circle {
  border-radius: 50%;
}

table.data {
  width: 100%;
}

table.data tbody tr:last-child {
  border-bottom: none;
}

table.data tbody td {
  padding: 1em;
  border-bottom: 1px solid var(--border-color);
}

table.data tbody th {
  font-weight: bold;
  font-size: 0.9em;
  padding: 1em 1em 1em 0;
  border-bottom: 1px solid var(--border-color);
}

table.data tbody th:first-of-type {
  border-top: 1px solid var(--border-color);
}

table.data thead+tbody th:first-of-type {
  border-top: none;
}

table.data tbody tr:first-of-type {
  border-top: 1px solid var(--border-color);
}

table.data tbody td:last-child {
  border-right: none;
}

table.data tbody td {
  text-align: left;
}

table.data.center td {
  text-align: center;
}

table.data th.w25 {
  width: 25%;
}

table.data th.w40 {
  width: 40%;
}

tr.tate th,
tr.tate td {
  text-align: center;
}

tr.tate th span,
tr.tate td span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}

table.data.align-center * {
  text-align: center;
}

table.data.sep thead th {
  background: #f5f6f1;
  border-right: 1px dashed #c5cdd1;
  padding: 1em;
}

table.data.sep tbody th {
  background: #f1f4f6;
  padding-left: 1em;
  padding-right: 1em;
}

table.data.sep tbody td {
  border-right: 1px dashed #c5cdd1;
}

table.data.sep thead th:last-of-type,
table.data.sep tbody td:last-of-type {
  border-right: none;
}

table.data.odd tbody tr:nth-of-type(even) th {
  background: #e3e9ed;
}

table.data.odd tbody tr:nth-of-type(even) td {
  background: #fafafa;
}

@media screen and (max-width: 680px) {

  table.data td,
  table.data th {
    text-align: left;
  }

  table.data.sp-row tr:first-of-type,
  table.data.sp-row td,
  table.data.sp-row th {
    display: block;
    border: none;
    padding: 10px 0;
  }

  table.data.sp-row th,
  table.data.sp-row tbody th:first-of-type {
    border-top: 1px solid var(--border-color);
    width: 100% !important;
    padding: 10px 0 0;
  }

  table.data.sp-row th::before {
    display: inline-block;
    color: var(--sub-color);
    content: "■";
    font-size: .5em;
    margin-right: 3px;
  }
}

@media screen and (max-width: 1199px) {
  .table-scroll.lg {
    overflow-x: scroll;
    position: relative;
  }

  .table-scroll.lg table {
    width: 100%;
    white-space: nowrap;
  }

  .table-scroll.lg::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 991px) {
  .table-scroll.md {
    overflow-x: scroll;
    position: relative;
  }

  .table-scroll.md table {
    width: 100%;
    white-space: nowrap;
  }

  .table-scroll.md::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 580px) {
  .table-scroll {
    overflow-x: scroll;
    position: relative;
  }

  .table-scroll table {
    width: 100%;
    white-space: nowrap;
  }

  .table-scroll::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #f6f3ec;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

hr.sep {
  display: block;
  width: 100%;
  margin: 0;
  height: 1px;
  border-top: 1px dashed var(--sub-color);
}


hr.sep.narrow {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  border-top: 1px solid var(--sub-color);
}

hr.sep.simple::before,
hr.sep.simple::after {
  display: none;
}

@media screen and (max-width: 680px) {}

figure {
  margin: 0;
  padding: 0;
}

/*********************
LAYOUT
*********************/

.lh0 {
  line-height: 0;
}

.lh18 {
  line-height: 1.8;
}

/*********************
DESIGN
*********************/

.en {
  font-family: var(--EN-gothic);
  font-weight: 500;
}

.jp {
  font-family: var(--JP-gothic);
}

.emoji {
  font-family: var(--emoji-font);
}

.style-round {
  border-radius: 10px;
}

.style-round.min {
  border-radius: 3px;
}

.style-border {
  border: 1px solid var(--main-color);
}

.style-border.sub {
  border: 1px solid var(--sub-color);
}

.style-border.point {
  border: 1px solid var(--point-color);
}

.style-border.append {
  border: 1px solid var(--sub-color-append);
}

.style-border.thick {
  border-width: 2px !important;
}

.style-border.thickest {
  border-width: 4px !important;
}

.style-shadow {
  box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.1);
}

.minimum-area {
  min-height: 550px;
}

.bg-secondary {
  background: var(--bg-color-pale) !important;
}

.bg-secondary.blue {
  background: #ebf6f7 !important;
}

.font-small {
  font-size: 0.85em;
}

.font-large {
  font-size: 1.3em;
}

.font-xlarge {
  font-size: 1.6em;
}

.font-xxlarge {
  font-size: 1.9em;
}

strong {
  font-weight: 600;
}

@media screen and (max-width: 1199px) {
  .font-large {
    font-size: 1.9rem;
  }

  .font-xlarge {
    font-size: 2.1rem;
  }

  .font-xxlarge {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .font-small {
    font-size: 11px;
  }

  .font-large {
    font-size: 1.6rem;
  }

  .font-xlarge {
    font-size: 1.8rem;
  }

  .font-xxlarge {
    font-size: 2.0rem;
  }

  .minimum-area {
    min-height: 300px;
  }
}

.strong {
  font-weight: 600;
}

.font-mincho {
  font-family: var(--JP-mincho);
}

.semi-strong {
  font-weight: 500;
}

.text-tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}

/* box */

.box {
  padding: 2.2em 2.6em;
  width: 100%;
  background: var(--bg-color);
}

.box.pale {
  background: var(--bg-color-pale);
}

.box.line {
  border: 1px solid var(--border-color);
}

.box.line.blk {
  border: 1px solid #000;
}

.box.line.green {
  border: 1px solid var(--sub-color);
}

@media screen and (max-width: 991px) {
  .box {
    width: 100%;
  }
}

@media screen and (max-width: 565px) {
  .box {
    padding: 20px 10px;
  }
}

.height100 {
  height: 100%;
}

.height-auto {
  height: auto !important;
}

.box-height-wrapper {
  display: -wbkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*********************
HEADER
*********************/

#head-wrapper h1 {
  width: 240px;
  margin: 20px 40px 20px 0;
}
.logo-sp {
  display: none;
}

/* entry */
#head-entry-sp {
  display: none;
}

#head-entry {
  line-height: 1;
  display: flex;
  align-items: center;
  font-weight: 600;
}

#head-entry a {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 14px 1.8em;
  font-size: 1.2rem;
  border-radius: 40px;
  border: 1px solid var(--main-color);
}

#head-entry a.organizer-btn {
  color: var(--main-color);
  background-color: var(--bg-color);
}

#head-entry a.use-btn:hover {
  background-color: var(--point-color);
  border-color: var(--point-color);
}

#head-entry a.envelope-btn {
  padding-left: 3.4em;
  margin-left: 5px;
  background-color: var(--main-color);
  color: white;
}

#head-entry a.envelope-btn::before {
  position: absolute;
  top: calc(50% - 6px);
  left: 1.4em;
  display: block;
  content: url(../images/icon-mail.svg);
  width: 18px;
  transition: .1s;
}

#head-entry a:hover {
  color: white;
  background-color: var(--append-color);
}

.open-bg {
  display: none;
}

@media screen and (max-width: 880px) {

}

@media screen and (min-width: 1400px) {
  #top-head {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    transition: 0.2s;
  }

  #top-head.is-fixed {
    background: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  #head-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 50px;
  }

  #top-head.is-fixed #head-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
  }

  #head-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    line-height: 0;
  }

  header#top-head {
    padding: 0;
  }

  #nav-toggle {
    display: none;
  }
}

@media screen and (max-width: 1399px) {
  h1 .logo {
  display: none;
}
.logo-sp {
  display: block;
  width: 180px;
  height: 33px;
  margin-left: 15px;
  padding-top: 8px;
}
  #head-entry {
    display: none;
  }

  #top-head {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50px;
  }

  #head-wrapper {
    width: 100%;
    display: block;
    position: relative;
  }

  /* entry */
  #head-entry-sp a {
    position: relative;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--main-color);
    background: white;
    border: 1px solid var(--main-color);
    font-weight: 700;
  }

  /* Toggle Button */
  #nav-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    top: 0;
    right: 0;
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: #ccc;
  }

  #nav-toggle div {
    position: relative;
  }

  #nav-toggle span {
    display: inline-block;
    position: absolute;
    background: var(--main-color);
    height: 1px;
    width: 26px;
    left: 12px;
    transition: 0.2s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 18px;
  }

  #nav-toggle span:nth-child(2) {
    top: 24px;
  }

  #nav-toggle span:nth-child(3) {
    top: 30px;
  }

  /* open */
  body.open .open-bg {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
  }

  body.open {
    overflow: hidden;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 24px;
    transform: rotate(-45deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    opacity: 0;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 24px;
    transform: rotate(45deg);
  }

  main.main {
    /*padding-top: 56px;*/
    padding-top: 20px;
  }

}
@media screen and (min-width: 768px) and (max-width: 1399px) {
  .logo-sp {
    padding-top: 15px;
  }
}
@media screen and (min-width: 580px) and (max-width: 1399px) {
  #head-entry-sp,
  #top-head.is-fixed #head-entry-sp {
    display: block;
    position: fixed;
    z-index: 99;
    top: 15px;
    right: 65px;
  }
}

/*********************
NAVIGATION
*********************/

#head-global-nav>ul>li {
  margin-right: 2em;
}

#head-global-nav>ul>li a {
  text-decoration: none;
  font-weight: 600;
  display: block;
  position: relative;
  color: var(--main-color);
  font-size: 1.6rem;
  padding: 20px 0;
}

#head-global-nav>ul>li a:hover {
  color: var(--append-color);
}

@media screen and (min-width: 1400px) {
  #top-head.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }

  #head-global-nav {
    display: flex;
    align-items: end;
    margin-right: 30px;
  }

  #head-global-nav>ul {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
  }

  #head-global-nav>ul li {
    position: relative;
  }

  #head-global-nav>ul li a {
    vertical-align: middle;
  }

  #head-global-nav>ul li a::after {
    left: calc(50% - 3px);
    width: 6px;
  }

  #head-global-nav>ul>li.contact {
    display: none;
  }
}

@media screen and (max-width: 1399px) {
  body.open {
    scrollbar-gutter: stable;
  }

  #head-nav-wrapper {
    position: fixed;
    background: var(--main-color);
    transition: all 0.1s ease-out;
    overflow-y: auto;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1001;
    opacity: 0;
    margin: 0;
    padding: 60px 0;
  }

  .open #head-nav-wrapper {
    top: 0;
    opacity: 1;
  }

  #head-global-nav {
    width: 80%;
    max-width: 880px;
    margin: 0 auto;
  }

  #head-global-nav ul {
    margin-bottom: 1em;
    display: flex;
    flex-wrap: wrap;
  }

  #head-global-nav ul li {
    width: 33.33%;
    margin: 0 0 10px;
  }

  #head-global-nav ul li a {
    text-decoration: none;
    padding: 15px 0;
    margin: 0;
    display: block;
    color: var(--bg-color);
  }

  #head-global-nav ul li.contact {
    width: 100%;
    margin: 0 0 7px;
    border-radius: 40px;
    text-align: center;
  }

  #head-global-nav ul li.contact.use {
    margin-top: 10px;
  }

  #head-global-nav ul li.contact a {
    border: 1px solid #666;
    border-radius: 40px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 680px) {

  #head-nav-wrapper>h1,
  #head-global-nav {
    width: 90%;
  }

  #head-nav-wrapper>h1 img {
    max-width: 200px;
  }

  .open .logo-sp img {
    width: 100%;
  }
  #head-global-nav ul li {
    text-align: center;
    width: 100%;
    margin: 0;
    border-top: 1px dotted #666;
  }
}

/*********************
FOOTER
*********************/

#footer {
  background: white;
  border-top: 1px solid var(--border-color);
  padding: 3em 0;
}

/* primary */
#foot-wrapper .logo {
  margin-bottom: 1em;
  width: 280px;
}
#foot-wrapper .logo img {
  padding: 0;
  width: 100%;
}

/* secondary */
#foot-wrapper .contact,
#foot-wrapper .policy {
  display: flex;
  flex-wrap: wrap;
}
#foot-wrapper .policy a {
  font-size: .8em;
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
  font-weight: 500;
}

#footer .copyright {
  font-size: 0.7em;
  font-family: var(--EN-gothic);
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 880px) {
  #foot-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 20px 50px 50px;
  }
  #foot-wrapper .primary {
    display: flex;
    align-items: center;
  }
  #foot-wrapper .logo {
    margin-right: 40px;
  }

  #foot-wrapper .policy,
  #foot-wrapper .contact {
    justify-content: right;
  }
  #foot-wrapper .contact {
    margin-bottom: 10px;
  }
  
}
@media screen and (max-width: 1099px) {
  #foot-wrapper .primary {
    display: block;
  }
}
@media screen and (max-width: 879px) {
  #foot-wrapper,
  #footer .copyright {
    padding: 0 20px;
    text-align: left;
  }
  #foot-wrapper .logo {
    width: 60%;
    max-width: 220px;
  }
  #foot-wrapper .sns {
    margin-bottom: 1.5em;
  }
  #foot-wrapper {
    width: 100%;
    display: block;
    position: relative;
  }
  #foot-wrapper .secondary {
    margin-bottom: 1.5em;
  }
}

@media screen and (min-width: 680px) {
#foot-wrapper .policy li:first-of-type {
  margin-right: 1.5em;
}
#foot-wrapper .contact li {
  margin-right: 5px;
}
#foot-wrapper .contact li:last-of-type {
  margin-right: 0;
}
}

@media screen and (max-width: 679px) {
  #foot-wrapper .primary,
  #foot-wrapper .primary .logo {
    margin-left:auto;
    margin-right:auto;
    width: fit-content;
  }
  #foot-wrapper .secondary ul {
    display: block;
  }
  #foot-wrapper .secondary li a {
    display: block;
    width: 100%;
  }
  #foot-wrapper .secondary .contact li a {
    margin-bottom: 5px;
  }
  #foot-wrapper .secondary .policy li a {
    padding: 10px 0;
  }
}

/* to_top */

#pageTop {
  position: fixed;
  right: 20px;
  bottom: 0;
  width: 58px;
  height: 58px;
  text-align: center;
  z-index: 10;
  margin: 0;
}

#pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  background: var(--main-color);
  border: 1px solid white;
  border-bottom: none;
}

#pageTop a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 5px);
  transform: rotate(-45deg);
}

@media all and (max-width: 580px) {

  #pageTop {
    right: 10px;
    width: 34px;
    height: 34px;
  }

  #pageTop a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 5px);
    transform: rotate(-45deg);
  }
}


/*********************
FORM
*********************/

.form {
  padding: 0;
  margin: 0;
}

input[type="submit"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  border: none;
  background: white;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 100%;
  transition: 0.2s;
  border-radius: 3px;
  border: 1px solid #ccc;
}

input.short {
  width: 50%;
  min-width: 200px;
  max-width: 280px;
}

@media screen and (max-width: 880px) {
  input.short {
    min-width: inherit;
    max-width: inherit;
    width: 100%;
  }
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  background: #f8f8f8;
  border: 1px solid var(--main-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

.form dl:first-of-type {
  border-top: 1px dotted var(--main-color);
}

.form dl {
  padding: 1.5em 0;
  margin: 0;
  border-bottom: 1px solid var(--border-color);
}

.form dl.form-required dt:after {
  content: "必須";
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  background: #cd5c5c;
  color: white;
  line-height: 1;
  padding: 3px 5px;
  border-radius: 3px;
}

.form .label-box {
  display: block;
  background: white;
  border-radius: 5px;
  padding: 0.5em 1em;
}

.form .label-box label {
  width: 100%;
}

/* radio */

.form .wpcf7-list-item {
    display: block !important;
    margin: 0 0 10px;
}

.form ul.radio li {
  margin-bottom: .5em;
  font-weight: 500;
}

.form ul.radio li input {
  margin-right: 5px;
}

/*select*/
.form .selectbox {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.form .selectbox select {
  cursor: pointer;
  font-size: 16px;
  padding: 8px 25px 8px 15px;
  text-indent: 0.01px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.form .selectbox::after {
  position: absolute;
  content: "";
  top: 18px;
  right: 8px;
  width: 0;
  height: 0;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #666 transparent transparent transparent;
}

/*button*/
.submit-btn {
  text-align: center;
  margin-top: 20px;
}

.submit-btn input[type="submit"],
.submit-btn input[type="button"],
.submit-btn button[type="submit"],
input[type="submit"].submit-btn,
input[type="button"] {
  transition: 0.2s ease-out;
  color: white;
  background: var(--main-color);
  font-weight: bold;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 0.9em;
  padding: 1.2em 2em;
  border-radius: 10px;
  font-family: var(--JP-gothic);
}

input[type="submit"].submit-btn:disabled {
  background: #ccc;
  color: white;
  border: 2px solid #444;
  box-shadow: none;
}

input[type="submit"].submit-btn:enabled:hover {
  background: var(--point-color);
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

input[type="button"] {
  background: var(--main-color);
  color: white;
  border: none;
}

.submit-btn input[type="submit"]:hover,
.submit-btn input[type="button"]:hover,
.submit-btn button[type="submit"]:hover,
input[type="button"]:hover {
  opacity: .8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 881px) {
  .form dl {
    display: flex;
  }

  .form dl dt {
    width: 300px;
  }

  .form dl dd {
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 880px) {
  .form dl {
    margin: 0 0 1em;
    display: block;
  }

  .form dl dt {
    line-height: 1;
    padding-bottom: 10px;
  }

  .form dl dd {
    margin-bottom: 0;
  }
}

input#requestName {
  border: none;
  background: #f5ecd7;
  font-weight: bold;
}

#reserve .privacy .inner {
  height: 300px;
  overflow: auto;
  border: 1px solid #EEE;
  background: white;
  font-size: .9em;
}

#reserve .privacy .inner>* {
  padding: 1em;
  line-height: 1.8;
}

#reserve .privacy .inner h5 {
  font-size: 1.1em;
  margin: 0;
  padding-bottom: 0;
}

#reserve .privacy .inner p {
  margin: 0 0 1em;
}


/*********************
BREADCRUMBS
*********************/
.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
}

.breadcrumbs ul li {
  position: relative;
  margin-right: 12px;
  padding-right: 12px;
}

.breadcrumbs ul li::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  border-top: 1px solid var(--sub-color);
  border-right: 1px solid var(--sub-color);
  transform: rotate(45deg);
}

.breadcrumbs ul li:last-of-type {
  font-weight: bold;
}

.breadcrumbs ul li:last-of-type:after {
  display: none;
}

/*********************
CONTENT-DECORATION
*********************/

.bg-rectangle {
  position: relative;
  background-color: var(--bg-color-pale);
}

.bg-rectangle::before {
  position: absolute;
  top: 0;
  left: 50px;
  top: 0;
  border-radius: 20px;
  background-color: #f9fbfb;
  content: "";
  width: calc(100% - 100px);
  height: 100%;
}
#section-lead + #section-information.bg-rectangle::before {
    margin-top: 40px;
}

@media screen and (min-width: 1480px) and (max-width: 1600px) {
  .bg-rectangle::before {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

@media screen and (max-width: 1280px) {
  .bg-rectangle::before {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

/* 2column */
.side-menu-wrapper {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

.side-menu-wrapper .side-menu {
  width: 240px;
  margin-right: 60px;
  position: relative;
  order: 2;
}

.side-menu-wrapper .side-menu h3 {
  font-size: 1.1em;
  color: var(--sub-color);
  margin-bottom: 7px;
}

.side-menu-wrapper .side-menu.sticky .inner {
  position: sticky;
  top: 160px;
}

.side-menu-wrapper .side-menu nav ul {
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.side-menu-wrapper .side-menu nav ul li a {
  font-size: 0.8em;
  text-decoration: none;
  display: block;
  border-bottom: 1px dashed var(--border-color);
  padding: 0.7em 1em;
}

.side-menu-wrapper .side-menu .school-cat nav li a {
  padding-left: calc(1em + 16px);
}

.side-menu-wrapper .side-menu .school-cat nav li a::before {
  left: 1em;
}

.side-menu-wrapper .side-menu nav ul li a i {
  font-family: var(--emoji-font);
  font-style: normal;
}

.side-menu-wrapper .side-menu nav ul li.sub a {
  font-size: 12px;
  border-bottom: 1px dashed var(--main-color);
  padding-left: 10px;
  font-weight: 500;
}

.side-menu-wrapper .side-menu nav ul li.sub a::before {
  display: inline-block;
  content: "・";
  color: #f7080f;
}

.side-menu-wrapper .side-menu nav ul li:last-child a {
  border: none;
}

.side-menu-wrapper .side-menu nav ul li.current a {
  color: white;
  background: var(--main-color);
}

.side-menu-wrapper .main-content {
  width: calc(100% - 300px);
  order: 1;
}



/* tag-cloud */
.side-menu-wrapper .side-menu .widget-tag-cloud li {
  display: inline-block;
  padding: 2px;
  font-size: 1.1rem;
}

.side-menu-wrapper .side-menu .widget-tag-cloud li a {
  display: block;
  text-decoration: none;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2px 10px;
  font-weight: bold;
}

/* info */
#page-info .side-menu-wrapper {
  flex-direction: row-reverse;
}

@media screen and (min-width: 991px) {
  #page-info .side-menu-wrapper .side-menu {
    margin-left: 60px;
    margin-right: 0;
  }

  #page-info .side-menu-wrapper .main-content {
    width: calc(100% - 280px);
  }
}

@media screen and (max-width: 1200px) {
  .side-menu-wrapper .side-menu {
    width: 180px;
  }

  .side-menu-wrapper .main-content {
    width: calc(100% - 240px);
  }
}

@media screen and (max-width: 990px) {
  #page-info .side-menu-wrapper {
    flex-direction: column-reverse;
  }

  #page-info .side-menu-wrapper .side-menu {
    width: 100%;
    margin: 0;
  }

  #page-info .side-menu-wrapper .main-content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .side-menu-wrapper {
    flex-direction: column-reverse;
  }

  .side-menu-wrapper .side-menu {
    width: 100%;
    margin: 0;
    margin-bottom: 40px;
  }

  .side-menu-wrapper .main-content {
    width: 100%;
  }

  .side-menu-wrapper .side-menu nav.half ul {
    display: flex;
    flex-wrap: wrap;
  }

  .side-menu-wrapper .side-menu nav.half ul li {
    width: 50%;
  }

  .side-menu-wrapper .side-menu nav.half ul li:nth-of-type(odd) a {
    border-right: 1px dashed var(--border-color);
  }

  .side-menu-wrapper .side-menu nav.half ul li:nth-last-child(-n + 2):nth-of-type(odd) a {
    border-bottom: none;
  }
}

/* zoom */
.zoom-wrapper {
  position: relative;
}
.zoom-wrapper::before,
.zoom-wrapper::after {
  display: block;
  position: absolute;
  content: "";
}
.zoom-wrapper::before {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--point-color);
  bottom: 20px;
  right: 20px;
  transition: .2s;
}
.zoom-wrapper::after {
  background: url(../images/icon-search.svg);
  background-size: contain;
  filter: var(--filter-white);
  width: 16px;
  height: 16px;
  bottom: 29px;
  right: 29px;
}

.zoom-wrapper:hover::before {
  opacity: .6;
}
.slb_data_title {
  font-family: var(--JP-gothic) !important;
  font-size: 1.4rem !important;
  padding: 3px 10px !important;
  border-radius: 4px !important;
  background: var(--bg-color) !important;
}

/* Movie */
.movie-wrapper {
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 3em;
}
.youtube {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .movie-wrapper {
    border-radius: 8px;
    padding: 1em;
  }
}

/*********************
SLIDE
*********************/

/* dots */
.slick-dots li {
  width: 50px;
  height: 6px;
  margin: 0 2px;
  padding: 0;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 50px;
  height: 6px;
  padding: 2px;
}
.slick-dots li button::before {
  line-height: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  border-radius: 3px;
  opacity: .1;
  transition: .2s;
}

/*home*/
#home-event-list .slick-dots li {
  width: 50%;
  margin: 0;
}
#home-event-list .slick-dots li button {
  width: 50%;
  padding: 2px;
}
#home-event-list .slick-dots li button::before {
  border-radius: 0;
}

/* Arrows */
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 58px;
  height: 28px;
  background: var(--main-color);
  border-radius: 20px;
  transition: all .3s ease;
  cursor: pointer;
  position:relative;
}

.prev-arrow {
  transform: rotate(180deg);
  margin-right: 5px;
  transition: .2s;
}

.prev-arrow::before,
.next-arrow::before{
  position:absolute;
  content: "";
  width:6px;
  height:6px;
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  transform:rotate(45deg);
}
.prev-arrow:hover,
.next-arrow:hover {
  opacity: .6;
}

/* SNS */

.sns-icons-wrapper-block {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1.2em 2.4em;
  width: fit-content;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.sns-icons-wrapper-block .title {
  font-size: .9em;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}
.sns-icons-wrapper.sns {
  display: flex;
  gap: 4px;
}
.sns-icons-wrapper.sns li {
  display: block;
  font-size: 0;
}
.sns-icons-wrapper.sns a {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .3;
}

.sns-icons-wrapper.sns a:hover {
  opacity: 1;
}

.sns-icons-wrapper.sns li,
.sns-icons-wrapper.sns a {
  width: 32px;
  height: 32px;
}
.sns-icons-wrapper-block .sns li,
.sns-icons-wrapper-block .sns a {
  width: 48px;
  height: 48px;
}

.sns .icon-instagram a {
  background-image: url(../images/icon-instagram.svg);
}
.sns .icon-youtube a {
  background-image: url(../images/icon-youtube.svg);
}
.sns .icon-facebook a {
  background-image: url(../images/icon-facebook.svg);
}
.sns .icon-tiktok a {
  background-image: url(../images/icon-tiktok.svg);
}
.sns .icon-x-twitter a {
  background-image: url(../images/icon-x.svg);
}
.sns .icon-blog a {
  background-image: url(../images/icon-blog.svg);
}

#page-blog .side-content .sns .icon-blog {
  display: none;
}

@media screen and (max-width: 879px) {
  .sns-icons-wrapper-block {
    padding: 1em;
    width: 100%;
    justify-content: center;
  }
  .sns-icons-wrapper-block ul {
    justify-content: center;
  }
  .sns-icons-wrapper-block .sns li,
  .sns-icons-wrapper-block .sns a {
    width: 40px;
    height: 40px;
  }
}
