@charset "UTF-8";
/* Global Remedies
******************/
/* Use border-box by default, globally */
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
* Consistent line spacing...
* CSS Inline Layout Module Level 3: https://drafts.csswg.org/css-inline-3/#line-sizing-property
*/
html {
  line-sizing: normal;
}

/* Remove the tiny space around the edge of the page */
body {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  display: block;
}

/* Headings
***********/
/* Switch to rem units for headings */
/* @@@ Initial values are based on existing browser defaults */
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* Keep h1 margins consistent, even when nested */
h1 {
  margin: 0.67em 0;
}

/* Typography
*************/
/* Overflow by default is bad */
pre {
  white-space: pre-wrap;
}

/*
* 1. Solid, thin horizontal rules
* 2. Remove Firefox `color: gray`
* 3. Remove default `1px` height, and common `overflow: hidden`
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

dt, dl, dd {
  margin: 0;
}

/* Embedded Elements
********************/
/*
* 1. Block display is usually what we want
* 2. Remove strange space-below when inline
* 3. Responsive by default
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

/*
* Maintain intrinsic aspect ratios when `max-width` is applied
* (iframe, embed, and object have no intrinsic ratio, set height explicitly)
*/
img, svg, video, canvas {
  height: auto;
}

/*
* There is no good reason elements default to 300px,
* and audio files are unlikely to come with a width attribute
*/
audio {
  width: 100%;
}

/* Old Browsers
***************/
/* Remove the border on images inside links in IE 10 and earlier */
img {
  border-style: none;
}

/* Hide the overflow in IE 10 and earlier */
svg {
  overflow: hidden;
}

/* Default block display on HTML5 elements */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/*
* 1. Add the correct box sizing in IE 10
* 2. Remove the padding in IE 10
*/
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/*レスポンシブ対応。カラム数とカラム間marginを自由に設定するMixin*/
/*一列組のみ、記事が増え、2段、3段になるカラム組には適さない*/
/*参考→　https://qiita.com/noqua/items/0dc04aa528269db41a07　*/
html {
  font-size: 62.5%;
  font-weight: 400;
  color: #000;
  height: 100%;
}

