@charset "UTF-8";
/*reset */
* {
  box-sizing: border-box;
}

:after,
:before {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

address,
blockquote,
dl,
figure,
form,
iframe,
ol,
p,
pre,
table,
ul {
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled],
button[disabled] {
  cursor: default;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset,
option {
  padding: 0;
}

fieldset {
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

[hidden],
template {
  display: none;
}

* {
  transition: all 0.3s cubic-bezier(0, 0, 0, 0.99);
}

body {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 200%;
  font-feature-settings: "palt";
  background: #f7f7f7 url(/assets/images/bg.jpg) no-repeat center top/cover;
}

a {
  color: #0041c3;
}

a:hover {
  color: #0041c3;
}

.en {
  font-family: "Red Hat Display", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

/* =================================================================

    共通

================================================================= */
.cf:after {
  content: "";
  clear: both;
  display: block;
}

.fadein {
  transition: 1s;
  opacity: 0;
  transform: translatey(50px);
}

.fadein.animated {
  opacity: 1;
  transform: translatey(0px);
}

.inner {
  width: 1160px;
  margin: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1001;
}
.header .logo {
  width: 266px;
}
.header .nav {
  display: flex;
  gap: 48px;
  align-items: center;
}
.header .nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.header .nav a:hover {
  color: #82ba1c;
}
.header .nav .btn {
  padding: 8px 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.header .hamburger {
  display: none;
  width: 34px;
  height: 16px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.header .hamburger span {
  display: block;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}
.header .hamburger.active span {
  background-color: #fff;
}
.header .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1002;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-overlay a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin: 15px 0;
  transition: opacity 0.2s;
}
.menu-overlay a:active {
  opacity: 0.6;
}
.menu-overlay .c-btn {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .header {
    display: flex;
    padding: 24px;
  }
  .header .logo {
    width: 50%;
  }
  .header .nav {
    display: none;
  }
  .header .hamburger {
    display: flex;
  }
}
.c-btn {
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  height: 64px;
  letter-spacing: 0.01em;
  line-height: 1.3;
  position: relative;
  text-align: center;
  min-width: 174px;
}
.c-btn--sizeAuto {
  min-width: 174px;
  width: auto;
}
.c-btn.is-current .c-btn__inner {
  background-color: #00202f;
  color: #fff;
}
.c-btn .c-btn__inner {
  align-items: center;
  padding-left: 48px;
  padding-right: 48px;
  background-color: #fff;
  width: 240px;
  border: 1px solid #ececec;
  border-radius: 100px;
  color: #000000;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  overflow: hidden;
  position: relative;
  transition: color 0.2s 0.2s;
  width: 100%;
  z-index: 1;
}
.c-btn .c-btn__inner--sizeAuto {
  padding: 0 42px;
}
.c-btn .c-btn__circle {
  position: absolute;
  top: 30px;
  left: 24px;
  display: inline-block;
  height: 5px;
  width: 5px;
}
.c-btn .c-btn__circle > span {
  display: inline-block;
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #82ba1c;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.35s cubic-bezier(0.87, 0.24, 0.36, 1), height 0.35s cubic-bezier(0.87, 0.24, 0.36, 1);
  z-index: 1;
}
.c-btn .c-btn__txt {
  margin-bottom: -1px;
  max-height: 100%;
  position: relative;
  z-index: 2;
}

/*@media (-ms-high-contrast: none),
(hover: hover) {
  .c-artCard__inner:hover {
    .c-artCard__thm img {
      transform: scale(1.05);
    }
  }

  .c-btn:hover {
    .c-btn__inner {
      color: #fff;
    }

    .c-btn__circle>span {
      height: 500px;
      width: 500px;
    }
  }
}*/
.header .nav,
footer .nav {
  /*@media (-ms-high-contrast: none),
  (hover: hover) {
    .c-artCard__inner:hover {
      .c-artCard__thm img {
        transform: scale(1.05);
      }
    }

    .c-btn:hover {
      .c-btn__inner {
        color: #fff;
      }

      .c-btn__circle>span {
        height: 500px;
        width: 500px;
      }
    }
  }*/
}
.header .nav .c-btn,
footer .nav .c-btn {
  border-radius: 100px;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  letter-spacing: 0.01em;
  position: relative;
  text-align: center;
  min-width: 174px;
}
.header .nav .c-btn--sizeAuto,
footer .nav .c-btn--sizeAuto {
  min-width: 174px;
  width: auto;
}
.header .nav .c-btn.is-current .c-btn__inner,
footer .nav .c-btn.is-current .c-btn__inner {
  background-color: #00202f;
  color: #fff;
}
.header .nav .c-btn .c-btn__inner,
footer .nav .c-btn .c-btn__inner {
  align-items: center;
  padding-left: 48px;
  padding-right: 48px;
  background-color: #fff;
  width: 240px;
  border: 1px solid #ececec;
  border-radius: 100px;
  color: #000000;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000);
  overflow: hidden;
  position: relative;
  transition: color 0.2s 0.2s;
  width: 100%;
  z-index: 1;
}
.header .nav .c-btn .c-btn__inner--sizeAuto,
footer .nav .c-btn .c-btn__inner--sizeAuto {
  padding: 0 42px;
}
.header .nav .c-btn .c-btn__circle,
footer .nav .c-btn .c-btn__circle {
  position: absolute;
  top: 21px;
  left: 24px;
  display: inline-block;
  height: 5px;
  width: 5px;
}
.header .nav .c-btn .c-btn__circle > span,
footer .nav .c-btn .c-btn__circle > span {
  display: inline-block;
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #14aec6;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.35s cubic-bezier(0.87, 0.24, 0.36, 1), height 0.35s cubic-bezier(0.87, 0.24, 0.36, 1);
  z-index: 1;
}
.header .nav .c-btn .c-btn__txt,
footer .nav .c-btn .c-btn__txt {
  margin-bottom: -1px;
  max-height: 100%;
  position: relative;
  z-index: 2;
}

span.marker {
  background: linear-gradient(transparent 50%, #d2f9e8 50%);
  padding: 0 5px;
}

/* =================================================================

    トップページ

================================================================= */
#home .hero {
  height: calc(100vh - 175px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .hero .kv {
  min-width: 720px;
  max-width: 48%;
  margin: -175px auto 0;
}
#home .hero .kv img {
  width: 100%;
  height: auto;
  display: block;
}
#home .hero .scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: sans-serif;
  font-size: 12px;
}
#home .hero .scroll-down .circle {
  width: 10px;
  height: 10px;
  margin: 8px auto 0;
  border-radius: 50%;
  background-color: #82ba1c;
  animation: upDown 1.6s ease-in-out infinite;
}
@keyframes upDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#home .ttl p.en {
  font-size: 70px;
  padding-bottom: 40px;
}
#home .ttl h2 {
  font-size: 14px;
}
#home .sec1 {
  padding-top: 230px;
}
#home .sec1 .base {
  display: flex;
}
#home .sec1 .base .ttl {
  width: 470px;
}
#home .sec1 .base .body {
  width: 690px;
}
#home .sec1 .base .body h3 {
  font-size: 48px;
  margin-bottom: 48px;
}
#home .sec1 .base .body p {
  margin-bottom: 48px;
}
#home .sec1 .base .body .icon {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 30px 20px;
  margin-bottom: 70px;
}
#home .sec1 .base .body .icon .icon__item {
  width: 210px;
}
#home .sec1 .base .body .c-btn {
  width: 240px;
}
#home .sec2 {
  padding: 230px 0;
}
#home .sec2 .base {
  display: flex;
}
#home .sec2 .base .ttl {
  width: 340px;
}
#home .sec2 .base .ttl h2 {
  margin-bottom: 48px;
}
#home .sec2 .base .ttl .c-btn {
  width: 240px;
}
#home .sec2 .base .body {
  width: 820px;
}
#home .sec2 .base .body .base a {
  display: flex;
  align-items: center;
  color: #000;
  gap: 40px;
  margin-bottom: 40px;
}
#home .sec2 .base .body .base a .thum {
  width: 260px;
}
#home .sec2 .base .body .base a .info {
  width: 520px;
}
#home .sec2 .base .body .base a .info .date {
  margin-bottom: 4px;
}
#home .sec2 .temporary {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
  padding: 74px 60px;
  background-color: #fff;
}
#home .sec2 .temporary .t_ttl {
  display: flex;
  margin-bottom: 47px;
}
#home .sec2 .temporary .t_ttl h2 {
  font-size: 36px;
  width: 50%;
}
#home .sec2 .temporary .t_ttl h2 span {
  font-size: 20px;
}
#home .sec2 .temporary .t_ttl .dis {
  width: 50%;
}
#home .sec2 .temporary .t_body {
  display: flex;
  gap: 64px;
}
#home .sec2 .temporary .t_body .l {
  width: 60%;
}
#home .sec2 .temporary .t_body .r {
  width: 40%;
}
#home .sec3 {
  padding: 200px 0;
  background-color: #fff;
}
#home .sec3 .ttl_base {
  display: flex;
}
#home .sec3 .ttl_base .ttl {
  width: 50%;
}
#home .sec3 .ttl_base .ttl h2 {
  margin-bottom: 48px;
}
#home .sec3 .ttl_base .dis {
  width: 50%;
}
#home .sec3 .body_base {
  display: flex;
  gap: 100px;
}
#home .sec3 .body_base .body {
  width: 460px;
}
#home .sec3 .body_base .body h3 {
  font-size: 32px;
  line-height: 160%;
}
#home .sec3 .body_base .body p {
  padding: 32px 0 48px 0;
}
#home .sec3 .body_base .body .c-btn {
  width: 240px;
}
#home .sec3 .body_base .cont {
  width: 600px;
}

