/* リセット */

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

/* WebFont -------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

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

:root {
  --color-main: #173d83;
  --color-light-main: #7797d2;
  --color-bright-main: #d7dce4;
  --color-text: #101010;
  --color-white: #ffffff;
  --color-red: #e31e23;
  --color-bright-gray: #e5e5e5;
  --color-light-gray: #cccccc;
  --color-gray: #777777;
  --color-visited: #585858;
  --box-shadow: 0 0 10px #ccc;
}

body {
  font-family: YakuHanJP, 'Noto Sans CJK JP', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  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-white);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

.foot-copy,
.en {
  font-family: 'Lato', sans-serif
}

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

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

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

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

header {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 833px) {
  header {
    width: 100%;
    height: 50px;
    background: var(--color-white);
    text-align: left;
    padding: 10px 20px 0 20px;
  }
}

@media screen and (min-width: 834px), print {
  header {
    justify-content: space-between;
    background: var(--color-white);
    border-bottom: solid 1px var(--color-bright-gray);
    width: 100%;
    height: 80px;
    padding: 0 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    transition: all .5s ease;
  }
}


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

.logo-wrap {
  display: flex;
  align-items: center;
}

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

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

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


/*------------------------------------------*/
/* PCナビ
/*------------------------------------------*/

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

  .drawer-menu li {
    height: 80px;
  }

  .drawer-menu li+li {
    margin-left: 2em;
  }

  .drawer-menu li.drawer-single a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: bold;
    transition: all .5s ease;
  }

  .drawer-menu li.drawer-single a:hover {
    text-decoration: none;
    color: var(--color-text);
  }

  .drawer-menu li.drawer-single a::after {
    content: '';
    background: var(--color-main);
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s ease;
  }

  .drawer-menu li.drawer-single.active a::after,
  .drawer-menu li.drawer-single a:hover::after {
    width: 100%;
  }

  .drawer-toggle,
  .drawer-brand,
  .drawer-menu__sp {
    display: none;
  }

  .drawer-menu li.drawer-contact {
    display: flex;
    align-items: center;
  }

  .drawer-menu li.drawer-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    border: solid 1px var(--color-red);
    border-radius: 40px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: bold;
    padding: 10px 20px;
    transition: all .5s ease;
  }

  .drawer-menu li.drawer-contact a:hover {
    text-decoration: none;
    background: var(--color-white);
    color: var(--color-red);
  }
}

/*------------------------------------------*/
/* スマホナビ
/*------------------------------------------*/

@media screen and (max-width: 833px) {

  /*!------------------------------------*\
    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;
    margin-top: 40px;
    padding: 20px 0 60px 0;
  }

  .drawer-menu li.drawer-single a,
  .drawer-menu li.drawer-contact a,
  .drawer-menu li.drawer-menu__sp a {
    text-align: left;
    display: inline-block;
    border-bottom: solid 1px var(--color-light-main);
    width: calc(100% - 40px);
    max-width: 300px;
    color: var(--color-white);
    font-size: 1rem;
    padding: 15px 0;
  }

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

  .drawer-brand {
    margin-bottom: 20px;
  }

  .drawer-brand .logo {
    margin: 0 auto;
  }

  .drawer-dropdown {
    position: relative;
    display: block;
    cursor: pointer;
  }

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


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

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

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

  .drawer-hamburger-icon {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    background-color: var(--color-main);
    border-radius: 2px;
    width: 100%;
    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);
  }

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

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

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

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

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    top: 10px;
    /*開いた時の×の色*/
    background-color: var(--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);
  }


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

  /*!------------------------------------*\
    Dropdown
\*!------------------------------------*/

  .drawer-dropdown-menu {
    display: none;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
  }

  .drawer-dropdown-menu>li {
    width: 100%;
    list-style: none;
  }

  .drawer-dropdown-menu-item {}

  .drawer-dropdown-menu-item:hover {}

  /*! open */
  .drawer-dropdown.open>.drawer-dropdown-menu {
    display: block;
  }

  /*! drawer-caret */
  .drawer-menu li a.drawer-dropdown-button {
    position: relative;
    background: var(--color-main);
    color: var(--color-white);
    display: block;
    padding: 15px 10px;
    border-bottom: solid 1px var(--color-white);
    transition: all .5s ease;
  }

  /*横線*/
  a.drawer-dropdown-button::before {
    content: '';
    display: block;
    position: absolute;
    top: 26px;
    right: 15px;
    width: 20px;
    height: 2px;
    background: var(--color-white);
  }

  /*縦線*/
  a.drawer-dropdown-button::after {
    content: '';
    display: block;
    position: absolute;
    top: 17px;
    right: 24px;
    width: 2px;
    height: 20px;
    background: var(--color-white);
  }

  /*! open */
  .drawer-dropdown.open a.drawer-dropdown-button::after {
    content: none;
  }

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

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

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

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

