@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* add 20181122 */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: top;
}

.-enFont {
  font-family: "Roboto", sans-serif;
}

.-enFontMin {
  font-style: italic;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

:root {
  --White: #FFF;
  --key:#669966;
}

/*--------------------------------------------------------------------------
  ブレイクポイント
---------------------------------------------------------------------------*/
@media all and (min-width: 961px) {
  .-sp {
    display: none !important;
  }
}
@media all and (max-width: 960px) {
  .-pc {
    display: none !important;
  }
}
/*--------------------------------------------------------------------------
  math
---------------------------------------------------------------------------*/
/* decimal-round
   小数点以下を任意の桁数までで四捨五入する
   第1引数に変換したい元の数値、第2引数に桁数を指定する
---------------------------------------- */
/* rem
   引数にpx相当の数値を書く
---------------------------------------- */
/* ==========================================================
  html5 elements
========================================================== */
article, aside, figure, figcaption, footer, header, nav, section, main {
  display: block;
}

/* ==========================================================
  reseting
========================================================== */
html {
  height: 100%;
  font-size: 100%;
}
html.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
}
html a {
  color: inherit;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch !important;
  overflow: auto;
  -webkit-font-smoothing: antialiased;
}

input, textarea, select, button {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, button, figure, figcaption {
  margin: 0;
  padding: 0;
}

input, textarea {
  margin: 0;
  font-size: 100%;
}

textarea {
  resize: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

button {
  border: none;
  overflow: visible;
  background: none;
  vertical-align: top;
  font-size: 100%;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset {
  border: 0;
}

img {
  border: 0;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

address, caption, code, em, th {
  font-style: normal;
  font-weight: 500;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6, strong, em {
  font-size: 100%;
  font-weight: inherit;
}

sup, sub {
  font-size: 63%;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ==========================================================
  base Link
========================================================== */
a {
  color: #1A1A1A;
  text-decoration: none;
}

button:disabled {
  cursor: default;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgb(255, 255, 255);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "";
}

[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "";
}

[dir=rtl] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.slick-slider.-h100 {
  height: 100%;
}
.slick-slider.-h100 .slick-list, .slick-slider.-h100 .slick-track, .slick-slider.-h100 .slick-slide, .slick-slider.-h100 .slick-slide > div {
  height: 100%;
}

body {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
body.-menuLock {
  overflow: hidden;
}

.svg-holder {
  display: none;
}

a {
  display: inline-block;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 961px) {
  a:hover {
    opacity: 0.4;
  }
}

.c-imgBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: center center/cover no-repeat;
}
.c-imgBox.-t {
  background-position: center top;
}
.c-imgBox.-b {
  background-position: center bottom;
}

.c-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-slide .slick-list, .c-slide .slick-track {
  height: 100%;
}
.c-slide .c-slideItem {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-slide .c-slideItem .imgBox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: center center/cover no-repeat;
}
.c-slide .slick-dots {
  display: none;
}
.c-slide .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
.c-slide .slick-dots li button {
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  width: 100%;
  height: 100%;
}
.c-slide .slick-dots li.slick-active button {
  background: #ff0000 !important;
}
.c-slide.js-sld-c .slick-list {
  overflow: inherit;
}
.c-slide.js-sld-c .slick-slide > div {
  position: relative;
  height: 100%;
  margin: 0 10px;
}

.js-iv {
  opacity: 0;
  -webkit-transition: opacity 4s;
  transition: opacity 4s;
}
.js-iv.viewed {
  opacity: 1;
}

.yt {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

:root {
  --key:#24437f;
  --grd:#24437f;
}

body {
  font-weight: 500;
  color: var(--key);
}

.kvSec {
  height: 100vh;
  height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--key);
}
@media screen and (min-width: 961px) {
  .kvSec {
    min-height: 670px;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 960px) {
  .kvSec {
    font-size: 16px;
  }
}
.kvSec img {
  width: 100%;
}
.kvSec__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300px;
}
@media screen and (max-width: 960px) {
  .kvSec__logo {
    width: 250px;
  }
  .kvSec__logo img {
    margin-top: -40px;
  }
}
.kvSec__copy {
  position: absolute;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 961px) {
  .kvSec__copy {
    white-space: nowrap;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    width: 54px;
    right: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: -20px;
  }
}
@media screen and (max-width: 960px) {
  .kvSec__copy {
    top: 20px;
    left: 25px;
  }
  .kvSec__copy img {
    width: 253px;
  }
}
.kvSec__place {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .kvSec__place {
    white-space: nowrap;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    left: 75px;
    top: 75px;
    width: 19px;
  }
  .kvSec__place .-line {
    background: #fff;
    display: inline-block;
    width: 4px;
    height: 100px;
    margin: 17px 0;
  }
  .kvSec__place .-num {
    position: relative;
    left: 0.1em;
  }
}
.kvSec__info {
  position: absolute;
}
@media screen and (min-width: 961px) {
  .kvSec__info {
    left: 75px;
    bottom: 75px;
  }
}
@media screen and (max-width: 960px) {
  .kvSec__info {
    text-align: center;
    line-height: 1.8;
    left: 0;
    bottom: 50px;
    width: 100%;
  }
  .kvSec__info img {
    width: 317px;
  }
}
.kvSec__credit {
  position: absolute;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media screen and (min-width: 961px) {
  .kvSec__credit {
    right: 75px;
    bottom: 75px;
    text-align: right;
  }
}
@media screen and (max-width: 960px) {
  .kvSec__credit {
    text-align: center;
    font-size: 13px;
    bottom: 50px;
    width: 100%;
  }
}
.kvSec__nav {
  z-index: 99;
  position: fixed;
}
@media screen and (min-width: 961px) {
  .kvSec__nav {
    right: 75px;
    top: 75px;
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .kvSec__nav {
    display: none;
    background: #33457c;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}
.kvSec__nav__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 25px;
}
@media screen and (min-width: 961px) {
  .kvSec__nav__head {
    display: none;
  }
}
.kvSec__nav__head__logo img {
  width: 100px;
}
.kvSec__nav__head__close img {
  width: 32px;
}
.kvSec__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 960px) {
  .kvSec__nav__list {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.kvSec__nav__list img {
  height: 14px;
  width: auto;
}
.kvSec__infoImg {
  position: absolute;
  left: 75px;
  bottom: 75px;
}
.kvSec__infoImg img {
  width: 503px;
}
.kvSec__creditImg {
  position: absolute;
  right: 75px;
  bottom: 75px;
}
.kvSec__creditImg img {
  width: 238px;
}
.kvSec .-step2 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.kvSec .-step3 {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.kvSec .-bgBlue {
  background: var(--key);
}

.spBtn {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 10;
  width: 38px;
}
.spBtn img {
  width: 100%;
}

.secCando,
.secGreeting {
  padding: 150px 0 0;
  letter-spacing: 0.25em;
  line-height: 3;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .secCando,
  .secGreeting {
    padding-top: 120px;
  }
}
@media screen and (min-width: 961px) {
  .secCando__in,
  .secGreeting__in {
    position: relative;
    width: 1050px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .secCando__in,
  .secGreeting__in {
    margin: 0 25px;
  }
}
.secCando__ttl,
.secGreeting__ttl {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 19px;
}
.secCando__ttl img,
.secGreeting__ttl img {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .secCando__ttl,
  .secGreeting__ttl {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .secCando__ttl,
  .secGreeting__ttl {
    margin: 0 auto 65px;
  }
}
.secCando__copy,
.secGreeting__copy {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 961px) {
  .secCando__copy,
  .secGreeting__copy {
    position: absolute;
    line-height: 3;
    top: 0;
    right: -5px;
  }
  .secCando__copy img,
  .secGreeting__copy img {
    width: 54px;
  }
}
.secCando__txtarea,
.secGreeting__txtarea {
  text-align: justify;
  line-height: 2;
}
@media screen and (min-width: 961px) {
  .secCando__txtarea,
  .secGreeting__txtarea {
    padding-top: 15px;
    margin-left: 95px;
    width: 650px;
  }
}
@media screen and (max-width: 960px) {
  .secCando__txtarea,
  .secGreeting__txtarea {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.25em;
  }
}
.secCando__logo img,
.secGreeting__logo img {
  width: 167px;
}
@media screen and (min-width: 961px) {
  .secCando__logo,
  .secGreeting__logo {
    position: absolute;
    bottom: -40px;
    right: -5px;
  }
}
@media screen and (max-width: 960px) {
  .secCando__logo,
  .secGreeting__logo {
    text-align: center;
    margin: 70px 0 0;
  }
}

.secApparel {
  padding: 130px 0 0;
  letter-spacing: 0.25em;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .secApparel {
    padding-top: 65px;
  }
}
@media screen and (min-width: 961px) {
  .secApparel__in {
    position: relative;
    width: 1050px;
    margin: 0 auto;
  }
}
.secApparel__ttl {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 19px;
}
.secApparel__ttl img {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .secApparel__ttl {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  .secApparel__ttl {
    margin: 0 auto 65px;
  }
}
.secApparel__txtarea {
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 961px) {
  .secApparel__txtarea {
    margin-left: 320px;
    width: 640px;
  }
}
@media screen and (max-width: 960px) {
  .secApparel__txtarea {
    font-size: 18px;
    margin: 0 25px;
  }
}
.secApparel__img {
  text-align: center;
  margin-top: 65px;
}
@media screen and (max-width: 960px) {
  .secApparel__img {
    margin: 65px 12px 0;
  }
}
.secApparel__img img {
  width: 1000px;
}
@media screen and (max-width: 960px) {
  .secApparel__img img {
    width: 100%;
  }
}

@media screen and (min-width: 961px) {
  .secCando {
    padding-top: 90px;
  }
  .secCando__txtarea {
    top: -20px;
    position: relative;
  }
}
@media screen and (min-width: 961px) {
  .secCando__img {
    width: 1000px;
    margin: 45px auto 0;
  }
}
@media screen and (max-width: 960px) {
  .secCando__img {
    padding: 65px 12px 0;
  }
}
.secCando__img img {
  width: 100%;
}
.secCando__bottomTxt {
  text-align: center;
  font-size: 20px;
  padding: 150px 0 190px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 960px) {
  .secCando__bottomTxt {
    padding: 65px 0 110px;
    letter-spacing: 0.25em;
    line-height: 2;
  }
}

.secContents {
  background: var(--grd);
  color: #fff;
  padding: 150px 0 150px;
}
@media screen and (max-width: 960px) {
  .secContents {
    padding: 120px 0 120px;
  }
}
@media screen and (min-width: 961px) {
  .secContents__in {
    width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 960px) {
  .secContents__in {
    margin-left: 25px;
    margin-right: 25px;
  }
}
.secContents .topBlock {
  position: relative;
}
.secContents .topBlock__ttl {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-size: 17px;
  width: 19px;
}
.secContents .topBlock__ttl img {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .secContents .topBlock__ttl {
    position: absolute;
    top: -5px;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .secContents .topBlock__ttl {
    margin: 0 auto 45px;
  }
}
.secContents .topBlock__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: justify;
  line-height: 2;
}
@media screen and (min-width: 961px) {
  .secContents .topBlock__cnt {
    margin-left: 90px;
    width: 935px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .secContents .topBlock__cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  .secContents .topBlock__img {
    width: 530px;
  }
}
.secContents .topBlock__img img {
  width: 100%;
}
.secContents .topBlock__txt {
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 961px) {
  .secContents .topBlock__txt {
    position: relative;
  }
}
@media screen and (max-width: 960px) {
  .secContents .topBlock__txt {
    padding: 40px 0 0 0px;
  }
}
.secContents .mapBlock {
  position: relative;
}
@media screen and (min-width: 961px) {
  .secContents .mapBlock {
    width: 1000px;
    margin: 0 auto;
  }
}
.secContents .mapBlock__ttl {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  font-size: 17px;
  width: 19px;
}
.secContents .mapBlock__ttl img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .secContents .mapBlock__ttl {
    margin: 0 auto 45px;
  }
}
@media screen and (min-width: 961px) {
  .secContents .mapBlock__ttlCol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.secContents .mapBlock__mapBtn-pc img {
  width: 36px;
}
.secContents .mapBlock__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: justify;
  line-height: 2;
}
@media screen and (min-width: 961px) {
  .secContents .mapBlock__cnt {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  .secContents .mapBlock__cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .secContents .mapBlock__imgWrp {
    position: relative;
    left: -25px;
    overflow-x: auto;
    width: calc(100% + 50px);
    padding: 0 25px;
  }
}
@media screen and (min-width: 961px) {
  .secContents .mapBlock__img {
    width: 900px;
  }
}
@media screen and (max-width: 960px) {
  .secContents .mapBlock__img {
    width: 710px;
  }
}
.secContents .mapBlock__img img {
  width: 100%;
}
.secContents .mapBlock__txt {
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 961px) {
  .secContents .mapBlock__txt {
    position: relative;
  }
}
@media screen and (max-width: 960px) {
  .secContents .mapBlock__txt {
    padding: 40px 0 0 0px;
  }
}
.secContents .mapBlock__list {
  border-radius: 50px;
  margin-top: 60px;
  background: #fff;
  padding: 40px 50px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .secContents .mapBlock__list {
    display: none;
  }
}
.secContents .mapBlock__list .-clr1 {
  color: #3a336c;
}
.secContents .mapBlock__list .-clr2 {
  color: #3da490;
}
.secContents .mapBlock__list .-clr3 {
  color: #6885b7;
}
.secContents .mapBlock__list .-clr4 {
  color: #d2ad43;
}
.secContents .mapBlock__list .-clr5 {
  color: #d78f8f;
}
.secContents .mapBlock__list .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.secContents .mapBlock__list dl dt {
  font-size: 20px;
  margin-bottom: 20px;
}
.secContents .mapBlock__list dl dd {
  font-size: 18px;
}
.secContents .mapBlock__spBtn {
  text-align: center;
  margin-top: 75px;
}
.secContents .mapBlock__spBtn img {
  width: 126px;
}
.secContents .mapBlock .spBottom {
  margin-top: 45px;
}
.secContents .mapBlock .spBottom .swip {
  position: relative;
}
.secContents .mapBlock .spBottom .swip__txt {
  text-align: center;
  font-size: 16px;
}
.secContents .mapBlock .spBottom .swip__obj {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 40px;
}
.secContents .mapBlock .spBottom .swip__obj__line {
  background: #fff;
  width: 100px;
  height: 1px;
}
.secContents .mapBlock .spBottom .swip__obj__dot {
  background: #fff;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: -5px;
  width: 10px;
  height: 10px;
}
.secContents .logoCol {
  text-align: center;
  padding: 105px 0 95px;
}
@media screen and (max-width: 960px) {
  .secContents .logoCol {
    padding: 80px 0 80px;
  }
}
.secContents .logoCol img {
  width: 200px;
}
.secContents .listBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 961px) {
  .secContents .listBlock {
    gap: 50px;
  }
}
@media screen and (max-width: 960px) {
  .secContents .listBlock {
    gap: 25px;
  }
}
.secContents .spMoreBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  font-size: 16px;
  letter-spacing: 0.2em;
}
.secContents .spMoreBtn img {
  width: 25px;
}
@media screen and (max-width: 960px) {
  .secContents .spMoreList {
    display: none;
  }
}
.secContents .cntList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 961px) {
  .secContents .cntList {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}
@media screen and (max-width: 960px) {
  .secContents .cntList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.secContents .cntList__col {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 961px) {
  .secContents .cntList__col {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}
@media screen and (max-width: 960px) {
  .secContents .cntList__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.secContents .cntList .item {
  position: relative;
  background: #fff;
  color: var(--key);
  border-radius: 15px;
  padding: 50px 25px;
}
@media screen and (min-width: 961px) {
  .secContents .cntList .item {
    width: 303px;
    padding: 30px 25px 60px;
  }
  .secContents .cntList .item.-pcL {
    width: 482px;
  }
  .secContents .cntList .item.-pcL .item__img img {
    width: 100%;
  }
}
.secContents .cntList .item__img {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .secContents .cntList .item__img .js-cntSld {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
.secContents .cntList .item__img img {
  width: 250px;
}
.secContents .cntList .item__ttl {
  text-align: center;
  line-height: normal;
  letter-spacing: 0.18em;
  font-size: 14px;
  line-height: 1.75;
}
.secContents .cntList .item__ttl span {
  font-size: 14px;
}
.secContents .cntList .item__tagList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
.secContents .cntList .item__tagList p {
  border-radius: 40px;
  background: var(--key);
  color: #fff;
  padding: 5px 14px;
  font-size: 14px;
}
.secContents .cntList .item__txt {
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-top: 18px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .secContents .cntList .item__txt {
    font-size: 15px;
  }
}
.secContents .cntList .item__btn {
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .secContents .cntList .item__btn {
    font-size: 15px;
    letter-spacing: 0.3em;
  }
}
.secContents .cntList .item__btn__txt {
  text-decoration: underline;
}
.secContents .cntList .item__btn a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.secContents .cntList .item__spCnt {
  display: none;
  padding: 30px 15px;
}
@media screen and (min-width: 961px) {
  .secContents .cntList .item__spCnt {
    display: none !important;
  }
}
.secContents .cntList .item__spCnt__img img {
  width: 100%;
}
.secContents .cntList .item__spCnt__ttl {
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
  font-size: 15px;
}
.secContents .cntList .item__spCnt__ttl a {
  text-decoration: underline;
}
.secContents .cntList .item__spCnt__txtarea {
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.secContents .cntList .item__spCnt__txtarea .-note {
  margin-top: 1em;
  font-size: 11px;
}

.secMember {
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .secMember {
    padding: 120px 0;
  }
}
.secMember__in {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 961px) {
  .secMember__in {
    width: 1024px;
  }
}
.secMember__head {
  position: relative;
  font-size: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .secMember__head {
    margin-bottom: 35px;
  }
}
.secMember__head__ttl {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
  width: 19px;
}
.secMember__head__ttl img {
  width: 100%;
}
.secMember__head__copy {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  line-height: 1.75;
  width: 88px;
}
.secMember__head__copy img {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .secMember__head__copy {
    position: absolute;
    left: -10px;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .secMember__head__copy {
    margin: 45px auto 0;
  }
}
.secMember .block1 {
  margin-top: 70px;
}
@media screen and (max-width: 960px) {
  .secMember .block1 {
    margin: 0 25px;
    padding-bottom: 70px;
    border-bottom: solid 1px var(--key);
  }
}
.secMember .block1__ttl {
  text-align: center;
  line-height: 2;
  font-size: 25px;
  margin-bottom: 50px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 960px) {
  .secMember .block1__ttl {
    font-size: 17px;
    margin-bottom: 40px;
    margin-top: 38px;
  }
}
.secMember .block1__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 961px) {
  .secMember .block1__col {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  .secMember .block1__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 961px) {
  .secMember .block1__img {
    width: 520px;
  }
}
.secMember .block1__img img {
  width: 100%;
}
.secMember .block1__img__txt {
  text-align: center;
  margin-top: 2em;
  font-size: 14px;
}
.secMember .block1__credit {
  line-height: 2;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (min-width: 961px) {
  .secMember .block1__credit {
    font-size: 16px;
  }
  .secMember .block1__credit .-sml {
    font-size: 14px;
  }
}
@media screen and (max-width: 960px) {
  .secMember .block1__credit {
    text-align: center;
    font-size: 11px;
    line-height: 2.36;
  }
}
.secMember .block2 {
  margin-top: 90px;
}
@media screen and (max-width: 960px) {
  .secMember .block2 {
    margin-top: 75px;
  }
}
.secMember .block2__ttl {
  text-align: center;
  font-size: 25px;
  margin-bottom: 65px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 960px) {
  .secMember .block2__ttl {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.secMember .block2__txt {
  text-align: center;
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 960px) {
  .secMember .block2__txt {
    line-height: 2.4;
    font-size: 11px;
  }
}
.secMember .block2__txt .-sml {
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .secMember .block2__txt .-sml {
    font-size: 10px;
  }
}

.secFukumira {
  background: var(--grd);
  color: #fff;
  padding: 120px 0;
}
@media screen and (min-width: 961px) {
  .secFukumira__in {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}
@media screen and (max-width: 960px) {
  .secFukumira__in {
    margin-left: 25px;
    margin-right: 25px;
  }
}
.secFukumira__head {
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .secFukumira__head {
    margin-bottom: 50px;
  }
}
.secFukumira__head__ttl {
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.3em;
  font-size: 20px;
  width: 19px;
}
.secFukumira__head__ttl img {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .secFukumira__head__ttl {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .secFukumira__head__ttl {
    margin: 0 auto 45px;
  }
}
.secFukumira__head__logo img {
  width: 150px;
}
.secFukumira__head__c {
  text-align: center;
}
.secFukumira__head__txt {
  line-height: 2;
  letter-spacing: 0.25em;
  font-size: 16px;
  margin-top: 45px;
}
@media screen and (max-width: 960px) {
  .secFukumira__head__txt {
    text-align: left;
  }
  .secFukumira__head__txt br {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .secFukumira__head__link {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 960px) {
  .secFukumira__head__link {
    width: 100%;
    margin: 40px auto 0px;
  }
}
.secFukumira__head__link p {
  font-size: 13px;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 961px) {
  .secFukumira__head__link p {
    white-space: nowrap;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    margin-left: auto;
    margin-bottom: 20px;
  }
  .secFukumira__head__link p img {
    width: 12px;
  }
}
@media screen and (max-width: 960px) {
  .secFukumira__head__link p {
    font-size: 14px;
    letter-spacing: 0.6em;
  }
}
.secFukumira__head__link img {
  width: 78px;
}
.secFukumira__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 961px) {
  .secFukumira__cnt {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  .secFukumira__cnt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 12px;
    gap: 50px;
  }
}
.secFukumira__cnt .item {
  border: solid 2px #fff;
  border-radius: 50px;
  padding: 30px 23px;
}
@media screen and (min-width: 961px) {
  .secFukumira__cnt .item {
    width: 300px;
  }
}
@media screen and (max-width: 960px) {
  .secFukumira__cnt .item {
    padding: 34px 23px;
  }
}
.secFukumira__cnt .item__ttl {
  white-space: nowrap;
  text-align: center;
  line-height: 2;
  font-size: 16px;
  border-bottom: solid 1px #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.secFukumira__cnt .item__txt {
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: 14px;
}

.remodal-wrapper {
  padding: 75px 10px;
}

.remodal-overlay {
  background: #c3e5f0;
}

.remodal {
  width: 1000px;
  color: var(--key);
  position: relative;
}
.remodal:after {
  position: absolute;
  content: "";
  top: 55px;
  right: 0;
  width: 1px;
  height: calc(100% - 55px);
  background: var(--key);
}
.remodal__ttl {
  overflow: hidden;
  text-indent: -999999px;
  background: url(../images/modal-ttl.png) top center/cover no-repeat;
  width: 28px;
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
}
.remodal__close {
  background: url(../images/modal-close.png) top center/cover no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: -16px;
  top: 0;
}

.modalCnt {
  text-align: left;
  margin: 0 auto;
  width: 770px;
}
.modalCnt__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modalCnt__head__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.modalCnt__head__map {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58px;
  height: 58px;
  background: #fff;
  color: var(--key);
  padding-left: 0.4em;
  letter-spacing: 0.2em;
  line-height: 1.3;
  font-size: 13px;
}
.modalCnt__head__ttl {
  line-height: 1.8;
  letter-spacing: 0.3em;
  font-size: 16px;
}
.modalCnt__head__ttl a {
  text-decoration: underline;
}
.modalCnt__head__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.modalCnt__head__tag li {
  border-radius: 30px;
  background: #fff;
  color: var(--key);
  line-height: 1;
  font-size: 12px;
  padding: 5px 10px;
}
.modalCnt .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 35px;
  padding-bottom: 20px;
}
.modalCnt .block1__img {
  width: 300px;
}
.modalCnt .block1__img img {
  width: 300px !important;
}
.modalCnt .block1__img .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  bottom: -20px;
}
.modalCnt .block1__img .slick-dots li {
  margin: 0;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  background: var(--key);
}
.modalCnt .block1__img .slick-dots li.slick-active {
  background: #fff;
}
.modalCnt .block1__img .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.modalCnt .block1__txtarea {
  width: 430px;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 15px;
}
.modalCnt .block2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.modalCnt .block2__ttl {
  width: 100%;
  letter-spacing: 0.2em;
  font-size: 15px;
  margin-bottom: 30px;
}
.modalCnt .block2__img {
  width: 300px;
}
.modalCnt .block2__img img {
  width: 300px !important;
}
.modalCnt .block2__txtarea {
  width: 430px;
  line-height: 2;
  letter-spacing: 0.2em;
  font-size: 15px;
}
.modalCnt .block2__txtarea .-note {
  margin-top: 1em;
  font-size: 10px;
}

@media screen and (min-width: 961px) {
  html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
  }
}

@media screen and (max-width: 960px) {
  .remodal-overlay, .remodal-wrapper {
    display: none !important;
  }
}

.accessSec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 961px) {
  .accessSec {
    width: 1000px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding: 120px 0 0;
  }
}
@media screen and (max-width: 960px) {
  .accessSec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 75px;
  }
}
.accessSec__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .accessSec__head {
    margin-bottom: 40px;
  }
}
.accessSec__head__txt {
  margin-bottom: 60px;
}
@media screen and (min-width: 961px) {
  .accessSec__head__txt {
    padding-right: 6px;
  }
}
@media screen and (max-width: 960px) {
  .accessSec__head__txt {
    margin-bottom: 30px;
  }
}
.accessSec__head__txt img {
  width: 19px;
}
@media screen and (max-width: 960px) {
  .accessSec__head__txt img {
    width: 237px;
  }
}
.accessSec__head__btn img {
  width: 46px;
}
@media screen and (max-width: 960px) {
  .accessSec__head__btn img {
    width: 208px;
  }
}
.accessSec__map {
  width: 900px;
  height: 500px;
}
@media screen and (max-width: 960px) {
  .accessSec__map {
    width: 100%;
    height: 450px;
  }
}
.accessSec__map iframe {
  width: 100%;
  height: 100%;
}

.aboutSec,
.footer {
  background: var(--key);
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
@media screen and (max-width: 960px) {
  .aboutSec,
  .footer {
    padding: 90px 0;
  }
}
.aboutSec__head,
.footer__head {
  line-height: 1.8;
}
.aboutSec__head__txt1,
.footer__head__txt1 {
  letter-spacing: 0.1em;
  font-size: 18px;
}
.aboutSec__head__txt2,
.footer__head__txt2 {
  font-size: 25px;
  margin-top: 25px;
}
.aboutSec__head__txt3,
.footer__head__txt3 {
  letter-spacing: 0.1em;
  font-size: 16px;
  margin-top: 30px;
}
.aboutSec__list,
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  gap: 50px;
}
.aboutSec__list a,
.footer__list a {
  text-decoration: underline;
}
.aboutSec__list dl dt,
.footer__list dl dt {
  letter-spacing: 0.1em;
  font-size: 16px;
}
.aboutSec__list dl dd,
.footer__list dl dd {
  line-height: 1.8;
  font-size: 25px;
  margin-top: 25px;
}
@media screen and (max-width: 960px) {
  .aboutSec__list dl dd,
  .footer__list dl dd {
    font-size: 20px;
  }
  .aboutSec__list dl dd .-sp18,
  .footer__list dl dd .-sp18 {
    font-size: 18px;
  }
  .aboutSec__list dl dd .-sp25,
  .footer__list dl dd .-sp25 {
    font-size: 25px;
  }
}
.aboutSec__list dl dd .-sml,
.footer__list dl dd .-sml {
  font-size: 16px;
}

.ftFukumira {
  padding: 120px 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .ftFukumira {
    padding: 75px 0;
  }
}
.ftFukumira img {
  width: 399px;
}
@media screen and (max-width: 960px) {
  .ftFukumira img {
    width: 255px;
  }
}/*# sourceMappingURL=style.css.map */