@charset "UTF-8";

/*********************
ROOT
*********************/
:root {
  --JP-gothic: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic Medium", "Yu Gothic", sans-serif;
  --JP-mincho: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  --EN-gothic: "Roboto Condensed", sans-serif;
  --bg-color: #FFFFFF;
  --bg-color-pale: #f6f6f6;
  --main-color: #555;
  --sub-color: #666;
  --point-color: #dc4405;
  --append-color: #bf9e13;
  --border-color: #CCC;
}

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

.sp {
  display: none;
}

@media only screen and (max-width: 575px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/*********************
clearfix
*********************/

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}

.clearfix:after,
.container:after,
.row:after {
  clear: both;
}

/*********************
COLOR
*********************/

/* font-color */

.color-red {
  color: #c00 !important;
}

.color-blue {
  color: #5186c0 !important;
}

.color-purple {
  color: #9370db !important;
}

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

.color-yellow {
  color: yellow !important;
}

.color-green {
  color: #00af5b !important;
}

.color-gray {
  color: #CCC !important;
}


.color-sub {
  color: var(--sub-color) !important;
}

.color-point {
  color: var(--point-color) !important;
}

.color-append {
  color: var(--append-color) !important;
}

.marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}

.bg-gray {
  background-color: #fafafa !important;
}

.bg-darkgray {
  background-color: #554e4f !important;
}

.bg-black {
  background-color: #222 !important;
}

.bg-white {
  background-color: white !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-pale {
  background-color: var(--bg-color-pale) !important;
}

/* A TAG */

a {
  transition: 0.14s ease-out;
  color: var(--sub-color);
}

a.ar {
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: var(--main-color);
  font-size: 0.9em;
  margin: 5px 0;
  padding-left: 34px;
}

a.ar::before {
  position: absolute;
  top: -4px;
  left: 0;
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/icon-ar.svg) no-repeat left center;
  transition: 0.2s;
}

a.ar:hover::before {
  filter: var(--filter-point-color);
}

a.underline {
  text-decoration: underline !important;
}

a:hover {
  opacity: .6;
}

a.outlink::after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 6px;
  display: inline-block;
  background: url(../images/icon-outlink.svg) no-repeat left center;
  background-size: contain;
}

/*********************
BUTTON
*********************/

a.btn {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: .9em;
  text-align: center;
  display: inline-block;
  padding: 1.2em 2em;
  margin: 5px 0 10px;
  background: var(--main-color);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
  color: white;
  border-radius: 3px;
}

a.btn:hover {
  opacity: .7;
}

a.btn.full {
  width: 100%;
}

a.btn.small {
  font-size: .8em;
  padding: 1em 2em;
  min-width: auto;
}

a.btn.large {
  font-size: 1.2em;
  min-width: auto;
}

@media screen and (min-width: 681px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}

@media screen and (max-width: 680px) {
  a.btn {
    min-width: auto;
  }

  a[href^="tel:"] {
    text-decoration: none;
    border-bottom: 1px dotted #5186c0;
  }
}

@media screen and (max-width: 480px) {
  a.btn {
    display: block;
    width: 100%;
    margin: 5px auto 10px;
    padding: 12px;
  }

  a.btn.box {
    width: 100%;
  }
}

/*********************
ELEMENTS
*********************/

html {
  font-size: 62.5%;
  height: 100%;
  background-color: var(--bg-color);
}

body,
input,
textarea {
  font-family: var(--JP-gothic);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--main-color);
  position: relative;
}

input,
textarea {
  font-weight: normal;
}

@media screen and (min-width: 991px) {
  body {
    font-size: 1.6rem;
  }

  section.content-wrapper {
    padding: 80px 0;
  }
}

@media screen and (max-width: 990px) {
  html {
    height: 100%;
  }

  body {
    height: 100%;
    font-size: 1.5rem;
  }

  section.content-wrapper {
    padding: 60px 0;
  }
}

