@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.4666666667vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #333;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.75;
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

section {
  padding: 9.4444444444rem 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 8.8461538462rem 0;
  }
}

dt, strong {
  font-weight: inherit;
}

p, dd {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Objects
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  position: relative;
  width: 80vw;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
.inner .container {
  width: 83.3333333333%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner .container {
    width: 100%;
  }
}

.dot {
  padding-bottom: 1.1111111111rem;
  position: relative;
}
.dot::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3333333333rem;
  background: -webkit-radial-gradient(circle farthest-side, #ccc, #ccc 50%, transparent 50%, transparent);
  background: radial-gradient(circle farthest-side, #ccc, #ccc 50%, transparent 50%, transparent);
  background-size: 0.3333333333rem 0.3333333333rem;
}
@media only screen and (max-width: 767px) {
  .dot::after {
    height: 0.2307692308rem;
    background-size: 0.2307692308rem 0.2307692308rem;
  }
}
.dot:not(:last-of-type) {
  margin-bottom: 1.1111111111rem;
}

/*  links
-------------------------------------------------*/
.btn {
  display: block;
  width: 6.6666666667rem;
  height: 1.9444444444rem;
  line-height: 1.9444444444rem;
  color: #fff;
  font-size: 0.8333333333rem;
  font-weight: 500;
  text-align: center;
}
.btn span {
  color: #fff;
  padding-left: 1.1666666667rem;
  position: relative;
}
.btn span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8888888889rem;
  height: 0.8888888889rem;
}
.btn.mail {
  background: #a90d23;
}
.btn.mail span::before {
  background: url(../img/icon-mail.svg) no-repeat left center/contain;
}
.btn.line {
  background: #009f00;
}
.btn.line span::before {
  background: url(../img/icon-line.svg) no-repeat left center/contain;
}
.btn.more {
  width: 16.6666666667rem;
  height: 3.3333333333rem;
  line-height: 3.3333333333rem;
  border-radius: 1.6666666667rem;
  background: #333;
  font-size: 1.3333333333rem;
  position: relative;
}
.btn.more::after {
  position: absolute;
  content: "";
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  top: 50%;
  right: 1.6666666667rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.more:hover::after {
  right: 1.1111111111rem;
}
.btn__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  .btn__wrap {
    margin-top: 1.9230769231rem;
  }
}

/*  headings
-------------------------------------------------*/
h2 {
  text-align: center;
  margin-bottom: 3.8888888889rem;
  font-size: 2.6666666667rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  h2 {
    margin-bottom: 2.6923076923rem;
    font-size: 2.3076923077rem;
  }
}
h2 span {
  font-size: 0.8888888889rem;
  color: #a90d23;
  display: block;
  position: relative;
  padding-top: 1.1111111111rem;
  margin-top: 0.5555555556rem;
}
h2 span::before {
  position: absolute;
  content: "";
  width: 2.7777777778rem;
  height: 0.2777777778rem;
  background: #a90d23;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*  scroll
-------------------------------------------------*/
.scroll_item,
.scroll_list_item,
.scroll_fade_item {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
.scroll_item.scrollActive,
.scroll_list_item.scrollActive,
.scroll_fade_item.scrollActive {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}

.fadeTop {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.fadeTop.scrollActive {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeLeft,
.fadeRight {
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
}
.fadeLeft.scrollActive,
.fadeRight.scrollActive {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadeRight {
  -webkit-transform: translate(-50px, 0);
          transform: translate(-50px, 0);
}

/*  form
-------------------------------------------------*/
#mfp_warning {
  padding: 1em;
  color: #a90d23;
  background: #fff;
}

.mfp_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  .mfp_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1.9230769231rem;
  }
  .mfp_buttons button:first-child {
    margin-bottom: 1.1538461538rem;
  }
}

#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
}

#mfp_overlay_background {
  background: #333;
  display: none;
  z-index: 10000;
}

#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}
#mfp_overlay #mfp_overlay_inner {
  background: #fff;
  padding: 5.5555555556rem;
  margin: auto;
  width: 66.6666666667vw;
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner {
    padding: 1.9230769231rem;
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
#mfp_overlay #mfp_overlay_inner h4 {
  font-size: 1.6666666667rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner h4 {
    font-size: 1.3846153846rem;
  }
}
#mfp_overlay #mfp_overlay_inner table {
  width: 100%;
}
#mfp_overlay #mfp_overlay_inner table tr {
  border-bottom: solid 1px #ccc;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner table tr {
    display: block;
  }
}
#mfp_overlay #mfp_overlay_inner table th,
#mfp_overlay #mfp_overlay_inner table td {
  padding: 1.1111111111rem 0;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner table th,
  #mfp_overlay #mfp_overlay_inner table td {
    width: 100%;
    padding: 0.7692307692rem 0;
    display: list-item;
    list-style: none;
  }
}
@media print, screen and (min-width: 768px) {
  #mfp_overlay #mfp_overlay_inner table th {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner table th {
    padding: 0.7692307692rem 0 0;
  }
}
@media print, screen and (min-width: 768px) {
  #mfp_overlay #mfp_overlay_inner table td {
    width: 70%;
  }
}