/* =================================================================

    フッター

================================================================= */
footer {
  padding: 110px 0 80px 0;
}
footer .base {
  display: flex;
}
footer .base .info {
  width: 50%;
  font-size: 14px;
}
footer .base .info .f_logo {
  width: 266px;
}
footer .base .info .t1 {
  margin: 32px 0 54px;
}
footer .base .menu {
  width: 50%;
}
footer .base .menu ul {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
  margin-top: 95px;
}
footer .base .menu ul li a {
  display: block;
  color: #000;
  font-weight: bold;
  padding-top: 20px;
  line-height: 120%;
}
footer .base .menu ul li.c-btn {
  margin-top: 4px;
}
footer .base .menu ul li.c-btn a {
  padding-top: 0px;
}
footer .copy {
  padding-top: 114px;
  font-size: 12px;
  display: flex;
}
footer .copy .left {
  width: 50%;
  text-align: left;
}
footer .copy .right {
  width: 50%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    background: #f7f7f7 url(/assets/images/bg.jpg) no-repeat center top/140%;
  }
  .inner {
    width: auto;
    margin: auto;
  }
  .c-btn {
    font-size: 13px;
    width: 100%;
  }
  /* =================================================================

      トップページ

  ================================================================= */
  #home .hero {
    height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #home .hero .kv {
    min-width: 80%;
    max-width: 80%;
    width: 80%;
    margin: -160px auto 0;
  }
  #home .hero .kv img {
    width: 100%;
    height: auto;
    display: block;
  }
  #home .hero .scroll-down {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: sans-serif;
    font-size: 10px;
  }
  #home .hero .scroll-down .circle {
    width: 8px;
    height: 8px;
    margin: 8px auto 0;
    border-radius: 50%;
    background-color: #82ba1c;
    animation: upDown 1.6s ease-in-out infinite;
  }
  #home .ttl p.en {
    font-size: 40px;
    padding-bottom: 24px;
  }
  #home .ttl h2 {
    font-size: 14px;
    margin-bottom: 40px;
  }
  #home .sec1 {
    padding-top: 115px;
    padding: 0 24px;
  }
  #home .sec1 .base {
    display: block;
  }
  #home .sec1 .base .ttl {
    width: calc(100% - 0px);
  }
  #home .sec1 .base .body {
    width: auto;
  }
  #home .sec1 .base .body h3 {
    font-size: 24px;
    margin-bottom: 32px;
  }
  #home .sec1 .base .body p {
    margin-bottom: 32px;
  }
  #home .sec1 .base .body .icon {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  #home .sec1 .base .body .icon .icon__item {
    width: calc(50% - 8px);
  }
  #home .sec1 .base .body .c-btn {
    width: 100%;
  }
  #home .sec2 {
    padding: 100px 24px;
  }
  #home .sec2 .base {
    display: block;
  }
  #home .sec2 .base .ttl {
    width: calc(100% - 0px);
  }
  #home .sec2 .base .ttl h2 {
    margin-bottom: 48px;
  }
  #home .sec2 .base .body {
    width: 100%;
  }
  #home .sec2 .base .body .base a {
    display: block;
    align-items: center;
    color: #000;
    gap: 40px;
    margin-bottom: 40px;
  }
  #home .sec2 .base .body .base a .thum {
    width: 100%;
    margin-bottom: 16px;
  }
  #home .sec2 .base .body .base a .info {
    width: 100%;
  }
  #home .sec2 .base .body .base a .info .date {
    margin-bottom: 4px;
  }
  #home .sec2 .temporary {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.16);
    padding: 24px;
    background-color: #fff;
  }
  #home .sec2 .temporary .t_ttl {
    display: block;
    margin-bottom: 24px;
  }
  #home .sec2 .temporary .t_ttl h2 {
    font-size: 24px;
    width: 100%;
    margin-bottom: 16px;
    line-height: 160%;
  }
  #home .sec2 .temporary .t_ttl .dis {
    width: 100%;
  }
  #home .sec2 .temporary .t_body {
    display: block;
    gap: 64px;
  }
  #home .sec2 .temporary .t_body .l {
    width: 100%;
    margin-bottom: 16px;
  }
  #home .sec2 .temporary .t_body .r {
    width: 100%;
  }
  #home .sec3 {
    padding: 100px 24px;
    background-color: #fff;
  }
  #home .sec3 .ttl_base {
    display: block;
  }
  #home .sec3 .ttl_base .ttl {
    width: 100%;
  }
  #home .sec3 .ttl_base .ttl h2 {
    margin-bottom: 48px;
  }
  #home .sec3 .ttl_base .dis {
    display: none;
  }
  #home .sec3 .body_base {
    display: block;
  }
  #home .sec3 .body_base .body {
    width: 100%;
  }
  #home .sec3 .body_base .body h3 {
    font-size: 24px;
    line-height: 160%;
  }
  #home .sec3 .body_base .body p {
    padding: 32px 0 24px 0;
  }
  #home .sec3 .body_base .body .c-btn {
    width: 100%;
  }
  #home .sec3 .body_base .cont {
    width: 100%;
    margin-top: 64px;
  }
  /* =================================================================

      フッター

  ================================================================= */
  footer {
    padding: 64px 24px 24px;
  }
  footer .base {
    display: block;
  }
  footer .base .info {
    width: 100%;
    font-size: 13px;
  }
  footer .base .info .f_logo {
    width: 50%;
  }
  footer .base .info .t1 {
    margin: 24px 0 16px;
  }
  footer .base .menu {
    display: none;
  }
  footer .base .menu ul {
    display: flex;
    justify-content: flex-end;
    gap: 48px;
    margin-top: 95px;
  }
  footer .base .menu ul li a {
    display: block;
    color: #000;
    font-weight: bold;
    padding-top: 20px;
    line-height: 120%;
  }
  footer .copy {
    padding-top: 32px;
    font-size: 9px;
    display: block;
  }
  footer .copy .left {
    width: 100%;
    text-align: left;
    line-height: 130%;
  }
  footer .copy .right {
    width: 100%;
    text-align: left;
  }
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942D2F;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* =================================================================

    その他

================================================================= */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
br.is-sp-only {
  display: none;
}/*# sourceMappingURL=style.css.map */