body {
  display: none;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (max-width: 620px) {
  body {
    letter-spacing: 0.05em;
    line-height: 1.6em;
  }
}

h1, h2, h3, h4 {
  font-weight: bold;
  color: #000;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}

a:hover {
  opacity: 0.8;
}

select::-ms-expand {
  display: none;
}

:focus {
  outline: none;
}

label {
  cursor: pointer;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

th {
  font-weight: normal;
}

::-moz-selection {
  color: #fff;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

::-moz-selection {
  color: #fff;
  background: #000;
}

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

section {
  margin: 0 0 100px 0;
}

p {
  margin: 0 0 30px;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media all and (max-width: 620px) {
  p {
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
p a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 1;
  margin-bottom: 8px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/******************
structure
******************/
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
}

.contents {
  width: 100%;
  padding-bottom: 240px;
}
@media all and (max-width: 980px) {
  .contents {
    padding-bottom: 420px;
  }
}
@media all and (max-width: 620px) {
  .contents {
    padding-bottom: 510px;
  }
}

@media all and (min-width: 981px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media all and (max-width: 980px) {
  .inner {
    padding: 0 15px;
  }
}
@media all and (max-width: 620px) {
  .inner {
    padding: 0 10px;
  }
}

.js-fadeIn {
  opacity: 0;
  -webkit-transition: 0.5s 0.2s;
  transition: 0.5s 0.2s;
}

.js-fadeIn.animation {
  opacity: 1;
}

.pankuzu {
  position: relative;
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  text-align: center;
  padding: 0 0 0 20px;
}
@media all and (max-width: 620px) {
  .pankuzu {
    padding: 0 0 0 10px;
  }
}
.pankuzu ol {
  width: 100%;
  max-width: 1100px;
  list-style: none;
  margin: 5px auto 3px auto;
  position: static;
  text-align: left;
}
.pankuzu li {
  margin-right: 10px;
  vertical-align: middle;
  display: inline;
}
.pankuzu li + li::before {
  display: inline-block;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  margin: 0 10px 0 0;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: 0.2em;
}
.pankuzu li a {
  color: #000;
}
.pankuzu li a.home {
  vertical-align: -0.3em;
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px 0;
  border-top: 1px solid #9fa0a0;
}
.pagenation a {
  text-decoration: none;
}
@media all and (min-width: 981px) {
  .pagenation a:hover {
    opacity: 0.6;
  }
}
.pagenation .page-next {
  padding: 5px 15px;
  text-align: center;
}
.pagenation ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px;
}
.pagenation li + li {
  padding: 10px;
  color: #5b5a5a;
}
.pagenation li span {
  border-top: 1px solid #000;
  display: inline-block;
  margin: -1px 0 0 0;
  padding: 10px;
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 980px) {
  .pager {
    margin-bottom: 40px;
  }
}

.pulldown {
  position: relative;
  margin: 0 0 30px;
  padding: 0;
  width: 100%;
}
.pulldown label {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px;
  border: solid 1px #9fa0a0;
  cursor: pointer;
}
.pulldown input {
  display: none;
  margin: 0;
}
.pulldown .archive-list {
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}
.pulldown .archive-list ul {
  position: relative;
  border: solid 1px #9fa0a0;
  border-bottom: 0;
  width: 100%;
  top: -15px;
  margin: 0;
  padding: 0;
}
.pulldown .archive-list li {
  border-bottom: solid 1px #9fa0a0;
  cursor: pointer;
  margin: 0;
  padding: 15px 10px 10px;
  width: 100%;
}
.pulldown .archive-list li a {
  display: block;
  color: #000;
  width: 100%;
  height: 100%;
}
.pulldown input:checked ~ .archive-list {
  padding: 10px 0;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
}

strong {
  font-family: "Zen Maru Gothic", sans-serif;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

img.r {
  float: right;
  border: none;
  margin: 0 0 25px 2px;
  vertical-align: top;
}

img.l {
  float: left;
  margin: 0 2px 25px 0;
  vertical-align: top;
}

img.c {
  display: block;
  text-align: center;
  margin: 0 auto 25px auto;
}

/******************
  header
******************/
.glov .navi_main > li .icon_unit {
  position: relative;
}

.glov .navi_main img {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.glov .navi_main > li a:hover .icon_unit img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.glov .navi_sns > li .icon_unit {
  position: relative;
}

.glov .navi_sns img {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.glov .navi_sns > li a:hover .icon_unit img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.header {
  position: relative;
}

.top-site-title {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 11;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100px;
}
@media all and (max-width: 620px) {
  .top-site-title {
    width: 70px;
    left: 15px;
    top: 15px;
  }
}

.gnav {
  position: relative;
}

.submenu {
  position: absolute;
  z-index: 12;
  right: 110px;
  top: 22px;
}
@media all and (max-width: 620px) {
  .submenu {
    right: 80px;
    top: 8px;
  }
}
@media all and (max-width: 620px) {
  .submenu {
    display: none;
  }
}
.submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submenu ul li {
  margin-right: 29px;
}
@media all and (max-width: 620px) {
  .submenu ul li {
    margin-right: 19px;
  }
}
.submenu ul li a {
  padding: 8px 0;
}

/*ハンバーガーボタン*/
.el_humburger {
  position: fixed;
  top: 60px;
  right: 30px;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 101;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  width: 50px;
  height: 50px;
  display: block;
}
@media all and (max-width: 620px) {
  .el_humburger {
    right: 15px;
    top: 20px;
    width: 40px;
    height: 40px;
  }
}

.secndary {
  top: 140px;
  position: fixed;
}
@media all and (max-width: 980px) {
  .secndary {
    top: 40px;
  }
}
@media all and (max-width: 620px) {
  .secndary {
    top: 20px;
  }
}

.el_humburger_wrapper {
  color: #000;
}

.js_humburgerOpen .el_humburger_wrapper {
  position: relative;
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(12px) translateX(0) rotate(-45deg);
          transform: translateY(12px) translateX(0) rotate(-45deg);
  width: 50px;
  height: 1px;
}
@media all and (max-width: 620px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.top {
    width: 40px;
    -webkit-transform: translateY(5px) translateX(0) rotate(-45deg);
            transform: translateY(5px) translateX(0) rotate(-45deg);
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-5px) translateX(0) rotate(45deg);
          transform: translateY(-5px) translateX(0) rotate(45deg);
  width: 50px;
  height: 1px;
}
@media all and (max-width: 620px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
    width: 40px;
    -webkit-transform: translateY(-7px) translateX(0) rotate(45deg);
            transform: translateY(-7px) translateX(0) rotate(45deg);
  }
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}

.navi {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100svh;
  background: #E2E2E2;
  width: 100%;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.navi h2 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin: 0 0 40px 0;
}
.navi .menu-title {
  font-size: 10px;
  font-size: 1rem;
  margin: 0 0 20px 0;
}
.navi .navi_logo {
  max-width: 70px;
  margin: 0 auto 45px;
}
@media all and (max-width: 620px) {
  .navi .navi_logo {
    max-width: 60px;
    margin: 0 auto 35px;
  }
}
.navi .navi_logo img {
  width: 100%;
}
.navi .navi_main {
  margin: 0;
}
.navi .navi_main .global-item {
  width: 100%;
  margin-bottom: 30px;
}
.navi .navi_main .global-item p {
  text-align: center;
}
@media all and (max-width: 620px) {
  .navi .navi_main .global-item {
    margin-bottom: 20px;
  }
}
.navi .navi_main .global-item p {
  font-weight: 700;
  margin: 0;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media all and (max-width: 620px) {
  .navi .navi_main .global-item p {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.navi .navi_main .global-item .icon_unit {
  margin-bottom: 8px;
  height: 40px;
}
@media all and (max-width: 620px) {
  .navi .navi_main .global-item .icon_unit {
    margin-bottom: 10px;
    height: 35px;
  }
}
.navi .navi_main .global-item .icon_unit img {
  margin: 0 auto;
}
@media all and (max-width: 620px) {
  .navi .navi_main .global-item .icon_unit img {
    height: 35px;
  }
}
.navi .navi_sub {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (max-width: 620px) {
  .navi .navi_sub {
    bottom: 30px;
  }
}
.navi .navi_sub .navi_julalogo {
  max-width: 60px;
  margin: 0 auto 10px;
}
.navi .navi_sub p {
  text-align: center;
  font-weight: 700;
  margin: 0;
}
.navi .naviunit {
  position: relative;
  height: 100svh;
  width: 100%;
}
.navi .glov {
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  top: 38%;
  left: 50%;
  position: absolute;
}
@media all and (max-width: 620px) {
  .navi .glov {
    top: 45%;
  }
}

.js_humburgerOpen .navi {
  opacity: 1;
  pointer-events: auto;
}
.js_humburgerOpen .navi .navi_main {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.js_humburgerOpen .navi .navi_sns {
  opacity: 1;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.js_humburgerOpen .navi .navi_sub {
  opacity: 1;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.navi_item.op_innerLink {
  cursor: pointer;
}

.js_humburgerOpen .menu-bg {
  opacity: 0.6;
  visibility: visible;
}

.js_humburgerOpen .el_humburger.m_fixed {
  position: fixed;
  top: 70px;
  right: 30px;
  margin: 0;
}
@media all and (max-width: 620px) {
  .js_humburgerOpen .el_humburger.m_fixed {
    right: 10px;
  }
}

.js_humburgerOpen .el_humburger {
  position: fixed;
  margin: 0;
}

.el_humburger.m_fixed {
  position: fixed;
  top: 70px !important;
  right: 30px;
}
@media all and (max-width: 980px) {
  .el_humburger.m_fixed {
    right: 20px;
  }
}
@media all and (max-width: 620px) {
  .el_humburger.m_fixed {
    top: 30px;
    right: 0;
  }
}

/* メニューが開いたときの黒い半透明の背景 */
.menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  /* 背景の切り替わり秒数 */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

/* オープン時メニュー矢印出現 */
.js_humburgerOpen .fade-in-left {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  /* 出現速度 */
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

/* オープン時メニュー矢印閉じる時 */
.el_humburger span.el_humburger_bar {
  display: block;
  width: 50px;
  margin: 0px auto 15px;
  height: 1px;
  background: #000;
  /* 矢印→ハンバーガー変身速度 */
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media all and (max-width: 620px) {
  .el_humburger span.el_humburger_bar {
    width: 40px;
    margin: 0px auto 10px;
  }
}

/* オープン時グロバメニュー出現 */
.js_humburgerOpen .fade-in-right {
  opacity: 0;
  -webkit-animation-name: fade-in-right;
          animation-name: fade-in-right;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  /* オープン時メニューリスト出現速度 */
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* グロバメニュー全体出現速度 */
.navi {
  -webkit-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.top-current {
  position: fixed;
  top: 75px;
  right: 90px;
  z-index: 11;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.top-current p {
  margin: 0;
  color: #000;
}
@media all and (max-width: 980px) {
  .top-current {
    top: 45px;
    right: 80px;
  }
}
@media all and (max-width: 620px) {
  .top-current {
    top: 28px;
    right: 68px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.current {
  position: fixed;
  top: 145px;
  right: 90px;
  z-index: 11;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.current p {
  margin: 0;
  color: #000;
}
.current h1 {
  font-size: 14px;
  font-size: 1.4rem;
}
@media all and (max-width: 980px) {
  .current {
    top: 45px;
    right: 80px;
  }
}
@media all and (max-width: 620px) {
  .current {
    top: 28px;
    right: 68px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#search-wrap {
  z-index: 12; /*最前面に設定。数字は変更可*/
}

/*テキスト入力input設定*/
#search-text {
  -webkit-appearance: none; /*SafariやChromeのデフォルトの設定を無効*/
  width: 40px; /*テキスト入力エリアが伸びる前の横幅*/
  height: 40px;
  padding: 20px;
  margin-left: -8px;
  border: none;
  background: #fff url("/img/search.svg") no-repeat 17px center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s; /*transitionを使ってスムースに伸ばす*/
  outline: none;
  cursor: pointer; /*カーソルを指マークに*/
}

/*テキスト入力inputにフォーカスした時の形状*/
#search-text:focus {
  width: 250px; /*テキスト入力エリアが伸びる後の横幅*/
  padding: 20px 0 20px 60px;
  -webkit-box-shadow: 0 2px rgba(6, 0, 1, 0.26);
          box-shadow: 0 2px rgba(6, 0, 1, 0.26);
}

/*レスポンシブ対応。カラム数とカラム間marginを自由に設定するMixin*/
/*一列組のみ、記事が増え、2段、3段になるカラム組には適さない*/
/*参考→　https://qiita.com/noqua/items/0dc04aa528269db41a07　*/
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 240px;
}
@media all and (max-width: 980px) {
  .footer {
    height: 445px;
  }
}
@media all and (max-width: 620px) {
  .footer {
    height: 540px;
  }
}
.footer .footer_inner {
  padding: 45px 20px 0;
  font-weight: 700;
}
.footer .footer_inner p {
  margin: 0;
}
.footer .footer_inner .footer_logo {
  width: 80px;
  margin-bottom: 50px;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .footer_logo {
    margin-bottom: 20px;
  }
}
.footer .footer_inner .left_unit p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .left_unit {
    margin-bottom: 30px;
  }
}
.footer .footer_inner .right_unit {
  max-width: 656px;
  margin-right: 60px;
}
@media all and (min-width: 981px) {
  .footer .footer_inner .right_unit {
    margin-top: 8px;
  }
}
@media all and (max-width: 980px) {
  .footer .footer_inner .right_unit {
    max-width: 100%;
    margin-right: 0;
  }
}
.footer .footer_inner .footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .footer_flex {
    display: block;
  }
}
.footer .footer_inner .link_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 20px auto;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .link_flex {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.footer .footer_inner .sns_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .footer_inner .sns_flex li {
  margin-left: 25px;
}
.footer .footer_inner .sns_flex li:first-child {
  margin-top: 2px;
}
.footer .footer_inner .sns_flex li:first-child img {
  width: 22px;
}
.footer .footer_inner .sns_flex img {
  width: 26px;
}
.footer .footer_inner .btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 42px auto;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .btn_flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 30px 0;
    width: 100%;
  }
}
@media all and (max-width: 620px) {
  .footer .footer_inner .btn_flex {
    display: block;
  }
}
.footer .footer_inner .btn_flex li {
  margin-right: 30px;
}
.footer .footer_inner .btn_flex li:last-child {
  margin-right: 0;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .btn_flex li {
    width: 32%;
    margin: 0;
  }
}
@media all and (max-width: 620px) {
  .footer .footer_inner .btn_flex li {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.footer .footer_inner .btn_flex a {
  background: #D9D9D9;
  border-radius: 100vh;
  width: 200px;
  height: 34px;
  line-height: 34px;
  display: block;
  text-align: center;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .btn_flex a {
    width: 100%;
  }
}
@media all and (max-width: 620px) {
  .footer .footer_inner .btn_flex a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.footer .footer_inner .sub_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-size: 1.2rem;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .sub_flex {
    display: block;
  }
}
.footer .footer_inner .sub_flex li {
  letter-spacing: 0.05em;
  margin-right: 20px;
}
.footer .footer_inner .sub_flex li:last-child {
  margin-right: 0;
}
@media all and (max-width: 980px) {
  .footer .footer_inner .sub_flex li {
    margin-bottom: 3px;
    margin-right: 0;
  }
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  width: 50px;
  opacity: 0;
  pointer-events: none;
}
.pagetop:hover {
  opacity: 0;
}

.m_opacity {
  opacity: 1;
  pointer-events: auto;
}
.m_opacity:hover {
  opacity: 1;
}

/*レスポンシブ対応。カラム数とカラム間marginを自由に設定するMixin*/
/*一列組のみ、記事が増え、2段、3段になるカラム組には適さない*/
/*参考→　https://qiita.com/noqua/items/0dc04aa528269db41a07　*/
.required {
  color: #FF0000;
  margin-left: 30px;
}

.form-input {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  border: 1px solid #aaaaaa;
  font-family: "Zen Maru Gothic", sans-serif;
}

.form-textarea {
  width: 100%;
  height: 350px;
  border: 1px solid #aaaaaa;
  padding: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.form-unit p {
  text-align: left;
}
.form-unit .btn {
  background: #fff;
  color: #000;
  width: 100%;
  border: 1px solid #000;
  max-width: 200px;
  text-align: center;
  padding: 10px 0 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
}

.reserve-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 980px) {
  .reserve-info {
    display: block;
  }
}
.reserve-info .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
}
.reserve-info .flex p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.reserve-info .flex .icon {
  margin-right: 20px;
}
.reserve-info .reserve-tel {
  width: 50%;
}
@media all and (max-width: 980px) {
  .reserve-info .reserve-tel {
    width: 100%;
    margin-bottom: 30px;
  }
}
.reserve-info .reserve-mail {
  width: 50%;
}
@media all and (max-width: 980px) {
  .reserve-info .reserve-mail {
    width: 100%;
  }
}
.reserve-info .reserve-mail .icon {
  margin-top: 2px;
}
.reserve-info .no {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0;
}
.reserve-info .no span {
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 20px;
}

.contact-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
}
.contact-form .flex p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.contact-form .flex .icon {
  margin-right: 20px;
  margin-top: 2px;
}

.contact-direct-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  margin: 80px 0;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper {
    display: inherit;
  }
}
.contact-direct-wrapper .contact-direct {
  width: 50%;
  text-align: center;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper .contact-direct {
    width: 100%;
  }
}
.contact-direct-wrapper .contact-direct dt {
  border-bottom: 1px solid #a0a0a0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-direct-wrapper .contact-direct .time {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper .contact-direct .time {
    margin-bottom: 70px;
  }
}
.contact-direct-wrapper .button-direct {
  display: block;
  text-decoration: none;
  background: #333;
  color: #fff;
  position: relative;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  @icnlude appearance;
  font-size: 14px;
  font-size: 1.4rem;
  width: 280px;
  height: 50px;
  line-height: 50px;
  margin-top: 10px;
  display: inline-block;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper .button-direct {
    margin: 0 auto;
  }
}
.contact-direct-wrapper .button-direct .mail-link::before {
  display: inline-block;
  content: "";
  background: url(/img/mail_icon.svg) no-repeat;
  width: 1.5em;
  height: 1.5em;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.contact-direct-wrapper .button-direct .tel-link::before {
  display: inline-block;
  content: "";
  background: url(/img/tel_icon.svg) no-repeat;
  width: 1.5em;
  height: 1.5em;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

.flex-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  margin-bottom: 5px;
}
.flex-line .d-t {
  margin-top: 18px;
  font-size: 16px;
  font-size: 1.6rem;
  width: 70px;
}
.flex-line .radio-list {
  margin-top: 18px;
}

.q-line .radio-list {
  padding-top: 18px;
  padding-bottom: 5px;
  min-height: 60px;
  padding-left: 70px;
}
@media all and (max-width: 980px) {
  .q-line .radio-list {
    padding-left: 20px;
  }
}
.q-line .red {
  border-radius: 5px;
}

.reser {
  margin-bottom: 30px !important;
}
.reser .red {
  border-radius: 5px;
}

.contact-form label {
  font-size: 14px;
  font-size: 1.4rem;
}
.contact-form .contact-form-title {
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid #a0a0a0;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.contact-form .form-label {
  width: 210px;
  float: left;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media all and (max-width: 980px) {
  .contact-form .form-label {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
}
.contact-form .form-contents {
  margin-left: 260px;
  margin-bottom: 50px;
}
@media all and (max-width: 980px) {
  .contact-form .form-contents {
    margin: 0 0 40px 0;
  }
}
.contact-form .form-contents p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #df0024;
  margin-left: -7px;
}
.contact-form .form-input {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #999999;
  border-radius: 0px;
  background: #F1F1F1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .form-input {
    padding-left: 15px;
  }
}
.contact-form .form-member {
  height: 50px;
  border: 1px solid #999999;
  border-radius: 0px;
  background: #F1F1F1;
  margin-right: 10px;
  padding: 0 10px;
}
.contact-form .member-unit {
  margin-left: 210px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .member-unit {
    margin: 0 0 40px 0;
  }
}
.contact-form .member-unit p {
  margin: 0;
}
.contact-form .member-unit .where {
  width: 60px;
  margin-top: 15px;
}
.contact-form .member-unit .mei {
  margin-right: 50px;
  margin-top: 15px;
}
.contact-form .member-unit .ages {
  width: 60px;
  margin-top: 15px;
}
.contact-form .member-unit .form-input {
  width: 300px;
}
.contact-form .member-unit .adult {
  margin-bottom: 20px;
}
.contact-form .member-unit .child {
  margin-bottom: 50px;
}
.contact-form .kibou {
  margin-left: 210px;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .kibou {
    margin: 0 0 10px 0;
  }
}
.contact-form .daiichi {
  padding-top: 17px;
}
.contact-form .form-textarea {
  width: 100%;
  height: 250px;
  border: 1px solid #999999;
  border-radius: 0px;
  background: #F1F1F1;
  padding: 15px 30px;
  border-radius: 0px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .form-textarea {
    padding: 15px;
  }
}
.contact-form .post {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 5px;
  letter-spacing: 0.1em;
}
.contact-form .required {
  border: 1px solid #FF0000;
  color: #FF0000;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  margin: 8px 10px 0 0;
  padding: 2px 8px;
}
@media all and (max-width: 980px) {
  .contact-form .required {
    float: none;
  }
}
.contact-form .form-post {
  width: 196px;
  height: 50px;
  padding-left: 20px;
  border: 1px solid #999999;
  border-radius: 0px;
  background: #F1F1F1;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .form-post {
    padding-left: 15px;
  }
}
.contact-form ::-webkit-input-placeholder {
  color: #acacac;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form ::-moz-placeholder {
  color: #acacac;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form :-ms-input-placeholder {
  color: #acacac;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form ::-ms-input-placeholder {
  color: #acacac;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form ::placeholder {
  color: #acacac;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form:focus {
  outline: 1px solid #ed1b23;
  outline-offset: 2px;
}
.contact-form .button-send {
  cursor: pointer;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  display: block;
  text-decoration: none;
  background: #333;
  color: #fff;
  position: relative;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  @icnlude appearance;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 50px;
  width: 240px;
  height: 50px;
  margin-left: 200px;
  display: inline-block;
  letter-spacing: 0.3em;
  position: relative;
}
@media all and (max-width: 980px) {
  .contact-form .button-send {
    margin: 0 auto;
  }
}
.contact-form .button-send::after {
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  content: "";
  background: url(/img/arrow.svg) no-repeat;
  width: 10px;
  height: 10px;
}
.contact-form .button-send2 {
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: #333;
  color: #fff;
  position: relative;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  @icnlude appearance;
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 50px;
  width: 240px;
  height: 50px;
  margin: 0 10px 0 0;
  display: inline-block;
}
@media all and (max-width: 620px) {
  .contact-form .button-send2 {
    display: block;
    margin: 0 0 20px 0;
  }
}

.agree-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fbf3f2 !important;
  padding: 20px 40px;
  max-width: 450px;
  border-radius: 5px;
  margin: 0 auto 40px;
}
@media all and (max-width: 620px) {
  .agree-unit {
    padding: 20px 10px;
  }
}
.agree-unit p {
  margin: 0;
}
.agree-unit .required {
  float: none;
  margin: 3px 30px 0 0;
  width: 45px;
  height: 21px;
  padding: 5px 0;
  text-align: center;
}
@media all and (max-width: 620px) {
  .agree-unit .required {
    margin: 3px 15px 0 0;
  }
}

.step {
  margin: 0 0 60px 0;
}
@media all and (max-width: 620px) {
  .step {
    display: none;
  }
}
.step ul {
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.step li {
  width: 33%;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  background: #f1f1f1;
  position: relative;
  display: block;
  text-align: center;
}
.step li.crr {
  background: #000;
  color: #fff;
}

#formArea table {
  width: 100%;
  font-size: 1.4rem;
  margin: 30px 0;
  border-top: 1px solid #a0a0a0;
  border-collapse: collapse;
}

#formArea form {
  max-width: 640px;
}

#formArea th {
  padding: 15px;
  width: 150px;
  text-align: left;
}
@media all and (min-width: 981px) {
  #formArea th {
    border-bottom: 1px solid #a0a0a0;
  }
}
@media all and (max-width: 980px) {
  #formArea th {
    padding: 15px 0 0 0;
    width: 100%;
    display: block;
  }
}

#formArea td {
  padding: 15px;
  border-bottom: 1px solid #a0a0a0;
}
@media all and (max-width: 980px) {
  #formArea td {
    display: block;
    padding: 15px 0 15px 0;
  }
}

.red {
  background: #FFEBEB !important;
}

.mark ~ span {
  position: relative;
  padding: 0 0 2px 30px;
  font-size: 16px;
  font-size: 1.6rem;
}
.mark ~ span::before {
  display: block;
  content: "";
  border: 1px solid #333333;
  background: #f1f1f1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 15px;
  width: 20px;
  height: 20px;
  vertical-align: top;
  border-radius: 50%;
}

.mark ~ .thumbnail {
  padding-top: 65%;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.mark ~ .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mark-re + span {
  position: relative;
  padding: 0 0 0 35px;
  font-size: 16px;
  font-size: 1.6rem;
}
.mark-re + span::before {
  display: block;
  content: "";
  border: 1px solid #dfa69f;
  position: absolute;
  background: #fbf3f2;
  left: 0;
  top: -5px;
  margin-right: 15px;
  width: 27px;
  height: 27px;
  vertical-align: top;
}

.mark-radio + span {
  position: relative;
  padding: 0 0 0 35px;
}
.mark-radio + span::before {
  display: block;
  content: "";
  border: 2px solid #7FBF34;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.mark:checked ~ span::after {
  display: block;
  content: "";
  background: #333333;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.mark:checked ~ .thumbnail img {
  border: 2px solid #7FBF34;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mark-re:checked + span::after {
  display: block;
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 15%;
  left: 5px;
  width: 18px;
  height: 9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mark-radio:checked + span::after {
  display: block;
  content: "";
  background: #7FBF34;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.select-list {
  margin: 8px 0 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.select-list li {
  margin: 0 40px 10px 0;
}

.document {
  margin-left: 210px !important;
  margin-bottom: 40px;
  margin-top: -20px;
}
@media all and (max-width: 980px) {
  .document {
    margin-left: 10px !important;
    margin-top: -25px !important;
  }
  .document p br {
    display: block !important;
  }
}

.radio-list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.radio-list li {
  margin: 0 10px 15px 0;
  min-width: 18%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /* デフォルトのスタイルを無効 */
}

.noun,
.noun-time {
  color: #333 !important;
  font-size: 16px !important;
  margin: 6px 30px 0 2px;
  padding: 0 0 0 5px;
  white-space: nowrap;
}

.reservetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.r-time {
  margin-bottom: 20px !important;
}

.first {
  border-bottom: 1px solid #a0a0a0;
  padding: 20px 0 0 0;
  position: relative;
  margin: 0px 0 30px;
}
.first p {
  position: absolute;
  top: 0;
  background: #fff;
  padding: 10px 10px 10px 0;
}

.formcaution {
  color: #000 !important;
  margin: 0 0 40px 0;
}
@media all and (max-width: 620px) {
  .formcaution br {
    display: block;
  }
}

.questionnaire {
  margin: 50px 0 0 -10px;
}
@media all and (max-width: 980px) {
  .questionnaire {
    margin: 0 0 0 -10px;
  }
}

.form-page h3 {
  margin: 0 0 30px 0;
  font-size: 18px;
  font-size: 1.8rem;
}

.confirm-form {
  max-width: 730px;
  margin: 0 auto;
}

.confirm-text {
  margin: 0 0 40px 0;
}

.confirm-list {
  margin: 0 0 60px 0;
}
.confirm-list dt {
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 10px 0;
}
.confirm-list dd {
  margin: 0 0 15px 0;
  padding: 10px 0;
}

@media all and (max-width: 620px) {
  .btn-list .button-basic {
    width: 100%;
  }
}
@media all and (max-width: 620px) {
  .btn-list .button-back {
    width: 100%;
  }
}

.send-conf {
  cursor: pointer;
  width: 100%;
  color: #fff !important;
  background: #7FBF34 !important;
}
.send-conf:hover {
  opacity: 0.6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.send-unit {
  position: relative;
}
.send-unit img {
  position: absolute;
  top: 33%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 9px;
}
@media all and (max-width: 620px) {
  .send-unit img {
    top: 50%;
  }
}

#error-list {
  margin: 0 0 40px 0;
}

.flex-units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 980px) {
  .flex-units {
    display: block;
  }
}
.flex-units .unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.left-float {
  float: left;
}

.form-cont {
  margin: 0 0 20px 0;
  width: 100%;
}

.slects {
  height: 40px;
  border: 1px solid #a0a0a0;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
  padding: 0 10px;
}

.select-unit {
  position: relative;
}

.select-unit::before {
  position: absolute;
  top: 45%;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.select-lists {
  margin: 8px 0 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.select-lists li {
  margin: 0 30px 20px 0;
}

.form-chance {
  margin: 0 0 0 210px;
  padding-top: 10px;
}
@media all and (max-width: 980px) {
  .form-chance {
    margin: 0;
    padding: 0;
  }
}

.block-unit {
  width: 100%;
}

.sonota {
  height: 100px !important;
}

.policy-zone {
  border: 1px solid #c4c4c4;
  padding: 30px 20px;
  margin-bottom: 30px;
  height: 200px;
  overflow: auto;
}
.policy-zone .privacy {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.policy-zone .policy-unit {
  margin-bottom: 60px;
}
.policy-zone .policy-unit h3 {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 10px 0;
  font-family: "Zen Maru Gothic", sans-serif;
}

.toiawase {
  margin-top: -5px !important;
}

.select-docu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 620px) {
  .select-docu {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 15px;
  }
}
.select-docu li {
  width: 22.8%;
  margin-right: 2.9%;
  margin-bottom: 25px;
}
.select-docu li:last-child {
  margin-right: 0;
}
@media all and (max-width: 620px) {
  .select-docu li {
    width: 48%;
    margin-right: 0;
  }
}

.re-img {
  margin-left: 0 !important;
}

.ui-datepicker {
  border-radius: 0;
}

.ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
  border-radius: 0;
  font-weight: normal;
}

.ui-datepicker .ui-state-default {
  background: #efefef;
  border-color: #efefef;
  color: #333333;
}

.ui-datepicker .ui-state-hover {
  background: #fff;
  border: #fff;
}

.ui-datepicker .ui-state-highlight {
  background: #E96C00;
  border-color: #efefef;
  color: #fff;
}

.ui-datepicker-trigger {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0;
  outline: none;
  display: inline-block;
  content: "";
  background: url(/img/cal-icon.svg) no-repeat;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin: 10px 0 0 13px;
}

.tp-days {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 0px 0;
  color: #666;
}

.tp-place {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: #666;
}

.button-basic {
  display: block;
  text-decoration: none;
  background: #333;
  color: #fff;
  position: relative;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  width: 100%;
  height: 55px;
  max-width: 180px;
  line-height: 52px;
  margin: 0;
  color: #333;
  background: none;
  border: 1px solid #333;
  border-radius: 2.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button-basic:hover {
  background: #333;
  color: #fff;
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.content .articles > li .thumbnail {
  position: relative;
}

.content .articles img {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.content .articles > li a:hover .thumbnail img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.top_page {
  overflow: hidden;
}

.contents-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contents-unit li {
  width: 100%;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
}

.inner2 {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}
@media all and (max-width: 620px) {
  .inner2 {
    padding: 0 10px;
  }
}

.first-viewimg {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  background: #AC9A34;
  display: block;
}
.first-viewimg .main_copy {
  position: absolute;
}
@media all and (min-width: 981px) {
  .first-viewimg .main_copy {
    top: 55%;
    left: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-left: 455px;
    margin-right: 10px;
  }
}
@media all and (max-width: 980px) {
  .first-viewimg .main_copy {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 100px;
    width: 100%;
    max-width: 420px;
    padding: 0 40px;
  }
  .first-viewimg .main_copy img {
    width: 100%;
  }
}
.first-viewimg .main_img {
  position: absolute;
  top: 55%;
  left: 50%;
  max-width: 742px;
  width: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  padding: 0 10px;
}
.first-viewimg .main_img img {
  width: 100%;
}
@media all and (max-width: 980px) {
  .first-viewimg .main_img {
    top: 50%;
  }
}

.top_section {
  margin-top: 110px;
  margin-bottom: 0;
}
@media all and (max-width: 620px) {
  .top_section {
    margin-top: 190px;
  }
}
.top_section h2 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media all and (max-width: 980px) {
  .top_section h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media all and (max-width: 620px) {
  .top_section h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.topics {
  padding: 0px 0 110px;
}
@media all and (max-width: 980px) {
  .topics {
    padding: 0px 0 80px;
  }
}
.topics h2 {
  text-align: center;
  margin-bottom: 80px;
}
.topics .thumbnail {
  padding-top: 75%;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.topics .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.topics ul h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
@media all and (max-width: 620px) {
  .topics ul h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topics .button-basic {
  margin: 60px auto 0;
}

.topnews {
  padding: 0px 0 110px;
}
@media all and (max-width: 980px) {
  .topnews {
    padding: 70px 0 120px;
  }
}
.topnews h2 {
  text-align: center;
  margin-bottom: 80px;
}
.topnews .thumbnail {
  padding-top: 100%;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.topnews .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.topnews ul h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}
@media all and (max-width: 620px) {
  .topnews ul h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topnews .button-basic {
  margin: 60px auto 0;
}

.topbooks {
  padding: 0px 0 110px;
}
@media all and (max-width: 980px) {
  .topbooks {
    padding: 0px 0 80px;
  }
}
.topbooks h2 {
  text-align: center;
  margin-bottom: 80px;
}
.topbooks .thumbnail {
  padding-top: 100%;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
}
.topbooks .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.topbooks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 620px) {
  .topbooks ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.topbooks ul li {
  width: 19%;
  margin-right: 1.25%;
  margin-bottom: 40px;
}
@media all and (min-width: 981px) {
  .topbooks ul li:nth-child(5n) {
    margin-right: 0;
  }
}
@media all and (max-width: 980px) {
  .topbooks ul li {
    width: 31%;
    margin-right: 3.5%;
    margin-bottom: 40px;
  }
  .topbooks ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (max-width: 620px) {
  .topbooks ul li {
    width: 49%;
    margin-right: 0;
  }
}
.topbooks ul h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media all and (max-width: 620px) {
  .topbooks ul h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.topbooks .button-basic {
  margin: 40px auto 0;
}
@media all and (max-width: 980px) {
  .topbooks .button-basic {
    margin: 40px auto 0;
  }
}

.misuzu_info {
  padding: 0px 0 110px;
}
@media all and (max-width: 980px) {
  .misuzu_info {
    padding: 0px 0 80px;
  }
}
.misuzu_info .flex_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 620px) {
  .misuzu_info .flex_unit {
    display: block;
  }
}
.misuzu_info .img_unit {
  position: relative;
  margin-right: 10%;
}
@media all and (max-width: 620px) {
  .misuzu_info .img_unit {
    width: 100%;
    margin-bottom: 30px;
  }
}
.misuzu_info .img_unit p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  bottom: 10px;
  left: 20px;
}
.misuzu_info .img_unit img {
  width: 100%;
  max-width: 330px;
}
@media all and (max-width: 620px) {
  .misuzu_info .img_unit img {
    margin-right: 0;
    max-width: 100%;
  }
}
.misuzu_info .text_unit h2 {
  margin-bottom: 70px;
}
.misuzu_info .text_unit .text_block p {
  font-size: 16px;
  font-size: 1.6rem;
}
.misuzu_info .text_unit .button-basic {
  max-width: 100%;
}

.history_info {
  padding: 0px 0 110px;
}
@media all and (max-width: 980px) {
  .history_info {
    padding: 0px 0 80px;
  }
}
@media all and (max-width: 620px) {
  .history_info {
    padding: 0px 10px 80px;
  }
}
.history_info h2 {
  text-align: center;
  margin-bottom: 80px;
}
.history_info .button-basic {
  margin: 0 auto;
}
.history_info .flex_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 620px) {
  .history_info .flex_unit {
    display: block;
  }
}
.history_info .img_unit {
  position: relative;
  margin-right: 40px;
}
@media all and (max-width: 620px) {
  .history_info .img_unit {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.history_info .img_unit img {
  width: 100%;
  max-width: 290px;
}
@media all and (max-width: 620px) {
  .history_info .img_unit img {
    max-width: 100%;
  }
}
.history_info .text_unit .hs_years {
  margin: 0 0 20px;
  font-size: 40px;
  font-size: 4rem;
  color: #cccccc;
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (max-width: 620px) {
  .history_info .text_unit .hs_years {
    font-size: 34px;
    font-size: 3.4rem;
    text-align: left;
  }
}
.history_info .text_unit .hs_event {
  margin: 0 0 10px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
}
@media all and (max-width: 620px) {
  .history_info .text_unit .hs_event {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.history_info .text_unit .text_block p {
  font-size: 16px;
  font-size: 1.6rem;
  margin: 0;
}
.history_info ul li {
  width: 850px;
}
@media all and (max-width: 620px) {
  .history_info ul li {
    max-width: 100%;
  }
}

.sl_wrapper .swiper-scrollbar {
  position: relative;
  background-color: transparent;
  width: 500px;
  margin: 60px auto;
}
@media all and (max-width: 620px) {
  .sl_wrapper .swiper-scrollbar {
    width: 100%;
    margin: 5px 0 60px;
  }
}

.sl_wrapper .swiper-scrollbar::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 1px;
  background-color: #000;
}

.sl_wrapper .swiper-container2 .swiper-slide {
  width: 850px;
}
@media all and (max-width: 620px) {
  .sl_wrapper .swiper-container2 .swiper-slide {
    width: 100%;
  }
}

.sl_wrapper .swiper-container2 .swiper-slide:not(:first-child) {
  margin-left: 4%;
}
@media all and (max-width: 620px) {
  .sl_wrapper .swiper-container2 .swiper-slide:not(:first-child) {
    margin: 0;
  }
}

.sl_wrapper .swiper-scrollbar::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 1px;
  background-color: #000;
}

.sl_wrapper .drag {
  position: relative;
  height: 19px;
}

.sl_wrapper .drag::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 19px;
  height: 19px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  border: 1px #000 solid;
}

[class*=swiper]:focus {
  outline: none;
}

.card02 .swiper-button-prev, .card02 .swiper-button-next {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
@media all and (max-width: 620px) {
  .card02 .swiper-button-prev, .card02 .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.card02 .swiper-button-prev::before, .card02 .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.card02 .swiper-button-prev::after, .card02 .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: 1px solid #000;
  border-width: 1px 1px 0 0;
}
@media all and (max-width: 620px) {
  .card02 .swiper-button-prev::after, .card02 .swiper-button-next::after {
    width: 0.9rem;
    height: 0.9rem;
  }
}

.card02 .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.card02 .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.card02 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.card02 {
  overflow: hidden;
}

.card02 .swiper {
  overflow: visible;
  position: relative;
}

.card02 .swiper-button-prev, .card02 .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.card02 .swiper-button-prev {
  left: 0;
}

.card02 .swiper-button-next {
  right: 0;
}

.card02 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.card02 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.card01 .swiper-button-prev, .card01 .swiper-button-next {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
@media all and (max-width: 620px) {
  .card01 .swiper-button-prev, .card01 .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

.card01 .swiper-button-prev::before, .card01 .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.card01 .swiper-button-prev::after, .card01 .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: 1px solid #000;
  border-width: 1px 1px 0 0;
}
@media all and (max-width: 620px) {
  .card01 .swiper-button-prev::after, .card01 .swiper-button-next::after {
    width: 0.9rem;
    height: 0.9rem;
  }
}

.card01 .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.card01 .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.card01 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.card01 .swiper-button-prev, .card01 .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.card01 .swiper-button-prev {
  left: 0;
}

.card01 .swiper-button-next {
  right: 0;
}

.card01 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.card01 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.loading {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100%;
  height: 100vh;
  height: 100svh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #AC9A34;
  z-index: 9999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  position: relative;
  visibility: hidden;
}
.loading-animation img {
  width: 100%;
}

.logo_unit {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  max-width: 520px;
  padding: 0 10px;
  margin: 0 auto;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp2 {
  -webkit-animation-name: fadeUpAnime2;
          animation-name: fadeUpAnime2;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  max-width: 158px;
  margin: 85px auto 0;
}
@media all and (max-width: 620px) {
  .fadeUp2 {
    max-width: 130px;
    margin: 45px auto 0;
  }
}

@-webkit-keyframes fadeUpAnime2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}