@media screen and (max-width: 680px) {
  html {
    height: 100%;
  }

  body {
    height: 100%;
    font-size: 1.3rem;
  }

  section.content-wrapper {
    padding: 40px 0;
  }
}

/* title */
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

h2 {
  font-size: 1.8em;
  font-family: var(--EN-gothic);
  letter-spacing: .1em;
  margin-bottom: 1em;
  font-weight: 400;
}
h2.jp {
  font-size: 1.7em;
}

h3 {
  font-size: 2em;
  letter-spacing: .1em;
}

h3.secondary {
  font-size: 1.7em;
  letter-spacing: .05em;
}

h4 {
  font-size: 1.1em;
}

h5 {
  font-size: 0.9em;
}

@media screen and (max-width: 480px) {
  h3 {
    font-size: 1.8em;
    letter-spacing: .05em;
  }
}

th {
  text-align: left;
}

dt {
  font-weight: bold;
}

dl,
dt,
dd {
  margin: 0;
}

em {
  font-style: normal;
  font-weight: 800;
  color: var(--point-color);
  background: linear-gradient(transparent 90%, yellow 10%);
}

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

ul.list {
  list-style: none;
}

ul.list>li {
  padding: 0.2em 0;
}

ul.odd li,
ol.odd li {
  padding: 0.8em 0.4em;
}

ul.odd li:nth-child(odd),
ol.odd li:nth-child(odd) {
  background-color: #fff;
  border-top: 1px solid var(--sub-color-append);
  border-bottom: 1px solid var(--sub-color-append);
}

ul.voice li {
  padding-left: 28px;
  background: url(../images/voice.svg) top 1em left 6px no-repeat;
  background-size: 14px;
}

ul.list-disc {
  margin-left: 1.5em;
}

ul.list-disc li {
  list-style: disc;
  list-style-position: outside;
  margin-bottom: 0.5em;
}

ul.list-disc li:last-child {
  margin-bottom: 0;
}

ul.list-disc li ul li {
  list-style: circle;
}

ol {
  counter-reset: item;
}

ol li {
  list-style: none;
  margin-bottom: 1em;
  position: relative;
  padding-left: 2em;
}

ol.odd li {
  list-style: none;
  margin-bottom: 1em;
  position: relative;
  padding-left: 2.4em !important;
}

ol li:before {
  position: absolute;
  left: 0.4em;
  counter-increment: item;
  content: counter(item) " )";
  display: inline-block;
  font-weight: bold;
}

ul.list-disc-small {
  margin-left: 1em;
  font-size: 0.86em;
}

ul.list-disc-small li {
  list-style: circle;
  list-style-position: outside;
  margin-bottom: 1em;
}

img.img100 {
  width: 100%;
}

img.circle {
  border-radius: 50%;
}

table.data {
  width: 100%;
}

table.data tbody tr:last-child {
  border-bottom: none;
}

table.data tbody td {
  padding: 1em;
  border-bottom: 1px dotted var(--border-color);
}

table.data tbody th {
  font-weight: bold;
  font-size: 0.9em;
  padding: 1em 1em 1em 0;
  border-bottom: 1px solid var(--border-color);
}

table.data tbody th:first-of-type {
  border-top: 1px solid var(--border-color);
}

table.data thead+tbody th:first-of-type {
  border-top: none;
}

table.data tbody td:first-of-type {
  border-top: 1px dotted var(--border-color);
}

table.data tbody td:last-child {
  border-right: none;
}

table.data tbody td {
  text-align: left;
}

table.data.center td {
  text-align: center;
}

table.data th.w25 {
  width: 25%;
}

table.data th.w40 {
  width: 40%;
}

tr.tate th,
tr.tate td {
  text-align: center;
}

tr.tate th span,
tr.tate td span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}

table.data.align-center * {
  text-align: center;
}

table.data.sep thead th {
  background: #f5f6f1;
  border-right: 1px dashed #c5cdd1;
  padding: 1em;
}

