@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400;500;600;700;800&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Line height auto
*/
/*
    Form Parts
*/
input {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
input[type=text] {
  background-color: #fff;
  width: 100%;
  height: 37px;
  padding: 5px 15px;
  border: 1px solid #51656F;
  font-size: 15px;
}
@media (max-width: 750px) {
  input[type=text] {
    padding: 2vw 4vw;
    height: 8vw;
    font-size: 15px;
    font-size: 4vw;
  }
}
input[type=text].short {
  width: 66%;
}
@media (max-width: 750px) {
  input[type=text].short {
    width: 90%;
  }
}
input[type=tel] {
  background-color: #fff;
  width: 100%;
  height: 37px;
  padding: 5px 15px;
  border: 1px solid #51656F;
  font-size: 15px;
}
@media (max-width: 750px) {
  input[type=tel] {
    padding: 2vw 4vw;
    height: 8vw;
    font-size: 15px;
    font-size: 4vw;
  }
}
input[type=tel].short {
  width: 66%;
}
@media (max-width: 750px) {
  input[type=tel].short {
    width: 90%;
  }
}
input[type=email] {
  background-color: #fff;
  width: 100%;
  height: 37px;
  padding: 5px 15px;
  border: 1px solid #51656F;
  font-size: 15px;
}
@media (max-width: 750px) {
  input[type=email] {
    padding: 2vw 4vw;
    height: 8vw;
    font-size: 15px;
    font-size: 4vw;
  }
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  display: inline-block;
  padding: 5px 10px 5px 40px;
  position: relative;
  font-size: 15px;
}
@media (max-width: 750px) {
  input[type=checkbox] + label {
    text-align: left;
    font-size: 15px;
    font-size: 4vw;
  }
}
input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  border: 1px solid #333333;
}
@media (max-width: 750px) {
  input[type=checkbox] + label:before {
    width: 6.6667vw;
    height: 6.6667vw;
    margin-top: -3.2vw;
  }
}
input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 16px;
  border-bottom: 4px solid #df2f2f;
  border-right: 4px solid #df2f2f;
  transform-origin: center; /* y-offset-keyword | x-offset-keyword | z-offset */
  transform: rotate(45deg) translate(-50%, -60%);
}
@media (max-width: 750px) {
  input[type=checkbox]:checked + label:after {
    left: 1.3333vw;
    width: 2.6667vw;
    height: 4.2667vw;
  }
}
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  display: inline-block;
  padding: 5px 10px 5px 40px;
  position: relative;
  font-size: 15px;
}
@media (max-width: 750px) {
  input[type=radio] + label {
    text-align: left;
    font-size: 28px;
    font-size: 7.4666666667vw;
  }
}
input[type=radio] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border: 1px solid #333333;
}
input[type=radio]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 16px;
  border-bottom: 4px solid #df2f2f;
  border-right: 4px solid #df2f2f;
  transform-origin: center; /* y-offset-keyword | x-offset-keyword | z-offset */
  transform: rotate(45deg) translate(-50%, -60%);
}

textarea {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  background-color: #fff;
  width: 100%;
  height: 314px;
  padding: 10px 15px;
  border: 1px solid #51656F;
  font-size: 15px;
}
@media (max-width: 750px) {
  textarea {
    padding: 2vw 4vw;
    height: 32vw;
    font-size: 26px;
    font-size: 6.9333333333vw;
  }
}

button {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  width: 163px;
  padding: 0;
  line-height: 0;
}
@media (max-width: 750px) {
  button {
    width: 40vw;
  }
}

p.error {
  margin-bottom: 0.5em;
}

/*
    Button
*/
a.btn {
  margin: 0 auto;
  display: flex;
  line-height: 1;
  width: 100%;
  max-width: 164px;
  height: 32px;
  justify-content: center;
  align-items: center;
  color: #333333;
  border-radius: 10px;
  border: 1px solid #333333;
  letter-spacing: 0.36em;
  font-size: 15px;
  background-color: #fff;
}
@media (max-width: 750px) {
  a.btn {
    max-width: 43.733vw;
    height: 6.666vw;
    border-radius: 2.666vw;
    font-size: 24px;
    font-size: 6.4vw;
  }
}
a.btn:hover {
  color: #fff;
  background-color: #333333;
  opacity: 1;
}

