@import url("https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&display=swap");

html {
  font-size: 62.5%;
}

body {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-size: 1.8rem;
  line-height: 1.65;
  font-weight: 600;
  font-style: normal;
  background: #fff;
  color: #231815;
  overflow-wrap: break-word;
}

a {
  color: #231815;
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

a:hover {
  text-decoration: none;
  color: #231815;
  filter: alpha(opacity=75);
  -ms-filter: "alpha(opacity=75)";
  opacity: .75;
}

a:focus {
  outline: none;
  text-decoration: none;
}

.logout a {
  color: #D8413A;
  text-decoration: underline;
}

.logout a:hover {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0px 0px 3rem 0px;
  padding: 0;
}

p:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  p {
    margin: 0 0 1.5625vw 0;
  }
}

figure,
picture {
  margin: 0;
  padding: 0;
  line-height: 0;
}

input[type="submit"] {
  border: none;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

table {
  border-spacing: inherit;
  border-collapse: collapse;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle!important;
}

/* clearfix (micro) */
.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}

.clearfix:after {
  clear: both;
}

div,
p {
  /*word-break: break-all;*/
}

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,
nav,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ul,
ol,
li {
  list-style: none;
}

/*.container {
    overflow: hidden;
    width: 100%;
    padding: 0px;
    margin: 0 auto;
    background: #FBFCF4;
}*/
.page-main {
  display: block;
  padding: 0;
  position: relative;
}