.footer-totop {
  position: relative;
  display: inline-block;
  background: var(--color-main);
  width: 100%;
  height: 60px;
  margin-top: 60px;
}

@media screen and (min-width: 834px), print {
  .footer-totop {
    height: 100px;
    margin-top: 160px;
  }
}


/* フッタ上へ --------------------------------*/
.totop {
  display: inline-block;
  background: url('../img/totop.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 30px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: all .5s ease;
}

.totop:hover {
  transform: translateY(-10px) translateY(-50%);
}

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


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

footer {
  width: 100%;
  text-align: center;
  padding: 20px;
}

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

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

  .footer-box {
    display: flex;
    justify-content: space-between;
  }
}


/* フッタ住所 --------------------------------*/
.footer-prof {
  text-align: left;
  font-size: 0.8rem;
}

@media screen and (min-width: 834px), print {
  .footer-prof {
    font-size: 0.9rem;
  }
}

/* フッタコピーライト --------------------------------*/
.footer-copy {
  border-top: solid 1px var(--color-bright-main);
  font-size: 0.7rem;
  font-weight: bold;
  padding-top: 20px;
  margin-top: 20px;
}

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

/* フッタナビ --------------------------------*/

@media screen and (max-width: 833px) {
  footer nav {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  footer nav {
    text-align: right;
  }

  .footer-nav1 {
    display: flex;
  }

  .footer-nav1 li+li {
    margin-left: 2em;
  }

  .footer-nav1 li a,
  .footer-nav2 li a {
    color: var(--color-text);
  }

  .footer-nav1 li a {
    font-size: 0.9rem;
    font-weight: bold;
  }

  .footer-nav2 li a {
    font-size: 0.7rem;
  }

  .footer-nav1 li a:visited,
  .footer-nav2 li a:visited {
    color: var(--color-text);
  }
}



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

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



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


/*------------------------------------------*/
/* section
/*------------------------------------------*/


.section-back {
  background: var(--color-light-main);
  margin-top: 60px;
}

.section {
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 60px;
}

.section-back>.section {
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

@media screen and (min-width: 834px), print {
  .section-back {
    margin-top: 100px;
  }

  .section {
    width: calc(100% - 120px);
    margin-top: 100px;
  }

  .section-back>.section {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1240px), print {
  .section {
    width: 1100px;
  }
}

.section.wide {
  width: 100%;
}


/*------------------------------------------*/
/* サブメイン
/*------------------------------------------*/

.submain {
  position: relative;
  background: url('../img/dot_gray.svg');
}

.submain::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  width: 6px;
  height: 180px;
  position: absolute;
  top: 40px;
  left: 20px;
}

@media screen and (min-width: 768px), print {
  .submain::before {
    width: 10px;
    height: calc(calc(340 / 1500) * 100vw);
    top: 60px;
    left: 60px;
  }

  .submain-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    padding-top: 60px;
  }
}

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

  .submain::before {
    top: 150px;
  }

  .submain-box {
    padding-top: 140px;
  }
}

@media screen and (min-width: 1500px), print {
  .submain::before {
    height: 340px;
  }
}