.anime {
  opacity: 0;
}
.anime.animated {
  animation: slideTitle 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.anime2 {
  opacity: 0;
}
.anime2.animated {
  animation: fadeIn 1.2s linear 0.2s forwards;
}

.anime3 {
  opacity: 0;
}
.anime3.animated {
  animation: slideTitle2 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.animeleft {
  opacity: 0;
}
.animeleft.animated {
  animation: slideIn 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.animeright {
  opacity: 0;
}
.animeright.animated {
  animation: slideIn2 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

#header.init {
  transform: translate(0, -100%);
}
#header.fixed {
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  transform: translate(0, 0);
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideTitle2 {
  0% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn2 {
  0% {
    opacity: 0;
    transform: translate(30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInEnlarge {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleXwidth {
  0% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInLoop {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  60% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInCenter {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3) translate(-50%, -50%);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01) translate(-50%, -50%);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99) translate(-50%, -50%);
  }
  to {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes bounceOut {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInroll {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  20% {
    opacity: 1;
    transform: translate(0, -10px);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    opacity: 0;
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -20deg);
  }
  20% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 10deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 2deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -1deg);
  }
  to {
    opacity: 1;
    transform-origin: left bottom;
    transform: none;
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes shadowSlide {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-15px, -15px);
  }
  20% {
    opacity: 1;
    transform: translate(-15px, -15px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes shadowSlide_sp {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-7px, -7px);
  }
  20% {
    opacity: 1;
    transform: translate(-7px, -7px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes blurInTitle {
  from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes Turnboard {
  from {
    transform: perspective(300px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in-out;
    opacity: 0;
  }
  40% {
    transform: perspective(300px) rotate3d(0, 1, 0, -10deg);
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: perspective(300px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }
  80% {
    transform: perspective(300px) rotate3d(0, 1, 0, -2deg);
  }
  to {
    opacity: 1;
    transform: perspective(300px);
  }
}
@keyframes fuwafuwa {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeOutAnime {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  60% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(0, 0);
  }
}
@keyframes fadeOutAnimeBtn {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-100%, -80%) scale(1, 1);
  }
  60% {
    transform: translate(-100%, -80%) scale(1.2, 1.2);
  }
  100% {
    transform: translate(-50%, -40%) scale(0, 0);
  }
}
@keyframes bounceInDown {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1, 1, 1) translate(0, -40px);
  }
  20% {
    transform: scale3d(1, 1, 1);
  }
  40% {
    transform: scale3d(1.1, 0.9, 1) translate(0, 5px);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.95, 1.05, 1) translate(0, -2px);
  }
  80% {
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(1, 1, 1) translate(0, 0);
    opacity: 1;
  }
}
@keyframes bounceOutUp {
  from, to {
    animation-timing-function: cubic-bezier(0.915, 0.03, 0.91, 0.35);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(0, 0, 1) translate(0, 120px);
    opacity: 0;
  }
}
/*
    common
*/
html,
body {
  width: 100%;
  height: auto;
  font-size: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: center;
  letter-spacing: 0.1em;
  background-image: url("../images/common/bg.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: auto auto;
}
html.hidden,
body.hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

sup {
  vertical-align: super;
  font-size: 80%;
}

.util_sp {
  display: none !important;
}
@media (max-width: 750px) {
  .util_sp {
    display: block !important;
  }
}

.util_pc {
  display: block !important;
}
@media (max-width: 750px) {
  .util_pc {
    display: none !important;
  }
}

@media print {
  img {
    display: none;
  }
}
/*
    Error
*/
p.error {
  color: #df2f2f;
  padding: 0 !important;
}

/*
    PageTop
*/
#pagetop {
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 51px;
  height: 51px;
  z-index: 2;
}
#pagetop > a > img {
  max-width: 51px;
  max-height: 51px;
}

/*
    header
*/
@media (max-width: 750px) {
  header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background-image: url("../images/common/bg.png");
    background-repeat: repeat;
    background-position: center center;
    background-size: auto auto;
  }
}
header#header > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  position: relative;
}
@media (max-width: 750px) {
  header#header > .inner {
    padding: 4vw;
    height: 16vw;
    justify-content: flex-start;
  }
}
header#header > .inner .container_logo {
  width: 100%;
  max-width: 200px;
}
@media (max-width: 750px) {
  header#header > .inner .container_logo {
    max-width: 34.6667vw;
    text-align: left;
  }
}
header#header > .inner .container_logo img {
  width: 100%;
}
header#header > .inner .container_logo > span {
  margin-top: 18px;
  display: block;
  font-size: 10px;
  font-weight: 400;
}
@media (max-width: 750px) {
  header#header > .inner .container_logo > span {
    margin-top: 0.5em;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
header#header > .inner .container_header_link {
  position: absolute;
  top: 18px;
  right: 15px;
}
@media (max-width: 750px) {
  header#header > .inner .container_header_link {
    top: 2.6667vw;
    right: 16vw;
  }
}
header#header > .inner .container_header_link > ul {
  display: flex;
}
header#header > .inner .container_header_link > ul > li {
  padding: 0 5px;
}
@media (max-width: 750px) {
  header#header > .inner .container_header_link > ul > li {
    padding: 0 0.8vw;
  }
}
header#header > .inner .container_header_link > ul > li img.phone {
  width: 138px;
}
@media (max-width: 750px) {
  header#header > .inner .container_header_link > ul > li img.phone {
    width: 29.3333vw;
  }
}
header#header > .inner .container_header_link > ul > li img.map {
  width: 50px;
}
@media (max-width: 750px) {
  header#header > .inner .container_header_link > ul > li img.map {
    width: 10.6667vw;
  }
}
header#header > .inner .container_header_hamburger {
  display: none;
}
@media (max-width: 750px) {
  header#header > .inner .container_header_hamburger {
    display: block;
    position: absolute;
    top: 3.4667vw;
    right: 4vw;
    width: 9.3333vw;
    height: 9.3333vw;
  }
}
@media (max-width: 750px) {
  header#header > .inner .container_header_hamburger a {
    display: block;
    width: 9.3333vw;
    height: 9.3333vw;
    position: relative;
    opacity: 1;
  }
}
header#header > .inner .container_header_hamburger a > span {
  display: block;
  width: 90%;
  height: 2px;
  background-color: #8D002E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  opacity: 1;
  transition: 0.3s ease-in-out;
}
header#header > .inner .container_header_hamburger a > span:nth-of-type(1) {
  top: 30%;
}
header#header > .inner .container_header_hamburger a > span:nth-of-type(3) {
  top: 70%;
}
header#header > .inner .container_header_hamburger a.active > span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header#header > .inner .container_header_hamburger a.active > span:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
header#header > .inner .container_header_hamburger a.active > span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

