@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family:0'Josefin Sans', sans-serif, serif;
  font-size: 62.5%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
  color: #1b224c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  html,
  body,
  div,
  span,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  abbr,
  address,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  samp,
  small,
  strong,
  sub,
  sup,
  var,
  b,
  i,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    font-family: 'Josefin Sans', sans-serif, serif;
  }
}

html {
  /*width: 100%;*/
  margin: 0 auto;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  width: 100vw;
  margin: 0 auto;
  overflow-x: hidden;
  line-height: 1;
}

main {
  min-width: 100%;
}

div,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-style: italic;
  font-weight: bold;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/*----------------------------------
  カラー
------------------------------------*/
/*----------------------------------
  キーフレーム
------------------------------------*/
@-webkit-keyframes show {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes show {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes hide {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

@keyframes hide {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50px);
  }
}

@-webkit-keyframes rotation {
  0% {
    transform-origin: center center;
    transform: rotate(0deg);
  }
  100% {
    transform-origin: center center;
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform-origin: center center;
    transform: rotate(0deg);
  }
  100% {
    transform-origin: center center;
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotation2 {
  0% {
    transform-origin: center center;
    transform: rotate(0deg);
  }
  100% {
    transform-origin: center center;
    transform: rotate(-360deg);
  }
}

@keyframes rotation2 {
  0% {
    transform-origin: center center;
    transform: rotate(0deg);
  }
  100% {
    transform-origin: center center;
    transform: rotate(-360deg);
  }
}

@-webkit-keyframes opening5 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes opening5 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}


@media (min-width: 769px) {
  .hamburger-button {
    display: none; /*768px以上で非表示*/
  }
}
/*----------------------------------
  イージング
------------------------------------*/
/*----------------------------------
  ハンバーガーメニュー
------------------------------------*/

@media (max-width: 768px) {
  .hamburger-button{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    /*background: #ffffff;*/
    cursor: pointer;
    width: 50px;
    height:50px;
    border-radius: 5px;
    margin-right: 15px;
  }

  /*ボタン内側*/
  .hamburger-button span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background:#57a2c7;
    width: 45%;
  }

  .hamburger-button span:nth-of-type(1) {
    top:15px;
  }

  .hamburger-button span:nth-of-type(2) {
    top:23px;
  }

  .hamburger-button span:nth-of-type(3) {
    top:31px;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .hamburger-button.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .hamburger-button.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }

  .hamburger-button.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

@media (max-width: 1300px) {
  .header .js-is-hamburger-active .header_nav {
    transform: translateX(0);
  }
  .header2 .js-is-hamburger-active .header_nav {
    transform: translateX(0);
  }
}

/*----------------------------------
  ヘッダー
------------------------------------*/
.header {
  width: 100%;
  height: 100px;
  position: -webkit-sticky;
  position: sticky;
  /*top: 0;*/
  z-index: 99999;
  background-color: rgba(235, 236, 237, 0);
  transition: all 0.3s;
}

.header:hover {
  background-color: rgba(235, 236, 237, 0.7);
}

.header .header_container {
  padding: 0 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  background: rgba(255, 255, 255, 0);
}

.header .header_logo {
  width: 270px;
  min-width: 100px;
  display: flex;
  align-items: center;
  margin: 0;
  margin-right: 64px;
}

.header .header_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.header .header_navlist {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.header .header_navlist p {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #719e98;
}

.header .header_navlistitem {
  height: 100%;
  position: relative;
}

.header .header_navlistitem a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  position: relative;
  flex-direction: column;
}

.header .header_navlistitem .header_navlistitem_ruby {
  letter-spacing: 0.2em;
  font-size: 9px;
}

.header .header_cta {
  display: flex;
  position: relative;
}

.header .header_event {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 16px;
  padding: 0 40px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00acba;
  border-radius: 52px;
}

.header .header_event p {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.header .header_event:hover {
  background: #fff;
}

.header .header_event:hover p {
  color: #005793;
}

.header .header_contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #005793;
  border-radius: 52px;
}

.header .header_contact p {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.header .header_contact:hover {
  background: #fff;
}

.header .header_contact:hover p {
  color: #005793;
}

@media (max-width: 768px) {
  .header {
    height: 70px;
    position: fixed;
    min-width: 0px;
    width: 100%;
    top: 0;
    /*background: none;*/
  }
  .header:hover {
    background: none;
  }
  .header .header_container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .header .header_logo {
    width: 140px;
    min-width: 70px;
    display: flex;
    align-items: center;
    margin: 0;
    margin-left: 25px;
  }
  .header .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0;
    min-height: 100vh;
    overflow-y: auto;
    background-color: #ebeced;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    z-index: -1;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
  }
  .header .header_navlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-right: 0;
    padding: 0 30px;
  }
  .header .header_navlist p {
    font-weight: 200;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-align: center;
    color: #1b224c;
  }
  .header .header_navlistitem {
    height: 100%;
    width: 100%;
    margin-right: 0;
  }
  .header .header_navlistitem a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    position: relative;
    text-align: left;
  }
  .header .header_navlistitem .header_navlistitem_arrow {
    display: none;
  }
  .header .header_navlistitem a:hover::before {
    transform: none;
  }
  .header .header_cta {
    display: none;
  }
}