table.data.sep tbody th {
  background: #f1f4f6;
  padding-left: 1em;
  padding-right: 1em;
}

table.data.sep tbody td {
  border-right: 1px dashed #c5cdd1;
}

table.data.sep thead th:last-of-type,
table.data.sep tbody td:last-of-type {
  border-right: none;
}

table.data.odd tbody tr:nth-of-type(even) th {
  background: #e3e9ed;
}

table.data.odd tbody tr:nth-of-type(even) td {
  background: #fafafa;
}

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

  table.data td,
  table.data th {
    text-align: left;
  }

  table.data.sp-row tr:first-of-type,
  table.data.sp-row td,
  table.data.sp-row th {
    display: block;
    border: none;
    padding: 10px 0;
  }

  table.data.sp-row th,
  table.data.sp-row tbody th:first-of-type {
    border-top: 1px solid var(--border-color);
    width: 100% !important;
    padding: 10px 0 0;
  }

  table.data.sp-row th::before {
    display: inline-block;
    color: var(--sub-color);
    content: "■";
    font-size: .5em;
    margin-right: 3px;
  }
}

@media screen and (max-width: 1199px) {
  .table-scroll.lg {
    overflow-x: scroll;
    position: relative;
  }

  .table-scroll.lg table {
    width: 100%;
    white-space: nowrap;
  }

  .table-scroll.lg::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 991px) {
  .table-scroll.md {
    overflow-x: scroll;
    position: relative;
  }

  .table-scroll.md table {
    width: 100%;
    white-space: nowrap;
  }

  .table-scroll.md::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #fff;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 580px) {
  .table-scroll {
    overflow-x: scroll;
    position: relative;
  }

  .table-scroll table {
    width: 100%;
    white-space: nowrap;
  }

  .table-scroll::before {
    content: "左右にスクロールできます ⇔";
    display: inline-block;
    font-size: 11px;
    background: #f6f3ec;
    padding: 2px 5px;
    margin-bottom: 7px;
  }
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

hr.sep {
  display: block;
  width: 100%;
  margin: 0;
  height: 1px;
  border-top: 1px dashed var(--sub-color);
}


hr.sep.narrow {
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  border-top: 1px solid var(--sub-color);
}

hr.sep.simple::before,
hr.sep.simple::after {
  display: none;
}

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

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  font-size: .7em;
}

/*********************
LAYOUT
*********************/

.lh0 {
  line-height: 0;
}

.lh18 {
  line-height: 1.8;
}

.lh22 {
  line-height: 2.2;
}

/*********************
DESIGN
*********************/

.en {
  font-family: var(--EN-gothic);
  font-weight: 500;
}

.jp {
  font-family: var(--JP-gothic);
}

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

.style-round {
  border-radius: 11px;
}

.style-round.min {
  border-radius: 7px;
}

.style-border {
  border: 1px solid var(--main-color);
}

.style-border.sub {
  border: 1px solid var(--sub-color);
}

.style-border.point {
  border: 1px solid var(--point-color);
}

.style-border.append {
  border: 1px solid var(--sub-color-append);
}

.style-border.thick {
  border-width: 2px !important;
}

.style-border.thickest {
  border-width: 4px !important;
}

.style-shadow {
  box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.1);
}

.minimum-area {
  min-height: 550px;
}

.bg-secondary {
  background: var(--bg-color-pale) !important;
}

.bg-secondary.blue {
  background: #ebf6f7 !important;
}

.font-small {
  font-size: .8em;
}

.font-large {
  font-size: 1.3em;
}

.font-xlarge {
  font-size: 1.6em;
}

.font-xxlarge {
  font-size: 1.9em;
}