/*
    footer
*/
footer#footer {
  background-color: #8D002E;
}
footer#footer > .inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 15px 15px 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer#footer > .inner {
    padding: 4vw;
    display: block;
  }
}
footer#footer > .inner .container_footer_link {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  text-align: left;
  font-size: 13px;
  padding-left: 20px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link {
    padding-left: 0;
    font-size: 14px;
    font-size: 3.7333333333vw;
    margin-bottom: 8vw;
  }
}
footer#footer > .inner .container_footer_link a {
  color: #fff;
  display: block;
  position: relative;
}
footer#footer > .inner .container_footer_link ul {
  margin: 0 45px 0 0;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul {
    margin: 0 12vw 0 0;
  }
}
footer#footer > .inner .container_footer_link ul > li {
  padding: 10px 0;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li {
    padding: 3.2vw 0;
  }
}
footer#footer > .inner .container_footer_link ul > li a {
  padding: 0 0 0 20px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li a {
    padding: 0 0 0 5.3333vw;
  }
}
footer#footer > .inner .container_footer_link ul > li a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li a:before {
    width: 4vw;
    height: 4vw;
  }
}
footer#footer > .inner .container_footer_link ul > li ul {
  margin: 5px 0 -15px 20px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li ul {
    margin: 1.3333vw 0 -4vw 5.3333vw;
  }
}
footer#footer > .inner .container_footer_link ul > li ul > li {
  font-size: 11px;
  padding: 5px 0;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li ul > li {
    padding: 1.3333vw 0;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
footer#footer > .inner .container_footer_link ul > li ul > li a {
  padding: 0 0 0 15px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li ul > li a {
    padding: 0 0 0 4vw;
  }
}
footer#footer > .inner .container_footer_link ul > li ul > li a:before {
  content: "";
  display: block;
  width: 5px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_arrow2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_link ul > li ul > li a:before {
    width: 1.3333vw;
    height: 1.8667vw;
  }
}
footer#footer > .inner .container_footer_info {
  text-align: right;
  color: #fff;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info {
    text-align: center;
  }
}
footer#footer > .inner .container_footer_info a {
  color: #fff;
}
footer#footer > .inner .container_footer_info img {
  max-width: 115px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info img {
    max-width: 30.6667vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_phone {
  margin-bottom: 0.5em;
}
footer#footer > .inner .container_footer_info .container_footer_phone a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 15px;
  line-height: 0;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_phone a {
    padding: 0 0 0 4vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_phone a:before {
  content: "";
  display: block;
  width: 8px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_phone.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_phone a:before {
    width: 2.1333vw;
    height: 5.3333vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_phone img {
  width: 100%;
  max-width: 155px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_phone img {
    max-width: 54.6667vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_phone > p {
  font-size: 10px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_phone > p {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_phone > p > span {
  font-weight: bold;
}
footer#footer > .inner .container_footer_info .container_footer_map {
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_map {
    margin-bottom: 2.6667vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_outline > p {
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 1.0714285714;
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_outline > p {
    font-size: 14px;
    font-size: 3.7333333333vw;
    margin-bottom: 2.6667vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_outline > p.companyname {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_outline > p.companyname {
    font-size: 20px;
    font-size: 5.3333333333vw;
    margin-bottom: 2.6667vw;
  }
}
footer#footer > .inner .container_footer_info .container_footer_outline > p.link {
  margin-bottom: 0;
}
footer#footer > .inner .container_footer_info .container_footer_outline > p > span {
  display: block;
  font-size: 12px;
}
@media (max-width: 750px) {
  footer#footer > .inner .container_footer_info .container_footer_outline > p > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
footer#footer > .copyright {
  padding: 18px 15px;
  background-color: #fff;
}
@media (max-width: 750px) {
  footer#footer > .copyright {
    padding: 4vw;
  }
}
footer#footer > .copyright img {
  margin: 0 auto;
  max-width: 350px;
}
@media (max-width: 750px) {
  footer#footer > .copyright img {
    max-width: 90.6667vw;
  }
}

/*
    Navigation
*/
nav#nav {
  background-color: #fff;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  nav#nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1;
    padding: 30vw 4vw 0;
    display: none;
  }
}
nav#nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  nav#nav > ul {
    width: 100%;
    display: block;
  }
}
nav#nav > ul > li a {
  display: block;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  width: 125px;
}
@media (max-width: 750px) {
  nav#nav > ul > li a {
    width: 100%;
    font-size: 15px;
    font-size: 4vw;
    padding: 2vw 0;
  }
}
nav#nav > ul > li a > span {
  margin-top: 0.5em;
  padding-top: 0.5em;
  display: block;
  position: relative;
  color: #8D002E;
  font-size: 10px;
  font-weight: 500;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
nav#nav > ul > li a > span:before {
  content: "";
  display: block;
  width: 49px;
  height: 1px;
  background-color: #8D002E;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 750px) {
  nav#nav > ul > li a > span:before {
    width: 100%;
  }
}
nav#nav > ul > li a.active > span {
  color: #E8CCA9;
}
nav#nav > ul > li a.active > span:before {
  background-color: #E8CCA9;
}
nav#nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.container_navigation {
  height: 80px;
  background-color: #fff;
}
@media (max-width: 750px) {
  .container_navigation {
    height: 16vw;
  }
}