/*----------------------------------
  フッター 1
------------------------------------*/
.footer {
  background-image: url(/img/bottom.webp);
  background-repeat: no-repeat;
  background-position-y:bottom;
  padding: 240px calc(100 / 1536 * 100%) 10px;
  background-size: 100% auto;
}

.footer .footer_upper {
  display: flex;
}

.footer .footer_logo {
  display: block;
  width: 340px;
  margin-left: 40px;
}

.footer_inner{
  margin: 10px calc(100 / 1536 * 100%) 10px;
}

.footer .footer_nav {
  display: flex;
  justify-content: flex-end;
  /*gap: 100px;*/
}

.footer .footer_navitem {
  min-width: 150px;
}
.footer .footer_navitem:first-child {
  min-width: 0px;
  text-align: center;
}

.footer .footer_navitem .footer_heading {
  font-weight: 400;
  font-size: 1rem;
  color: #0a0a09;
  letter-spacing: 0em;
  line-height: 1.6;
}

.footer .footer_navitem .footer_ruby {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 0.9rem;
  color: #0a0a09;
  letter-spacing: 0.2em;
  line-height: 1.6;
  position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid #4d8ab4;
}

.footer .footer_navitem .footer_ruby::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 23px;
  height: 1px;
  background-color: #0a0a09;
}

.footer .footer_navitem .footer_navlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.footer .footer_navitem .footer_navlist a {
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1.6;
}

.footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 2px;
}

.footer .footer_bottom_leftcontainer {
  display: flex;
  gap: 30px;
}

.footer .footer_blankitem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .footer_blankitem p {
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1;
}

.footer .footer_blankitem img {
  width: 16px;
  margin-top: -1px;
}

.compfooter .footer_bottom_rightcontainer p {
  font-weight: 400;
  font-size: 1.4rem;
  color: #050000;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .footer {
    width: 100%;
    /*background-color: rgba(0, 87, 147, 0.24);*/
    padding: 0px 0px;
    padding-bottom: 10px;
  }
  .footer .footer_upper {
    display: block;
  }
  .footer .footer_logo {
    display: block;
    width: fit-content;
    width: 140px;
  }

  .footer_inner{
    margin: 20px 10px 10px 10px;
  }

  .footer .footer_nav {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
  .footer .footer_navitem {
    width: 50%;
    min-width: 150px;
  }
  .footer .footer_navitem .footer_heading {
    font-weight: 400;
    font-size: 16px;
    color: #050000;
    letter-spacing: 0em;
    line-height: 1.6;
  }
  .footer .footer_navitem .footer_ruby {
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 0.9rem;
    color: #050000;
    letter-spacing: 0.2em;
    line-height: 1.6;
    position: relative;
    padding-bottom: 14px;
    border-bottom: 1px solid #4d8ab4;
  }
  .footer .footer_navitem .footer_ruby::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 23px;
    height: 1px;
    background-color: #fff;
  }
  .footer .footer_navitem .footer_navlist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  .footer .footer_navitem .footer_navlist a {
    font-weight: 400;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 1.6;
  }
  .footer .footer_bottom {
    display: block;
    margin-top: 80px;
  }
  .footer .footer_bottom_leftcontainer {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer .footer_blankitem {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer .footer_blankitem p {
    font-weight: 400;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 1;
  }
  .footer .footer_blankitem img {
    width: 16px;
    margin-top: -1px;
  }
  .footer .footer_bottom_rightcontainer {
    margin-top: 40px;
    text-align: center;
  }
  .compfooter .footer_bottom_rightcontainer p {
    font-weight: 400;
    font-size: 0.8rem;
    color: #050000;
  }
}

@media (min-width: 1300px) {
  .footer {
    background-position-y:bottom;
    padding: 300px calc(100 / 1536 * 100%) 10px;
    background-size: 100% auto;
  }

}

@media (min-width: 1400px) {
  .footer {
    background-position-y:bottom;
    padding: 600px calc(100 / 1536 * 100%) 10px;
    background-size: 100% auto;
  }

}
/*----------------------------------
  ホバーアクション
------------------------------------*/
.hover {
  transition: 0.3s all;
  transform-origin: center center;
}

.hover_transparent:hover {

}

.hover_white {
  transition: 0.2s all ease-out;
}

.hover_white:hover {
  color: #000333;
  background-color: #fff;
}

.hover_white:hover::after {
  background-image: url(../../img/ico_arrow_viewmore2.svg);
}

.hover_blue {
  transition: 0.2s all ease-out;
}

.hover_blue:hover {
  color: #fff;
  background-color: #005794;
}

.hover_blue:hover::after {
  background-image: url(../../img/ico_arrow_viewmore1.svg);
}

.hover_gray {
  transition: 0.2s all ease-out;
}

.hover_gray:hover {
  color: #000333;
  background-color: #ebeced;
}

.hover_gray:hover::after {
  background-image: url(../../img/ico_arrow_viewmore1.svg);
}

/*----------------------------------
  見出し
------------------------------------*/
/*----------------------------------
  テキスト
------------------------------------*/
/*----------------------------------
  ボタン
------------------------------------*/
button,
input {
  -webkit-appearance: none;
  border-radius: 0;
  margin: 0;
  /*background-color: #93300;*/
  border: 1px solid #eeeeee00;
}

.viewmore_white {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #000333;
  letter-spacing: 0.06em;
  line-height: 1;
  background-color: #fff;
  border-radius: 56px;
  position: relative;
}

.viewmore_white::after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 19px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url(../../img/ico_arrow_viewmore2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.viewmore_blue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 56px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
  background-color: #005794;
  border-radius: 56px;
  position: relative;
}

.viewmore_blue::after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 19px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url(../../img/ico_arrow_viewmore1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/*----------------------------------
  iframe
------------------------------------*/
.iframe_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.iframe_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------
  recruit
------------------------------------*/
#recruit {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#recruit a {
  display: block;
  background-image: url(../img/bg_recruit.webp);
  background-size: cover;
  transition: all 0.2s ease-in;
  position: relative;
}

@media (hover: hover) and (pointer: fine) {
  #recruit a:hover .rec_btn {
    color: #000333;
    background-color: #fff;
  }
  #recruit a:hover .rec_btn::after {
    background-image: url(../../img/ico_arrow_viewmore2.svg);
  }
}

