@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Antique+Soft&family=Zen+Old+Mincho&display=swap");
/*======================================================================================
  common
======================================================================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  background-image: -webkit-gradient(linear, left top, right top, from(#f5fff5), to(#fdfffd));
  background-image: linear-gradient(90deg, #f5fff5, #fdfffd);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #222222;
}

p {
  margin: 0;
}

a {
  color: #222222;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
}
a:hover {
  color: #222222;
}

dl, dd {
  margin: 0;
}

ul, li {
  margin: 0;
  padding: 0;
}

h6, h5, h4, h3, h2, h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-bottom: 80px;
  font-size: clamp(24px, 2vw, 30px);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  h3 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 425px) {
  h3 {
    margin-bottom: 20px;
  }
}

sup, sub {
  font-size: .5em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

hr {
  margin: 0;
  padding: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #CCCCCC;
}

.inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
  }
}

.tb-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .tb-view {
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .tb-hide {
    display: none;
  }
}

.sp-view {
  display: none;
}
@media screen and (max-width: 425px) {
  .sp-view {
    display: inline-block;
  }
}

@media screen and (max-width: 425px) {
  .sp-hide {
    display: none;
  }
}

.sentence {
  text-align: justify;
  word-wrap: break-word;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.mt40 {
  margin-top: 40px;
}

.mt80 {
  margin-top: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

/*======================================================================================
  button
======================================================================================*/
.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  padding: 0 30px;
  width: auto;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: transparent;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}
.button:disabled {
  background: #CCCCCC;
  cursor: none;
}
.button:disabled:hover {
  border-color: #CCCCCC;
  background: #CCCCCC;
  color: #FFFFFF;
}

.button-fill {
  background-color: #120055;
  color: #FFFFFF;
}
.button-fill:hover {
  border-color: #120055;
  background-color: #FFFFFF;
  color: #120055;
}

.button-fill-arrow {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.button-fill-arrow i {
  margin-left: auto;
  margin-top: 4px;
  font-size: 24px;
}

.button-fill-secondary {
  border-color: #CCCCCC;
  background-color: #CCCCCC;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 400;
  color: #222222;
}
.button-fill-secondary:hover {
  background-color: #FFFFFF;
}

.button-size1 {
  width: 260px;
  height: 54px;
}

.button-size2 {
  width: 540px;
  height: 84px;
  white-space: normal;
}

.button-size3 {
  width: 200px;
  height: 42px;
}

/*======================================================================================
  form
======================================================================================*/
.form-item + .form-item {
  margin-top: 40px;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form-label .attention {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #BC1212;
}

.form-label + .form-flex {
  margin-top: 4px;
}

/* input
-----------------------------------------------------------------*/
input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="email"] {
  display: block;
  padding: 10px 12px;
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  background-color: #FFFFFF;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #222222;
}
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
  color: #CCCCCC;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  color: #CCCCCC;
}
input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder {
  color: #CCCCCC;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder {
  color: #CCCCCC;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
  outline: none;
}

.form-label + input {
  margin-top: 4px;
}

/* radio
-----------------------------------------------------------------*/
input[type="radio"] {
  display: none;
}

.radio {
  position: relative;
  margin-right: 40px;
  padding-left: 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.radio::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
}

input[type="radio"]:checked + .radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #120055;
  border-radius: 50%;
}

/* checkbox
-----------------------------------------------------------------*/
input[type="checkbox"] {
  display: none;
}

.checkbox {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.checkbox::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
}

input[type="checkbox"]:checked + .checkbox::before {
  background-color: #FFFFFF;
}

input[type="checkbox"]:checked + .checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  height: 13px;
  width: 7px;
  border-bottom: 2px solid #120055;
  border-right: 2px solid #120055;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

/* textarea
-----------------------------------------------------------------*/
textarea {
  display: block;
  padding: 10px 12px;
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  background-color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.02em;
  resize: vertical;
}
textarea:focus {
  outline: none;
}

.form-label + textarea {
  margin-top: 4px;
}

/*======================================================================================
  inview
======================================================================================*/
.inview, .js-inview-immediately {
  opacity: 0;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
  -webkit-transition: 1s;
  transition: 1s;
}
.inview.is-show, .js-inview-immediately.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}

/*======================================================================================
  page-wrap
======================================================================================*/
.page-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

section:last-of-type {
  margin-bottom: 200px;
}

/*======================================================================================
  header
======================================================================================*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #FFFFFF;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  header {
    height: 64px;
  }
}
header h1 {
  display: none;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 0 0 10px;
  }
}

.header-logo {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .header-logo {
    margin-left: 0;
  }
}
.header-logo img {
  width: 220px;
}
@media screen and (max-width: 1024px) {
  .header-logo img {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 140px;
  }
}

.header-navi {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header-navi {
    display: none;
  }
}
.header-navi nav a {
  margin-left: 40px;
  font-size: 18px;
  font-weight: 500;
}
.header-navi nav a:hover {
  color: #999999;
}
@media screen and (max-width: 1024px) {
  .header-navi nav a {
    margin-left: 30px;
    font-size: 16px;
  }
}

/* sp-header-navi
-----------------------------------------------------------------*/
.toggle-button {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  width: 40px;
  height: 60px;
  text-align: center;
  color: #222222;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .toggle-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.toggle-button i {
  font-size: 30px;
}