#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #333;
  position: absolute;
}

#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  background-image: url(../img/loading.svg);
}

input,
select,
textarea {
  width: 100%;
  background: #f2f2f2;
  border: solid 1px #f2f2f2;
  padding: 0.5555555556rem;
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #999;
}

input[type=checkbox], input[type=radio] {
  display: none;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  width: 0.8333333333rem;
  height: 0.5555555556rem;
  border-left: solid 3px #a90d23;
  border-bottom: solid 3px #a90d23;
  left: 0.1111111111rem;
  bottom: 0.4444444444rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  background: #333;
  border-radius: 50%;
  left: 0.2777777778rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
input.problem {
  background: rgba(169, 13, 35, 0.1);
}
input.problem:focus {
  border-color: #a90d23;
}

label {
  position: relative;
  display: inline-block;
}
label::after {
  position: absolute;
  content: "";
  right: 0.8333333333rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
label.select {
  width: 100%;
}
label.select::after {
  width: 0.7777777778rem;
  height: 0.3888888889rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #ccc;
}
label.date::after {
  width: 1.1111111111rem;
  height: 1.1666666667rem;
  background: url(../img/icon-calendar.svg) no-repeat right center/contain;
}
label span {
  position: relative;
  padding-left: 1.6666666667rem;
}
label span::before {
  position: absolute;
  content: "";
  width: 1.1111111111rem;
  height: 1.1111111111rem;
  border: solid 1px #333;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
label span.rd::before {
  border-radius: 50%;
}

textarea {
  width: 100% !important;
  min-height: 11.1111111111rem;
}

button {
  display: inline-block;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 22.2222222222rem;
  height: 4.4444444444rem;
  line-height: 4.4444444444rem;
  border-radius: 2.2222222222rem;
  text-align: center;
  font-size: 1.6666666667rem;
  font-weight: 500;
  position: relative;
}
button::after {
  position: absolute;
  content: "";
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  width: 0.8333333333rem;
  height: 0.8333333333rem;
  right: 1.6666666667rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
button:hover::after {
  right: 1.1111111111rem;
}
button::-moz-focus-inner {
  border: 0;
}
button[disabled] {
  border-color: #ccc;
  background: #ccc !important;
  cursor: default;
}
button[disabled]::after {
  right: 1.6666666667rem;
}
button#submit, button#submit_btn {
  background: #094;
}
button#mfp_button_send {
  background: #a90d23;
}
button#mfp_button_cancel {
  background: #999;
  width: 13.3333333333rem;
  margin-right: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  button#mfp_button_cancel {
    margin-right: 0.7692307692rem;
  }
}
button#mfp_button_cancel::after {
  display: none;
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
header .logo {
  width: 6.6666666667rem;
}
@media only screen and (max-width: 767px) {
  header .logo {
    width: 4.6153846154rem;
  }
}
header .header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1.6666666667rem 1.6666666667rem 0 0;
}
@media only screen and (max-width: 767px) {
  header .header__right {
    padding: 1.1538461538rem 1.1538461538rem 0 0;
  }
}
header .header__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header__links > a:first-child {
  margin-right: 0.5555555556rem;
}
header .header__links .lang {
  margin-left: 0.5555555556rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
header .header__links .lang li {
  color: #fff;
}
header .header__links .lang li:not(:last-child)::after {
  content: "/ ";
  margin: 0 0.5em;
}
header .header__links .lang li a {
  font-size: 0.8888888889rem;
  color: #fff;
  opacity: 0.5;
}
header .header__links .lang li a:hover {
  opacity: 1;
}
header .header__links .lang li:not(:first-child) a {
  pointer-events: none;
}
header nav {
  margin-top: 1.6666666667rem;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  header nav {
    margin-top: 1.1538461538rem;
  }
}
header nav.is-active {
  opacity: 1;
  visibility: visible;
}
header nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
header nav ul li {
  height: 1.1111111111rem;
}
header nav ul li:not(:last-child) {
  margin-bottom: 0.5555555556rem;
  position: relative;
}
header nav ul li:not(:last-child)::before {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 0.0555555556rem;
  height: 1.1111111111rem;
  right: 0.2777777778rem;
  top: 0.8333333333rem;
}
@media only screen and (max-width: 767px) {
  header nav ul li:not(:last-child)::before {
    background: #fff;
    width: 0.0384615385rem;
  }
}
header nav ul li a {
  font-size: 0.8888888889rem;
  padding-right: 1.6666666667rem;
  position: relative;
  text-align: right;
  color: #fff;
  opacity: 0.5;
}
header nav ul li a.nav-active {
  opacity: 1;
}
header nav ul li a::after {
  position: absolute;
  content: "";
  width: 0.6111111111rem;
  height: 0.6111111111rem;
  border-radius: 50%;
  background: #fff;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header nav ul li a:hover {
  opacity: 1;
}
header nav.bk {
  margin-top: 0;
  position: fixed;
  top: 4.7222222222rem;
  right: 1.6666666667rem;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  header nav.bk {
    top: 4.2521367521rem;
    right: 1.1538461538rem;
  }
}
header nav.bk li:not(:last-child)::before {
  background: rgba(51, 51, 51, 0.5);
}
@media only screen and (max-width: 767px) {
  header nav.bk li:not(:last-child)::before {
    background: #333;
  }
}
header nav.bk li a {
  color: #333;
}
header nav.bk li a::after {
  background: #333;
}

/*  MV
-------------------------------------------------*/
#mv {
  padding: 0;
  position: relative;
  background: url(../img/mv.jpg) no-repeat center center/cover;
  height: 100vh;
  height: 100svh;
}
@media only screen and (max-width: 767px) {
  #mv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 4.6153846154rem;
    background-image: url(../img/mv_sp.jpg);
  }
}
#mv .mv__ttl {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  #mv .mv__ttl {
    position: absolute;
    right: 1.6666666667rem;
    bottom: 1.6666666667rem;
  }
}
#mv .mv__ttl h1 {
  font-size: 3.4444444444rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2.2222222222rem;
  text-align: right;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
