/* リセット */

* {
  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;
}

/* Noto Sans CJK JP -------------------------------------*/

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans CJK JP';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Black.woff') format('woff');
}


/* 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: #1a2f8f;

  --color-text: #231916;
  --color-blue: #1a2f8f;
  --color-light-blue: #0090C8;
  --color-red: #e60033;
  --color-orange: #ed7235;
  --color-pink: #E73657;
  --color-green: #7FBE26;

  --color-back-red: #e60012;
  --color-back-red: rgba(230, 0, 18, 0.7);
  --color-back-blue: #182f8f;
  --color-back-blue: rgba(24, 47, 143, 0.7);
  --color-back-green: #7FBE26;
  --color-back-green: rgba(127, 190, 38, 0.7);
  --color-back-orange: #ed7235;
  --color-back-orange: rgba(237, 114, 53, 0.7);

  --color-light-blue-purple: #5e7bbc;
  --color-light-orange: #ef8f65;

  --color-gray: #626262;
  --color-light-gray: #cccccc;

  --box-shadow: 0 0 20px 10px rgba(2, 8, 10, 0.2);
  --text-shadow: 2px 2px 4px rgba(2, 8, 10, 0.2);

  --filter-drop-shadow: drop-shadow(0 0 5px rgba(5, 14, 55, 0.2));

  --font-family-main: 'Noto Sans CJK JP', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-family-Antique: 'Zen Kaku Gothic Antique', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-family-en: 'Poppins', sans-serif;
  --font-family-Lato: 'Lato', sans-serif;
}

body {
  font-family: var(--font-family-main);
  font-feature-settings: "palt";
  color: var(--color-text);
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background: url('../img/common/background.png');
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

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

.en-weight {
  font-weight: 600;
}

.font-sans {
  font-family: var(--font-family-main);
}

.font-antique {
  font-family: var(--font-family-Antique);
}

a {
  text-decoration: none;
  color: var(--color-main);
}

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;
}

/* 固定ヘッダーの高さに合わせて調整 */
.scroll-anchor {
  scroll-margin-top: 100px;
}

@media screen and (min-width: 834px), print {
  .scroll-anchor {
    scroll-margin-top: 200px;
  }
}

/* 中黒などの記号の文字詰め指定 */
.tight-symbol {
  display: inline-block;
  margin-left: -0.2em;
  margin-right: -0.2em;
}

/* （）などの記号の文字詰め指定 */
.tight-group {
  display: inline-block;
  margin-left: -0.5em;
  margin-right: -0.5em;
}

/* 英数字に入れ子された記号の文字詰め指定 */
.tight-group.has-en-weight {
  margin-left: -0.2em;
  margin-right: -0.2em;
}


/**************************************************
*
* ヘッダ
*
***************************************************/

.header-global {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 0 1rem;
  background: #fff;
  z-index: 50;
  box-shadow: 0px 0px 15px -5px #777;
}

.header-global div {
  padding: 10px 0;
}

.header-global div+div {
  margin-left: 1.5rem;
}

.header-global div img {
  width: 100%;
  height: auto;
  vertical-align: top;
  fill: #fff;
}

.header-global .logo-cty img {
  width: 60px;
}

.header-global .logo-cns img {
  width: 64px;
}



/*****************************************
*
* ナビ
*
******************************************/


/*!------------------------------------*\
    Base
\*!------------------------------------*/
.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);
}

.drawer-menu {
  text-align: center;
  list-style: none;
  padding: 60px 0;
}

.drawer-menu li {
  width: 100%;
  margin-top: 20px;
}

.drawer-menu li.drawer-single a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 280px;
  border-bottom: dotted 2px white;
  color: white;
  font-size: 1.2rem;
  padding-bottom: 20px;
  transition: all .5s ease;
}

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

.drawer-menu li.drawer-single a:hover,
.drawer-menu li.drawer-single a:active {
  border-bottom: solid 2px white;
}

/* HOME ------------------------------*/
li.drawer-brand {
  display: inline-block;
  margin-bottom: 60px;
}