/*
    Style
*/
section.section#index > .ttl_section_h1 {
  padding: 30px 15px;
  font-size: 18px;
  line-height: 1.9444444444;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  section.section#index > .ttl_section_h1 {
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding: 8vw 4vw;
  }
}
section.section#index > .conttainer_mainview ul.container_mainview_slider {
  display: flex;
  justify-content: center;
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .container_mainview_list {
  padding: 0 12px;
  width: 424px;
}
@media (max-width: 750px) {
  section.section#index > .conttainer_mainview ul.container_mainview_slider .container_mainview_list {
    padding: 0 2.1333vw;
    width: 97.6vw;
  }
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .container_mainview_list img {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 750px) {
  section.section#index > .conttainer_mainview ul.container_mainview_slider .container_mainview_list img {
    border-radius: 4vw;
  }
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots {
  margin-top: 10px;
}
@media (max-width: 750px) {
  section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots {
    margin-top: 2.6667vw;
  }
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots > li {
  padding: 0;
  width: auto;
  height: auto;
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots > li button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #E8CCA9;
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots > li button:before {
  content: none;
}
@media (max-width: 750px) {
  section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots > li button {
    width: 3.2vw;
    height: 3.2vw;
  }
}
section.section#index > .conttainer_mainview ul.container_mainview_slider .slick-dots > li.slick-active button {
  background-color: #8D002E;
}
section.section#index > .conttainer_mainview .slick-dotted.slick-slider {
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  section.section#index > .conttainer_mainview .slick-dotted.slick-slider {
    margin-bottom: 13.3333vw;
  }
}
section.section#index > .inner {
  padding: 10px 15px 30px;
}
section.section#index > .inner > p {
  font-size: 16px;
  line-height: 1.9375;
}
@media (max-width: 750px) {
  section.section#index > .inner > p {
    font-size: 15px;
    font-size: 4vw;
  }
}

/*
    Service
*/
section.section#service .ttl_section_h1 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#service .ttl_section_h1 {
    padding: 5.3333vw 0;
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
section.section#service .ttl_section_h1 > span {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  display: block;
}
@media (max-width: 750px) {
  section.section#service .ttl_section_h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#service .ttl_section_h1 + p {
  font-size: 11px;
  line-height: 2.0909090909;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#service .ttl_section_h1 + p {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 5.3333vw;
  }
}
section.section#service .container_service_content {
  margin: 0 auto 30px;
  width: 100%;
  max-width: 940px;
  background-color: #fff;
}
@media (max-width: 750px) {
  section.section#service .container_service_content {
    margin: 0 auto 6.6667vw;
  }
}
section.section#service .container_service_content > .container_title {
  display: flex;
  min-height: 84px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_title {
    display: block;
  }
}
section.section#service .container_service_content > .container_title > h2 {
  width: 180px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 0 30px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_title > h2 {
    font-size: 15px;
    font-size: 4vw;
    padding: 5.3333vw 0 4vw 5.3333vw;
    width: 100%;
  }
}
section.section#service .container_service_content > .container_title > p {
  width: calc(100% - 180px);
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 13px;
  line-height: 2;
  padding: 0 20px 0 35px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_title > p {
    width: 100%;
    font-size: 13px;
    font-size: 3.4666666667vw;
    padding: 5.3333vw;
  }
}
section.section#service .container_service_content > .container_title > p:before {
  content: "";
  display: block;
  width: 13px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #8D002E;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_title > p:before {
    width: 100%;
    height: 1.3333vw;
  }
}
section.section#service .container_service_content > .container_service_lists_wrapper {
  margin: 16px 0 0;
  padding: 0 0 5px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_service_lists_wrapper {
    margin: 4vw 0 0;
  }
}
section.section#service .container_service_content > .container_service_lists_wrapper ul.content_nameprint_lists {
  margin: 0 auto;
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
}
section.section#service .container_service_content > .container_service_lists_wrapper ul.content_nameprint_lists > li {
  width: 260px;
  padding: 14px;
  text-align: center;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_service_lists_wrapper ul.content_nameprint_lists > li {
    width: 50%;
    padding: 2.6667vw;
  }
}
section.section#service .container_service_content > .container_service_lists_wrapper ul.content_pcprint_lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 856px;
  padding: 20px 0;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_service_lists_wrapper ul.content_pcprint_lists {
    padding: 4vw 0;
  }
}
section.section#service .container_service_content > .container_service_lists_wrapper ul.content_pcprint_lists > li {
  width: 214px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_service_lists_wrapper ul.content_pcprint_lists > li {
    width: 50%;
    padding: 2.6667vw;
  }
}
section.section#service .container_service_content > .container_service_lists_wrapper ul.content_labelprint_lists {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 894px;
  padding: 20px 0;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_service_lists_wrapper ul.content_labelprint_lists {
    padding: 4vw 0;
  }
}
section.section#service .container_service_content > .container_service_lists_wrapper ul.content_labelprint_lists > li {
  width: 298px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content > .container_service_lists_wrapper ul.content_labelprint_lists > li {
    width: 50%;
    padding: 2.6667vw;
  }
}
section.section#service .container_service_content .content_nameprint_box {
  margin: 0 auto;
  width: 100%;
  max-width: 150px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_nameprint_box {
    max-width: 100%;
  }
}
section.section#service .container_service_content .content_nameprint_box > p {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.5em;
  margin-right: -3em;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_nameprint_box > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#service .container_service_content .content_nameprint_box > p > span {
  font-size: 11px;
  display: inline-block;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_nameprint_box > p > span {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#service .container_service_content .content_nameprint_box > .thumbnail {
  border: 1px solid #8D002E;
  padding: 2px;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_nameprint_box > .thumbnail {
    padding: 0.5333vw;
  }
}
section.section#service .container_service_content .content_nameprint_box img {
  width: 100%;
  max-width: 131px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_nameprint_box img {
    max-width: 98%;
  }
}
section.section#service .container_service_content .content_pcprint_box {
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_pcprint_box {
    max-width: 100%;
  }
}
section.section#service .container_service_content .content_pcprint_box > p {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_pcprint_box > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#service .container_service_content .content_pcprint_box > .thumbnail {
  border: 1px solid #8D002E;
  padding: 5px;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_pcprint_box > .thumbnail {
    padding: 1.3333vw;
  }
}
section.section#service .container_service_content .content_labelprint_box {
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_labelprint_box {
    max-width: 100%;
  }
}
section.section#service .container_service_content .content_labelprint_box > p {
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0.9em;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_labelprint_box > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#service .container_service_content .content_labelprint_box > .thumbnail {
  border: 1px solid #8D002E;
  padding: 30px 5px;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#service .container_service_content .content_labelprint_box > .thumbnail {
    padding: 4vw 1.3333vw;
  }
}

