@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans+JP:wght@100..900&display=swap");
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リセット
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.6;
  letter-spacing: 0.6px;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  vertical-align: top;
  border: 0;
  width: auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style-type: none;
  padding-inline-start: 0;
  list-style-position: inside;
}

#root,
#__next {
  isolation: isolate;
}

/* Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
-------------------------------------------------------------------*/
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  メイン
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
html {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  font-style: normal;
}
html p {
  line-height: 2;
}

body {
  opacity: 0;
}

body.page-loaded {
  transition: opacity 2s ease;
  opacity: 1;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ページごと切り替え
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.default-header header {
  color: #fff;
}

.white-header header {
  color: #333333;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  リンク
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
a {
  transition: all ease 0.6s;
}

a:link {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  transition: all ease 0.6s;
}

a:active {
  color: inherit;
  text-decoration: none;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  PC、SP切り替え
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.only-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .only-pc {
    display: block;
  }
}

.only-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  カラー
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.color-main {
  color: #0756b2 !important;
}

.bg-main {
  background-color: #0756b2 !important;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #333 !important;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  フォント
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.text-xxs {
  font-size: 10px;
}

.text-xs {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
}

.text-sm {
  font-size: clamp(0.813rem, 0.767rem + 0.23vw, 0.938rem);
}

.text-md {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.text-lg {
  font-size: clamp(1.063rem, 0.994rem + 0.34vw, 1.25rem);
}

.text-xl {
  font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  アニメーション
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.fadeup {
  opacity: 0;
  transform: translateY(30px);
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ヘッダー
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  padding: 16px 16px 8px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .header {
    position: absolute;
    padding: 32px 32px 0;
    background-color: transparent;
  }
}
.header nav {
  display: flex;
  justify-content: space-between;
}

.header-logo {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 170px;
  }
}

.header-list {
  display: none;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .header-list {
    display: flex;
    gap: 40px;
  }
}

.header-contact {
  background: linear-gradient(to right, #085ab4, #018eca);
  line-height: 1;
  padding: 6px 10px;
  border-radius: 10px;
  color: #fff !important;
}
.header-contact::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_mail.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  margin-top: -3px;
  margin-right: 4px;
  vertical-align: middle;
}

.header-logo {
  width: clamp(6.25rem, 4.614rem + 8.18vw, 10.75rem);
}

.hamburger {
  overflow: hidden;
  transition: transform 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  width: 40px;
  height: 32px;
  position: relative;
  z-index: 101;
  transition: all 0.3s ease-out;
}
.hamburger-inner.is-active span {
  background-color: #fff;
}
.hamburger-inner.is-active span:nth-child(1) {
  width: 32px;
  transform: rotate(45deg) translate(3.8px, 3.8px);
}
.hamburger-inner.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(3.8px, -3.8px);
}
.hamburger-inner span {
  background-color: #0756b2;
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 1px;
  transition: all 0.6s ease;
  position: relative;
}
.hamburger-inner span.is-active span {
  background-color: #fff;
}
.hamburger-inner span:nth-child(2) {
  opacity: 0;
}

.mobile-menu {
  background-color: #333333;
  position: fixed;
  top: -100%;
  right: 0;
  width: 100vw;
  height: 100vh;
  transition: all 0.3s ease-out;
  z-index: 100;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.is-open {
  top: 0;
  opacity: 100;
}

.mobile-list {
  width: 90vw;
  margin: 20% auto;
  border-radius: 10px;
}
.mobile-list a {
  border-bottom: 1px solid #707070;
  display: block;
  margin: 0 auto;
  padding: 16px 0;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.mobile-list a::after {
  content: "";
  background-image: url(../images/icon_click2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.1s;
  width: 32px;
  height: 20px;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  フッター
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.footer {
  background-color: #0756b2;
  color: #fff;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  width: 190px;
}

.footer-item {
  font-size: 14px;
}
.footer-item::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../images/icon_click2.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.footer-copyright {
  font-size: 12px;
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  ページ汎用
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.english-font {
  font-family: "Archivo Black", sans-serif;
}

@media screen and (min-width: 768px) {
  .title-base {
    text-align: center;
  }
}
.title-base span {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  line-height: 1;
}
.title-base span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
  width: 21px;
  height: 14px;
  background-image: url(../images/icon_fcw.svg);
}
.title-base .title-text {
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
}

.btn {
  background: linear-gradient(to right, #0756b2, #018eca);
  border-radius: 50px;
  color: #fff !important;
  display: block;
  position: relative;
  max-width: 460px;
  width: 100%;
  transition: all 0.4s ease;
  margin: clamp(2rem, 1.455rem + 2.73vw, 3.5rem) auto 0;
  padding: 16px 32px;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 24px 32px;
  }
}
.btn::after {
  display: grid;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: left 0.2s ease;
  width: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  height: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
.btn:hover {
  color: #fff;
}
.btn.mail::after {
  background-image: url(../images/icon_mail.svg);
}
.btn.arrow::after {
  background-image: url(../images/icon_click2.webp);
}

.btn-inner span {
  font-size: 14px;
}/*# sourceMappingURL=common.css.map */