@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Zen+Kaku+Gothic+New&display=swap");
/*
  ブレイクポイント
  PC:   min-width: 1024px 
  @media screen and (min-width: 64em)
  TAB:  max-width: 1023px
  @media screen and (min-width: 48em) and (max-width: 63.9375em)
  SP:   max-width: 767px
  @media screen and (max-width: 47.9375em))
*/
/* constant */
:root {
  --main-color: #1d50a2;
  --sub-color01: #3A7CFF;
  --sub-color02: #ff4b2e;
  --font-color-text: #1D1D1D;
  --bg-color: #fff;
  --bg-highlight: #F6F6F6;
  --border-color: #999999;
  --font-family: "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", " ", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", "Meiryo", sans-serif;
  --font-family-en: "Zen Kaku Gothic New", sans-serif;
  --font-family-heading: "Bebas Neue", sans-serif;
  --container-width: 1030px;
}

/* initialize */
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,
strong,
sub,
sup,
var,
b,
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: 0 0;
}

*,
*:after,
*::before {
  box-sizing: border-box;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*layout*/
html {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  height: 100%;
  overflow-y: scroll;
}

/* common */
body {
  font-family: var(--font-family);
  color: var(--font-color-text);
  background: var(--bg-color);
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

p {
  margin: 0;
}

.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 0 15px;
  max-width: var(--container-width);
  overflow: hidden;
}

section {
  position: relative;
  padding: 80px 0;
}

.bg-highlight {
  background-color: var(--bg-highlight);
}

.flex {
  display: flex;
}
.flex.reverse {
  flex-direction: row-reverse;
}

.text-vr {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
}

.icon {
  line-height: 1;
  letter-spacing: 0em;
}

.font-en {
  font-family: var(--font-family-en);
}

.text-blue {
  color: var(--sub-color01);
}

.title-sub {
  font-size: 0.9rem;
}

.btn01 a {
  background-color: var(--font-color-text);
  color: #fff;
  display: block;
  padding: 10px 20px;
  font-size: 1.25rem;
  text-align: left;
  border: 1px solid var(--main-color);
  font-family: var(--font-family-heading);
  width: 240px;
  position: relative;
}
.btn01 a:hover {
  background-color: var(--main-color);
}
.btn01 a:hover::after {
  right: 15px;
}
.btn01 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top center;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.2s;
}
.btn01.right a {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .btn01.right a {
    margin: 0 auto;
  }
}
.btn01.left a {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .btn01.left a {
    margin: 0 auto;
  }
}
.btn01.center a {
  margin: 0 auto;
}

.slidein {
  opacity: 0;
  transform: translateY(50px);
}

.slidein.animated {
  opacity: 1;
  transition: 1.5s;
  transform: translateY(0px);
}

.fadein {
  animation: fadein 2s forwards;
  opacity: 0;
  transition: all 0.4s ease-out;
}

.animation-delay1 {
  animation-delay: 1s;
}

.animation-delay2 {
  animation-delay: 2s;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  section {
    padding: 35px 0;
  }
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
  }
  .container {
    padding: 0 15px;
  }
  .flex {
    flex-direction: column;
  }
  .flex.reverse {
    flex-direction: column;
  }
}
/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 9997;
  transition: all 0.4s ease-out;
  background-color: rgba(243, 244, 239, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 90%;
}
#header .container .site-title a {
  display: block;
  height: 60px;
  width: 250px;
  background: url("../img/logo_w.svg") no-repeat center center;
  background-size: contain;
}
#header .container nav .site-gnav {
  display: flex;
  align-items: center;
}
#header .container nav .site-gnav a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 600;
  padding: 0 20px;
  color: #fff;
  letter-spacing: 0.08em;
}
#header .container nav .site-gnav a .ja {
  letter-spacing: 0.02em;
}
#header .container nav .site-gnav a .en {
  font-family: var(-font-family-en);
  font-size: 0.7rem;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  #header .container nav .site-gnav {
    display: none;
  }
}
#header.scroll .site-title a {
  background: url("../img/logo_b.svg") no-repeat center center;
}
#header.scroll nav .site-gnav a {
  color: var(--font-color-text);
}
#header.scroll nav .site-gnav a .en {
  color: var(--sub-color01);
}
@media screen and (max-width: 991px) {
  #header {
    height: 60px;
  }
  #header .container {
    max-width: 100%;
    padding: 15px 15px;
  }
  #header .container .site-title {
    width: 50%;
  }
  #header .container .site-title a {
    height: 40px;
    width: 100%;
  }
}

/* ハンバーガーメニュー */
#gnav {
  position: fixed;
  top: 60px;
  right: 0;
  height: 100%;
  min-height: calc(100vh - 60px);
  width: 100vw;
  opacity: 0;
  z-index: 9999;
  transition: all 0.4s ease-out;
  display: flex;
  pointer-events: none;
  background-color: rgba(0, 72, 136, 0.8);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  height: 100%;
  width: 100%;
}
#gnav.active {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
#gnav nav {
  width: 100%;
  padding-top: 40px;
}
#gnav nav ul.site-gnav li {
  border-bottom: 1px solid #6691B9;
}
#gnav nav ul.site-gnav li a {
  color: #fff;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  padding: 12px 8%;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  position: relative;
}
#gnav nav ul.site-gnav li a .ja {
  font-size: 16px;
}
#gnav nav ul.site-gnav li a .en {
  font-size: 10px;
  font-family: var(--font-family-en);
  line-height: 1;
  font-weight: 400;
}
#gnav nav ul.site-gnav li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top center;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.2s;
}