.font-dnp {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.font-vdl {
  font-family: vdl-v7marugothic, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.font-inknut {
  font-family: 'Inknut Antiqua', serif;
  font-style: normal;
  font-weight: 300;
}

body.open {
  /*overflow: hidden;*/
  /*padding-right: 17px;*/
}

body.open .overlay {
  display: block;
}

/************************
 .sc-fade
*************************/
@-webkit-keyframes transX {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  47.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  52.5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-moz-keyframes transX {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  47.5% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  52.5% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes transX {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  47.5% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  52.5% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.js-view {
  opacity: 0;
  transition: all 0.8s;
}

.js-view.fadein {
  opacity: 1;
}

.lp_zoom {
  opacity: 0;
  -webkit-transform: scale(1.12);
  -moz-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.lp_zoom.fadein {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* animatezoom
********************/
@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes animatezoom {
  from {
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }

  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

/* slideInFromLeft
********************/
@-webkit-keyframes slideInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes slideInFromLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

/* slideOutFromLeft
********************/
@-webkit-keyframes slideOutFromLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
}

@-moz-keyframes slideOutFromLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -moz-transform: translateX(50px);
    transform: translateX(50px);
  }
}

@keyframes slideOutFromLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    transform: translateX(50px);
  }
}

.remodal-overlay {
  background: rgba(152, 232, 245, 0.8) !important;
}

.remodal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  width: 100%;
  max-width: 50.83333vw;
  -moz-border-radius: 2.08333vw;
  border-radius: 2.08333vw;
  padding: 0 !important;
  margin-bottom: 0 !important;
  /*&.in {
        .modal-dialog {
            webkit-transform: translate(0,0);
            -ms-transform: translate(0,0);
            -o-transform: translate(0,0);
            transform: translate(0,0);
        }
    }*/
}

.remodal .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  -moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
  height: 100%;
}

@media screen and (max-width: 1099px) and (min-width: 768px) {
  .remodal .modal-dialog {
    height: 98vh;
  }
}

.remodal p {
  font-size: var(--btn_font_size_m);
  line-height: 1.88888889;
}

.remodal-wrapper {
  padding: 0 !important;
}

@media only screen and (min-width: 1025px) {
  .remodal {
    padding: 0;
  }
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

.fade.in {
  opacity: 1;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: hidden;
}

.modal-dialog {
  /*max-height: 89vh;*/
  position: relative;
  overflow: hidden;
  padding: 2.125vw 3.125vw 2.1667vw 4.4271vw;
  -moz-border-radius: 2.08333vw;
  border-radius: 2.08333vw;
  text-align: left;
}

.modal-dialog:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: -1;
}

.modal-dialog:after {
  position: absolute;
  content: '';
  top: 0.4rem;
  left: 0.4rem;
  width: -webkit-calc(100% - 1.4rem);
  width: -moz-calc(100% - 1.4rem);
  width: calc(100% - 1.4rem);
  height: -webkit-calc(100% - 1.4rem);
  height: -moz-calc(100% - 1.4rem);
  height: calc(100% - 1.4rem);
  border: 0.3rem solid #003451;
  -moz-border-radius: 1.92708vw;
  border-radius: 1.92708vw;
  z-index: 0;
  pointer-events: none;
}

.btn-close {
  border: none;
  background: none;
  padding: 0;
  position: absolute;
  width: 4vw;
  max-width: 62px;
  display: inline-block;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 3vw;
  right: 5vw;
  z-index: 5;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
}

.modal-content {
  /*width: 100%;
    overflow-y: auto;
    border: none;
    box-shadow: none;
    position: relative;
    
    background-clip: padding-box;
    outline: 0;*/
}

.modal-content .modal-body {
  z-index: 2;
  position: relative;
  overflow-y: auto;
}

.modal-content .modal-body .sb-scrollbar-container {
  margin: 0.52083vw 0;
  z-index: 2;
}

.modal-content .modal-body .sb-content {
  height: -webkit-calc(100vh - 18.75vw);
  height: -moz-calc(100vh - 18.75vw);
  height: calc(100vh - 18.75vw);
  max-height: 100% !important;
  width: -webkit-calc(120% - 0.52083vw);
  width: -moz-calc(120% - 0.52083vw);
  width: calc(120% - 0.52083vw);
  padding-right: 20%;
  margin-left: 2.08333vw;
  left: -1.40625vw;
  overflow-y: scroll;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.modal-content .modal-body_inner {
  padding: 1.04167vw 0;
  position: relative;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

.txt-center {
  text-align: center;
}

#hambuger {
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  z-index: 99;
  position: absolute;
  width: 4vw;
  height: 4vw;
  min-width: 77px;
  min-height: 77px;
  right: 4rem;
  top: 4rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
  border: 0.3rem solid #003451;
}

#hambuger.open {
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.nav-icon {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #003451;
}

.nav-icon span {
  display: block;
  position: absolute;
  height: 0.2vw;
  width: 2vw;
  min-width: 33px;
  background: #fff;
  opacity: 1;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0deg);
  -moz-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 20%;
}

.nav-icon span:nth-child(2) {
  top: 41%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-icon span:nth-child(3) {
  top: 57%;
}

.nav-icon .mn {
  opacity: 1;
  visibility: visible;
  color: #fff;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: 2%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: clamp(14px, calc(10.99px + 0.27vw), 18px);
  font-weight: bold;
  font-family: "Inknut Antiqua", serif;
  width: 100%;
  text-align: center;
}

.nav-icon .close {
  opacity: 0;
  visibility: hidden;
  color: #fff;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Inknut Antiqua", serif;
  width: 100%;
  text-align: center;
}

.nav-icon.open {
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  /*.close {
          opacity: 1;
          visibility: visible;
        }*/
}

.nav-icon.open span {
  background: #003451;
}

.nav-icon.open span:nth-child(1) {
  top: 50%;
  width: 0%;
  min-width: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-icon.open span:nth-child(2) {
  visibility: visible;
  top: 50%;
  margin-top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -moz-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
  top: 50%;
  width: 0%;
  left: 50%;
}

.nav-icon.open .mn {
  opacity: 0;
  visibility: hidden;
}

@media screen and (max-width: 1099px) and (min-width: 768px) {
  #hambuger {
    width: 2vw;
    height: 2vw;
    min-width: 60px;
    min-height: 60px;
  }
}

@media screen and (min-width: 768px) {
  .show_sp {
    display: none !important;
  }

  a[href^=tel] {
    pointer-events: none;
    text-decoration: none;
    opacity: 1 !important;
    cursor: default !important;
  }

  .nav-icon.open {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }

  .nav-icon.open:hover {
    background: #003451;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  .nav-icon.open:hover span {
    background: #fff;
  }
}

@media screen and (min-width: 768px) {
  .page-main {
    overflow: hidden;
    /*line-height: 0;*/
  }

  .btn-close {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    /*border: 0.3rem solid #003451;
      border-radius: 50%;
      width: 6.2rem;
      height: 6.2rem;
      &:before,
      &:after {
        position: absolute;
        content: '';
        height: 0.3rem;
        width: 2.4rem;
        left: 50%;
        top: 50%;
        background: #003451;
      }
      &:before {
        margin: -0.8rem 0 0 -0.3rem;
        transform: rotate(-45deg) translate(-50%, -50%);
      }
      &:after {
        transform: rotate(45deg) translate(-50%, -50%);
        margin: 0.9rem 0 0 -0.4rem;
      }*/
  }

  .btn-close:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
    transform-origin:center center;
    /*background: #003451;
        &:before,
        &:after {
          background: #fff;
        }*/
  }
}

/** header area
====================================== **/
.page-header {
  /*display: flex;
  align-items: center;
  justify-content: space-between;
  padding: vw(40);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;*/
}

.logo {
  width: 17rem;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
}

.g-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  z-index: -1;
}

