@charset "utf-8";
/* ---------------------
  - root

  - html
  - body

  - view
    - --pc
    - --sp

  - logo

  - navList
    - navList__item

  - drawerBtn
    - drawerBtn__line
      - --top
      - --middle
      - --bottom
  - --close
  - --open
      - --top
      - --middle
      - --bottom

  - header
    - header__logo
    - header__nav

  - wrapper
    - wrapper__main
    - wrapper__footer

  - main

  - sectionWrapper
    - sectionWrapper__inner
  - section

  - footer
    - footer__logoNav
    - footer__copyright

  - copyright
--------------------- */



/* -----------------------------------
  root
----------------------------------- */
:root {
  --color-bk:    #222;
  --color-bg:    #e8f0ff;
  --color-gy:    #c7d3ef;
  --color-theme: #7385B1;
  --color-err:   #cf2c60;

  --font-noto-sans:  "Noto Sans JP", sans-serif;
  --font-noto-serif: "Noto Serif JP", serif;
  --font-trajan:     "trajan-pro-3", serif;
}



/* -----------------------------------
  html
----------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
/*@media screen and (min-width:768.1px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width:768px) and (min-width:600.1px) {
  html {
    font-size: 13px;
  }
}*/
@media screen and (min-width:600.1px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  html {
    font-size: 14px;
  }
}



/* -----------------------------------
  body
----------------------------------- */
body {
  background-color: var(--color-bg);
  color: var(--color-bk);
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-noto-sans);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body.isLock {
  overflow: hidden;
}

body:before ,
body:after {
  display: block;
  position: fixed;
  z-index: 999999;
  margin: auto;
  background-color: #c00;
  /*content: " ";*/
}

body:before {
  left: 0;
  right: 0;
  width: 1px;
  height: 100lvh;
}

body:after {
  top: 0;
  bottom: 0;
  width: 100lvw;
  height: 1px;
}



/* -----------------------------------
  view
----------------------------------- */
/*  --pc
------------------------ */
@media screen and (max-width:768px) {
  .view.--pc {
    display: none !important;
  }
}


/*  --sp
------------------------ */
@media screen and (min-width:768.1px) {
  .view.--sp {
    display: none !important;
  }
}



/* -----------------------------------
  logo
----------------------------------- */
.logo {
  aspect-ratio: 275 / 123;
}

.logo :is( span, a ) {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background-image: url("../images/logo.svg");
  background-position: 50% 50%;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  text-indent: 200%;
  white-space: nowrap;
}



/* -----------------------------------
  navList
----------------------------------- */
.navList {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  gap: 2.571428571428571rem .8571428571428571rem; /* 36/14 12/14*/
  list-style: none;
  font-weight: bold;
  font-size: 1.142857142857143rem; /* 16/14 */
  line-height: 1.25;
  font-family: var(--font-trajan);
  text-transform: uppercase;
}
@media screen and (min-width:768.1px) {
  .navList {
    -webkit-flex-direction: column;
       -moz-flex-direction: column;
        -ms-flex-direction: column;
         -o-flex-direction: column;
            flex-direction: column;
    justify-content: flex-start;
    -ms-align-items: flex-start;
        align-items: flex-start;
  }
}
@media screen and (max-width:768px) {
  .navList {
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
         -o-flex-wrap: wrap;
            flex-wrap: wrap;
    justify-content: center;
    -ms-align-items: center;
        align-items: center;
    margin-inline: auto;
  }
}


/*  navList__item
------------------------ */
@media screen and (max-width:768px) {
  .navList__item {
    width: calc( ( 100% - .8571428571428571rem ) / 2 ); /* 12/14 */
  }
}

.navList__item > a {
  color: var(--color-bk);
  text-decoration: none;
}

@media screen and (min-width:768.1px) {
  body:has( #indexSlide ) .navList__item {
    -webkit-animation-duration: .5s;
         -o-animation-duration: .5s;
            animation-duration: .5s;
  }
  body:has( #indexSlide ) .navList__item:not( :has( [style] ) ) {
    visibility: hidden;
  }
}

body:not( :has( #indexSlide ) ) .navList__item {
  visibility: visible !important;
  opacity: 1;
  -webkit-animation: none;
       -o-animation: none;
          animation: none;
}



/* -----------------------------------
  drawerBtn
----------------------------------- */
.drawerBtn {
  position: fixed;
  top: 1.428571428571429rem; /* 20/14 */
  left: 1.428571428571429rem;
  z-index: 999;
  width: 2.571428571428571rem; /* 36/14 */
  aspect-ratio: 36 / 18;
  cursor: pointer;
}
@media screen and (min-width:768.1px) {
  .drawerBtn {
    display: none;
  }
}


/*  drawerBtn__line
------------------------ */
.drawerBtn__line {
  position: absolute;
  right: 0;
  left: 0;
  height: 0;
  border-top: 1px solid;
  margin-block: auto;
}


/*  --top  */
.drawerBtn .--top {
  top: 0;
}

/*  --middle  */
.drawerBtn .--middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}


