@charset "UTF-8";
/*共通部分
-----------------------------------------*/
/* reset */
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, sub, sup, var, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  font-style: normal;
  font-weight: 100;
  line-height: 1;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

@blockquote :before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 0 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* reset end */
html {
  font-size: 100%;
}

img {
  display: block;
}

hr {
  border: none;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

button {
  color: #000;
}

body {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: lighter;
}
body.active {
  overflow: hidden;
}

@media (max-width: 800px) {
  .sp-off {
    display: none !important;
  }
}
@media (min-width: 801px) {
  .pc-off {
    display: none !important;
  }
}
#wrapper {
  width: 100%;
  overflow: hidden;
}

header {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: initial;
  left: 0px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(90%, 1200px);
  z-index: 9999;
}
@media (max-width: 800px) {
  header {
    padding: 20px 0px;
  }
}
header .header__logo {
  width: 218px;
  display: block;
}
@media (max-width: 800px) {
  header .header__logo {
    width: 150px;
  }
}
header .header__logo img {
  display: block;
  width: 100%;
}
header .header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3em;
  padding: 41px 0px;
}
header .header__nav a {
  color: #fff;
  text-decoration: underline;
  font-size: clamp(14px, 11.2542372881px + 0.006779661 * 100vw, 16px);
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
header .header__nav a:hover {
  color: #002B5D;
  transition: all 0.3s;
}
header .hum {
  width: 30px;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
header .hum hr {
  display: block;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
  background-color: #fff;
}
header .hum hr:nth-child(2) {
  margin-top: 7px;
  margin-bottom: 7px;
}
header .hum.active hr {
  transition: all 0.3s;
}
header .hum.active hr:nth-child(1) {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  transform: rotate(45deg);
  transform-origin: center;
}
header .hum.active hr:nth-child(2) {
  opacity: 0;
}
header .hum.active hr:nth-child(3) {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  transform: rotate(-45deg);
  transform-origin: center;
}

.hum__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #002B5D;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s;
}
.hum__nav.active {
  transform: translateX(0%);
  opacity: 1;
  transition: all 0.3s;
}
.hum__nav nav {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.hum__nav nav a {
  font-size: clamp(14px, 11.2542372881px + 0.006779661 * 100vw, 16px);
  margin-bottom: 20px;
  color: #fff;
  display: block;
  text-align: center;
}
.hum__nav nav a:last-child {
  margin-bottom: 0px;
}

#kv {
  position: relative;
  padding-bottom: 75px;
}
#kv .kv__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  z-index: -1;
}
#kv .kv__inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding-top: 220px;
}
@media (max-width: 800px) {
  #kv .kv__inner {
    padding-top: 100px;
  }
}
#kv .kv__inner h1 {
  font-size: clamp(16px, -11.4576271186px + 0.0677966102 * 100vw, 36px);
  color: #fff;
  line-height: 1.9;
  letter-spacing: 0.15em;
}
#kv .kv__inner h2 {
  text-align: right;
  font-size: clamp(14px, 5.7627118644px + 0.0203389831 * 100vw, 20px);
  color: #fff;
  line-height: 1.9;
  margin-top: 148px;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  #kv .kv__inner h2 {
    margin-top: 30px;
  }
}
#kv .kv__inner a {
  display: block;
  margin: 0 auto;
  margin-top: 148px;
  position: relative;
  border: solid 1px #fff;
  border-radius: 100%;
  font-size: clamp(10px, 7.2542372881px + 0.006779661 * 100vw, 12px);
  aspect-ratio: 1/1;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 2em;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  #kv .kv__inner a {
    margin-top: 40px;
  }
}
#kv .kv__inner a img {
  display: block;
  position: absolute;
  top: initial;
  right: 0px;
  bottom: -20%;
  left: 3%;
  margin: auto;
  transition: all 0.3s;
}
#kv .kv__inner a:hover {
  background-color: #002B5D;
  transition: all 0.3s;
}
#kv .kv__inner a:hover img {
  transform: translateY(10px);
  transition: all 0.3s;
}

.section__title h1 {
  text-align: center;
  font-size: clamp(20px, 6.2711864407px + 0.0338983051 * 100vw, 30px);
  letter-spacing: 0.2em;
}
.section__title h1 span {
  font-size: clamp(12px, 9.2542372881px + 0.006779661 * 100vw, 14px);
  color: #002B5D;
  display: block;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
}