.sp-header-navi-wrap {
  position: absolute;
  top: 64px;
  right: -100vw;
  width: 100vw;
  height: calc(100vh - 64px);
  background-color: #F9F9F9;
  color: #FFFFFF;
  opacity: 0;
  z-index: 9998;
  -webkit-transition: .3s;
  transition: .3s;
}
.sp-header-navi-wrap.is-active {
  right: 0;
  opacity: 1;
}

.sp-header-navi a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  text-align: center;
}

/*======================================================================================
  footer
======================================================================================*/
footer {
  position: relative;
  padding: 60px 0 20px;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  footer {
    padding-right: 20px;
  }
}
@media screen and (max-width: 425px) {
  footer {
    padding-right: 0;
  }
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px 0;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-info {
  margin-left: 60px;
}
@media screen and (max-width: 1024px) {
  .footer-info {
    margin-left: 10px;
  }
}
@media screen and (max-width: 425px) {
  .footer-info {
    margin-left: 0;
  }
}
.footer-info .footer-logo img {
  width: 200px;
}
.footer-info .footer-address {
  margin: 10px 0 0 10px;
  font-size: 14px;
}
.footer-info .footer-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0 0 10px;
  text-align: center;
}
.footer-info .footer-badge img {
  margin: 0 auto;
  width: 60px;
}
.footer-info .footer-badge p {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1;
}

.footer-navi-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .footer-navi-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 20px;
  }
}
@media screen and (max-width: 425px) {
  .footer-navi-wrap {
    margin-left: 10px;
  }
}
.footer-navi-wrap .footer-navi nav a {
  display: block;
  font-size: clamp(14px, 2vw, 16px);
}
.footer-navi-wrap .footer-navi nav a + a {
  margin-top: 20px;
}
.footer-navi-wrap .footer-navi nav a:hover {
  color: #999999;
}
.footer-navi-wrap .footer-navi nav a.external-links {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 500;
}
.footer-navi-wrap .footer-navi nav a.external-links i {
  margin-left: 4px;
  font-size: 20px;
  vertical-align: -2px;
}

.footer-copy {
  margin-top: 60px;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

/* page-top-link
-----------------------------------------------------------------*/
.page-top-link {
  position: absolute;
  top: -80px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #120055;
  background-color: #120055;
  font-size: 30px;
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}
.page-top-link:hover {
  background-color: #FFFFFF;
  color: #120055;
}

/*======================================================================================
  page-header
======================================================================================*/
.page-header {
  margin-top: 84px;
  padding: 140px 20px 0;
  height: 480px;
  border-bottom: 1px solid #CCCCCC;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-header {
    margin-top: 64px;
    padding: 140px 0 0;
  }
}
.page-header h2 {
  margin: 0;
}

.page-header-noimage {
  background-image: none;
  background-color: rgba(249, 249, 249, 0.5);
  margin-bottom: 80px;
  padding-top: 84px;
  height: 300px;
}

.page-header__title {
  font-family: "Antonio", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(34, 34, 34, 0.3);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page-header__title {
    font-size: 60px;
  }
}

.page-header-noimage .page-header__title {
  color: #E6FFE5;
  text-shadow: none;
}

.page-header__title-ja {
  margin-top: -16px;
  font-family: "Zen Antique Soft", serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .page-header__title-ja {
    margin-top: -12px;
    font-size: 26px;
  }
}

.page-header__text {
  margin-top: 80px;
  font-size: clamp(18px, 2vw, 24px);
}

/*======================================================================================
  inner-link
======================================================================================*/
.inner-link {
  margin-bottom: 80px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 425px) {
  .inner-link .inner {
    padding: 0 10px;
  }
}

.inner-link-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px 0;
  padding: 13px 0;
}

.inner-link-item {
  margin-left: -1px;
  padding: 0 30px;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  font-size: clamp(12px, 2vw, 14px);
  text-align: center;
  white-space: nowrap;
  -webkit-transition: .2s;
  transition: .2s;
}
@media screen and (max-width: 425px) {
  .inner-link-item {
    padding: 0 10px;
  }
}
.inner-link-item:first-of-type {
  margin-left: 0;
}
.inner-link-item:hover {
  color: #BC1212;
}
.inner-link-item i {
  margin-left: 10px;
  font-size: 16px;
  vertical-align: -2px;
  color: #BC1212;
}
@media screen and (max-width: 425px) {
  .inner-link-item i {
    margin-left: 4px;
    font-size: 12px;
  }
}