/*
    Service
*/
section.section#price .ttl_section_h1 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
section.section#price .ttl_section_h1 > span {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  display: block;
}
section.section#price .ttl_section_h1 + p {
  font-size: 11px;
  line-height: 2.0909090909;
  margin-bottom: 20px;
}
section.section#price .container_price_anchor {
  margin-bottom: 10px;
}
section.section#price .container_price_anchor ul.content_price_anchor_lists {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  section.section#price .container_price_anchor ul.content_price_anchor_lists {
    flex-wrap: wrap;
  }
}
section.section#price .container_price_anchor ul.content_price_anchor_lists > li {
  padding: 10px;
}
@media (max-width: 750px) {
  section.section#price .container_price_anchor ul.content_price_anchor_lists > li {
    width: 50%;
    padding: 2.6667vw;
  }
}
section.section#price .container_price_anchor ul.content_price_anchor_lists > li a {
  color: #8D002E;
  display: block;
  font-size: 11px;
  font-weight: 600;
  padding: 0 0 0 20px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#price .container_price_anchor ul.content_price_anchor_lists > li a {
    font-size: 12px;
    font-size: 3.2vw;
    padding: 0 0 0 5.3333vw;
    text-align: left;
  }
}
section.section#price .container_price_anchor ul.content_price_anchor_lists > li a:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_arrow3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#price .container_price_anchor ul.content_price_anchor_lists > li a:before {
    width: 4vw;
    height: 4vw;
  }
}
section.section#price .container_price_content {
  margin: 0 auto 30px;
  width: 100%;
  max-width: 940px;
  background-color: #fff;
  padding: 24px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#price .container_price_content {
    margin: 0 auto 6.6667vw;
    padding: 5.3333vw;
  }
}
section.section#price .container_price_content > h2 {
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 0.5em;
  width: 140px;
  border-bottom: 2px dotted #8D002E;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  section.section#price .container_price_content > h2 {
    font-size: 15px;
    font-size: 4vw;
    width: 37.3333vw;
  }
}
section.section#price .container_price_content > p {
  font-size: 12px;
  line-height: 1.6666666667;
}
@media (max-width: 750px) {
  section.section#price .container_price_content > p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#price .container_price_wrapper {
  padding: 10px 0;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper {
    padding: 2.6667vw 0;
  }
}
section.section#price .container_price_wrapper .container_price_table {
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
  padding: 13px 0;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table {
    padding: 3.4667vw 0;
    overflow: auto;
  }
}
section.section#price .container_price_wrapper .container_price_table h3 {
  font-size: 12pz;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #8D002E;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table h3 {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#price .container_price_wrapper .container_price_table h3 > span {
  font-size: 10px;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table h3 > span {
    font-size: 10px;
    font-size: 2.6666666667vw;
    display: inline-block;
  }
}
section.section#price .container_price_wrapper .container_price_table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #8D002E;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table table {
    width: 750px;
  }
}
section.section#price .container_price_wrapper .container_price_table table td {
  border: 1px solid #8D002E;
  font-size: 10px;
  vertical-align: middle;
  padding: 10px 5px;
  text-align: right;
  width: 65px;
  line-height: 1.2;
}
section.section#price .container_price_wrapper .container_price_table table td:nth-of-type(1) {
  width: 100px;
}
section.section#price .container_price_wrapper .container_price_table2 {
  margin: 0 auto;
  width: 100%;
  max-width: 415px;
  padding: 13px 0;
}
section.section#price .container_price_wrapper .container_price_table2 table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table2 table {
    display: block;
  }
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table2 table tbody {
    display: block;
  }
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table2 table tr {
    display: block;
  }
}
section.section#price .container_price_wrapper .container_price_table2 table td {
  border-bottom: 1px solid #8D002E;
  font-size: 12px;
  vertical-align: middle;
  padding: 10px;
  line-height: 1.2;
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table2 table td {
    display: block;
    width: 100%;
  }
}
@media (max-width: 750px) {
  section.section#price .container_price_wrapper .container_price_table2 table td:nth-of-type(1) {
    border: none;
    padding-bottom: 0;
  }
}
section.section#price .container_price_wrapper .container_price_table2 table td:nth-of-type(2) {
  text-align: right;
}