@media screen and (max-width: 1199px) {
  .font-large {
    font-size: 1.9rem;
  }

  .font-xlarge {
    font-size: 2.1rem;
  }

  .font-xxlarge {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 767px) {
  .font-small {
    font-size: 11px;
  }

  .font-large {
    font-size: 1.6rem;
  }

  .font-xlarge {
    font-size: 1.8rem;
  }

  .font-xxlarge {
    font-size: 2.0rem;
  }

  .minimum-area {
    min-height: 300px;
  }
}

.strong {
  font-weight: 600;
}

.font-mincho {
  font-family: var(--JP-mincho);
}

.semi-strong {
  font-weight: 500;
}

.text-tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
  display: inline-block;
}

/* box */

.box {
  padding: 2.2em 2.6em;
  width: 100%;
  background: white;
}

.box.thin {
  padding: 1.2em 1.6em;
}

.box.thick {
  padding: 3em 4em;
}

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

.box.line {
  border: 1px solid var(--border-color);
}

.box.line.blk {
  border: 1px solid #000;
}

.box.transparent {
  background: transparent;
}

@media screen and (max-width: 991px) {
  .box {
    width: 100%;
  }
}

@media screen and (max-width: 565px) {
  .box,
  .box.thick {
    padding: 20px 10px;
  }
}

.height100 {
  height: 100%;
}

.height-auto {
  height: auto !important;
}

.box-height-wrapper {
  display: -wbkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*********************
HEADER
*********************/

.open-bg {
  display: none;
}

.logo-sp {
  display: none;
}

#home #top-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#head-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 50px;
}

#head-wrapper h1 {
  width: 200px;
}

/* Toggle Button */

#nav-toggle {
  display: block;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  top: 0;
  right: 0;
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
}

#nav-toggle {
  display: none;
  transition: .3s;
}

.is-fixed #nav-toggle {
  display: block;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: inline-block;
  position: absolute;
  background: var(--bg-color);
  height: 1px;
  width: 26px;
  left: 12px;
  transition: 0.2s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 18px;
}

#nav-toggle span:nth-child(2) {
  top: 24px;
}

#nav-toggle span:nth-child(3) {
  top: 30px;
}

/* open */
body.open .open-bg {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
}

body.open {
  overflow: hidden;
}

.open #nav-toggle span:nth-child(1) {
  top: 24px;
  transform: rotate(-45deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.open #nav-toggle span:nth-child(3) {
  top: 24px;
  transform: rotate(45deg);
}

body.open {
  scrollbar-gutter: stable;
}

.open #head-nav-wrapper {
  top: 0;
  opacity: 1;
}


@media screen and (min-width: 1200px) {
  #head-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    line-height: 0;
    margin: 15px 0;
  }

  .open .is-fixed #head-nav-wrapper {
    top: 0;
    opacity: 1;
  }
}

@media screen and (max-width: 1199px) {
  #top-head {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    overflow: hidden;
  }

  #head-wrapper {
    width: 100%;
    display: block;
    position: relative;
    margin: 5px 20px;
  }

  #nav-toggle {
    display: block;
  }

}

/*********************
NAVIGATION
*********************/

#head-global-nav {
  width: fit-content;
}

#head-global-nav>ul>li {
  margin-left: 2em;
}

#head-global-nav>ul>li a {
  text-decoration: none;
  font-weight: 400;
  display: block;
  position: relative;
  color: #000;
  font-size: 1.6rem;
  letter-spacing: 2px;
  padding: 20px 0;
  font-family: var(--EN-gothic);
}

#head-global-nav>ul>li a:hover {
  opacity: .4;
}

@media screen and (min-width: 1200px) {
  #top-head.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }

  #top-head.is-fixed h1 {
    display: none;
  }

  #head-global-nav {
    display: flex;
    align-items: end;
    margin-right: 30px;
  }

  #head-global-nav>ul {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
  }

  #head-global-nav>ul li {
    position: relative;
  }

  #head-global-nav>ul li a {
    vertical-align: middle;
  }

  #head-global-nav>ul li a::after {
    left: calc(50% - 3px);
    width: 6px;
  }

  /* IS-FIXED */

  .is-fixed #head-nav-wrapper {
    display: block;
    position: fixed;
    background: var(--main-color);
    transition: all 0.1s ease-out;
    overflow-y: auto;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1001;
    opacity: 0;
    margin: 0;
    padding: 40px 0;
  }

  .is-fixed #head-global-nav {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
  }

  .is-fixed #head-global-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .is-fixed #head-global-nav ul li {
    text-align: center;
    margin: 0;
  }

  .is-fixed #head-global-nav ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    padding: 1em 1.4em;
    margin: 0;
    display: block;
    color: var(--bg-color);
  }
}