.g-nav.open {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

.g-nav .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.g-nav .menu a {
  font-size: clamp(16px, calc(13.7px + 0.64vw), 30px);
  color: #003451;
}

.g-nav .menu li+li {
  margin-top: 3rem;
}

.g-nav .menu li.FFAomori {
  width: 23vw;
  border: 3px dashed #003451;
  border-radius: 15px;
}

.title-nav {
  width: 30rem;
  position: absolute;
  left: 5rem;
  top: 3rem;
  z-index: 99;
}

@media screen and (max-width: 1099px) and (min-width: 768px) {
  .page-header .logo {
    z-index: -9;
    visibility: hidden;
    opacity: 0;
  }

  .page-header.on .logo {
    position: relative;
    z-index: 1;
    visibility: visible;
    opacity: 1;
  }

  .g-nav .menu li.FFAomori {
    width: 24vw;
  }
}

@media screen and (max-width: 767px) {
  .g-nav .menu li.FFAomori {
    width: 60vw;
  }
}


/** footer area
======================================= **/
.page-footer {
  background: #003451;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 0;
}

.ft-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.ft-menu li {
  padding: 0 2rem;
}

.ft-menu li a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: underline;
}

.copyright {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  color: #fff;
  font-family: "Inknut Antiqua", serif;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  body {
    line-height: 2;
  }

  body.open {
    overflow-y: hidden;
  }

  .show_pc {
    display: none !important;
  }

  .js-view {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }

  .container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .remodal {
    max-width: 100vw;
    -moz-border-radius: 0% !important;
    border-radius: 0% !important;
  }

  .remodal p {
    line-height: 1.92857143;
  }

  .modal-dialog {
    width: 100%;
    padding: 8vw 4vw 5.33333vw 4vw;
    -moz-border-radius: 7.73333vw;
    border-radius: 7.73333vw;
  }

  .modal-dialog:after {
    top: 3px;
    left: 3px;
    width: -webkit-calc(100% - 10px);
    width: -moz-calc(100% - 10px);
    width: calc(100% - 10px);
    height: -webkit-calc(100% - 10px);
    height: -moz-calc(100% - 10px);
    height: calc(100% - 10px);
    border-width: 0px;
    -moz-border-radius: 6.93333vw;
    border-radius: 6.93333vw;
    z-index: 10;
  }

  .btn-close {
    width: 9.6vw;
    height: 9.6vw;
    top: 4vw;
    right: 4vw;
  }

  .modal-content .modal-body {
    padding: 5.33333vw 0 0;
  }

  .modal-content .modal-body .sb-content {
    height: -webkit-calc(84vh - 27.73333vw);
    height: -moz-calc(84vh - 27.73333vw);
    height: calc(84vh - 27.73333vw);
    max-height: 100% !important;
    left: 0;
    margin-left: 0;
    width: 120%;
  }

  #hambuger {
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    z-index: 99;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: fixed;
    width: 12vw;
    height: 12vw;
    min-width: auto;
    min-height: auto;
    right: 5.33333vw;
    top: 5.33333vw;
    background: #003451;
    -moz-border-radius: 2.13333vw;
    border-radius: 2.13333vw;
    border: 0.53333vw solid #003451;
  }

  #hambuger.open {
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    border: 0.26667vw solid #003451;
  }

  .nav-icon {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }

  .nav-icon span {
    display: block;
    position: absolute;
    height: 0.53333vw;
    width: 6.66667vw;
    min-width: auto;
    background: #fff;
    opacity: 1;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(0deg);
    -moz-transform: translateX(-50%) rotate(0deg);
    -ms-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  .nav-icon span:nth-child(1) {
    top: 1.6vw;
  }

  .nav-icon span:nth-child(2) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nav-icon span:nth-child(3) {
    top: 3.5vw;
  }

  .nav-icon .mn {
    opacity: 1;
    visibility: visible;
    color: #fff;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    position: absolute;
    left: 50%;
    bottom: 0.53333vw;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 2.13333vw;
    font-weight: bold;
    font-family: "Inknut Antiqua", serif;
    width: 100%;
    text-align: center;
  }

  .nav-icon .close {
    opacity: 0;
    visibility: hidden;
    color: #fff;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.4rem;
    font-weight: bold;
    font-family: "Inknut Antiqua", serif;
    width: 100%;
    text-align: center;
  }

  .nav-icon.open {
    -moz-border-radius: 50%;
    border-radius: 50%;
    /*.close {
          opacity: 1;
          visibility: visible;
        }*/
  }

  .nav-icon.open span {
    background: #003451;
    height: 0.26667vw;
  }

  .nav-icon.open span:nth-child(1) {
    top: 50%;
    width: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .nav-icon.open span:nth-child(2) {
    visibility: visible;
    margin-top: 0;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-icon.open span:nth-child(3) {
    margin-top: 0;
    top: 5.8vw;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
  }

  .nav-icon.open span:nth-child(4) {
    top: 50%;
    width: 0%;
    left: 50%;
  }

  .nav-icon.open .mn {
    opacity: 0;
    visibility: hidden;
  }

  /** header area
====================================== **/
  /*.page-header {
  padding: vws(20);
}*/
  .logo {
    width: 34.66667vw;
    max-width: 100%;
  }

  .g-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    z-index: -1;
    overflow-y: auto;
  }

  .g-nav.open {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }

  .g-nav .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .g-nav .menu li+li {
    margin-top: 2.33333vw;
  }

  .g-nav .menu li a {
    display: inline-block;
  }

  .g-nav .menu li a.few-row {
    line-height: 25px;
  }

  .g-nav .menu li.mn01 {
    width: 20.53333vw;
  }

  .g-nav .menu li.mn02 {
    width: 59.73333vw;
  }

  .g-nav .menu li.mn03 {
    width: 63.73333vw;
  }

  .g-nav .menu li.mn04 {
    width: 75.73333vw;
  }

  .g-nav .menu li.mn05 {
    width: 60.26667vw;
  }

  .g-nav .menu li.mn06 {
    width: 40.53333vw;
  }

  .g-nav .menu li.mn07 {
    width: 36.8vw;
  }

  .g-nav .menu li.mn08 {
    width: 77.86667vw;
  }

  .g-nav .menu li.mn09 {
    width: 48vw;
  }

  .title-nav {
    width: 48vw;
    position: static;
    margin: 5.33333vw auto 8vw;
  }

  .page-footer {
    background: #003451;
    padding: 8vw 5.33333vw;
    position: relative;
  }

  .ft-menu {
    margin-bottom: 8vw;
  }

  .ft-menu li {
    padding: 0 4.26667vw;
  }

  .ft-menu li:first-child {
    padding-left: 0;
  }

  .ft-menu li:last-child {
    padding-right: 0;
  }

  .ft-menu li a {
    font-size: 3.2vw;
  }

  .copyright {
    text-align: center;
    font-size: 2.66667vw;
  }
}

.main-visual .event-note {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
}

.main-visual.active .event-note {
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
}

.event-note {
  font-size: clamp(15px, calc(1.43px + 1.23vw), 33px);
  font-weight: bold;
  line-height: 1.7708333333vw;
  color: #003451;
  background: #E3F6F9;
  padding: 1.3020833333vw;
  border-radius: 0.7291666667vw;
  display: block;
  max-width: 35vw;
  margin: 1.3020833333vw auto 0;
}

@media screen and (max-width: 1099px) and (min-width: 768px) {
  .event-note {
    font-size: clamp(11px, calc(-0.6px + 1.5vw), 16px);
    max-width: 45vw;
    line-height: unset;
  }
}

@media screen and (max-width: 767px) {
  .event-note {
    font-size: 3.4666666667vw;
    font-weight: bold;
    line-height: 5vw;
    color: #003451;
    background: #E3F6F9;
    margin: 2.6666666667vw 4vw;
    padding: 2.6666666667vw 4vw;
    border-radius: 3.7333333333vw;
    display: block;
    max-width: 100%;
    text-align: left;
    margin-top: 3.4666666667vw;
  }
}