/*
    Support
*/
section.section#support .ttl_section_h1 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#support .ttl_section_h1 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    padding: 5.3333vw 0;
  }
}
section.section#support .ttl_section_h1 > span {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  display: block;
}
@media (max-width: 750px) {
  section.section#support .ttl_section_h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#support .ttl_section_h1 + p {
  font-size: 11px;
  line-height: 2.0909090909;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#support .ttl_section_h1 + p {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 5.3333vw;
  }
}
section.section#support .container_support_contact {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#support .container_support_contact {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 6.6667vw;
  }
}
section.section#support .container_support_contact ul.container_support_contact_lists {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  section.section#support .container_support_contact ul.container_support_contact_lists {
    flex-wrap: wrap;
  }
}
section.section#support .container_support_contact ul.container_support_contact_lists > li {
  padding: 12px;
}
@media (max-width: 750px) {
  section.section#support .container_support_contact ul.container_support_contact_lists > li {
    padding: 1.6vw 3.2vw;
  }
}
section.section#support .container_support_contact ul.container_support_contact_lists > li img {
  width: 151px;
}
@media (max-width: 750px) {
  section.section#support .container_support_contact ul.container_support_contact_lists > li img {
    width: 40vw;
  }
}
section.section#support .container_support_contact ul.container_support_contact_lists > li a.phone {
  pointer-events: none;
}
@media (max-width: 750px) {
  section.section#support .container_support_contact ul.container_support_contact_lists > li a.phone {
    pointer-events: auto;
  }
}
section.section#support .container_support_anchor {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#support .container_support_anchor {
    margin-bottom: 8vw;
  }
}
section.section#support .container_support_anchor ul.container_support_anchor_lists {
  display: flex;
  justify-content: center;
}
section.section#support .container_support_anchor ul.container_support_anchor_lists > li {
  padding: 10px 40px;
  font-size: 13px;
}
@media (max-width: 750px) {
  section.section#support .container_support_anchor ul.container_support_anchor_lists > li {
    padding: 2.6667vw 5.3333vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#support .container_support_anchor ul.container_support_anchor_lists > li a {
  display: block;
  color: #333333;
  font-weight: bold;
}
section.section#support .container_support_anchor ul.container_support_anchor_lists > li a > span {
  display: block;
  font-size: 10px;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  position: relative;
  margin-top: 0.5em;
  padding-top: 0.5em;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  section.section#support .container_support_anchor ul.container_support_anchor_lists > li a > span {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#support .container_support_anchor ul.container_support_anchor_lists > li a > span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 65px;
  height: 2px;
  background-color: #8D002E;
}
@media (max-width: 750px) {
  section.section#support .container_support_anchor ul.container_support_anchor_lists > li a > span:before {
    width: 17.3333vw;
    height: 2px;
  }
}
section.section#support .container_support_lists_wrapper {
  margin: 0 auto 50px;
  width: 100%;
  max-width: 940px;
}
@media (max-width: 750px) {
  section.section#support .container_support_lists_wrapper {
    margin: 0 auto 13.3333vw;
  }
}
section.section#support .container_support_lists_wrapper > h2 {
  margin: 0 0 10px 15px;
  position: relative;
  padding: 0 0 0 62px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#support .container_support_lists_wrapper > h2 {
    margin: 0 0 2.6667vw 4vw;
    padding: 0 0 0 16vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
section.section#support .container_support_lists_wrapper > h2:before {
  content: "";
  display: block;
  width: 49px;
  height: 42px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media (max-width: 750px) {
  section.section#support .container_support_lists_wrapper > h2:before {
    width: 12.8vw;
    height: 10.9333vw;
  }
}
section.section#support .container_support_lists_wrapper > h2 > span {
  margin-top: 0.25em;
  display: block;
  font-size: 13px;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  section.section#support .container_support_lists_wrapper > h2 > span {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#support .container_support_lists_wrapper#flow > h2:before {
  background-image: url("../images/support/icon_support01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.section#support .container_support_lists_wrapper#qa > h2:before {
  background-image: url("../images/support/icon_support02.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.section#support .container_support_content {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 15px;
}
@media (max-width: 750px) {
  section.section#support .container_support_content {
    margin-bottom: 5.3333vw;
    padding: 4vw;
  }
}
section.section#support .container_support_content > h3 {
  font-size: 17px;
  font-weight: bold;
  color: #8D002E;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 2px dotted #8D002E;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#support .container_support_content > h3 {
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
section.section#support .container_support_content > p {
  font-size: 10px;
  line-height: 2;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#support .container_support_content > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#support .container_support_content > .image {
  text-align: left;
  padding: 10px;
}
@media (max-width: 750px) {
  section.section#support .container_support_content > .image {
    padding: 2.6667vw;
  }
}
section.section#support .container_support_content > ul {
  list-style: none;
  font-size: 10px;
}
@media (max-width: 750px) {
  section.section#support .container_support_content > ul {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#support .container_support_content > ul > li {
  padding: 0 0 0 20px;
  position: relative;
  text-align: left;
  line-height: 1.4;
}
@media (max-width: 750px) {
  section.section#support .container_support_content > ul > li {
    padding: 0 0 0 5.3333vw;
  }
}
section.section#support .container_support_content > ul > li:before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
section.section#support .container_support_flow {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow {
    margin: 4vw 0 0;
  }
}
section.section#support .container_support_flow_box {
  padding: 0 15px 5px 45px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box {
    padding: 0 4vw 1.3333vw 12vw;
  }
}
section.section#support .container_support_flow_box:before {
  content: "";
  display: block;
  width: 33px;
  height: 17px;
  position: absolute;
  top: 25px;
  left: 0;
  background-image: url("../images/support/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box:before {
    width: 8.8vw;
    height: 4.5333vw;
    top: 6.6667vw;
  }
}
section.section#support .container_support_flow_box .icon {
  width: 30px;
  height: 17px;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box .icon {
    width: 8vw;
    height: 4.5333vw;
  }
}
section.section#support .container_support_flow_box .icon img {
  width: auto;
  height: 100%;
}
section.section#support .container_support_flow_box .container_text {
  max-width: 200px;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box .container_text {
    max-width: 100%;
  }
}
section.section#support .container_support_flow_box .container_text > p {
  text-align: left;
  font-size: 10px;
  line-height: 1.6;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box .container_text > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#support .container_support_flow_box .container_text.long {
  max-width: 400px;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box .container_text.long {
    max-width: 100%;
  }
}
section.section#support .container_support_flow_box .container_text.semilong {
  max-width: 250px;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box .container_text.semilong {
    max-width: 100%;
  }
}
section.section#support .container_support_flow_box:nth-of-type(1) {
  padding: 0 15px 5px 0;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box:nth-of-type(1) {
    padding: 0 4vw 1.3333vw 0;
    margin-left: 12vw;
  }
}
section.section#support .container_support_flow_box:nth-of-type(1):before {
  content: none;
}
section.section#support .container_support_flow_box:nth-of-type(4) {
  margin-left: 50px;
}
@media (max-width: 750px) {
  section.section#support .container_support_flow_box:nth-of-type(4) {
    margin-left: 0;
  }
}