/*  --bottom  */
.drawerBtn .--bottom {
  bottom: 0;
}



/* -----------------------------------
  --close
----------------------------------- */
/*  drawerBtn__line
------------------------ */
.drawerBtn.--close .drawerBtn__line {
  border-top-color: var(--color-bk);
}



/* -----------------------------------
  --open
----------------------------------- */
/*  drawerBtn__line
------------------------ */
.drawerBtn.--open .drawerBtn__line {
  border-top-color: var(--color-bg);
}


/*  --top  */
.drawerBtn.--open .--top {
  bottom: 0;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
       -o-transform: rotate(25deg);
          transform: rotate(25deg);
}


/*  --middle  */
.drawerBtn.--open .--middle {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
}


/*  --bottom  */
.drawerBtn.--open .--bottom {
  top: 0;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
       -o-transform: rotate(-25deg);
          transform: rotate(-25deg);
}



/* -----------------------------------
  header
----------------------------------- */
#header {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  -ms-align-items: stretch;
      align-items: stretch;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}
@media screen and (min-width:768.1px) {
  #header {
    -webkit-flex-direction: column;
       -moz-flex-direction: column;
        -ms-flex-direction: column;
         -o-flex-direction: column;
            flex-direction: column;
    justify-content: flex-start;
    row-gap: 3rem; /* 42/14 */
    min-width: 298px;
    padding: 3.571428571428571rem 4.285714285714286rem; /* 50/14 60/14 */
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    /*background-color: rgba(255, 255, 255, .5);*/
  }
}
@media screen and (max-width:768px) {
  #header {
    -webkit-flex-direction: column-reverse;
       -moz-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
         -o-flex-direction: column-reverse;
            flex-direction: column-reverse;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    padding-block: 37px 20px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    background-color: var(--color-bk);
    -webkit-transition: all .25s;
         -o-transition: all .25s;
            transition: all .25s;
  }
}

@media screen and (max-width:768px) {
  #header.isOpen {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
  }
}


/*  header__logo
------------------------*/
@media screen and (min-width:768.1px) {
  #header__logo .logo {
    width: 12.71428571428571rem; /* 178/14 */
  }
}
@media screen and (max-width:768px) {
  #header__logo .logo {
    width: min( 563px, 80.8% ); /* 303/3.75 */
    margin-inline: auto;
  }
}

@media screen and (max-width:768px) {
  #header__logo .logo :is( a, span ) {
    background-image: url("../images/logo_bg.svg");
  }
}

@media screen and (max-width:768px) {
  #header__logo .logo a {
    pointer-events: none;
  }
}


/*  header__nav
------------------------*/
@media screen and (max-width:768px) {
  #header__nav {
    margin-block: auto;
  }
}
@media screen and (max-width:768px) {
  #header__nav .navList {
    width: max( 72.5333333%, 272px ); /* 272/3.75 */
  }
}
@media screen and (max-width:768px) {
  #header__nav .navList__item > a {
    color: var(--color-bg);
  }
}

@media screen and (max-width:768px) {
  #header__nav .snsList__item > a {
    color: var(--color-bg);
  }
}

@media screen and (max-width:768px) {
  #header__nav .snsList__item.--x img {
    filter: invert(100%) sepia(69%) saturate(1758%) hue-rotate(178deg) brightness(103%) contrast(102%);
  }
}



/* -----------------------------------
  contents
----------------------------------- */
@media screen and (min-width:768.1px) {
  #wrapper {
    display: -webkit-flex;
    display:    -moz-flex;
    display:     -ms-flex;
    display:      -o-flex;
    display:         flex;
    -webkit-flex-direction: column;
       -moz-flex-direction: column;
        -ms-flex-direction: column;
         -o-flex-direction: column;
            flex-direction: column;
    justify-content: flex-start;
    -ms-align-items: stretch;
        align-items: stretch;
    min-height: 100lvh;
  }
}


/*  wrapper__main
------------------------ */
@media screen and (min-width:768.1px) {
  .wrapper__main {
    -webkit-flex: 1;
       -moz-flex: 1;
        -ms-flex: 1;
         -o-flex: 1;
            flex: 1;
  }
}


/*  wrapper__footer
------------------------ */
@media screen and (min-width:768.1px) {
  .wrapper__footer {
    -webkit-flex: none;
       -moz-flex: none;
        -ms-flex: none;
         -o-flex: none;
            flex: none;
    margin-top: auto;
  }
}



/* -----------------------------------
  main
----------------------------------- */
#main {
  overflow: hidden;
}