@media only screen and (max-width: 767px) {
  #mv .mv__ttl h1 {
    font-size: 2.7692307692rem;
    text-align: center;
    margin-bottom: 1.5384615385rem;
  }
}
#mv .mv__ttl p {
  font-size: 0.8888888889rem;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  #mv .mv__ttl p {
    font-size: 1rem;
    text-align: center;
  }
}

/*  top__articles
-------------------------------------------------*/
#top__articles {
  background: #f2f2f2;
}
#top__articles .inner p {
  text-align: center;
  margin-bottom: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #top__articles .inner p {
    margin-bottom: 2.6923076923rem;
  }
}
#top__articles .inner .articles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #top__articles .inner .articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.6923076923rem;
  }
}
#top__articles .inner .articles figure {
  width: 41.6666666667%;
}
@media only screen and (max-width: 767px) {
  #top__articles .inner .articles figure {
    width: 19.2307692308rem;
  }
}
#top__articles .inner .articles__list {
  width: 52.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  #top__articles .inner .articles__list {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#top__articles .inner .articles__list ul {
  width: 100%;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #top__articles .inner .articles__list ul {
    margin-bottom: 2.6923076923rem;
  }
}
#top__articles .inner .articles__list ul li dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.7777777778rem;
  color: #666;
}
#top__articles .inner .articles__list ul li dl dt span {
  display: block;
  border: solid 1px #666;
  padding: 0.1666666667rem 0.2777777778rem;
  font-size: 0.6666666667rem;
  margin-left: 0.5555555556rem;
}
#top__articles .inner .articles__list ul li dl dd {
  font-size: 1.3333333333rem;
  font-weight: 600;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}

