/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td, figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}


/* Zen Kaku Gothic Antique -------------------------------------*/

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/ZenKakuGothicAntique-Light.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicAntique-Light.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ZenKakuGothicAntique-Regular.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicAntique-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/ZenKakuGothicAntique-Medium.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicAntique-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ZenKakuGothicAntique-Bold.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicAntique-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Zen Kaku Gothic Antique';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/ZenKakuGothicAntique-Black.woff2') format('woff2'),
    url('../fonts/ZenKakuGothicAntique-Black.woff') format('woff');
}



/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --color-main: #006cbb;
  --color-text: #040010;
  --color-back: #e8ecef;
  --color-light-main: #7EB4DB;

  --color-light-blue: #05A4DF;
  --color-blue-green: #0d3e53;
  --color-red: #E73649;
  --color-green: #23C358;
  --color-yellow: #F9B400;

  --color-bright-gray: #F5F5F5;
  --color-light-gray: #e5e5e5;
  --color-gray: #72787A;

  --color-visited: #585858;

  --box-shadow-hover: 0 0 5px 3px rgba(0, 108, 187, 0.1);

  --font-main: 'Zen Kaku Gothic Antique', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  --font-vollkorn: "Vollkorn", serif;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background-color: var(--color-back);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

@media screen and (min-width: 834px), print {
  body {
    font-size: 18px;
  }
}

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

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.wrapper {
  position: relative;
}

html {
  scroll-behavior: smooth;
}

.container {
  position: relative;
  z-index: 2;
}


/*------------------------------------------*/
/* ロゴ
/*------------------------------------------*/

.logo {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo_bordering.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 303/34;
  width: 203px;
  height: auto;
}

.logo.white {
  background: url('../img/common/logo_white.svg') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .logo {
    width: 303px;
  }
}



/*****************************************
*
* header
*
******************************************/

header {
  position: relative;
  z-index: 9;
}

@media screen and (min-width: 834px), print {
  header {
    width: calc(100% - 20px);
    height: 80px;
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    margin: 0 auto;
    transition: all .3s ease;
  }
}

/*------------------------------------------*/
/* ロゴ
/*------------------------------------------*/

header .global-logo {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 10;
}

@media screen and (min-width: 768px), print {
  header .global-logo {
    top: 20px;
    left: 40px;
  }
}

@media screen and (min-width: 834px), print {
  header .global-logo {
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
  }
}


/*!------------------------------------*\
    ナビ
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 16.25rem;
  width: 100%;
  height: 100%;
  background: var(--color-main);
  text-align: center;
}

/* HOME ------------------------------*/
li.nav-home a {
  font-size: 0;
  padding: 0;
}

li.nav-home {
  margin-bottom: 40px;
}

@media screen and (min-width: 834px), print {
  li.nav-home {
    margin-bottom: 0;
  }
}

/* drawer-menu ------------------------------*/
.drawer-menu {
  display: inline-block;
  padding: 80px 40px;
  margin: 0 auto;
}

.drawer-menu li a {
  transition: all .3s ease;
}

.drawer-menu li a:hover,
.drawer-menu li a:active {
  text-decoration: none;
}

.drawer-menu li.nav-single {
  margin-top: 60px;
}

.drawer-menu li.nav-single+li.nav-single {
  margin-top: 20px;
}

.drawer-menu li.nav-single a {
  color: white;
}

.drawer-menu li.nav-single a .en {
  font-family: var(--font-oswald);
  color: var(--color-light-main);
  font-size: 2rem;
  font-weight: 400;
}

.drawer-menu li.nav-single a .jp {
  font-size: 1.1rem;
  font-weight: 500;
}

.drawer-menu li.nav-single a:hover {}

@media screen and (min-width: 834px), print {
  .drawer-menu {
    padding: 100px 60px;
  }

  .drawer-menu li.nav-single a {
    font-size: 1.1rem;
  }
}


/* ------------------------------*/
/*! overlay */
/*
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .2);
}

.drawer-open .drawer-overlay {
  display: block;
}
*/


/*!------------------------------------*\
    Right
\*!------------------------------------*/