/*
    Company
*/
section.section#company .ttl_section_h1 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#company .ttl_section_h1 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    padding: 5.3333vw 0;
  }
}
section.section#company .ttl_section_h1 > span {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  display: block;
}
@media (max-width: 750px) {
  section.section#company .ttl_section_h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#company .ttl_section_h1 + p {
  font-size: 11px;
  line-height: 2.0909090909;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#company .ttl_section_h1 + p {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 5.3333vw;
  }
}
section.section#company .container_company_anchor {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#company .container_company_anchor {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 6.6667vw;
  }
}
section.section#company .container_company_anchor ul.container_company_anchor_lists {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  section.section#company .container_company_anchor ul.container_company_anchor_lists {
    flex-wrap: wrap;
  }
}
section.section#company .container_company_anchor ul.container_company_anchor_lists > li {
  padding: 12px;
}
@media (max-width: 750px) {
  section.section#company .container_company_anchor ul.container_company_anchor_lists > li {
    padding: 1.6vw 3.2vw;
  }
}
section.section#company .container_company_anchor ul.container_company_anchor_lists > li img {
  width: 151px;
}
@media (max-width: 750px) {
  section.section#company .container_company_anchor ul.container_company_anchor_lists > li img {
    width: 40vw;
  }
}
section.section#company .container_company_lists_wrapper {
  margin-bottom: 60px;
  padding: 45px 0 0;
}
@media (max-width: 750px) {
  section.section#company .container_company_lists_wrapper {
    margin-bottom: 16vw;
    padding: 12vw 0 0;
  }
}
section.section#company .container_company_lists_wrapper > h2 {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#company .container_company_lists_wrapper > h2 {
    font-size: 14px;
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333vw;
  }
}
section.section#company .container_company_lists_wrapper > h2:before {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 35px;
  height: 35px;
}
@media (max-width: 750px) {
  section.section#company .container_company_lists_wrapper > h2:before {
    top: -10.6667vw;
    width: 9.3333vw;
    height: 9.3333vw;
  }
}
section.section#company .container_company_lists_wrapper > h2 > span {
  margin-top: 0.25em;
  display: block;
  font-size: 13px;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  section.section#company .container_company_lists_wrapper > h2 > span {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#company .container_company_lists_wrapper#outline > h2:before {
  background-image: url("../images/company/img_icon01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.section#company .container_company_lists_wrapper#access > h2:before {
  background-image: url("../images/company/img_icon02.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.section#company .container_company_content {
  margin: 0 auto;
  width: 100%;
  max-width: 694px;
  padding: 25px;
  background-color: #fff;
}
@media (max-width: 750px) {
  section.section#company .container_company_content {
    padding: 6.6667vw;
  }
}
section.section#company .container_company_content .content_company_map {
  position: relative;
}
section.section#company .container_company_content .content_company_map:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 65.51%;
}
section.section#company .container_company_content .content_company_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section#company .container_company_content .table_outline {
  text-align: left;
  font-size: 12px;
  width: 100%;
}
@media (max-width: 750px) {
  section.section#company .container_company_content .table_outline {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#company .container_company_content .table_outline tr {
  border-bottom: 1px dashed #8D002E;
}
section.section#company .container_company_content .table_outline th {
  text-align: left;
  vertical-align: middle;
  width: 120px;
  padding: 10px;
  line-height: 1.75;
}
@media (max-width: 750px) {
  section.section#company .container_company_content .table_outline th {
    width: 20vw;
    padding: 2.6667vw;
  }
}
section.section#company .container_company_content .table_outline td {
  text-align: left;
  vertical-align: middle;
  width: 515px;
  padding: 10px;
  line-height: 1.75;
}
@media (max-width: 750px) {
  section.section#company .container_company_content .table_outline td {
    width: 66.6667vw;
    padding: 2.6667vw;
  }
}
section.section#company .container_company_content ul {
  display: flex;
  width: 100%;
  font-size: 12px;
  border-bottom: 1px dashed #8D002E;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