/*  top__news
-------------------------------------------------*/
#top__news {
  background: #f2f2f2;
  padding: 3.8888888889rem 0;
}
@media only screen and (max-width: 767px) {
  #top__news {
    padding: 2.6923076923rem 0;
  }
}
#top__news .inner .container {
  background: #fff;
  border-radius: 1.1111111111rem;
  padding: 1.6666666667rem 11.6666666667rem 1.6666666667rem 5.5555555556rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container {
    padding: 1.1538461538rem 8.0769230769rem 1.1538461538rem 3.8461538462rem;
  }
}
#top__news .inner .container .slide-arrow {
  position: absolute;
  top: 50%;
  border-right: solid 0.1666666667rem #a90d23;
  border-bottom: solid 0.1666666667rem #a90d23;
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container .slide-arrow {
    border-right-width: 0.1153846154rem;
    border-bottom-width: 0.1153846154rem;
  }
}
#top__news .inner .container .slide-arrow.prev {
  left: -2.7777777778rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container .slide-arrow.prev {
    left: -1.9230769231rem;
  }
}
#top__news .inner .container .slide-arrow.next {
  right: -2.7777777778rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container .slide-arrow.next {
    right: -1.9230769231rem;
  }
}
#top__news .inner .container dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#top__news .inner .container dl dt {
  width: 6.1111111111rem;
  font-size: 0.8888888889rem;
  color: #666;
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container dl dt {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
#top__news .inner .container dl dd {
  line-height: 1.2;
  width: 32.2222222222rem;
  font-size: 0.8888888889rem;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container dl dd {
    width: 100%;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
#top__news .inner .container > a {
  font-size: 0.8888888889rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #top__news .inner .container > a {
    right: 1.9230769231rem;
  }
}

/*  Intro
-------------------------------------------------*/
#intro .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 9.4444444444rem;
}
@media only screen and (max-width: 767px) {
  #intro .inner {
    padding-bottom: 8.8461538462rem;
  }
}
#intro .inner figure {
  width: 11.1111111111rem;
  margin-bottom: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #intro .inner figure {
    width: 11.5384615385rem;
    margin-bottom: 2.6923076923rem;
  }
}
#intro .inner h2 {
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  #intro .inner h2 {
    font-size: 1.9230769231rem;
  }
}
@media print, screen and (min-width: 768px) {
  #intro .inner p {
    text-align: center;
  }
}
#intro .slider {
  width: 96%;
  margin: 0 auto 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #intro .slider {
    margin: 0 auto 2.6923076923rem;
  }
}
#intro .slider li figure {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 140/75;
  border-radius: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #intro .slider li figure {
    border-radius: 1.9230769231rem;
    aspect-ratio: 4/3;
  }
}
#intro .slider li figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
#intro .slider .dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #intro .slider .dots {
    margin-top: 2.6923076923rem;
  }
}
#intro .slider .dots li button {
  width: 1.1111111111rem;
  height: 1.1111111111rem;
  border-radius: 50%;
  background: #ccc;
  text-indent: -9999px;
}
@media only screen and (max-width: 767px) {
  #intro .slider .dots li button {
    width: 0.7692307692rem;
    height: 0.7692307692rem;
  }
}
#intro .slider .dots li button::after {
  display: none;
}
#intro .slider .dots li.slick-active button {
  background: #333;
}
#intro .slider .dots li:not(:last-child) {
  margin-right: 1.1538461538rem;
}
@media only screen and (max-width: 767px) {
  #intro .slider .dots li:not(:last-child) {
    margin-right: 1.1538461538rem;
  }
}
#intro dl {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #intro dl {
    width: 66.6666666667vw;
    max-width: 1000px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #intro dl {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
#intro dl dt {
  font-size: 1.6666666667rem;
  font-weight: 600;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #intro dl dt {
    font-size: 1.8461538462rem;
    margin-bottom: 1.5384615385rem;
    line-height: 1.4;
  }
}
#intro dl dd {
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  #intro dl dd {
    width: 26.6666666667rem;
    font-size: 0.8888888889rem;
  }
}

