@charset "UTF-8";

/*********************
ROOT
*********************/
:root {
  --JP-gothic: "Zen Kaku Gothic Antique", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic Medium", "Yu Gothic", sans-serif;
  --JP-mincho: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  --EN-gothic: "Roboto", sans-serif;
  --bg-color: #FFF;
  --bg-color-pale: #f5f5f5;
  --main-color: #000;
  --sub-color: #000;
  --point-color: #f70018;
  --append-color: #aee700;
  --border-color: #dfdfdf;
  --radius: 7px;
  --radius-min: 3px;
}

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(--main-color);
}
a:hover {
  color: var(--append-color);
}

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

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

@media screen and (max-width: 680px) {
  a[href^="tel:"] {
    text-decoration: none;
    border-bottom: 1px dashed var(--append-color);
  }
}

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

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

* {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

body,
input,
textarea {
  font-family: var(--JP-gothic);
  font-size: 1.6rem;
  font-weight: 500;
  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: 700;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
}

h4 {
  font-size: 1.1em;
}

h4.title {
  padding-bottom: 1em;
}

h5 {
  font-size: 0.9em;
}

@media screen and (max-width: 680px) {
  h3.title.style-line {
    font-size: 1.4em;
  }
}

img.img100 {
  width: 100%;
}

figure {
  margin: 0;
  padding: 0;
}

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

.lh0 {
  line-height: 0;
}
.lh18 {
  line-height: 1.8;
}
.lh20 {
  line-height: 2;
}

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

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

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

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

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

.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: 0.85em;
}

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

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

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

strong {
  font-weight: 800;
}

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

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

.height100 {
  height: 100%;
}

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

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

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

#footer {
  padding: 3em;
}
#footer .logo {
  max-width: 280px;
  margin: 0 auto;
}


@media screen and (max-width: 679px) {
  #foot-wrapper .secondary ul {
    display: block;
  }
}

/* to_top */

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

#pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  background: var(--main-color);
  border: 1px solid white;
  border-bottom: none;
}

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

/*********************
CONTENT-DECORATION
*********************/

.bg-rectangle {
  position: relative;
  background-color: var(--bg-color-pale);
}

.bg-rectangle::before {
  position: absolute;
  top: 0;
  left: 50px;
  top: 0;
  border-radius: 20px;
  background: var(--bg-color);
  content: "";
  width: calc(100% - 100px);
  height: 100%;
}

@media screen and (min-width: 1480px) and (max-width: 1600px) {
  .bg-rectangle::before {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

@media screen and (max-width: 1280px) {
  .bg-rectangle::before {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

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