/* ハンバーガーボタン */
#humburger {
  display: none;
  position: fixed;
  right: 15px;
  top: 18px;
  height: 40px;
  z-index: 9999;
  transition: all 0.4s ease-out;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  #humburger {
    display: block;
  }
}
#humburger .gnav_btn-line {
  position: relative;
  width: 30px;
  height: 20px;
  margin-top: 8px;
}
#humburger .gnav_btn-line span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease-out;
}
#humburger .gnav_btn-line span:nth-of-type(1) {
  top: 0;
}
#humburger .gnav_btn-line span:nth-of-type(2) {
  top: 10px;
  width: 20px;
}
#humburger .font-en {
  position: absolute;
  bottom: 0;
  line-height: 1;
}
#humburger .font-en span {
  transition: all 0.4s ease-out;
}
#humburger .font-en .close {
  display: none;
}
#humburger.active .gnav_btn-line span:nth-of-type(1) {
  transform: translateY(7px) rotate(-30deg);
}
#humburger.active .gnav_btn-line span:nth-of-type(2) {
  transform: translateY(-7px) rotate(30deg);
  width: 100%;
  top: 14px;
}
#humburger.active .font-en .menu {
  display: none;
}
#humburger.active .font-en .close {
  display: block;
}
#humburger.scroll .gnav_btn-line span {
  background-color: var(--font-color-text);
}

@media screen and (max-width: 767px) {
  #header .drawer-nav-wrapper {
    width: 100vw;
    height: 100vh;
  }
  #header .drawer-nav-wrapper.open {
    width: 100vw;
    height: 100vh;
  }
  #humburger > span {
    right: 20px;
    width: 35px;
  }
  #humburger > span:nth-of-type(1) {
    top: calc(50% - 9px);
  }
  #humburger > span:nth-of-type(2) {
    top: 50%;
    width: 28px;
    right: 23px;
  }
  #humburger > span:nth-of-type(3) {
    top: calc(50% + 9px);
  }
}
/* footer */
.sec_contact {
  background-image: url("../img/bg_contact.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: #fff;
  padding: 120px 0;
  z-index: 99;
}
.sec_contact .sec_contact-title {
  font-weight: 400;
  margin-bottom: 60px;
}
.sec_contact .sec_contact-title .font-en {
  font-size: clamp(1.875rem, 1.466rem + 2.05vw, 3rem);
  display: block;
}
.sec_contact .sec_contact-title .title-sub {
  display: block;
}
.sec_contact .sec_contact-text {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  line-height: 2.2;
  margin-bottom: 20px;
}
.sec_contact .sec_contact-tel {
  margin-bottom: 40px;
}
.sec_contact .sec_contact-tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
}
.sec_contact .sec_contact-tel .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 3.5rem);
  gap: 10px;
}
.sec_contact .sec_contact-tel .tel i {
  font-size: clamp(1.563rem, 1.403rem + 0.8vw, 2rem);
}
.sec_contact .sec_contact-btnarea {
  width: 100%;
  display: flex;
}
.sec_contact .sec_contact-btnarea li {
  width: 33.3333333333%;
}
.sec_contact .sec_contact-btnarea li a {
  background-color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: var(--font-color-text);
  font-size: 1.1rem;
  padding: 20px 10px;
}
.sec_contact .sec_contact-btnarea li a:hover {
  background-color: var(--bg-highlight);
}
.sec_contact .sec_contact-btnarea li:nth-child(1) a {
  background-color: var(--sub-color02);
  color: #fff;
}
.sec_contact .sec_contact-btnarea li:nth-child(2) {
  border-right: 1px solid var(--bg-highlight);
}

#footer {
  padding: 80px 0 0;
  background-color: var(--main-color);
  color: #fff;
  padding-right: max(80px, min(6vw, 100px));
  padding-left: max(80px, min(6vw, 100px));
  position: relative;
  z-index: 100;
}
#footer .container {
  max-width: 100%;
}
#footer .footer--info .flex {
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
#footer .footer_navarea {
  display: flex;
  justify-content: space-between;
}
#footer .footer_navarea .footer--info .footer--logo {
  width: 300px;
  display: block;
  height: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #footer .footer_navarea .footer--info .footer--logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 40px;
  }
}
#footer .footer_navarea .footer--info .footer--name {
  font-size: clamp(1rem, 0.927rem + 0.36vw, 1.2rem);
  margin-bottom: 10px;
}
#footer .footer_navarea nav {
  display: flex;
  padding-top: 60px;
  width: 30%;
}
#footer .footer_navarea nav .fnav {
  width: 60%;
}
#footer .footer_navarea nav .fnav .fnav--menu li a {
  display: block;
  position: relative;
  padding: 15px 10px;
  border-bottom: 1px solid #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #footer .footer_navarea {
    flex-direction: column;
    gap: 20px;
  }
  #footer .footer_navarea nav {
    width: 100%;
    padding: 0;
  }
  #footer .footer_navarea nav .fnav {
    width: 100%;
  }
}
#footer .copyright {
  padding: 60px 0;
  font-size: clamp(0.6rem, 0.545rem + 0.27vw, 0.75rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 60px 15px;
  }
  #footer .footer-navArea .footer-logo a {
    width: 40%;
    margin: 0 auto 20px;
  }
  #footer .footer-navArea .footer-nav {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #footer .copyright {
    padding: 40px 10px 40px;
  }
}/*# sourceMappingURL=common.css.map */