/*  SERVICE
-------------------------------------------------*/
#service {
  background: #f2f2f2;
}
#service .inner h2 + p {
  text-align: center;
  margin-bottom: 3.8888888889rem;
}
@media only screen and (max-width: 767px) {
  #service .inner h2 + p {
    margin-bottom: 1.9230769231rem;
  }
}
#service .inner ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6666666667rem 0.8333333333rem;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #service .inner ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.3076923077rem;
    margin-bottom: 1.9230769231rem;
  }
}
#service .inner ul li figure {
  height: 0;
  padding-top: 100%;
  border-radius: 50%;
  background: #a90d23;
  overflow: hidden;
  position: relative;
}
#service .inner ul li figure img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.4444444444rem;
  height: 4.4444444444rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  #service .inner ul li figure img {
    width: 3.8461538462rem;
    height: 3.8461538462rem;
  }
}
#service .inner ul li p {
  text-align: center;
  font-size: 0.7777777778rem;
  font-weight: 500;
  margin-top: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #service .inner ul li p {
    font-size: 0.7692307692rem;
    margin-top: 0.7692307692rem;
  }
}
#service .inner h3 {
  color: #a90d23;
  font-size: 1.3333333333rem;
  font-weight: 600;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #service .inner h3 {
    margin-bottom: 1.9230769231rem;
    line-height: 1.4;
  }
}
#service .inner .flow {
  background: #fff;
  padding: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #service .inner .flow {
    padding: 1.9230769231rem;
  }
}
#service .inner .flow h3 {
  text-align: center;
}
#service .inner .flow ol {
  counter-reset: flow;
}
#service .inner .flow ol li:not(:last-child) {
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #service .inner .flow ol li:not(:last-child) {
    margin-bottom: 3.0769230769rem;
  }
}
#service .inner .flow ol li dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #service .inner .flow ol li dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#service .inner .flow ol li dl dt {
  width: 14.4444444444rem;
  padding-left: 5.5555555556rem;
  font-size: 1.1111111111rem;
  position: relative;
  counter-increment: flow;
}
@media only screen and (max-width: 767px) {
  #service .inner .flow ol li dl dt {
    margin-bottom: 0.3846153846rem;
  }
}
#service .inner .flow ol li dl dt::before, #service .inner .flow ol li dl dt::after {
  position: absolute;
  left: 0;
}
#service .inner .flow ol li dl dt::before {
  content: "STEP " counter(flow, decimal-leading-zero);
  color: #a90d23;
  font-size: 0.7777777778rem;
  top: 0;
}
#service .inner .flow ol li dl dt::after {
  content: "";
  width: 4.4444444444rem;
  height: 1px;
  background: #a90d23;
  bottom: 0.2em;
}
#service .inner .flow ol li dl dd {
  font-size: 0.7777777778rem;
}
@media print, screen and (min-width: 768px) {
  #service .inner .flow ol li dl dd {
    width: 45.5555555556rem;
  }
}
#service .inner .area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  #service .inner .area {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: url(../img/area.svg) no-repeat right center/22.2222222222rem;
    min-height: 23.6666666667rem;
  }
  #service .inner .area p {
    width: 31.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  #service .inner .area {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #service .inner .area figure {
    width: 80%;
    margin-top: 1.9230769231rem;
  }
}

/*  CASE STUDY
-------------------------------------------------*/
#case .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3.8888888889rem;
}
#case .inner p {
  text-align: center;
}
#case .case__slider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3.8888888889rem;
}
#case .case__slider li {
  height: 12.2222222222rem;
  background: #f2f2f2;
  padding: 1.6666666667rem 0;
  text-align: center;
  font-size: 1.3333333333rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #case .case__slider li {
    height: 9.2307692308rem;
    padding: 1.1538461538rem 0;
    font-size: 0.9230769231rem;
    margin-right: 0.7692307692rem;
  }
}
#case .case__slider li p {
  text-align: center;
  line-height: 1.4;
}
#case .case__slider li strong {
  color: #a90d23;
  font-size: 5.5555555556rem;
  letter-spacing: 0;
  height: 0.8em;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #case .case__slider li strong {
    font-size: 4.6153846154rem;
    margin-bottom: 0.1em;
  }
}
#case .case {
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  #case .case {
    width: 66.6666666667vw;
    max-width: 1000px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #case .case {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  #case .case li {
    width: 26.9444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  #case .case li:not(:last-child) {
    margin-bottom: 2.6923076923rem;
  }
}
#case .case li figure {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.1111111111rem;
}
#case .case li figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
#case .case li small {
  display: block;
  color: #a90d23;
  font-size: 0.9444444444rem;
}
#case .case li h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0.3em 0;
}
@media only screen and (max-width: 767px) {
  #case .case li h3 {
    font-size: 1.3846153846rem;
  }
}
#case .case li span {
  display: block;
  color: 666;
}
#case .case li a {
  display: block;
}
#case .case li a:hover figure img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
@media only screen and (max-width: 767px) {
  #case + figure {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
  }
  #case + figure img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*  NEWS