.rec_maincontainer {
  padding: 80px 0;
  text-align: center;
  transition: all 0.2s ease-in;
}

.rec_maincontainer h3 {
  font-weight: 500;
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 1.5;
  margin-top: 60px;
}

.rec_maincontainer .rec_textbox {
  font-weight: 400;
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0em;
  line-height: 2;
  margin-top: 40px;
}

.rec_bgcontainer {
  position: absolute;
  left: 0;
  bottom: -30px;
}

.rec_bgcontainer p {
  font-family: 'Josefin Sans', sans-serif, serif;
  font-weight: 400;
  font-size: 20rem;
  color: #f9f9f9;
  letter-spacing: 0em;
  line-height: 1;
  opacity: 0.3;
}

.rec_btn {
  margin-top: 56px;
  position: relative;
  z-index: 99;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  #recruit {
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  #recruit a {
    display: block;
    background-image: url(../img/bg_recruit_sp.webp);
    background-size: cover;
    transition: all 0.2s ease-in;
    background-position-x: 60%;
  }
  .rec_maincontainer {
    padding: 80px 0;
    text-align: center;
  }
  .rec_maincontainer h2 {
    width: 130px;
    margin: 0 auto;
  }
  .rec_maincontainer h3 {
    font-weight: 500;
    font-size: 2.2rem;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 1.5;
    margin-top: 60px;
  }
  .rec_maincontainer .rec_textbox {
    font-weight: 400;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0em;
    line-height: 2;
    margin-top: 40px;
  }
  .rec_bgcontainer {
    position: absolute;
    left: 0;
    bottom: -15px;
  }
  .rec_bgcontainer p {
    font-family: 'Josefin Sans', sans-serif, serif;
    font-weight: 400;
    font-size: 10rem;
    color: #f9f9f9;
    letter-spacing: 0em;
    line-height: 1;
    opacity: 0.3;
  }
  .rec_btn {
    margin-top: 56px;
  }
}

/*----------------------------------
  シャドウ
------------------------------------*/
/*----------------------------------
  パンくず
------------------------------------*/
#breadcrumbs {
  position: absolute;
  top: 48px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99;
}

#breadcrumbs .breadline {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 1px;
}

#breadcrumbs span {
  font-weight: 400;
  font-size: 1.4rem;
  color: #000333;
  letter-spacing: 0em;
}

@media (max-width: 768px) {
  #breadcrumbs {
    display: none;
  }
}

/*----------------------------------
  hide
------------------------------------*/
.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block !important;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp_inline {
  display: none !important;
}