/* 画像 --------------------------------*/
.submain figure img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .submain figure img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 14/6;
  }

  .submain figure {
    overflow: hidden;
    height: calc(calc(300 / 1500) * 100vw);
  }
}

@media screen and (min-width: 1500px), print {
  .submain figure {
    height: 300px;
  }
}

/* テキスト --------------------------------*/
.submain-copy {
  text-align: left;
  padding: 40px 40px 20px 40px;
}

.submain-copy .en {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.submain-copy .jp {
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 20px;
}

@media screen and (min-width: 768px), print {
  .submain-copy {
    padding: 0;
    padding-left: 120px;
    padding-right: 120px;
  }

  .submain-copy .jp {
    margin-top: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .submain-copy .en {
    font-size: 4rem;
  }

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

/*------------------------------------------*/
/* パンくず
/*------------------------------------------*/

.breadcrumb {
  text-align: left;
  font-size: 0.8rem;
  padding: 5px 20px;
  margin: 0 auto;
}

.breadcrumb li a {
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: bold;
  transition: all .5s ease;
}

.breadcrumb li a:visited {
  color: var(--color-text);
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
  color: var(--color-white);
  text-decoration: none;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: '>';
  color: var(--color-main);
  font-weight: bold;
  padding-left: 0.8em;
  padding-right: 0.5em;
}

@media screen and (min-width: 768px), print {
  .breadcrumb {
    padding-left: 120px;
    padding-right: 60px;
  }
}



/*****************************************
*
* 共通パーツ
*
******************************************/

/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: var(--color-main);
}

.link-blank::after {
  content: '';
  display: inline-block;
  background: url('../img/link_blank.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

.link-blank-white::after {
  content: '';
  display: inline-block;
  background: url('../img/link_blank_white.svg') no-repeat;
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 2;
}

.text+.text {
  margin-top: 1em;
}

/*------------------------------------------*/
/* 注意書き
/*------------------------------------------*/
.notes {
  padding-left: 1em;
  text-indent: -1em;
}

/*------------------------------------------*/
/* 文字色
/*------------------------------------------*/
.text-red {
  color: var(--color-red);
}

/*------------------------------------------*/
/* margin pの間空ける用
/*------------------------------------------*/
.margin-p {
  margin-top: 2rem;
}

/*------------------------------------------*/
/* H2
/*------------------------------------------*/

.heading-secondary-wrap .en {
  text-align: left;
  color: var(--color-main);
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 10px;
}

.heading-secondary {
  position: relative;
  text-align: left;
  border-bottom: solid 2px var(--color-bright-main);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.1;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.heading-secondary::after {
  content: '';
  display: inline-block;
  background: var(--color-main);
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

@media screen and (min-width: 834px), print {
  .heading-secondary-wrap .en {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .heading-secondary {
    font-size: 1.6rem;
    padding-bottom: 30px;
    margin-bottom: 80px;
  }
}


/*------------------------------------------*/
/* H3
/*------------------------------------------*/

.heading-tertiary {
  text-align: left;
  border-left: solid 4px var(--color-main);
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 40px;
  padding-left: 10px;
}

@media screen and (min-width: 834px), print {
  .heading-tertiary {
    font-size: 1.4rem;
    margin-bottom: 60px;
    padding-left: 20px;
  }
}


/*------------------------------------------*/
/* ボタン
/*------------------------------------------*/

a.btn-type-rounded-line {
  position: relative;
  display: inline-block;
  width: 220px;
  height: 50px;
  background: var(--color-main);
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-main);
  border-radius: 40px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  transition: all .5s ease;
}

a.btn-type-rounded-line.white {
  background: transparent;
  border-color: var(--color-main);
  color: var(--color-main);
}

a.btn-type-rounded-line.transparent {
  background: transparent;
  border-color: white;
  color: white;
}

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

a.btn-type-rounded-line.white::after {
  background: url('../img/arrow.svg') no-repeat;
  background-size: 100%;
}

a.btn-type-rounded-line.pdf::after {
  background: url('../img/icon_pdf.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
}

a.btn-type-rounded-line:visited {
  color: white;
}

a.btn-type-rounded-line.white:visited {
  color: var(--color-main);
}

a.btn-type-rounded-line:hover {
  text-decoration: none;
  background: white;
  color: var(--color-main);
}

a.btn-type-rounded-line.white:hover {
  background: var(--color-main);
  color: white;
}

a.btn-type-rounded-line:hover::after {
  background: url('../img/arrow.svg') no-repeat;
  background-size: 100%;
}

a.btn-type-rounded-line.white:hover::after {
  background: url('../img/arrow_white.svg') no-repeat;
  background-size: 100%;
}

a.btn-type-rounded-line.pdf:hover::after {
  background: url('../img/icon_pdf.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded-line .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 0 60px 0 40px;
}

.btn-type-rounded-line .inner::before,
.btn-type-rounded-line .inner::after {
  content: '';
  display: inline-block;
  background: url('../img/diagonal.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 18/2;
  width: 18px;
  height: auto;
  position: absolute;
  transition: all .5s ease;
}

.btn-type-rounded-line.white .inner::before,
.btn-type-rounded-line.white .inner::after {
  background: url('../img/diagonal_white.svg') no-repeat;
  background-size: 100%;
}

.btn-type-rounded-line .inner::before {
  top: -2px;
  right: 20px;
}

.btn-type-rounded-line .inner::after {
  bottom: -2px;
  right: 38px;
}

.btn-type-rounded-line:hover .inner::before,
.btn-type-rounded-line:hover .inner::after {
  content: none;
}


/*------------------------------------------*/
/* 表 thの横幅用スタイルはjsで自動作成
/*------------------------------------------*/
.table-type-underline-dashed {
  border-collapse: collapse;
  width: 100%;
}

.table-type-underline-dashed th,
.table-type-underline-dashed td {
  text-align: left;
  border-bottom: 1px dashed var(--color-light-gray);
  padding: 20px 0;
}

.table-type-underline-dashed th {
  font-weight: bold;
}

.table-type-underline-dashed td {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {

  .table-type-underline-dashed tr,
  .table-type-underline-dashed th,
  .table-type-underline-dashed td {
    display: block;
    width: auto;
  }

  .table-type-underline-dashed th,
  .table-type-underline-dashed td {
    border-bottom: 1px solid var(--color-light-gray);
    padding: 10px 0;
  }

  .table-type-underline-dashed th {
    border-bottom: 1px dotted var(--color-light-gray);
  }
}

@media screen and (min-width: 768px), print {
  .table-type-underline-dashed th {
    width: 10em;
  }
}

/*------------------------------------------*/
/* 表 スマホでレイアウト変更バージョン（2列の時のみ使用）
/*------------------------------------------*/
.table-type-underline-dashed-colspan2 {
  border-collapse: collapse;
  width: 100%;
}

.table-type-underline-dashed-colspan2 th,
.table-type-underline-dashed-colspan2 td {
  text-align: left;
  border-color: var(--color-light-gray);
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  padding: 10px;
}

.table-type-underline-dashed-colspan2 th {
  font-weight: bold;
}

@media screen and (max-width: 767px) {

  .table-type-underline-dashed-colspan2 tr,
  .table-type-underline-dashed-colspan2 th,
  .table-type-underline-dashed-colspan2 td {
    display: block;
    width: auto;
  }

  .table-type-underline-dashed-colspan2 th,
  .table-type-underline-dashed-colspan2 td {
    font-size: 0.9rem;
    padding: 5px;
  }

  .table-type-underline-dashed-colspan2 td {
    border-bottom-style: solid;
  }
}


/*------------------------------------------*/
/* 表 折り返し禁止
/*------------------------------------------*/

@media screen and (min-width: 768px), print {
  table .width-nowrap {
    white-space: nowrap;
  }
}


/*------------------------------------------*/
/* 地図
/*------------------------------------------*/

.map_wrapper {
  margin: 0;
}

.map_wrapper iframe {
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 768px), print {
  .map_wrapper iframe {
    width: 100%;
    height: 400px;
  }
}