#s01 {
  margin-top: 48px;
}
#s01 .s01__title {
  text-align: center;
  font-size: clamp(18px, -6.7118644068px + 0.0610169492 * 100vw, 36px);
  margin-top: 1em;
  margin-bottom: 2.5em;
}
#s01 .s01__border {
  width: 100%;
  border-top: solid 1px #707070;
  border-bottom: solid 1px #707070;
}
#s01 .s01__inner {
  width: min(90%, 1200px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 800px) {
  #s01 .s01__inner {
    display: block;
  }
}
#s01 .s01__inner article {
  width: 32%;
}
@media (max-width: 800px) {
  #s01 .s01__inner article {
    width: 100%;
    margin-bottom: 60px;
  }
}
#s01 .s01__inner article b, #s01 .s01__inner article h3, #s01 .s01__inner article h4, #s01 .s01__inner article p {
  text-align: center;
  display: block;
  margin: 0 auto;
  letter-spacing: 0.1em;
}
#s01 .s01__inner article b {
  color: #002B5D;
  font-size: clamp(38px, 24.2711864407px + 0.0338983051 * 100vw, 48px);
  margin-top: -0.5em;
}
#s01 .s01__inner article h3 {
  font-size: clamp(20px, 6.2711864407px + 0.0338983051 * 100vw, 30px);
  margin-top: 1.2em;
  color: #002B5D;
}
#s01 .s01__inner article h4 {
  font-size: clamp(14px, 5.7627118644px + 0.0203389831 * 100vw, 20px);
  margin-top: 1em;
  margin-bottom: 1.6em;
}
#s01 .s01__inner article img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 800px) {
  #s01 .s01__inner article img {
    width: 220px;
  }
}
#s01 .s01__inner article p {
  font-size: clamp(12px, 6.5084745763px + 0.013559322 * 100vw, 16px);
  margin-top: 2em;
  line-height: 1.8;
  margin-bottom: 3em;
}

#s02 {
  margin-top: 82px;
}
#s02 .s02__main {
  width: 100%;
  height: auto;
  padding: 60px;
  box-sizing: border-box;
  position: relative;
  margin-top: 46px;
}
@media (max-width: 800px) {
  #s02 .s02__main {
    padding: 5%;
  }
}
#s02 .s02__main img {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#s02 .s02__main .s02__inner {
  background-color: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 130px 20px;
  box-sizing: border-box;
}
@media (max-width: 800px) {
  #s02 .s02__main .s02__inner {
    padding: 10% 5%;
  }
}
#s02 .s02__main .s02__inner h2, #s02 .s02__main .s02__inner p {
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
#s02 .s02__main .s02__inner h2 {
  font-size: clamp(18px, -6.7118644068px + 0.0610169492 * 100vw, 36px);
  margin-bottom: 1em;
}
#s02 .s02__main .s02__inner p {
  font-size: clamp(14px, -2.4745762712px + 0.0406779661 * 100vw, 26px);
  line-height: 2;
}

#s03 {
  margin-top: 70px;
}
#s03 ul {
  width: min(908px, 90%);
  margin: 0 auto;
  margin-top: 69px;
}
@media (max-width: 800px) {
  #s03 ul {
    margin-top: 49px;
  }
}
#s03 ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;
}
#s03 ul li h2 {
  display: block;
  width: 23%;
  font-size: clamp(14px, 8.5084745763px + 0.013559322 * 100vw, 18px);
  box-sizing: border-box;
  border-top: solid 1px #002B5D;
  padding: 39px 0px 39px 2em;
}
@media (max-width: 800px) {
  #s03 ul li h2 {
    padding: 19px 0px 19px 1em;
  }
}
#s03 ul li div {
  width: 77%;
  box-sizing: border-box;
  border-top: solid 1px #BEBEBE;
  padding: 39px 0px;
}
@media (max-width: 800px) {
  #s03 ul li div {
    padding: 19px 0px;
  }
}
#s03 ul li div p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: clamp(12px, 3.7627118644px + 0.0203389831 * 100vw, 18px);
  box-sizing: border-box;
  padding-left: 2.3em;
}
@media (max-width: 800px) {
  #s03 ul li div p {
    padding-left: 1em;
  }
}
#s03 ul li div p span {
  display: block;
  width: 7em;
}
#s03 ul li div p a {
  color: #002B5D;
  text-decoration: underline;
}
#s03 ul li:last-child h2 {
  border-bottom: solid 1px #002B5D;
}
#s03 ul li:last-child div {
  border-bottom: solid 1px #BEBEBE;
}
#s03 ul li:last-child div p {
  margin-bottom: 2em;
}
@media (max-width: 800px) {
  #s03 ul li:last-child div p {
    margin-bottom: 1em;
  }
}
#s03 ul li:last-child div p:last-child {
  margin-bottom: 0px;
}

#s04 {
  width: 100%;
  height: 616px;
  margin-top: 93px;
}
@media (max-width: 800px) {
  #s04 {
    margin-top: 63px;
    height: 316px;
  }
}

footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 94px;
  margin-top: 75px;
  margin-bottom: 45px;
}
@media (max-width: 800px) {
  footer nav {
    margin-top: 35px;
    margin-bottom: 35px;
    display: block;
  }
}
footer nav a {
  display: block;
  font-size: clamp(12px, 9.2542372881px + 0.006779661 * 100vw, 14px);
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  footer nav a {
    text-align: center;
    margin-bottom: 1em;
  }
}
footer nav a:hover {
  color: #002B5D;
  transition: all 0.3s;
}
footer small {
  text-align: center;
  display: block;
  font-size: clamp(10px, 7.2542372881px + 0.006779661 * 100vw, 12px);
  margin-bottom: 77px;
  letter-spacing: 0.1em;
}
@media (max-width: 800px) {
  footer small {
    margin-bottom: 17px;
  }
}/*# sourceMappingURL=style.css.map */