@media (max-width: 768px) {
  .sp_inline {
    display: inline !important;
  }
}

.pc_inline {
  display: inline !important;
}

@media (max-width: 768px) {
  .pc_inline {
    display: none !important;
  }
}

.sp_inlineblock {
  display: none !important;
}

@media (max-width: 768px) {
  .sp_inlineblock {
    display: inline-block !important;
  }
}

.pc_inlineblock {
  display: inline-block !important;
}

@media (max-width: 768px) {
  .pc_inlineblock {
    display: none !important;
  }
}

.pc_flex {
  display: flex !important;
}

@media (max-width: 768px) {
  .pc_flex {
    display: none !important;
  }
}

.sp_flex {
  display: none !important;
}

@media (max-width: 768px) {
  .sp_flex {
    display: flex !important;
  }
}

.ondisplay {
  visibility: visible;
}

.outofdisplay {
  visibility: hidden;
}

/*----------------------------------
  viewport
------------------------------------*/
/*----------------------------------
  main
------------------------------------*/
/*----------------------------------
  swiper
------------------------------------*/
.swiper-button-disabled {
  display: none !important;
}

/*----------------------------------
  scroll_suggest
------------------------------------*/
.scroll_suggest {
  width: 36px;
  height: 100%;
  min-height: 670px;
  max-height: calc(100vh - 100px);
  position: absolute;
  top: 0;
  left: 42px;
}

.scroll_suggest .scroll_suggest_inner {
  position: absolute;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.scroll_suggest p {
  font-weight: 400;
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
}

@media (max-width: 768px) {
  .scroll_suggest {
    display: none;
  }
}

/*----------------------------------
  cta_sponly
------------------------------------*/
.cta_sponly {
  display: none !important;
}

@media (max-width: 768px) {
  .cta_sponly {
    display: flex !important;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: fixed;
    top: 0;
    transform: translateY(calc(100vh - 50px));
    transform: translateY(calc(100dvh - 50px));
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 999999;
    transition: all 0.2s;
  }
  .cta_sponly_wrapper {
    display: flex;
  }
  .header_event {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 15px;
    padding: 0 42px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00acba;
    border-radius: 52px;
    border: 1px solid #ebeced;
  }
  .header_event p {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    color: #fff;
  }
  .header_contact {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 42px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #005793;
    border-radius: 52px;
    border: 1px solid #ebeced;
  }
  .header_contact p {
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    color: #fff;
  }
}

/*----------------------------------
  ローディング
------------------------------------*/
.loading_toggle {
  width: 100vw;
  height: 100vh;
  background-color: #ebeced;
  position: fixed;
  z-index: 999999999;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  display: none;
}

#loading {
  display: flex;
}

/* ----------------------------------------
 button
------------------------------------------- */
/* メインのボタンの設定 */
.button-vm p {
  position: relative;
  display: flex;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 25px;
  color: #FFF;
  background: #FFC530;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 100px;
  border-bottom: 6px solid #EDD494;
  overflow: hidden;
  font-size: 3.2em;
}

/* ボタンにカーソルを合わせた際の設定 */
.button-vm p:hover,
.button-vm p label:hover {
  cursor: pointer;
}

/* ボタンをクリックした際の設定 */
.button-vm p:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0.2, 0.2);
}

/* ボタンを光らせるための要素 */
.button-vm p::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
  animation: shine 3s infinite;
}

/* ボタンの文字部分の要素 */
.button-vm p label {
  display: block;
  width: 100%;
  color: #FFFFFF;
  padding-top: 10px;
  font-size: 2.8rem;
}

/* ボタンの丸部分の要素 */
.button-vm p .item-circle {
  position: absolute;
  right: 1.4rem;
  display: block;
  width: 64px;
  height: 64px;
  margin: auto;
  margin-top: -13px;
  border-radius: 50%;
  background: #FFF;
}

/* ボタンの矢印要素 */
.button-vm p::after {
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  margin: auto;
  border-top: 20px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 37px solid #FFC530;
  z-index: 10;
}

@keyframes shine {
  33% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 768px) {
  .button-vm p {
    position: relative;
    display: flex;
    text-align: center;
    max-width: 240px;
    margin: 0 auto;
    padding: 10px 25px;
    color: #FFF;
    background: #FFC530;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 30px;
    border-bottom: 4px solid #EDD494;
    overflow: hidden;
    font-size: 1.6em;
  }

  /* ボタンの丸部分の要素 */
  .button-vm p .item-circle {
    position: absolute;
    right: 0.9rem;
    display: block;
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    background: #FFF;
  }

  /* ボタンの矢印要素 */
  .button-vm p::after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    margin: auto;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #FFC530;
    z-index: 10;
  }

}

/*# sourceMappingURL=style.css.map */