@media (max-width: 750px) {
  section.section#company .container_company_content ul {
    font-size: 12px;
    font-size: 3.2vw;
    display: block;
  }
}
section.section#company .container_company_content ul > li {
  width: 50%;
  line-height: 1.75;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#company .container_company_content ul > li {
    width: 100%;
  }
}
section.section#company .container_company_content ul > li:nth-of-type(1) {
  padding-bottom: 1em;
}

/*
    Contact
*/
section.section#contact .ttl_section_h1 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#contact .ttl_section_h1 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    padding: 5.3333vw 0;
  }
}
section.section#contact .ttl_section_h1 > span {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  display: block;
}
@media (max-width: 750px) {
  section.section#contact .ttl_section_h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#contact .ttl_section_h1 + p {
  font-size: 11px;
  line-height: 2.0909090909;
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#contact .ttl_section_h1 + p {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 5.3333vw;
  }
}
section.section#contact .container_contact_wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 860px;
}
section.section#contact .container_contact_wrapper > .container_contact_wrapper_inner {
  padding: 50px 15px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_wrapper > .container_contact_wrapper_inner {
    padding: 13.3333vw 4vw;
  }
}
section.section#contact .container_contact_wrapper > .container_contact_wrapper_inner:before {
  content: "";
  display: block;
  width: 43px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/contact/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_wrapper > .container_contact_wrapper_inner:before {
    width: 11.2vw;
    height: 7.4667vw;
  }
}
section.section#contact .container_contact_wrapper > .container_contact_wrapper_inner .txt_attend {
  font-size: 12px;
  color: #8D002E;
  margin-top: 0.5em;
  text-align: right;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_wrapper > .container_contact_wrapper_inner .txt_attend {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#contact .container_contact_form {
  display: flex;
  width: 100%;
  text-align: left;
  font-size: 15px;
  padding: 7px 0;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_form {
    display: block;
    padding: 1.8667vw 0;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
section.section#contact .container_contact_form > .ttl {
  width: 180px;
  padding-top: 0.75em;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_form > .ttl {
    width: 100%;
    padding-bottom: 0.5em;
  }
}
section.section#contact .container_contact_form > .input {
  width: 650px;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_form > .input {
    width: 100%;
  }
}
section.section#contact .container_contact_form > .input > span.required {
  display: inline-block;
  font-size: 12px;
  color: #8D002E;
  margin-left: 0.5em;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_form > .input > span.required {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#contact .container_contact_form.long {
  display: block;
}
section.section#contact .container_contact_form.long > .ttl {
  width: 100%;
  padding-bottom: 1em;
}
section.section#contact .container_contact_form.long > .input {
  width: 100%;
}
section.section#contact .authentication {
  margin-top: 1em;
}
section.section#contact .btn_submit {
  margin-top: 1em;
}
section.section#contact .container_contact_form_thanks {
  line-height: 1.75;
  font-size: 15px;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_form_thanks {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#contact .container_contact_form_thanks > p.under_ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  section.section#contact .container_contact_form_thanks > p.under_ttl {
    font-size: 18px;
    font-size: 4.8vw;
  }
}

/*
    Privacy
*/
section.section#privacy .ttl_section_h1 {
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8D002E;
  font-family: "Baloo Chettan 2", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#privacy .ttl_section_h1 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    padding: 5.3333vw 0;
  }
}
section.section#privacy .ttl_section_h1 > span {
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  display: block;
}
@media (max-width: 750px) {
  section.section#privacy .ttl_section_h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#privacy .ttl_section_h1 + p {
  font-size: 11px;
  line-height: 2.0909090909;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#privacy .ttl_section_h1 + p {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin-bottom: 5.3333vw;
  }
}
section.section#privacy .container_privacy_wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 945px;
  padding: 0 15px 50px;
}
@media (max-width: 750px) {
  section.section#privacy .container_privacy_wrapper {
    padding: 0 4vw 13.3333vw;
  }
}
section.section#privacy .container_privacy_wrapper > .container_privacy_inner {
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 750px) {
  section.section#privacy .container_privacy_wrapper > .container_privacy_inner {
    padding: 6.6667vw;
  }
}
section.section#privacy .content_privacy_box {
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#privacy .content_privacy_box {
    margin-bottom: 8vw;
  }
}
section.section#privacy .content_privacy_box > h2 {
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 0.5em;
  margin-bottom: 0.8em;
  border-bottom: 1px dashed #8D002E;
}
@media (max-width: 750px) {
  section.section#privacy .content_privacy_box > h2 {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#privacy .content_privacy_box > p {
  font-size: 10px;
  line-height: 1.6;
}
@media (max-width: 750px) {
  section.section#privacy .content_privacy_box > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#privacy .content_privacy_box > p span.circle {
  color: #8D002E;
}
section.section#privacy .content_privacy_box:last-of-type {
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  section.section#privacy .content_privacy_box:last-of-type {
    margin-bottom: 2.6667vw;
  }
}/*# sourceMappingURL=style.css.map */