/* -----------------------------------
  sectionWrapper
----------------------------------- */
#sectionWrapper {
  padding-bottom: 5.714285714285714rem; /* 80/14 */
}
@media screen and (min-width:1320.1px) {
  #sectionWrapper {
    margin-left: calc( ( 12.71428571428571rem + ( 4.285714285714286rem * 2 ) ) * -1 );  /* 178/14 60/14 */
    padding-inline: calc( 12.71428571428571rem + ( 4.285714285714286rem * 2 ) + 1.5rem ) 1.5rem;
  }
}
@media screen and (max-width:1320px) {
  #sectionWrapper {
    padding-inline: calc( 12.71428571428571rem + ( 4.285714285714286rem * 2 ) ) 1.5rem;
  }
}
@media screen and (min-width:768.1px) {
  #sectionWrapper {
    padding-top: 12.28571428571429rem ; /* 172/14 */
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width:768px) {
  #sectionWrapper {
    padding-top: 5.5rem; /* 77/14 */
    padding-inline: 1.5rem; /* 21/14 */
  }
}


/*  mainWrapper__inner
------------------------ */
@media screen and (min-width:1320.1px) {
  #sectionWrapper__inner {
    /*max-width: 768px;
    max-width: 780px;*/
    max-width: 860px;
    margin-inline: auto;
  }
}
@media screen and (min-width:1400.1px) {
  #sectionWrapper__inner {
    right: calc( 4.714285714285714vw * -1 ); /* 66/14.0 */
  }
}
@media screen and (min-width:1320.1px) and (max-width:1400px) {
  #sectionWrapper__inner {
    right: calc( ( 0px + ( 66 - 0 ) * ( 100vw - 768.1px ) / ( 1400 - 768.1 ) * -1 ) );
  }
}
@media screen and (min-width:768.1px) {
  #sectionWrapper__inner {
    position: relative;
  }
}



/* -----------------------------------
  section
----------------------------------- */
.section :is( .section ) {
  margin-top: 2.571428571428571rem; /* 36/14 */
}

.section + .section {
  margin-top: 5rem; /* 70/14 */
}



/* -----------------------------------
  footer
----------------------------------- */
@media screen and (max-width:768px) {
  #footer {
    position: relative;
    padding-block: 19.53125vw 1.428571428571429rem; /* 150/7.68 20/14 */
    overflow: hidden;
    background-color: var(--color-gy);
  }
}


#footer:before {
  display: block;
}
@media screen and (min-width:768.1px) {
  #footer:before {
    width: 100%;
    aspect-ratio: 280 / 107;
    background-image: url("../images/footer/cover.jpg");
    background-position: center center;
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width:768px) {
  #footer:before {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate( -50%, 0 );
        -ms-transform: translate( -50%, 0 );
         -o-transform: translate( -50%, 0 );
            transform: translate( -50%, 0 );
    width: 700vw;
    margin-bottom: -9.765625vw; /* 75/7.68 */
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--color-bg);
    -webkit-animation: rumble 20s linear infinite;
         -o-animation: rumble 20s linear infinite;
            animation: rumble 20s linear infinite;
    content: " ";
  }
}

@keyframes rumble {
  0%     { transform: translate(       -50%, 0vw ); }
  16.66% { transform: translate( calc( -50% + 10vw ), -.6510416666666667vw ); } /* 5/7.68 */
  33.32% { transform: translate( calc( -50% + 10vw ),  .6510416666666667vw ); }
  49.98% { transform: translate(       -50%, 0vw ); }
  66.64% { transform: translate( calc( -50% - 10vw ), -.6510416666666667vw ); }
  83.30% { transform: translate( calc( -50% - 10vw ),  .6510416666666667vw ); }
  100%   { transform: translate(       -50%, 0vw ); }
  /*
  */
}

@media screen and (min-width:768.1px) {
  body:not( :has( #indexSlide, #contact, .message ) )  #footer:before {
    content: " ";
  }
}


/*  footer__logoNav
------------------------*/
@media screen and (min-width:768.1px) {
  #footer__logoNav {
    display: none;
  }
}

#footer__logoNav .logo {
  width: min( 522px, 80.8% ); /* 303/3.75 */
  margin-inline: auto;
}

#footer__logoNav .navList {
  width: max( 252px, 67.2% ); /* 252/3.75 */
  margin-top: 1.571428571428571rem; /* 22/14 */
}


/*  footer__copyright
------------------------*/
@media screen and (min-width:768.1px) {
  #footer__copyright {
    padding: 1.285714285714286rem .8571428571428571rem; /* 18/14 12/14 */
  }
}
@media screen and (max-width:768px) {
  #footer__copyright {
    margin-top: 2.285714285714286rem; /* 32/14 */
  }
}



/* -----------------------------------
  copyright
----------------------------------- */
.copyright {
  inline-size: fit-content;
  margin-inline: auto;
  font-size: 10px;
  font-family: var(--font-trajan);
  text-transform: uppercase;
}

.copyright small {
  font-size: inherit;
}


.grecaptcha-badge { display: none; }