-------------------------------------------------*/
#news .inner .container dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #news .inner .container dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#news .inner .container dl dt {
  font-size: 0.7777777778rem;
  color: #666;
  padding-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  #news .inner .container dl dt {
    font-size: 0.9230769231rem;
    padding-top: 0;
    margin-bottom: 1em;
  }
}
@media print, screen and (min-width: 768px) {
  #news .inner .container dl dd {
    width: 48.8888888889rem;
  }
}

/*  COMPANY
-------------------------------------------------*/
#company {
  background: #f2f2f2;
}
@media print, screen and (min-width: 768px) {
  #company .inner .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  #company .inner .container .data {
    width: 30.5555555556rem;
  }
}
@media only screen and (max-width: 767px) {
  #company .inner .container .data {
    margin-bottom: 1.9230769231rem;
  }
}
#company .inner .container .data dl dt {
  color: #a90d23;
  font-size: 0.8888888889rem;
  margin-bottom: 0.5em;
}
#company .inner .container .data dl dd {
  line-height: 1.4;
}
#company .inner .container .data dl dd a {
  letter-spacing: 0.05em;
  color: #a90d23;
  text-decoration: underline;
}
#company .inner .container .map {
  width: 22.2222222222rem;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #company .inner .container .map {
    width: 100%;
    height: 0;
    padding-top: 66.6666666667%;
  }
}
#company .inner .container .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*  CONTACT
-------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  #contact .inner .container {
    width: 58.3333333333%;
  }
}
#contact .inner .container h3 {
  font-size: 1.3333333333rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container h3 {
    line-height: 1.4;
    margin-bottom: 1.1538461538rem;
  }
}
#contact .inner .container h3 span {
  display: block;
  color: #a90d23;
  font-size: 1rem;
  margin-bottom: 1.1111111111rem;
}
#contact .inner .container p {
  text-align: center;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container p {
    margin-bottom: 1.9230769231rem;
  }
}
#contact .inner .container p small {
  color: #a90d23;
  display: block;
}
#contact .inner .container p strong {
  font-weight: 500;
  font-size: 120%;
}
#contact .inner .container p strong a {
  color: #a90d23;
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container dl dt:not(.label) {
    padding-top: 1em;
  }
}
@media only screen and (max-width: 767px) {
  #contact .inner .container dl dt:not(.label) {
    margin-bottom: 0.5em;
  }
}
#contact .inner .container dl dt.label {
  line-height: 1.8;
}
#contact .inner .container dl dt span {
  padding-right: 2.7777777778rem;
  position: relative;
}
#contact .inner .container dl dt span::after {
  position: absolute;
  content: "必須";
  background: #a90d23;
  color: #fff;
  font-size: 0.6666666667rem;
  text-align: center;
  width: 2.2222222222rem;
  height: 1.1111111111rem;
  line-height: 1.1111111111rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container dl dd {
    width: 27.7777777778rem;
  }
}
#contact .inner .container dl dd ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#contact .inner .container dl dd ul:not(:last-child) {
  margin-bottom: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container dl dd ul:not(:last-child) {
    margin-bottom: 0.7692307692rem;
  }
}
#contact .inner .container dl dd ul li {
  width: 13.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container dl dd ul li {
    width: calc((100% - 0.7692307692rem) / 2);
  }
}
#contact .inner .container dl dd .mfp_err {
  color: #a90d23;
  margin-top: 0.5em;
  font-size: 90%;
}
#contact .inner .container .agree {
  margin-top: 1.6666666667rem;
  text-align: center;
}
#contact .inner .container .agree a {
  color: #a90d23;
  text-decoration: underline;
}

/*  Privacy policy
-------------------------------------------------*/
#privacy .inner .container h3 {
  font-size: 1.3333333333rem;
  font-weight: 500;
  margin-top: 2.7777777778rem;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #privacy .inner .container h3 {
    font-size: 1.3846153846rem;
    line-height: 1.4;
    margin-top: 1.9230769231rem;
    margin-bottom: 0.7692307692rem;
  }
}
#privacy .inner .container ul {
  margin-top: 1em;
}
#privacy .inner .container ul li {
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
#privacy .inner .container ul li::before {
  content: "・";
}
#privacy .inner .container ul li:not(:last-child) {
  margin-bottom: 1em;
}

/*  footer
-------------------------------------------------*/
footer {
  background: #333;
  padding: 1.9444444444rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer small {
  display: block;
  color: #fff;
  font-size: 0.7777777778rem;
  margin-right: 0.5555555556rem;
}
footer a:not(:last-child) {
  margin-right: 0.5555555556rem;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 1.3461538462rem 0;
  }
}