.drawer--right .drawer-nav {
  right: -16.25rem;
  right: -100%;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav {
  right: 0;
}


/*!------------------------------------*\
    iPhoneでメニューをスクロールするとメニューが閉じてしまうバグ対策
\*!------------------------------------*/

.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

.drawer-hamburger {
  display: block;
  background: url('../img/common/hamburger_sp.svg')no-repeat;
  background-size: 100%;
  aspect-ratio: 94/114;
  width: 94px;
  height: auto;
  box-sizing: content-box;
  padding: 0;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 104;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-position: 10px -10px;
}

@media screen and (min-width: 834px), print {
  .drawer-hamburger {
    background: url('../img/common/hamburger.svg')no-repeat;
    background-size: 100%;
    aspect-ratio: 126/120;
    width: 126px;
  }
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  top: 20px;
  left: 50px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 26px;
  height: 2px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: white;
  position: absolute;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  content: ' ';
  left: 0;
}

.drawer-hamburger-icon:before {
  top: 6px;
}

.drawer-hamburger-icon:after {
  top: 12px;
}

.drawer-hamburger-text {
  font-family: var(--font-en);
  color: white;
  font-size: 0.6rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  position: absolute;
  top: 37px;
  left: 50px;
}

@media screen and (min-width: 834px), print {
  .drawer-hamburger-icon {
    top: 25px;
    left: 68px;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    width: 29px;
  }

  .drawer-hamburger-text {
    top: 42px;
    left: 70px;
  }
}

.drawer-open .drawer-hamburger {
  width: 60px;
  height: 60px;
  /*開いた時のアイコンの背景*/
  background-color: var(--color-main);
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
  left: 20px;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  border-radius: 0;
  width: 20px;
  height: 2px;
  top: 10px;
  left: 0px;
  /*開いた時の×の色*/
  background-color: white;
}

@media screen and (min-width: 834px), print {
  .drawer-open .drawer-hamburger {
    width: 80px;
    height: 80px;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    width: 30px;
    left: -2px;
  }
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.drawer-open .drawer-hamburger-text {
  display: none;
}


/*!------------------------------------*\
    accessibility
\*!------------------------------------*/

/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/

.drawer-container {
  margin-right: auto;
  margin-left: auto;
}




/*****************************************
*
* フッタ
*
******************************************/

footer {
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 1;
}

footer::before {
  content: '';
  background: url('../img/common/footer_back.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  aspect-ratio: 1400/522;
  width: auto;
  height: 350px;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 834px), print {
  footer::before {
    width: 100%;
    height: auto;
  }
}


/* footer-box --------------------------------*/
footer .footer-box {
  text-align: left;
  margin: 140px 20px 20px 20px;
}

@media screen and (min-width: 834px), print {
  footer .footer-box {
    margin: 200px 60px 40px 60px;
  }
}

/* コピーライト --------------------------------*/
footer .footer-copy {
  text-align: left;
  color: white;
  font-size: 0.7rem;
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  footer .footer-copy {
    margin-top: 30px;
  }
}


/*------------------------------------------*/
/* フッタ上へ
/*------------------------------------------*/

.totop {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/totop.svg') no-repeat;
  aspect-ratio: 1/1;
  width: 60px;
  height: auto;
  position: fixed;
  right: 20px;
  bottom: 20px;
  transition: all .5s ease;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
}

.totop:hover {
  text-decoration: none;
}

@media screen and (min-width: 834px), print {
  .totop {
    width: 80px;
    height: 80px;
  }

  .totop.is-absolute {
    bottom: 20px;
  }
}



/*****************************************
*
* ページ基本レイアウト
*
******************************************/

/*------------------------------------------*/
/* submain
/*------------------------------------------*/

.submain {
  position: relative;
}

.submain::before {
  content: '';
  display: inline-block;
  background: url('../img/common/sub_header_back_sp.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 8/6;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

@media screen and (min-width: 768px), print {
  .submain::before {
    background: url('../img/common/sub_header_back.svg') no-repeat;
    background-size: 100%;
    aspect-ratio: 140/48;
  }
}


/* 大見出し --------------------------------*/
.submain-heading {
  text-align: left;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 80px 0 40px 0;
}

.submain-heading .en {
  color: var(--color-light-main);
  font-family: var(--font-oswald);
  font-size: 1.8rem;
}

.submain-heading .jp {
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .submain-heading {
    width: calc(100% - 80px);
  }

  .submain-heading .en {
    font-size: 2rem;
  }

  .submain-heading .jp {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 834px), print {
  .submain-heading {
    width: calc(100% - 120px);
    padding: 120px 0 60px 0;
  }

  .submain-heading .en {
    font-size: 4rem;
  }

  .submain-heading .jp {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1040px), print {
  .submain-heading .en {
    font-size: 5rem;
  }
}

@media screen and (min-width: 1400px), print {
  .submain-heading {
    padding: 180px 0 80px 0;
  }
}

/* 画像 --------------------------------*/
.submain-image {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.submain-image img {
  width: 100%;
  border-radius: 20px;
}

@media screen and (min-width: 768px), print {
  .submain-image {
    width: calc(100% - 80px);
  }
}

@media screen and (min-width: 834px), print {
  .submain-image {
    width: calc(100% - 120px);
  }
}



/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1400px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }


  /* アニメーション無効 */
  [class^="animation"], [class*=" animation"],
  footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}