li.drawer-brand a {
  font-size: 0;
  padding: 0;
}

/* sns ------------------------------*/
.drawer-menu li.drawer-sns {
  display: inline-block;
  width: auto;
  margin-top: 40px;
}

.drawer-menu li .sns-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  align-items: center;
}

/* button ------------------------------*/
li.drawer-message {
  margin-top: 60px;
}

li.drawer-message a {
  position: relative;
  display: inline-block;
  background: var(--color-orange);
  border-radius: 40px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 15px 60px 15px 30px;
  transition: all .5s ease;
}

.drawer-message a::after {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 9/14;
  width: 9px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .5s ease;
}

.drawer-message a:hover {
  background: white;
  color: var(--color-orange);
}

.drawer-message a:hover::after {
  background: url('../img/common/arrow_orange.svg') no-repeat;
  background-size: 100%;
}


/*! 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,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
  /* 右端固定 */
  right: 0;
}

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

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

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 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 {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

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

.drawer-hamburger {
  display: block;
  background-color: transparent;
  width: 40px;
  height: 40px;
  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: 10px;
  right: 10px;
  padding-right: 10px;
  z-index: 104;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  width: 40px;
  position: absolute;
  top: 8px;
  left: 0;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 40px;
  height: 3px;
  -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: var(--color-main);
}

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

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

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

@media screen and (min-width: 768px), print {
  .drawer--right .drawer-hamburger {
    width: 50px;
    height: 45px;
    top: 20px;
    right: 20px;
    padding-right: 0;
  }
}

@media screen and (min-width: 834px), print {
  .drawer--right .drawer-hamburger {
    top: 5px;
    right: 30px;
  }

  .drawer--right.drawer-close .drawer-hamburger:hover {
    filter: var(--drop-shadow-hover);
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    width: 50px;
    height: 3px;
  }

  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    top: 15px;
  }

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

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

.drawer-open .drawer-hamburger-icon {
  background-color: var(--color-main);
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 14px;
  /*開いた時の×の色*/
  background-color: white;
}

.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);
}

@media screen and (min-width: 768px), print {
  .drawer-open .drawer-hamburger {
    padding-right: 25px;
  }
}

@media screen and (min-width: 834px), print {
  .drawer-open .drawer-hamburger {
    /*開いた時のアイコンの背景*/
    width: 60px;
    height: 60px;
    background: var(--color-main);
    padding-right: 20px;
  }
}


/*!------------------------------------*\
    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;
}



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


/*------------------------------------------*/
/* side
/*------------------------------------------*/

.side-nav {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 99;
}

.side-nav a {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/side_message.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 80px;
  height: auto;
  filter: var(--filter-drop-shadow);
  transition: all .5s ease;
}

.side-nav a:hover {
  text-decoration: none;
  transform: translateY(10px);
}

@media screen and (min-width: 768px), print {
  .side-nav {
    bottom: 10px;
    right: 10px;
  }

  .side-nav a {
    width: 100px;
  }
}

@media screen and (min-width: 834px), print {
  .side-nav {
    bottom: 20px;
    right: 20px;
  }

  .side-nav a {
    width: 160px;
  }
}


/*------------------------------------------*/
/* container
/*------------------------------------------*/

.container {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 2;
}

@media screen and (min-width: 834px), print {
  .container {
    padding-bottom: 160px;
  }
}