@media screen and (max-width: 1199px) {
  #head-nav-wrapper {
    position: fixed;
    background: var(--main-color);
    transition: all 0.1s ease-out;
    overflow-y: auto;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1001;
    opacity: 0;
    margin: 0;
    padding: 40px 0;
  }

  #head-wrapper h1 {
    width: 160px;
    margin: 0;
    padding: 0;
  }

  #head-global-nav {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
  }

  #head-global-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #head-global-nav ul li {
    text-align: center;
    margin: 0;
  }

  #head-global-nav ul li a {
    text-decoration: none;
    font-size: 1.4rem;
    padding: 1em 1.4em;
    margin: 0;
    display: block;
    color: var(--bg-color);
  }
}

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

  #head-nav-wrapper>h1,
  #head-global-nav {
    width: 90%;
  }

  #head-global-nav ul li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}

/*********************
FOOTER
*********************/

#footer {
  background: var(--main-color);
  color: white;
  padding: 3em 0;
}

.foot-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.foot-wrapper .primary {
  line-height: 1.8;
}

.foot-wrapper .primary .spec div {
  margin-bottom: 10px;
}

.foot-wrapper .primary .spec div h3 {
  font-size: .9em;
  margin: 0 0 3px;
}

.foot-wrapper .primary .spec div h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sub-color);
  display: inline-block;
  margin-right: 5px;
}

.foot-wrapper .logo {
  margin-bottom: 2em;
}

.foot-wrapper .logo img {
  padding: 0;
  max-width: 200px;
}

.foot-wrapper .copyright {
  font-size: 0.7em;
  letter-spacing: .2em;
  font-family: var(--EN-gothic);
}

.foot-wrapper .secondary ul {
  display: flex;
  font-size: .9em;
}
.foot-wrapper .secondary a {
  text-decoration: none;
  color: white;
  display: block;
  padding: 1em;
}

/* banner */
.foot-wrapper .banner-wrapper .custom-html-widget {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 3em;
}


@media all and (max-width: 879px) {
  .foot-wrapper {
    text-align: center;
  }
  .foot-wrapper .logo img {
    max-width: 200px;
  }
  .foot-wrapper {
    flex-direction: column-reverse;
  }
  .foot-wrapper .secondary ul {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2em;
  }
  .foot-wrapper .copyright {
    margin-bottom: 2em;
  }
  .foot-wrapper .banner-wrapper .custom-html-widget {
    margin-bottom: 0;
  }
}
@media all and (max-width: 479px) {
  .foot-wrapper .secondary ul {
    margin-bottom: 4em;
    gap: 2px;
  }
  .foot-wrapper .secondary ul li {
    width: calc(50% - 1px);
  }
  .foot-wrapper .secondary ul li a {
    background-color: #333;
  }

}

/* to_top */

#pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  text-align: center;
  z-index: 10;
  margin: 0;
}

#pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  background: #111;
  border-bottom: none;
  border-radius: 50%;
}

#pageTop a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  position: absolute;
  top: calc(50% - 4px);
  right: calc(50% - 5px);
  transform: rotate(-45deg);
}

@media all and (max-width: 580px) {

  #pageTop {
    right: 10px;
    width: 34px;
    height: 34px;
  }

  #pageTop a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 5px);
    transform: rotate(-45deg);
  }
}

/*********************
MOVIE
*********************/
.youtube {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