.container::before,
.container::after {
  content: '';
  display: inline-block;
  background-repeat: repeat-y;
  width: 100px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.container::before {
  background: url('../img/common/background_side_left.png');
  background-size: 100%;
  left: -40px;
}

.container::after {
  background: url('../img/common/background_side_right.png');
  background-size: 100%;
  right: -40px;
}

@media screen and (min-width: 768px), print {

  .container::before,
  .container::after {
    width: calc(calc(300 / 1400) * 100vw);
  }

  .container::before {
    left: -100px;
  }

  .container::after {
    right: -100px;
  }
}

@media screen and (min-width: 1400px), print {

  .container::before,
  .container::after {
    width: 300px;
  }

  .container::before {
    left: -100px;
  }

  .container::after {
    right: -100px;
  }
}


/* 提灯 --------------------------------*/
.container-head {
  position: relative;
}

.container-head::before,
.container-head::after {
  content: '';
  display: inline-block;
  aspect-ratio: 478/390;
  width: calc(calc(478 / 1240) * 100vw);
  height: auto;
  position: absolute;
  top: -40px;
}

.container-head::before {
  background: url('../img/common/header_back_left.png') no-repeat;
  background-size: 100%;
  left: -40px;
}

.container-head::after {
  background: url('../img/common/header_back_right.png') no-repeat;
  background-size: 100%;
  right: -40px;
}

@media screen and (min-width: 768px), print {
  .container-head::before {
    left: -80px;
  }

  .container-head::after {
    right: -80px;
  }
}

@media screen and (min-width: 834px), print {

  .container-head::before,
  .container-head::after {
    top: -80px;
  }

  .container-head::before {
    left: -160px;
  }

  .container-head::after {
    right: -160px;
  }
}

@media screen and (min-width: 1240px), print {

  .container-head::before,
  .container-head::after {
    width: 478px;
  }

  .container-head::before {
    left: -100px;
  }

  .container-head::after {
    right: -100px;
  }
}

@media screen and (min-width: 1400px), print {
  .container-head::before {
    left: 0;
  }

  .container-head::after {
    right: 0;
  }
}


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

.logo-large {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo_large.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 104/30;
  width: calc(calc(1040 / 1240) * 100vw);
  height: auto;
  z-index: 5;
}

@media screen and (min-width: 1240px), print {
  .logo-large {
    width: 1040px;
  }
}

/*------------------------------------------*/
/* ロゴ 四日市まつり
/*------------------------------------------*/

.logo-yk {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo_yk.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 240/38;
  width: 160px;
  height: auto;
}

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


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

.logo {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/logo.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 474/76;
  width: 280px;
  max-width: 100%;
  height: auto;
}

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

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

/*------------------------------------------*/
/* logo
/*------------------------------------------*/

.main-logo {
  position: absolute;
  top: 80px;
  left: 20px;
  z-index: 99;
}

.pages-top .main-logo {
  display: none;
}

@media screen and (min-width: 834px), print {

  .main-logo,
  .is-scroll .main-logo {
    display: block;
    position: fixed;
    top: 80px;
    left: 40px;
  }

  .is-scroll .main-logo {
    filter: var(--filter-drop-shadow);
  }
}


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

.submain {
  margin-top: 60px;
}

.submain-logo {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  aspect-ratio: 536/266;
  width: 240px;
  height: auto;
  z-index: 5;
}

@media screen and (min-width: 768px), print {
  .submain-logo {
    width: 400px;
    margin-top: 40px;
  }
}

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


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

footer {
  position: relative;
  background: #008edd;
  padding: 20px;
}

@media screen and (min-width: 834px), print {
  footer {
    padding: 20px;
  }
}


/* HOMEへ（セカンドページ） --------------------------------*/
.foot-home {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width: 834px), print {
  .foot-home {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .foot-home a {
    padding: 15px 80px;
  }
}


/* フッタコピーライト --------------------------------*/
.foot-copy {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

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

.totop {
  background: url('../img/common/totop.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 88;
  cursor: pointer;
  outline: none;
  transition: all .5s ease;
}

.totop:hover {
  text-decoration: none;
  transform: translateY(10px);
}

@media screen and (min-width: 834px), print {
  .totop {
    width: 50px;
    bottom: 40px;
    right: 20px;
  }
}



/*------------------------------------------*/
/* お問い合わせ
/*------------------------------------------*/

.contactus {
  position: relative;
  padding: 7em 0;
  background: #fff;
  font-family: var(--font-family-sans);
  text-align: center;
  z-index: 10;
}

.contactus .wrap {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.contactus h1.heading {
  margin-bottom: 3rem;
  font-size: 3.6rem;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.5em;
  color: #333;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .contactus h1.heading {
    font-size: 22px;
  }
}

.contactus h1.heading em {
  display: block;
  margin-bottom: 1em;
  font-size: 1.6rem;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  line-height: 1em;
}

.contactus h1.heading span {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: auto;
  background-clip: border-box;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contactus .lead {
  margin-bottom: 4rem;
  font-size: 2.0rem;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5em;
  text-align: center;
  color: #333;
}

@media screen and (max-width: 640px) {
  .contactus .lead {
    font-size: 16px;
  }
}

@media screen and (min-width: 641px) {
  .contactus .lead br.sp {
    display: none;
  }
}

.contactus .wrap>ul.col2 {
  display: flex;
  justify-content: space-between;
}

.contactus .wrap .cs {
  position: absolute;
  top: -10px;
  left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% + 0px);
  height: calc(100% + 20px);
  background: rgba(0, 0, 0, .5);
  border-radius: 5px;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
  z-index: 10;
  text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.4), 0px 1px 10px rgba(0, 0, 0, 0.4), 0px 1px 10px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.contactus .wrap .cs span {
  font-family: var(--font-family-Lato);
  font-size: 7.2rem;
  font-size: 72px;
  line-height: 1.5em;
}

.contactus .wrap .cs strong {
  font-size: 2.6rem;
  font-size: 26px;
  line-height: 1.25em;
}

.contactus .wrap>ul.col2 li.cty,
.contactus .wrap>ul.col2 li.cns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 49%;
  padding: 20px 40px;
  background: #fff;
  border-radius: 5px;
  color: #333;
  box-shadow: 0px 0px 15px 3px #ccc;
}

.contactus .skewbox {
  width: 100%;
}

.contactus ul li .contact-logo {
  margin-bottom: 1.5rem;
  text-indent: 100%;
  font-size: 0;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.contactus ul li .company {
  display: block;
  margin-bottom: .5em;
  font-size: 1.8rem;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.25em;
}

.contactus ul li .jyusho {
  font-size: 1.4rem;
  font-size: 14px;
  line-height: 1.25em;
}

.contactus ul li.cty .contact-logo {
  background: url('../img/common/logo_cty.svg') no-repeat;
  background-size: 100%;
  width: calc(160px / 1);
  height: calc(100px / 1);
}

.contactus ul li.cns .contact-logo {
  margin-top: 19px;
  background: url('../img/common/logo_cns.svg') no-repeat;
  background-size: 100%;
  width: calc(220px / 1);
  height: calc(80px / 1);
}

.contactus ul li .cont {
  width: 100%;
}

.contactus ul li .area-box {
  margin-top: 20px;
  display: flex;
  border: 1px solid #008edd;
  border-radius: 5px;
}

.contactus ul li .area-box .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  padding: 5px 10px;
  background: #008edd;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.25em;
  letter-spacing: -0.01em;
}

.contactus ul li .area-box .area {
  display: flex;
  align-items: center;
  width: 70%;
  min-height: 60px;
  padding: 5px 10px;
  line-height: 1.5em;
  text-align: left;
}

.contactus ul li .text1 {
  margin-top: 20px;
  font-size: 14px;
  font-size: 14px;
  line-height: 1.25em;
}

.contactus ul li .web {
  margin: 1rem 0;
}

.contactus ul li .web a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background: #fff037;
  border: 2px solid #111;
  border-radius: 100px;
  font-size: 1.8rem;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
  transition: all .25s ease-in-out;
  /*cursor: default;*/
}

.contactus ul li .web a span::after {
  content: "\e807";
  margin-left: 1rem;
  font-family: "fontello";
  transform: translateY(-50%);
}

.contactus ul li .web a:hover {
  background: #09f;
  color: #fff;
}

.contactus ul li .tel {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin: 1rem 0;
}

.contactus ul li .tel::before {
  content: "";
  display: inline-block;
  width: calc(50px / 1);
  height: calc(50px / 1);
  background: url('../img/common/icon_tel.svg') no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.contactus ul li .tel p {
  text-align: left;
  font-size: 3.6rem;
  font-size: 36px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding-left: 60px;
  line-height: 1em;
}

.contactus ul li .tel p a {
  color: #000;
  text-decoration: none;
  font-weight: 900;
}

.contactus ul li p.time {
  font-size: 1.4rem;
  font-size: 14px;
}

.contactus ul li p.notes {
  font-size: 1.1rem;
  font-size: 11px;
  line-height: 1.5em;
}

.contactus ul li .box {
  width: 100%;
  margin-top: 20px;
}

.contactus ul li .box .list {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contactus ul li .box .list li {
  position: relative;
  display: block;
  width: 48%;
  margin: 0 1% 2%;
  text-align: center;
}

.contactus ul li .box .list li:last-child {
  width: 60%;
}

.contactus ul li .box .list a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
  border: 1px solid #000;
  border-radius: 100px;
  font-^size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.25em;
  color: #000;
  transition: all .25s ease-in-out;
}

.contactus ul li .box .list a span::after {
  content: '';
  display: block;
  background: url('../img/common/arrow.svg') no-repeat;
  aspect-ratio: 1/1;
  width: 8px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.contactus ul li .box .list a:hover {
  background: #ddd;
}

@media screen and (max-width: 640px) {
  .contactus {
    padding: 4em 0;
    margin-top: 40px;
  }

  .contactus .wrap .cs {
    top: 0px;
    left: 10px;
    width: calc(100% - 20px);
    height: 100%;
    font-size: 3.2rem;
    font-size: 32px;
  }

  .contactus .wrap .cs span {
    font-family: "Lato";
    font-size: 4.8rem;
    font-size: 48px;
    line-height: 1.5em;
  }

  .contactus .wrap .cs strong {
    font-size: 2.0rem;
    font-size: 20px;
    line-height: 1.5em;
  }

  .contactus .wrap>ul.col2 {
    display: block;
  }

  .contactus .wrap>ul.col2 li.cty,
  .contactus .wrap>ul.col2 li.cns {
    width: 100%;
    padding: 20px;
  }

  .contactus .wrap>ul li.cns {
    margin: 10px 0 0 0;
  }

  .contactus ul li.cty .contact-logo {
    width: calc(160px / 2);
    height: calc(100px / 2);
  }

  .contactus ul li.cns .contact-logo {
    margin-top: 0;
    width: calc(220px / 2);
    height: calc(80px / 2);
  }

  .contactus ul li .area-box {
    margin-top: 10px;
  }

  .contactus ul li .area-box .heading {
    padding: 3px 5px;
    font-size: 1.1rem;
    font-size: 11px;
  }

  .contactus ul li .area-box .area {
    min-height: 40px;
    padding: 3px 10px;
    font-size: 1.2rem;
    font-size: 12px;
  }

  .contactus ul li .area-box .area br {
    display: none;
  }

  .contactus ul li .text1 {
    margin-top: 10px;
  }

  .contactus ul li .tel {
    margin: 10px 0 5px;
  }

  .contactus ul li .tel::before {
    width: calc(50px / 1.5);
    height: calc(50px / 1.5);
  }

  .contactus ul li .tel p {
    padding-left: 40px;
    font-size: 2.4rem;
    font-size: 24px;
    line-height: 1.25em;
  }

  .contactus ul li p.time {
    font-size: 1.2rem;
    font-size: 12px;
    line-height: 1.25em;
  }

  .contactus ul li .box .list::before {
    width: calc(50px / 1.5);
    height: calc(50px / 1.5);
  }

  .contactus ul li .box .list li {
    padding: 0 2px;
  }

  .contactus ul li .box .list li:last-child {
    width: 74%;
    width: 80%;
  }

  .contactus ul li .box .list a {
    padding: .5rem 1rem;
    font-size: 1.4rem;
    font-size: 14px;
  }

  .contactus ul li .box .list a::before {
    width: calc(17px / 1.5);
    height: calc(17px / 1.5);
  }

  .contactus ul li .box .list a span::after {
    right: 10px;
  }
}



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

@media print {
  body {
    width: 1200px;
    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;
  }
}