@charset "UTF-8";
/* -------------------
  VARIABLES
--------------------*/
/* -------------------
  MIXIN
--------------------*/
/* 
.example {
  font-size: vw(12);
}
*/
/* 
.example {
  font-size: fs(12); <- 12px quite
}
*/
/* 
.example {
  @include mq() {
    width: 100%;
  }
}
*/
/* -------------------
  COMMON
--------------------*/
body {
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
  color: #292929;
  font-size: 16px;
  line-height: 2;
  min-width: 1200px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    font-size: 14px;
  }
}

section,
article,
header,
footer,
time {
  display: block;
}

p,
ul,
table {
  margin-bottom: 1.2em;
}

h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  margin-bottom: 1em;
  font-weight: bold;
}

a {
  color: #e63932;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
img.pc-only {
  display: inline;
}
@media screen and (max-width: 767px) {
  img.pc-only {
    display: none;
  }
}
img.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  img.sp-only {
    display: inline;
  }
}

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

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only2 {
  display: inline;
}
@media screen and (max-width: 767px) {
  .pc-only2 {
    display: none;
  }
}

.sp-only2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only2 {
    display: inline;
  }
}

.tel {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.tel a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .tel a {
    pointer-events: auto;
  }
}

time {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.common-width {
  max-width: 1090px;
  margin: 0 auto;
}

.sec-header {
  text-align: center;
  color: #e63932;
}
.sec-header .enttl {
  font-size: 50px;
  font-weight: bold;
  opacity: 0.5;
  line-height: 1;
  margin: 0 0 5px;
}

.link-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .link-button {
    margin-top: 40px;
  }
}
.link-button a {
  background: #e63932;
  color: #fff;
  height: 46px;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px 0 80px;
}
.link-button a svg {
  margin-left: 10px;
}
.link-button.white-button a {
  background: #fff;
  color: #e63932;
}
.link-button.white-button a svg path {
  fill: #e63932;
}

.back-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .back-button {
    margin-top: 40px;
  }
}
.back-button a {
  background: #e63932;
  color: #fff;
  height: 46px;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 80px 0 40px;
}
.back-button a svg {
  margin-right: 10px;
}
.back-button.white-button a {
  background: #fff;
  color: #e63932;
}
.back-button.white-button a svg path {
  fill: #e63932;
}

.pagettl {
  background: url(../images/pagettl/bg-pagettl.jpg) no-repeat center bottom;
  background-size: cover;
  margin-top: 72px;
  padding: 5vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .pagettl {
    margin-top: 60px;
  }
}
.pagettl-inner {
  background-color: rgba(230, 57, 50, 0.8);
  /* 50% 不透過 */
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .pagettl-inner {
    padding: 10px 40px;
  }
}
.pagettl-en {
  font-size: 50px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .pagettl-en {
    font-size: 30px;
  }
}
.pagettl-jp {
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}

.breadcrumbs {
  font-size: 12px;
  color: #e63932;
  padding-left: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding-left: 20px;
    margin-bottom: 30px;
  }
}
.breadcrumbs-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .breadcrumbs-list {
    flex-wrap: wrap;
  }
}

.red-box {
  padding: 210px 0 120px;
  background: url(../images/common/bg-redbox.png) no-repeat right top;
  background-size: auto 100%;
}
@media screen and (max-width: 767px) {
  .red-box {
    padding: 40px 20px 100px;
    margin-top: 60px;
    background: url(../images/common/sp/bg-redbox.png) no-repeat right top;
    background-size: auto 100%;
  }
}
.red-box-inner {
  max-width: 658px;
  margin: 0 auto;
  background-color: rgba(230, 57, 50, 0.8);
  /* 50% 不透過 */
  color: #fff;
  text-align: center;
  padding: 92px 20px;
}
.red-box-ttl {
  font-size: 50px;
  line-height: 1.5;
  margin: 0 0 5px;
}
@media screen and (max-width: 767px) {
  .red-box-ttl {
    font-size: 30px;
  }
}
.red-box-sttl {
  font-weight: bold;
  margin-bottom: 13px;
}
.red-box .link-button {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .red-box .link-button {
    margin-top: 50px;
  }
}
.red-box .tel {
  margin-top: 20px;
}
.red-box .tel a {
  color: #fff;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.red-box .tel a .icon {
  margin-right: 10px;
  width: 20px;
}
.red-box .tel a .icon path {
  fill: #fff;
}
.red-box .contact {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.red-box .contact a {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  border-radius: 23px;
  padding: 0 30px;
}
.red-box .contact a .icon {
  margin-right: 10px;
}
.red-box .contact a .arrow {
  margin-left: 10px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.slick-dots li {
  margin-right: 14px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li button {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 0;
  border: solid 1px #76c4ea;
  background-color: #76c4ea;
  border-radius: 50%;
}
.slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #eeeeee;
  border-radius: 50%;
  content: "";
}
.slick-dots li.slick-active button {
  border-color: #fff;
}
.slick-dots li.slick-active button:before {
  width: 6px;
  height: 6px;
  background-color: #fff;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #6b9fe8;
  z-index: 1;
  transition: all 0.3s;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: 0;
}
.slick-prev:hover,
.slick-next:hover {
  background-color: #2f5baf;
}
.slick-prev span,
.slick-next span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.slick-prev span:before,
.slick-next span:before {
  position: absolute;
  top: 15px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  content: "";
}

.slick-prev {
  left: 0;
}
@media screen and (max-width: 1050px) {
  .slick-prev {
    left: 10px;
  }
}
.slick-prev span:before {
  left: 17px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.slick-next {
  right: 0;
}
@media screen and (max-width: 1050px) {
  .slick-next {
    right: 10px;
  }
}
.slick-next span:before {
  left: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
}
@media all and (-ms-high-contrast: none) {
  .slick-next {
    /* IE10 */
    /* IE11 */
  }
  .slick-next span:before {
    left: 15px;
  }
  .slick-next *::-ms-backdrop:before,
  .slick-next span:before {
    left: 15px;
  }
}

.ui-datepicker {
  background-color: #fff;
  padding: 0.8em 0.5em 0.3em;
}

.ui-datepicker .ui-datepicker-title {
  font-size: 0.875rem;
  text-align: center;
}

.ui-widget.ui-widget-content {
  border-radius: 5px;
}

.ui-widget-header {
  border: none;
  background: inherit;
  color: #474f5f;
  font-weight: bold;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none;
  background: #ecf0f4;
  font-weight: bold;
  color: #3b93d2;
  text-align: center;
  padding: 7px 9px;
  font-size: 0.6875rem;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
  color: #afb4bc;
  font-size: 0.6875rem;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  left: 10px;
  cursor: pointer;
  font-size: 0.75rem;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  border: none;
  background-color: #fff;
}

.ui-datepicker .ui-datepicker-next {
  right: 10px;
  left: auto;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  margin-top: -6px;
}

.ui-icon {
  width: 10px;
  height: 10px;
}

.ui-widget-content .ui-state-default:hover {
  border: 0px;
  text-align: center;
  background: #000;
  color: #fff;
}

.ui-widget-content .ui-state-active {
  border: 0px;
  background: #000;
  color: #fff;
}

.ui-datepicker td {
  padding: 1px;
}

a.ui-state-default {
  width: 100%;
  display: block;
}

/* Fade up */
.fadeup {
  opacity: 0;
  transform: translate(0, 35%);
  transition:
    opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s,
    transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.fadeup.in {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeup2 {
  transform: translate(0, 80px);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.fadeup2.in {
  transform: translate(0, 0);
}

/* Fade in */
.fadein {
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.fadein.in {
  opacity: 1;
}

/* Fade up */
.fadeleft {
  opacity: 0;
  transform: translate(-80px, 0);
  transition:
    opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s,
    transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.fadeleft.in {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeleft2 {
  transform: translate(-80px, 0);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.fadeleft2.in {
  transform: translate(0, 0);
}

.fuwafuwa {
  animation: fuwafuwa 2.5s infinite;
}

.fuwafuwa-t {
  animation: fuwafuwa-t 3.5s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fuwafuwa-t {
  0% {
    transform: translateY(0px);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(-180%);
    opacity: 0;
  }
}

/* Nina */
.button--ninaWrap {
  display: inline-block;
  text-align: center;
  min-width: 154px;
  max-width: 100%;
  background: #fff;
  border-radius: 72px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .button--ninaWrap {
    width: 100%;
  }
}

.button--nina {
  position: relative;
  display: inline-block;
  height: 55px;
  line-height: 56px;
  color: #474f5f;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  vertical-align: middle;
  font-size: 0.75rem;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
.button--nina span {
  vertical-align: middle;
}

.button--nina > span {
  display: inline-block;
  opacity: 0;
  color: #fff;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
  -webkit-transition:
    -webkit-transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button--nina::before {
  content: attr(data-text);
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  -webkit-transition:
    -webkit-transform 0.3s,
    opacity 0.3s;
  transition:
    transform 0.3s,
    opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button--ninaWrap:hover {
  background-color: #474f5f;
  letter-spacing: -1.5px;
}

.button--ninaWrap:hover .button--nina {
  letter-spacing: -1.5px;
}

.button--ninaWrap:hover .button--nina::before {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.button--ninaWrap:hover .button--nina > span {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.button--ninaWrap:hover .button--nina > span:nth-child(1) {
  -webkit-transition-delay: 0.045s;
  transition-delay: 0.045s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(2) {
  -webkit-transition-delay: 0.09s;
  transition-delay: 0.09s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(3) {
  -webkit-transition-delay: 0.135s;
  transition-delay: 0.135s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(4) {
  -webkit-transition-delay: 0.18s;
  transition-delay: 0.18s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(5) {
  -webkit-transition-delay: 0.225s;
  transition-delay: 0.225s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(6) {
  -webkit-transition-delay: 0.27s;
  transition-delay: 0.27s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(7) {
  -webkit-transition-delay: 0.315s;
  transition-delay: 0.315s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(8) {
  -webkit-transition-delay: 0.36s;
  transition-delay: 0.36s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(9) {
  -webkit-transition-delay: 0.405s;
  transition-delay: 0.405s;
}

.button--ninaWrap:hover .button--nina > span:nth-child(10) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.button--nina:after {
  position: absolute;
  right: -2px;
  top: calc(50% - 4px);
  display: inline-block;
  width: 5px;
  height: 9px;
  background: url(../images/common/icon-arrow-right.svg) no-repeat;
  transition: all 0.3s;
  content: "";
  z-index: 1;
}

.button--ninaWrap:hover .button--nina:after {
  top: calc(50% - 3px);
  display: inline-block;
  transform: translateX(18px);
  background-image: url(../images/common/icon-arrow-right-white.svg);
}

.button--ninaWrap--blue {
  background: #4aabb8;
}
.button--ninaWrap--blue .button--nina {
  color: #fff;
}
.button--ninaWrap--blue .button--nina span {
  color: #4aabb8;
}
.button--ninaWrap--blue .button--nina::after {
  background: url(../images/common/icon-arrow-right-white.svg) no-repeat;
}
.button--ninaWrap--blue:hover {
  background-color: #fff;
  letter-spacing: -1.5px;
}
.button--ninaWrap--blue:hover .button--nina {
  color: #4aabb8;
}
.button--ninaWrap--blue:hover .button--nina::after {
  background: url(../images/common/icon-arrow-right-blue.svg) no-repeat;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
}

.delay-10 {
  transition-delay: 1s;
}

.delay-11 {
  transition-delay: 1.1s;
}

.delay-12 {
  transition-delay: 1.2s;
}

.delay-13 {
  transition-delay: 1.3s;
}

.delay-14 {
  transition-delay: 1.4s;
}

.delay-15 {
  transition-delay: 1.5s;
}

.delay-16 {
  transition-delay: 1.6s;
}

.delay-17 {
  transition-delay: 1.7s;
}

.delay-18 {
  transition-delay: 1.8s;
}

.delay-19 {
  transition-delay: 1.9s;
}

.delay-20 {
  transition-delay: 2s;
}

.delay-21 {
  transition-delay: 2.1s;
}

.delay-22 {
  transition-delay: 2.2s;
}

.delay-23 {
  transition-delay: 2.3s;
}

.delay-24 {
  transition-delay: 2.4s;
}

.ani-delay-1 {
  animation-delay: 0.1s;
}

.ani-delay-2 {
  animation-delay: 0.2s;
}

.ani-delay-3 {
  animation-delay: 0.3s;
}

.ani-delay-4 {
  animation-delay: 0.4s;
}

.ani-delay-5 {
  animation-delay: 0.5s;
}

.ani-delay-6 {
  animation-delay: 0.6s;
}

.ani-delay-7 {
  animation-delay: 0.7s;
}

.ani-delay-8 {
  animation-delay: 0.8s;
}

.ani-delay-9 {
  animation-delay: 0.9s;
}

.ani-delay-10 {
  animation-delay: 1s;
}

.ani-delay-11 {
  animation-delay: 1.1s;
}

.ani-delay-12 {
  animation-delay: 1.2s;
}

.ani-delay-13 {
  animation-delay: 1.3s;
}

.ani-delay-14 {
  animation-delay: 1.4s;
}

.ani-delay-15 {
  animation-delay: 1.5s;
}

.ani-delay-16 {
  animation-delay: 1.6s;
}

.ani-delay-17 {
  animation-delay: 1.7s;
}

.ani-delay-18 {
  animation-delay: 1.8s;
}

.ani-delay-19 {
  animation-delay: 1.9s;
}

.ani-delay-20 {
  animation-delay: 2s;
}

.ani-delay-21 {
  animation-delay: 2.1s;
}

.ani-delay-22 {
  animation-delay: 2.2s;
}

.ani-delay-23 {
  animation-delay: 2.3s;
}

.ani-delay-24 {
  animation-delay: 2.4s;
}

/* -------------------
  PARTS
--------------------*/
.mgt-0 {
  margin-top: 0;
}

.mgt-5 {
  margin-top: 5px;
}

.mgt-10 {
  margin-top: 10px;
}

.mgt-15 {
  margin-top: 15px;
}

.mgt-20 {
  margin-top: 20px;
}

.mgt-25 {
  margin-top: 25px;
}

.mgt-30 {
  margin-top: 30px;
}

.mgt-35 {
  margin-top: 35px;
}

.mgt-40 {
  margin-top: 40px;
}

.mgt-45 {
  margin-top: 45px;
}

.mgt-50 {
  margin-top: 50px;
}

.mgt-55 {
  margin-top: 55px;
}

.mgt-60 {
  margin-top: 60px;
}

.mgt-65 {
  margin-top: 65px;
}

.mgt-70 {
  margin-top: 70px;
}

.mgt-75 {
  margin-top: 75px;
}

.mgt-80 {
  margin-top: 80px;
}

.mgt-85 {
  margin-top: 85px;
}

.mgt-90 {
  margin-top: 90px;
}

.mgt-95 {
  margin-top: 95px;
}

.mgt-100 {
  margin-top: 100px;
}

.mgb-0 {
  margin-bottom: 0 !important;
}

.mgb-5 {
  margin-bottom: 5px;
}

.mgb-10 {
  margin-bottom: 10px;
}

.mgb-15 {
  margin-bottom: 15px;
}

.mgb-20 {
  margin-bottom: 20px;
}

.mgb-25 {
  margin-bottom: 25px;
}

.mgb-30 {
  margin-bottom: 30px;
}

.mgb-35 {
  margin-bottom: 35px;
}

.mgb-40 {
  margin-bottom: 40px;
}

.mgb-45 {
  margin-bottom: 45px;
}

.mgb-50 {
  margin-bottom: 50px;
}

.mgb-55 {
  margin-bottom: 55px;
}

.mgb-60 {
  margin-bottom: 60px;
}

.mgb-65 {
  margin-bottom: 65px;
}

.mgb-70 {
  margin-bottom: 70px;
}

.mgb-75 {
  margin-bottom: 75px;
}

.mgb-80 {
  margin-bottom: 80px;
}

.mgb-85 {
  margin-bottom: 85px;
}

.mgb-90 {
  margin-bottom: 90px;
}

.mgb-95 {
  margin-bottom: 95px;
}

.mgb-100 {
  margin-bottom: 100px;
}

.mgl-0 {
  margin-left: 0;
}

.mgl-1 {
  margin-left: 1px;
}

.mgl-2 {
  margin-left: 2px;
}

.mgl-3 {
  margin-left: 3px;
}

.mgl-4 {
  margin-left: 4px;
}

.mgl-5 {
  margin-left: 5px;
}

.mgl-6 {
  margin-left: 6px;
}

.mgl-7 {
  margin-left: 7px;
}

.mgl-8 {
  margin-left: 8px;
}

.mgl-9 {
  margin-left: 9px;
}

.mgl-10 {
  margin-left: 10px;
}

.mgr-0 {
  margin-right: 0;
}

.mgr-1 {
  margin-right: 1px;
}

.mgr-2 {
  margin-right: 2px;
}

.mgr-3 {
  margin-right: 3px;
}

.mgr-4 {
  margin-right: 4px;
}

.mgr-5 {
  margin-right: 5px;
}

.mgr-6 {
  margin-right: 6px;
}

.mgr-7 {
  margin-right: 7px;
}

.mgr-8 {
  margin-right: 8px;
}

.mgr-9 {
  margin-right: 9px;
}

.mgr-10 {
  margin-right: 10px;
}

.mgr-20 {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .mgr-20 {
    margin-right: 10px;
  }
}

.pdt-10 {
  padding-top: 10px !important;
}

.pdt-20 {
  padding-top: 20px !important;
}

.pdt-30 {
  padding-top: 30px !important;
}

.pdt-40 {
  padding-top: 40px !important;
}

.pdt-50 {
  padding-top: 50px !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-center {
  margin: 0 auto;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.mb-105 {
  margin-bottom: 105px !important;
}

.mt-105 {
  margin-top: 105px !important;
}

.mr-105 {
  margin-right: 105px !important;
}

.ml-105 {
  margin-left: 105px !important;
}

.pb-105 {
  padding-bottom: 105px !important;
}

.pt-105 {
  padding-top: 105px !important;
}

.pr-105 {
  padding-right: 105px !important;
}

.pl-105 {
  padding-left: 105px !important;
}

.mb-110 {
  margin-bottom: 110px !important;
}

.mt-110 {
  margin-top: 110px !important;
}

.mr-110 {
  margin-right: 110px !important;
}

.ml-110 {
  margin-left: 110px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pr-110 {
  padding-right: 110px !important;
}

.pl-110 {
  padding-left: 110px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.mr-115 {
  margin-right: 115px !important;
}

.ml-115 {
  margin-left: 115px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pr-115 {
  padding-right: 115px !important;
}

.pl-115 {
  padding-left: 115px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pr-120 {
  padding-right: 120px !important;
}

.pl-120 {
  padding-left: 120px !important;
}

.mb-125 {
  margin-bottom: 125px !important;
}

.mt-125 {
  margin-top: 125px !important;
}

.mr-125 {
  margin-right: 125px !important;
}

.ml-125 {
  margin-left: 125px !important;
}

.pb-125 {
  padding-bottom: 125px !important;
}

.pt-125 {
  padding-top: 125px !important;
}

.pr-125 {
  padding-right: 125px !important;
}

.pl-125 {
  padding-left: 125px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.mr-130 {
  margin-right: 130px !important;
}

.ml-130 {
  margin-left: 130px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pr-130 {
  padding-right: 130px !important;
}

.pl-130 {
  padding-left: 130px !important;
}

.mb-135 {
  margin-bottom: 135px !important;
}

.mt-135 {
  margin-top: 135px !important;
}

.mr-135 {
  margin-right: 135px !important;
}

.ml-135 {
  margin-left: 135px !important;
}

.pb-135 {
  padding-bottom: 135px !important;
}

.pt-135 {
  padding-top: 135px !important;
}

.pr-135 {
  padding-right: 135px !important;
}

.pl-135 {
  padding-left: 135px !important;
}

.mb-140 {
  margin-bottom: 140px !important;
}

.mt-140 {
  margin-top: 140px !important;
}

.mr-140 {
  margin-right: 140px !important;
}

.ml-140 {
  margin-left: 140px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pr-140 {
  padding-right: 140px !important;
}

.pl-140 {
  padding-left: 140px !important;
}

.mb-145 {
  margin-bottom: 145px !important;
}

.mt-145 {
  margin-top: 145px !important;
}

.mr-145 {
  margin-right: 145px !important;
}

.ml-145 {
  margin-left: 145px !important;
}

.pb-145 {
  padding-bottom: 145px !important;
}

.pt-145 {
  padding-top: 145px !important;
}

.pr-145 {
  padding-right: 145px !important;
}

.pl-145 {
  padding-left: 145px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mr-150 {
  margin-right: 150px !important;
}

.ml-150 {
  margin-left: 150px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pr-150 {
  padding-right: 150px !important;
}

.pl-150 {
  padding-left: 150px !important;
}

.mb-155 {
  margin-bottom: 155px !important;
}

.mt-155 {
  margin-top: 155px !important;
}

.mr-155 {
  margin-right: 155px !important;
}

.ml-155 {
  margin-left: 155px !important;
}

.pb-155 {
  padding-bottom: 155px !important;
}

.pt-155 {
  padding-top: 155px !important;
}

.pr-155 {
  padding-right: 155px !important;
}

.pl-155 {
  padding-left: 155px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.mr-160 {
  margin-right: 160px !important;
}

.ml-160 {
  margin-left: 160px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pr-160 {
  padding-right: 160px !important;
}

.pl-160 {
  padding-left: 160px !important;
}

.mb-165 {
  margin-bottom: 165px !important;
}

.mt-165 {
  margin-top: 165px !important;
}

.mr-165 {
  margin-right: 165px !important;
}

.ml-165 {
  margin-left: 165px !important;
}

.pb-165 {
  padding-bottom: 165px !important;
}

.pt-165 {
  padding-top: 165px !important;
}

.pr-165 {
  padding-right: 165px !important;
}

.pl-165 {
  padding-left: 165px !important;
}

.mb-170 {
  margin-bottom: 170px !important;
}

.mt-170 {
  margin-top: 170px !important;
}

.mr-170 {
  margin-right: 170px !important;
}

.ml-170 {
  margin-left: 170px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

.pr-170 {
  padding-right: 170px !important;
}

.pl-170 {
  padding-left: 170px !important;
}

.mb-175 {
  margin-bottom: 175px !important;
}

.mt-175 {
  margin-top: 175px !important;
}

.mr-175 {
  margin-right: 175px !important;
}

.ml-175 {
  margin-left: 175px !important;
}

.pb-175 {
  padding-bottom: 175px !important;
}

.pt-175 {
  padding-top: 175px !important;
}

.pr-175 {
  padding-right: 175px !important;
}

.pl-175 {
  padding-left: 175px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mt-180 {
  margin-top: 180px !important;
}

.mr-180 {
  margin-right: 180px !important;
}

.ml-180 {
  margin-left: 180px !important;
}

.pb-180 {
  padding-bottom: 180px !important;
}

.pt-180 {
  padding-top: 180px !important;
}

.pr-180 {
  padding-right: 180px !important;
}

.pl-180 {
  padding-left: 180px !important;
}

.mb-185 {
  margin-bottom: 185px !important;
}

.mt-185 {
  margin-top: 185px !important;
}

.mr-185 {
  margin-right: 185px !important;
}

.ml-185 {
  margin-left: 185px !important;
}

.pb-185 {
  padding-bottom: 185px !important;
}

.pt-185 {
  padding-top: 185px !important;
}

.pr-185 {
  padding-right: 185px !important;
}

.pl-185 {
  padding-left: 185px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.mt-190 {
  margin-top: 190px !important;
}

.mr-190 {
  margin-right: 190px !important;
}

.ml-190 {
  margin-left: 190px !important;
}

.pb-190 {
  padding-bottom: 190px !important;
}

.pt-190 {
  padding-top: 190px !important;
}

.pr-190 {
  padding-right: 190px !important;
}

.pl-190 {
  padding-left: 190px !important;
}

.mb-195 {
  margin-bottom: 195px !important;
}

.mt-195 {
  margin-top: 195px !important;
}

.mr-195 {
  margin-right: 195px !important;
}

.ml-195 {
  margin-left: 195px !important;
}

.pb-195 {
  padding-bottom: 195px !important;
}

.pt-195 {
  padding-top: 195px !important;
}

.pr-195 {
  padding-right: 195px !important;
}

.pl-195 {
  padding-left: 195px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mr-200 {
  margin-right: 200px !important;
}

.ml-200 {
  margin-left: 200px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pr-200 {
  padding-right: 200px !important;
}

.pl-200 {
  padding-left: 200px !important;
}

.mb-205 {
  margin-bottom: 205px !important;
}

.mt-205 {
  margin-top: 205px !important;
}

.mr-205 {
  margin-right: 205px !important;
}

.ml-205 {
  margin-left: 205px !important;
}

.pb-205 {
  padding-bottom: 205px !important;
}

.pt-205 {
  padding-top: 205px !important;
}

.pr-205 {
  padding-right: 205px !important;
}

.pl-205 {
  padding-left: 205px !important;
}

.mb-210 {
  margin-bottom: 210px !important;
}

.mt-210 {
  margin-top: 210px !important;
}

.mr-210 {
  margin-right: 210px !important;
}

.ml-210 {
  margin-left: 210px !important;
}

.pb-210 {
  padding-bottom: 210px !important;
}

.pt-210 {
  padding-top: 210px !important;
}

.pr-210 {
  padding-right: 210px !important;
}

.pl-210 {
  padding-left: 210px !important;
}

.mb-215 {
  margin-bottom: 215px !important;
}

.mt-215 {
  margin-top: 215px !important;
}

.mr-215 {
  margin-right: 215px !important;
}

.ml-215 {
  margin-left: 215px !important;
}

.pb-215 {
  padding-bottom: 215px !important;
}

.pt-215 {
  padding-top: 215px !important;
}

.pr-215 {
  padding-right: 215px !important;
}

.pl-215 {
  padding-left: 215px !important;
}

.mb-220 {
  margin-bottom: 220px !important;
}

.mt-220 {
  margin-top: 220px !important;
}

.mr-220 {
  margin-right: 220px !important;
}

.ml-220 {
  margin-left: 220px !important;
}

.pb-220 {
  padding-bottom: 220px !important;
}

.pt-220 {
  padding-top: 220px !important;
}

.pr-220 {
  padding-right: 220px !important;
}

.pl-220 {
  padding-left: 220px !important;
}

.mb-225 {
  margin-bottom: 225px !important;
}

.mt-225 {
  margin-top: 225px !important;
}

.mr-225 {
  margin-right: 225px !important;
}

.ml-225 {
  margin-left: 225px !important;
}

.pb-225 {
  padding-bottom: 225px !important;
}

.pt-225 {
  padding-top: 225px !important;
}

.pr-225 {
  padding-right: 225px !important;
}

.pl-225 {
  padding-left: 225px !important;
}

.mb-230 {
  margin-bottom: 230px !important;
}

.mt-230 {
  margin-top: 230px !important;
}

.mr-230 {
  margin-right: 230px !important;
}

.ml-230 {
  margin-left: 230px !important;
}

.pb-230 {
  padding-bottom: 230px !important;
}

.pt-230 {
  padding-top: 230px !important;
}

.pr-230 {
  padding-right: 230px !important;
}

.pl-230 {
  padding-left: 230px !important;
}

.mb-235 {
  margin-bottom: 235px !important;
}

.mt-235 {
  margin-top: 235px !important;
}

.mr-235 {
  margin-right: 235px !important;
}

.ml-235 {
  margin-left: 235px !important;
}

.pb-235 {
  padding-bottom: 235px !important;
}

.pt-235 {
  padding-top: 235px !important;
}

.pr-235 {
  padding-right: 235px !important;
}

.pl-235 {
  padding-left: 235px !important;
}

.mb-240 {
  margin-bottom: 240px !important;
}

.mt-240 {
  margin-top: 240px !important;
}

.mr-240 {
  margin-right: 240px !important;
}

.ml-240 {
  margin-left: 240px !important;
}

.pb-240 {
  padding-bottom: 240px !important;
}

.pt-240 {
  padding-top: 240px !important;
}

.pr-240 {
  padding-right: 240px !important;
}

.pl-240 {
  padding-left: 240px !important;
}

.mb-245 {
  margin-bottom: 245px !important;
}

.mt-245 {
  margin-top: 245px !important;
}

.mr-245 {
  margin-right: 245px !important;
}

.ml-245 {
  margin-left: 245px !important;
}

.pb-245 {
  padding-bottom: 245px !important;
}

.pt-245 {
  padding-top: 245px !important;
}

.pr-245 {
  padding-right: 245px !important;
}

.pl-245 {
  padding-left: 245px !important;
}

.mb-250 {
  margin-bottom: 250px !important;
}

.mt-250 {
  margin-top: 250px !important;
}

.mr-250 {
  margin-right: 250px !important;
}

.ml-250 {
  margin-left: 250px !important;
}

.pb-250 {
  padding-bottom: 250px !important;
}

.pt-250 {
  padding-top: 250px !important;
}

.pr-250 {
  padding-right: 250px !important;
}

.pl-250 {
  padding-left: 250px !important;
}

.mb-255 {
  margin-bottom: 255px !important;
}

.mt-255 {
  margin-top: 255px !important;
}

.mr-255 {
  margin-right: 255px !important;
}

.ml-255 {
  margin-left: 255px !important;
}

.pb-255 {
  padding-bottom: 255px !important;
}

.pt-255 {
  padding-top: 255px !important;
}

.pr-255 {
  padding-right: 255px !important;
}

.pl-255 {
  padding-left: 255px !important;
}

.mb-260 {
  margin-bottom: 260px !important;
}

.mt-260 {
  margin-top: 260px !important;
}

.mr-260 {
  margin-right: 260px !important;
}

.ml-260 {
  margin-left: 260px !important;
}

.pb-260 {
  padding-bottom: 260px !important;
}

.pt-260 {
  padding-top: 260px !important;
}

.pr-260 {
  padding-right: 260px !important;
}

.pl-260 {
  padding-left: 260px !important;
}

.mb-265 {
  margin-bottom: 265px !important;
}

.mt-265 {
  margin-top: 265px !important;
}

.mr-265 {
  margin-right: 265px !important;
}

.ml-265 {
  margin-left: 265px !important;
}

.pb-265 {
  padding-bottom: 265px !important;
}

.pt-265 {
  padding-top: 265px !important;
}

.pr-265 {
  padding-right: 265px !important;
}

.pl-265 {
  padding-left: 265px !important;
}

.mb-270 {
  margin-bottom: 270px !important;
}

.mt-270 {
  margin-top: 270px !important;
}

.mr-270 {
  margin-right: 270px !important;
}

.ml-270 {
  margin-left: 270px !important;
}

.pb-270 {
  padding-bottom: 270px !important;
}

.pt-270 {
  padding-top: 270px !important;
}

.pr-270 {
  padding-right: 270px !important;
}

.pl-270 {
  padding-left: 270px !important;
}

.mb-275 {
  margin-bottom: 275px !important;
}

.mt-275 {
  margin-top: 275px !important;
}

.mr-275 {
  margin-right: 275px !important;
}

.ml-275 {
  margin-left: 275px !important;
}

.pb-275 {
  padding-bottom: 275px !important;
}

.pt-275 {
  padding-top: 275px !important;
}

.pr-275 {
  padding-right: 275px !important;
}

.pl-275 {
  padding-left: 275px !important;
}

.mb-280 {
  margin-bottom: 280px !important;
}

.mt-280 {
  margin-top: 280px !important;
}

.mr-280 {
  margin-right: 280px !important;
}

.ml-280 {
  margin-left: 280px !important;
}

.pb-280 {
  padding-bottom: 280px !important;
}

.pt-280 {
  padding-top: 280px !important;
}

.pr-280 {
  padding-right: 280px !important;
}

.pl-280 {
  padding-left: 280px !important;
}

.mb-285 {
  margin-bottom: 285px !important;
}

.mt-285 {
  margin-top: 285px !important;
}

.mr-285 {
  margin-right: 285px !important;
}

.ml-285 {
  margin-left: 285px !important;
}

.pb-285 {
  padding-bottom: 285px !important;
}

.pt-285 {
  padding-top: 285px !important;
}

.pr-285 {
  padding-right: 285px !important;
}

.pl-285 {
  padding-left: 285px !important;
}

.mb-290 {
  margin-bottom: 290px !important;
}

.mt-290 {
  margin-top: 290px !important;
}

.mr-290 {
  margin-right: 290px !important;
}

.ml-290 {
  margin-left: 290px !important;
}

.pb-290 {
  padding-bottom: 290px !important;
}

.pt-290 {
  padding-top: 290px !important;
}

.pr-290 {
  padding-right: 290px !important;
}

.pl-290 {
  padding-left: 290px !important;
}

.mb-295 {
  margin-bottom: 295px !important;
}

.mt-295 {
  margin-top: 295px !important;
}

.mr-295 {
  margin-right: 295px !important;
}

.ml-295 {
  margin-left: 295px !important;
}

.pb-295 {
  padding-bottom: 295px !important;
}

.pt-295 {
  padding-top: 295px !important;
}

.pr-295 {
  padding-right: 295px !important;
}

.pl-295 {
  padding-left: 295px !important;
}

.no-reset h2 {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: bold;
  color: #5dc1cf;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .no-reset h2 {
    font-size: 1rem;
    line-height: 1.6875rem;
  }
}

.no-reset h3 {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: bold;
  color: #5dc1cf;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .no-reset h3 {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.no-reset h4 {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: bold;
  color: #5dc1cf;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .no-reset h4 {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

.no-reset h5 {
  position: relative;
  font-size: 0.8125rem;
  line-height: 1rem;
  font-weight: bold;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .no-reset h5 {
    font-size: 0.8125rem;
    line-height: 1.125rem;
  }
}

.no-reset p {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #474f5f;
}
@media screen and (max-width: 767px) {
  .no-reset p {
    font-size: 0.75rem;
    line-height: 1.3125rem;
  }
}

.no-reset a {
  transition: all 0.3s;
  cursor: pointer;
}
.no-reset a:hover {
  opacity: 0.7;
}
.no-reset a:not([class]),
.no-reset a[href$=".pdf"],
.no-reset a[target^="_blank"] {
  position: relative;
  padding-right: 18px;
  font-size: 0.875rem;
  line-height: 1;
  color: #68a0fa;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .no-reset a:not([class]),
  .no-reset a[href$=".pdf"],
  .no-reset a[target^="_blank"] {
    font-size: 0.75rem;
  }
}
.no-reset a:not([class]) {
  background: url(../images/common/icon-arrow-blue.svg) right center/5px 10px no-repeat;
}
.no-reset a[href$=".pdf"] {
  background: url(../images/common/icon-pdf-blue.svg) right center/12px 13px no-repeat;
}
.no-reset a[target^="_blank"] {
  background: url(../images/common/icon-blank-blue.svg) right center/10px 10px no-repeat !important;
}

.no-reset b {
  font-weight: bold;
  color: #474f5f;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .no-reset b {
    font-size: 0.75rem;
  }
}

/* -------------------
  Title by level
--------------------*/
.title-lv2 {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: bold;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 1050px) {
  .title-lv2 {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}

.title-lv3 {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: bold;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 1050px) {
  .title-lv3 {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}

.title-lv4 {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  font-weight: bold;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 1050px) {
  .title-lv4 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.title-lv5 {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  font-weight: bold;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 1050px) {
  .title-lv5 {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}

/* -------------------
  Description
--------------------*/
.desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .desc {
    font-size: 0.8125rem;
  }
}

.desc2 {
  font-size: 1.125rem;
  color: #474f5f;
  letter-spacing: 0.9px;
  line-height: 1.8;
}
@media screen and (max-width: 1050px) {
  .desc2 {
    font-size: 0.875rem;
  }
}

.desc3 {
  font-size: 1rem;
  line-height: 1.8;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .desc3 {
    font-size: 0.875rem;
  }
}

.desc4 {
  font-size: 0.75rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .desc4 {
    font-size: 0.6875rem;
  }
}

.desc5 {
  font-size: 0.75rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .desc5 {
    font-size: 0.6875rem;
  }
}

.desc6 {
  font-size: 0.875rem;
  color: #474f5f;
  line-height: 1.6;
}
@media screen and (max-width: 1050px) {
  .desc6 {
    font-size: 0.8125rem;
  }
}

.desc7 {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .desc7 {
    font-size: 0.875rem;
  }
}

.txt-bold {
  font-weight: bold;
}

.txt-bold2 {
  font-weight: bold;
  font-size: 0.875rem;
  color: #474f5f;
}

.txt-bold3 {
  font-size: 0.875rem;
  color: #474f5f;
}

.txt-alert {
  font-size: 0.875rem;
  color: #ff0000;
  line-height: 1.6;
}
@media screen and (max-width: 1050px) {
  .txt-alert {
    font-size: 0.8125rem;
  }
}

.txt-blue {
  color: #68a0fa;
}

.ttl-bold {
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (max-width: 1050px) {
  .ttl-bold {
    font-size: 1rem;
  }
}

.ttl-bold2 {
  font-weight: bold;
  font-size: 1.875rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .ttl-bold2 {
    font-size: 1.625rem;
  }
}

.ttl-bold3 {
  font-weight: bold;
  font-size: 1.125rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .ttl-bold3 {
    font-size: 1rem;
  }
}

.ttl-bold4 {
  font-weight: bold;
  font-size: 1rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .ttl-bold4 {
    font-size: 0.875rem;
  }
}

.ttl-bold5 {
  font-weight: bold;
  font-size: 0.75rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .ttl-bold5 {
    font-size: 0.6875rem;
  }
}

.ttl-bold6 {
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 1050px) {
  .ttl-bold6 {
    font-size: 1.125rem;
  }
}

.ttl-bold7 {
  font-weight: bold;
  font-size: 1.125rem;
  color: #68a0fa;
}

.ttl-bold8 {
  font-weight: bold;
  font-size: 1rem;
  color: #5dc1cf;
}
.ttl-bold8.type2 {
  width: 48%;
  flex-shrink: 0;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .ttl-bold8.type2 {
    width: 100%;
    margin-right: 0;
  }
}
.ttl-bold8.type3 {
  width: 70%;
  flex-shrink: 0;
  margin-right: 10px;
}

.ttl-rating {
  display: inline-block;
  padding: 2px 0 2px 25px;
  color: #474f5f;
  font-weight: bold;
  background: url(../images/common/icon-smile.svg) left center no-repeat;
}
.ttl-rating.sad {
  background-image: url(../images/common/icon-sad.svg);
}

.txt-rating {
  display: inline-block;
  padding: 2px 0 2px 25px;
  background: url(../images/common/icon-smile.svg) left center no-repeat;
}
.txt-rating.sad {
  background-image: url(../images/common/icon-sad.svg);
}

.txt-guide {
  display: inline-block;
  font-size: 0.75rem;
  color: #68a0fa;
  padding: 2px 0;
  background: url(../images/common/icon-check-blue.svg) left center no-repeat;
  background-size: 0;
}
.txt-guide.check {
  padding-left: 18px;
  background-size: auto;
}

.ttl-underline {
  font-size: 1.625rem;
  font-weight: bold;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .ttl-underline {
    font-size: 1.25rem;
  }
}
.ttl-underline.in span {
  background-size: 100% 18px;
}
@media screen and (max-width: 1050px) {
  .ttl-underline.in span {
    background-size: 100% 10px;
  }
}
.ttl-underline span {
  display: inline;
  padding-bottom: 6px;
  background: url(../images/common/underline-yellow.gif) left bottom/0 18px no-repeat;
  transition: all 1s;
}
@media screen and (max-width: 1050px) {
  .ttl-underline span {
    padding-bottom: 0;
    background-size: 100% 10px;
  }
}

.ttl-underline2 {
  font-size: 1.625rem;
  font-weight: bold;
  color: #474f5f;
}
.ttl-underline2 span {
  display: inline;
  padding-bottom: 6px;
  background: url(../images/common/underline-yellow.gif) left bottom/100% 18px repeat-x;
}

.ttl-location {
  display: inline-block;
  padding-left: 18px;
  color: #818181;
  font-size: 0.75rem;
  background: url(../images/common/icon-maker-yellow.svg) left center no-repeat;
}

.ttl-icon {
  padding: 5px 0 5px 48px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #5dc1cf;
  background: url(../images/common/icon-fac.svg) no-repeat;
  background-position: left top 25px;
  transition: background-position cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s;
}
.ttl-icon.in {
  background-position: left top 5px;
}
.ttl-icon.doc {
  background-image: url(../images/common/icon-doc.svg);
}
.ttl-icon.dol {
  display: inline-block;
  margin: 0 0 11px;
  background-image: url(../images/common/icon-donate.svg);
}

.ttl-name {
  padding-left: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #474f5f;
  background: url(../images/common/icon-female.svg) left center no-repeat;
}
.ttl-name.male {
  background-image: url(../images/common/icon-male.svg);
}

.ttl-bg {
  position: relative;
  font-weight: bold;
  font-size: 1.125rem;
  color: #474f5f;
  background-color: #d0e2db;
  padding: 10px 15px;
}
.ttl-bg:before {
  position: absolute;
  top: -2px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #5dc1cf;
  content: "";
}

.ttl-bg2 {
  position: relative;
  font-weight: bold;
  font-size: 1rem;
  color: #474f5f;
  background-color: #d0e2db;
  padding: 10px 15px;
}

.ttl-blue {
  font-size: 0.875rem;
  font-weight: bold;
  color: #68a0fa;
}

.ttl-blue2 {
  font-size: 0.875rem;
  color: #68a0fa;
}

.ttl-green {
  font-size: 1rem;
  font-weight: bold;
  color: #5dc1cf;
}

.ttl-hand {
  font-size: 1.625rem;
  font-weight: bold;
  color: #474f5f;
  margin: 0 0 20px;
}
@media screen and (max-width: 1050px) {
  .ttl-hand {
    font-size: 1.25rem;
  }
}
.ttl-hand.in span {
  background-size: 100% auto;
}
@media screen and (max-width: 1050px) {
  .ttl-hand.in span {
    background-size: 100% auto;
  }
}
.ttl-hand span {
  display: inline;
  padding-bottom: 6px;
  background-image: url(../images/teaser/marker-01.svg);
  background-size: 0 auto;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: all 1s;
}
@media screen and (max-width: 1050px) {
  .ttl-hand span {
    padding-bottom: 0;
    background-size: 100% auto;
  }
}
.ttl-hand.fadeup span {
  background-size: 100% auto;
}
@media screen and (max-width: 1050px) {
  .ttl-hand.fadeup span {
    background-size: 100% auto;
  }
}

.count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #5dc1cf;
  border-radius: 50%;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.625rem;
  color: #fff;
}
.countWrap {
  position: relative;
}

/* -------------------
  Section Title
--------------------*/
.section-title {
  position: relative;
  display: inline-block;
  position: relative;
  padding-left: 24px;
  font-size: 1.125rem;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #5dc1cf;
  text-transform: uppercase;
}
.section-title:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: solid 1px #5dc1cf;
  content: "";
}
@media screen and (max-width: 1050px) {
  .section-title {
    font-size: 1.125rem;
  }
}

/* -------------------
  Date, time, phone
--------------------*/
.phone {
  color: #68a0fa;
  font-size: 1.375rem;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.phone:hover {
  color: #68a0fa;
}

.date {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.875rem;
  line-height: 1.3125rem;
}
@media screen and (max-width: 1050px) {
  .date {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}

.date2 {
  font-size: 0.75rem;
}
@media screen and (max-width: 1050px) {
  .date2 {
    font-size: 0.6875rem;
  }
}

.date3 {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.75rem;
  color: #9a9a9a;
}
@media screen and (max-width: 1050px) {
  .date3 {
    font-size: 0.6875rem;
  }
}

.date4 {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.75rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .date4 {
    font-size: 0.6875rem;
  }
}

.date5 {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.75rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .date5 {
    font-size: 0.6875rem;
  }
}

.date6 {
  font-size: 0.75rem;
  color: #818181;
}
@media screen and (max-width: 1050px) {
  .date6 {
    font-size: 0.6875rem;
  }
}

.date7 {
  font-size: 0.75rem;
  color: #474f5f;
}
@media screen and (max-width: 1050px) {
  .date7 {
    font-size: 0.6875rem;
  }
}

.date8 {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.875rem;
  color: #818181;
}
@media screen and (max-width: 1050px) {
  .date8 {
    font-size: 0.8125rem;
  }
}

.date-icon {
  padding-left: 18px;
  font-size: 0.75rem;
  color: #818181;
  background: url(../images/common/icon-clock.png) left top 3px/14px 14px no-repeat;
}
@media screen and (max-width: 1050px) {
  .date-icon {
    font-size: 0.6875rem;
  }
}

/* -------------------
  Tags, Label
--------------------*/
.tag {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 5px;
  padding: 4px 6px;
  background-color: #edebde;
  color: #7b7b6c;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  transition: all 0.3s;
}
.tag:last-child {
  margin-right: 0;
}
.tag:hover {
  opacity: 0.7;
}
.tag.type2 {
  padding: 2px 8px 1px;
  background-color: #7b7b6c;
  color: #fff;
}

.tag2 {
  display: inline-block;
  font-size: 0.75rem;
  color: #818181;
}

.tag3 {
  display: inline-block;
  margin-right: 2px;
  padding: 2px 6px;
  background-color: #ebebeb;
  color: #818181;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  transition: all 0.3s;
}
.tag3:last-child {
  margin-right: 0;
}
.tag3:hover {
  opacity: 0.7;
}
.tag3.pink {
  background-color: #ffadad;
}

.tag4 {
  display: inline-block;
  margin-right: 1px;
  margin-bottom: 5px;
  padding: 4px 6px;
  background-color: #ebebeb;
  color: #818181;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  transition: all 0.3s;
}
.tag4:last-child {
  margin-right: 0;
}

.tag5 {
  display: inline-block;
  margin-right: 1px;
  margin-bottom: 5px;
  padding: 0 4px;
  background-color: #fff;
  color: #3f7dd1;
  border: solid 1px #3f7dd1;
  border-radius: 2px;
  font-size: 0.75rem;
  line-height: 1.125rem;
  transition: all 0.3s;
}
.tag5:last-child {
  margin-right: 0;
}

time {
  color: #939393;
}

.cat {
  background: #e63932;
  color: #fff;
  font-size: 14px;
  padding: 3px 10px;
}

.cat2 {
  font-size: 0.6875rem;
  font-weight: bold;
  color: #fff;
  background-color: #3f7dd1;
  padding: 4px 6px;
}

.label {
  margin-right: 10px;
  padding: 2px 5px;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.625rem;
  line-height: 0.9375rem;
  border: solid 1px #000;
  background-color: #fff;
}
@media screen and (max-width: 1050px) {
  .label {
    padding: 1px 3px;
  }
}
.label:last-child {
  margin-right: 0;
}

.label-gray {
  padding: 2px 3px;
  min-width: 70px;
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 2px;
  color: #818181;
  background-color: #f4f4f4;
  text-align: center;
}
.label-gray.pink {
  background-color: #ffadad;
}

.label-gray2 {
  display: inline-block;
  border-radius: 21px;
  padding: 2px 12px;
  font-size: 0.75rem;
  background-color: #c7c7c7;
  color: #474f5f;
}

.label-gray3 {
  display: inline-block;
  border-radius: 2px;
  padding: 2px 12px;
  font-size: 0.75rem;
  background-color: #c7c7c7;
  color: #474f5f;
}

.label-green {
  padding: 2px 3px;
  min-width: 58px;
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 2px;
  color: #fff;
  background-color: #5dc1cf;
  text-align: center;
}

.label-green2 {
  padding: 1px 5px;
  min-width: 58px;
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 2px;
  color: #fff;
  background-color: #5dc1cf;
  text-align: center;
}

.label-yellow {
  padding: 2px 3px;
  min-width: 58px;
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 2px;
  color: #474f5f;
  background-color: #ffce00;
  text-align: center;
}

.label-white {
  padding: 1px 3px;
  min-width: 36px;
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 2px;
  color: #474f5f;
  background-color: #fff;
  border: solid 1px #474f5f;
  text-align: center;
}

.label-msg {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  background-color: #5dc1cf;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .label-msg {
    margin-left: 0;
    margin-top: 15px;
  }
}
.label-msg:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
  -webkit-transform: translate(-100%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 7px solid #5dc1cf;
  border-bottom: 5px solid transparent;
  content: "";
}
@media screen and (max-width: 767px) {
  .label-msg:before {
    left: 15px;
    top: 0;
    transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    border-top: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #5dc1cf;
  }
}

.label-search {
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-block;
  min-width: 72px;
  height: 22px;
  line-height: 22px;
  font-size: 0.75rem;
  color: #818181;
  border-radius: 2px;
  background-color: #fffac1;
  text-align: center;
}
.label-search.green {
  background-color: #c1ffc6;
}
.label-search.pink {
  background-color: #f6d7fc;
}
.label-search.green2 {
  background-color: #dbd9c3;
}
.label-search.blue {
  background-color: #d1e1ff;
}
.label-search.gray {
  background-color: #e0e0e0;
}
.label-search.blue2 {
  background-color: #c1f8ff;
}
.label-search.pink2 {
  background-color: #ffcbcb;
}

.label-search2 {
  margin-bottom: 4px;
  display: inline-block;
  border-radius: 2px;
  border: solid 1px #d0e2db;
  padding: 2px 5px;
  color: #5dc1cf;
  font-size: 0.75rem;
}

.label-time {
  padding: 3px 5px;
  color: #818181;
  background-color: #fff;
  font-size: 0.75rem;
  border-radius: 3px;
}

/* -------------------
  Link, Button, Tab
--------------------*/
.link {
  transition: all 0.3s;
  cursor: pointer;
}
.link:hover {
  opacity: 0.8;
}
.link.underline {
  display: inline-block;
  text-decoration: underline;
  font-size: 0.875rem;
  line-height: 1;
  color: #7b7b6c;
}
.link.underline:hover {
  text-decoration: none;
}

.link2 {
  display: block;
  transition: all 0.3s;
}
.link2:hover {
  opacity: 0.8;
}
.link2.underline {
  display: inline-block;
  text-decoration: underline;
  font-size: 0.875rem;
  line-height: 1;
  color: #7b7b6c;
}
.link2.underline:hover {
  text-decoration: none;
}

.link-icon {
  position: relative;
  padding-right: 14px;
  font-size: 0.875rem;
  line-height: 1;
  color: #7b7b6c;
  transition: all 0.3s;
}
.link-icon:hover:after {
  display: block;
}
.link-icon:after {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 14px);
  height: 1px;
  background-color: #7b7b6c;
  content: "";
}
.link-icon.blank {
  background: url(../images/common/icon-blank.svg) right center/12px 12px no-repeat;
}
.link-icon.pdf {
  background: url(../images/common/icon-pdf.svg) right center/11px 13px no-repeat;
}
.link-icon.excel {
  background: url(../images/common/icon-excel.svg) right center/11px 13px no-repeat;
}

.link-icon2 {
  position: relative;
  padding-right: 18px;
  font-size: 0.875rem;
  line-height: 1;
  color: #68a0fa;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .link-icon2 {
    font-size: 0.75rem;
  }
}
.link-icon2.blank {
  background: url(../images/common/icon-blank-blue.svg) right center/10px 10px no-repeat;
}
.link-icon2.blank.type2 {
  background-image: url(../images/common/icon-blank-blue2.svg);
}
.link-icon2.pdf {
  background: url(../images/common/icon-pdf-blue.svg) right center/12px 13px no-repeat;
}
.link-icon2.pdf.type2 {
  background-image: url(../images/common/icon-pdf-blue2.svg);
}
.link-icon2.arrow {
  padding-right: 14px;
  background: url(../images/common/icon-arrow-blue.svg) right center/5px 10px no-repeat;
}

.link-blue {
  display: inline-block;
  font-size: 0.75rem;
  color: #68a0fa;
  transition: all 0.25s;
}
.link-blue:hover {
  opacity: 0.8;
}
.link-blue.type2 {
  font-size: inherit;
}
.link-blue.type3 {
  font-size: 0.9375rem;
}

.link-blue2 {
  display: block;
  font-size: 0.75rem;
  color: #68a0fa;
}
@media screen and (max-width: 1050px) {
  .link-blue2 {
    width: 325px;
    margin: 0 auto;
    max-width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    border: solid 1px #68a0fa;
    text-align: center;
    background: #fff url(../images/common/icon-arrow-right-blue.svg) right 15px center no-repeat;
  }
}

.link-green {
  display: inline-block;
  font-size: 0.75rem;
  color: #5dc1cf;
  transition: all 0.25s;
}
.link-green:hover {
  opacity: 0.8;
}

.link-map {
  padding: 3px 8px;
  border-radius: 2px;
  background-color: #68a0fa;
  color: #fff;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 0.75rem;
  text-align: center;
  transition: all 0.25s;
}
.link-map:hover {
  opacity: 0.8;
  color: #fff;
}
.link-map span {
  display: inline-block;
  padding-right: 12px;
  background: url(../images/common/icon-maker.svg) right center no-repeat;
}

.btn-yellow {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: bold;
  background-color: #ffce00;
  border-radius: 52px;
  padding: 15px;
  min-width: 208px;
  text-align: center;
  color: #000;
  transition: all 0.3s;
}
.btn-yellow:hover {
  color: #000;
  background-color: #f5dc70;
}

.btn-yellow2 {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #ffce00;
  border-radius: 52px;
  padding: 25px 30px;
  min-width: 322px;
  text-align: center;
  color: #474f5f;
  transition: all 0.3s;
}
.btn-yellow2:hover {
  color: #474f5f;
  background-color: #f5dc70;
}

.btn-yellow3 {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: bold;
  border-radius: 52px;
  padding: 5px 12px 5px 8px;
  min-width: 145px;
  text-align: center;
  color: #000;
  transition: all 0.3s;
  background: #ffce00 url(../images/common/icon-next-arrow.svg) right 8px center/4px 8px no-repeat;
}
@media screen and (max-width: 767px) {
  .btn-yellow3 {
    font-size: 0.75rem;
    padding: 5px 10px 5px 6px;
    min-width: 125px;
  }
}
.btn-yellow3:hover {
  color: #000;
  background-color: #f5dc70;
}

.btn-yellow4 {
  width: 250px;
  display: inline-block;
  color: #474f5f;
  font-weight: bold;
  padding: 16px 9px;
  background-color: #ffce00;
  border: solid 1px #ffce00;
  font-size: 0.875rem;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-yellow4 {
    width: 100%;
  }
}
.btn-yellow4:hover {
  background-color: #fff;
}
.btn-yellow4.type2 {
  width: 100%;
}

.btn-pink {
  display: inline-block;
  background-color: #ff7676;
  color: #fff;
  height: 72px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 72px;
  min-width: 310px;
  max-width: 100%;
  border-radius: 72px;
  text-align: center;
  transition: all 0.3s;
}
.btn-pink:hover {
  opacity: 0.8;
  color: #fff;
}

.btn-blue {
  display: inline-block;
  color: #fff;
  padding: 6px 9px;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-blue:hover {
  color: #68a0fa;
  background-color: #fff;
}

.btn-blue2 {
  display: inline-block;
  width: 280px;
  height: 52px;
  line-height: 52px;
  max-width: 95%;
  color: #fff;
  font-size: 0.875rem;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
.btn-blue2:hover {
  color: #68a0fa;
  background-color: #fff;
}

.btn-blue3 {
  display: inline-block;
  color: #fff;
  width: 123px;
  max-width: 100%;
  padding: 6px 9px;
  font-size: 0.875rem;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
.btn-blue3:hover {
  color: #68a0fa;
  background-color: #fff;
}
.btn-blue3.type2 {
  min-width: 178px;
}
@media screen and (max-width: 767px) {
  .btn-blue3.type2 {
    width: 100%;
  }
}

.btn-blue4 {
  display: inline-block;
  color: #fff;
  padding: 6px 9px;
  font-size: 0.75rem;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-blue4:hover {
  color: #68a0fa;
  background-color: #fff;
}

.btn-blue5 {
  display: inline-block;
  width: 335px;
  height: 52px;
  line-height: 52px;
  color: #fff;
  font-size: 0.875rem;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1050px) {
  .btn-blue5 {
    max-width: 100%;
  }
}
.btn-blue5:hover {
  color: #68a0fa;
  background-color: #fff;
}

.btn-blue6 {
  display: inline-block;
  width: 322px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 1.25rem;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 30px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1050px) {
  .btn-blue6 {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.btn-blue6:hover {
  color: #68a0fa;
  background-color: #fff;
}

.btn-white {
  display: inline-block;
  color: #68a0fa;
  padding: 6px 9px;
  background-color: #fff;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-white:hover {
  color: #fff;
  background-color: #68a0fa;
}

.btn-white2 {
  display: inline-block;
  color: #68a0fa;
  width: 90px;
  max-width: 100%;
  padding: 4px 12px;
  background-color: #fff;
  border: solid 1px #68a0fa;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 1px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
.btn-white2:hover {
  color: #fff;
  background-color: #68a0fa;
}

.btn-white3 {
  display: inline-block;
  width: 280px;
  height: 52px;
  line-height: 52px;
  max-width: 95%;
  color: #68a0fa;
  font-size: 0.875rem;
  background-color: #fff;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-white3:hover {
  color: #fff;
  background-color: #68a0fa;
}

.btn-white4 {
  display: inline-block;
  width: 250px;
  padding: 16px 9px;
  max-width: 95%;
  color: #68a0fa;
  font-size: 0.875rem;
  background-color: #fff;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
}
.btn-white4:hover {
  color: #fff;
  background-color: #68a0fa;
}

.btn-submit {
  width: 250px;
  display: inline-block;
  color: #fff;
  padding: 16px 9px;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  font-size: 0.875rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-submit {
    width: 100%;
  }
}
.btn-submit:hover {
  color: #68a0fa;
  background-color: #fff;
}
.btn-submit.type2 {
  width: 100%;
}
.btn-submit.type3 {
  width: 335px;
}
@media screen and (max-width: 767px) {
  .btn-submit.type3 {
    width: 100%;
  }
}
.btn-submit.type4 {
  width: 280px;
  margin: 0 auto;
}

.btn-new {
  width: 48px;
  display: inline-block;
  color: #fff;
  padding: 9px 0;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  font-size: 0.875rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
.btn-new:hover {
  color: #68a0fa;
  background-color: #fff;
}

.btn-green {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 26px;
  padding: 0 10px;
  color: #fff;
  background-color: #5dc1cf;
  border: solid 1px #5dc1cf;
  border-radius: 26px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-green:hover {
  opacity: 0.8;
}

.btn-search {
  width: 280px;
  max-width: 100%;
  display: inline-block;
  color: #fff;
  padding: 13px 9px;
  background-color: #68a0fa;
  border: solid 1px #68a0fa;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
.btn-search.type2 span:before {
  top: 1px;
}
.btn-search:hover {
  color: #68a0fa;
  background-color: #fff;
}
.btn-search:hover span:before {
  background-image: url(../images/common/icon-search-blue.svg);
}
.btn-search span {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}
.btn-search span:before {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/common/icon-search-white.svg) no-repeat;
  background-size: contain;
  content: "";
}

.btn-del {
  width: 250px;
  display: inline-block;
  color: #818181;
  padding: 16px 9px;
  background-color: #fff;
  border: solid 1px #c7c7c7;
  border-radius: 5px;
  transition: all 0.25s;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-del {
    width: auto;
    border: none;
    background: none !important;
    padding: 0;
  }
}
.btn-del:hover {
  background-color: #c7c7c7;
}
.btn-del span {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}
@media screen and (max-width: 767px) {
  .btn-del span {
    padding-left: 0;
    padding-top: 18px;
  }
}
.btn-del span:before {
  position: absolute;
  top: -2px;
  left: 0;
  display: inline-block;
  width: 18px;
  height: 20px;
  background: url(../images/common/icon-trash.svg) no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .btn-del span:before {
    top: 0;
    left: calc(50% - 6px);
    width: 12px;
    height: 14px;
  }
}

.btn-del2 {
  display: inline-block;
  transition: all 0.25s;
}
.btn-del2:hover {
  opacity: 0.8;
}
.btn-del2Wrap {
  padding: 18px 0;
}
@media screen and (max-width: 767px) {
  .btn-del2.type2 span {
    padding-left: 0;
    padding-top: 18px;
  }
  .btn-del2.type2 span:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
.btn-del2 span {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  font-size: 0.875rem;
}
.btn-del2 span:before {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url(../images/common/icon-trash.svg) no-repeat;
  background-size: contain;
  content: "";
}

.btn-del3 {
  display: inline-block;
  width: 40px;
  transition: all 0.25s;
}
.btn-del3:hover {
  opacity: 0.8;
}
.btn-del3 span {
  position: relative;
  display: inline-block;
  padding-top: 18px;
  font-size: 0.875rem;
}
.btn-del3 span:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url(../images/common/icon-trash.svg) no-repeat;
  background-size: contain;
  content: "";
}

.btn-edit {
  display: inline-block;
  padding-left: 18px;
  font-size: 0.875rem;
  transition: all 0.25s;
}
.btn-edit:hover {
  opacity: 0.8;
}

.btn-viewmore {
  display: inline-block;
  background-color: #fff;
  color: #474f5f;
  height: 55px;
  line-height: 55px;
  font-size: 0.75rem;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  min-width: 154px;
  max-width: 100%;
  border-radius: 72px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-viewmore {
    width: 100%;
  }
}
.btn-viewmore span {
  padding-right: 21px;
  background: url(../images/common/icon-arrow-right.svg) right 3px center no-repeat;
  transition: all 0.3s;
}
.btn-viewmore:hover {
  color: #474f5f;
}
.btn-viewmore:hover span {
  background-position: right 0 center;
}

.btn-add {
  padding: 3px 0 3px 26px;
  color: #68a0fa;
  font-size: 0.875rem;
  background: url(../images/common/icon-add.svg) left center no-repeat;
  transition: all 0.25s;
}
.btn-add:hover {
  opacity: 0.8;
  color: #68a0fa;
}

.btn-add2 {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/common/icon-add-gray.svg) center center no-repeat;
  transition: all 0.25s;
}
.btn-add2:hover {
  opacity: 0.8;
}

.btn-like {
  padding: 6px 8px;
  font-size: 0.75rem;
  color: #474f5f;
  border: solid 1px #ff9d00;
  border-radius: 4px;
}
.btn-like.type2 {
  min-width: 95px;
  display: inline-block;
  padding: 4px 8px;
}
.btn-like span {
  display: inline-block;
  padding-left: 20px;
  background: url(../images/common/icon-like.svg) left center/16px 16px no-repeat;
}
.btn-like.dis {
  border-color: #7ea8d3;
}
.btn-like.dis span {
  background: url(../images/common/icon-dislike.svg) left center/16px 16px no-repeat;
}

.btn-map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  margin: 0 auto;
  padding: 18px 0;
  border-radius: 6px;
  border: solid 1px #818181;
  font-size: 0.75rem;
}

.btn-stoke {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: inline-block;
}
.btn-stoke a {
  transition: opacity 0.3s;
}
.btn-stoke a:hover {
  opacity: 0.7;
}

/* -------------------
  Group button
--------------------*/
.post-ctrl {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 20px 0;
}
.post-ctrl--link {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0px;
  font-size: 0.875rem;
  line-height: 1;
  transition: all 0.3s;
  color: #7b7b6c;
  background: url(../images/common/icon-arrow-right-gray.svg) right center/10px 10px no-repeat;
}
.post-ctrl--link:hover:after {
  display: block;
}
.post-ctrl--link:after {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #7b7b6c;
  content: "";
}
.post-ctrl .back {
  margin-right: auto;
  padding: 0 0 0 20px;
  background: url(../images/common/icon-arrow-left-gray.svg) left center/10px 10px no-repeat;
}
.post-ctrl .back:after {
  left: 20px;
}
.post-ctrl .next {
  margin-left: auto;
}
.post-ctrl--menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  padding-top: 24px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #7b7b6c;
  background: url(../images/common/icon-all.svg) no-repeat top center;
  background-size: 18px 18px;
}

.post-ctrl2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  max-width: 100%;
  padding: 20px 0;
  margin: 0 auto;
}
.post-ctrl2--link {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: solid 1px #5dc1cf;
  background-color: #5dc1cf;
  border-radius: 50%;
  transition: all 0.3s;
}
.post-ctrl2--link.type2 {
  border-color: #3f7dd1;
  background-color: #3f7dd1;
}
.post-ctrl2--link:hover {
  opacity: 0.7;
}
.post-ctrl2--link:after {
  display: inline-block;
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 5px);
  width: 12px;
  height: 12px;
  background: url(../images/blog/arrow-left.svg) center center/100% 100% no-repeat;
  content: "";
}
.post-ctrl2 .back {
  margin-right: auto;
  padding: 0 0 0 20px;
}
.post-ctrl2 .back:after {
  left: calc(50% - 6px);
  transform: rotate(180deg);
  background: url(../images/blog/arrow-left.svg) center center/100% 100% no-repeat;
}
.post-ctrl2--count {
  font-size: 0.9375rem;
  color: #b7b7b7;
}
.post-ctrl2 .next {
  margin-left: auto;
}

.post-direct {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 11px;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}
@media screen and (max-width: 1050px) {
  .post-direct {
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 1050px) {
  .post-direct-tag {
    width: 100%;
  }
}
.post-direct-sns {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1050px) {
  .post-direct-sns {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}
.post-direct-sns a {
  margin-right: 20px;
}
@media screen and (max-width: 1050px) {
  .post-direct-sns a {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: solid 1px #7b7b6c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post-direct-sns a img {
    width: auto;
  }
}
.post-direct-sns a.facebook {
  padding-bottom: 2px;
}
.post-direct-sns a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .table2 {
    overflow-x: auto;
  }
}

.table2 table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.table2 th {
  background-color: #f2f5f7;
  border: 1px solid #e6eef2;
  box-sizing: border-box;
  font-weight: 700;
  padding: 20px 15px;
  width: 185px;
}

.table2 td {
  border: 1px solid #e6eef2;
  box-sizing: border-box;
  padding: 20px 15px;
}

@media screen and (max-width: 767px) {
  .table2.type2 table {
    width: 220vw;
  }
}

.table {
  font-size: 0.75rem;
  color: #474f5f;
}
.tableWrap2 {
  max-height: 400px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .tableWrap2 {
    max-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .tableWrap {
    width: 220vw;
    overflow: auto;
  }
}
.table thead {
  background-color: #f4f4f4;
  font-weight: bold;
}
.table thead th {
  text-align: center;
}
.table tbody tr {
  border-bottom: solid 1px #ebebeb;
}
.table th.t_date {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .table th.t_date {
    width: 155px;
  }
}
@media screen and (max-width: 767px) {
  .table th.t_name {
    width: 130px;
  }
}
.table th.t_review {
  width: 95px;
}
@media screen and (max-width: 767px) {
  .table th.t_review {
    width: 100px;
  }
}
.table th.t_points {
  width: 80px;
}
.table th.t_detail {
  width: 60px;
}
.table th.t_cbox {
  width: 45px;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .table th.t_cbox {
    width: 35px;
  }
}
.table th.t_think {
  width: 180px;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .table th.t_think {
    width: auto;
  }
}
.table td {
  vertical-align: middle;
}
.table td.t_cbox {
  padding-right: 0;
}

.table > :not(caption) > * > * {
  padding: 10px 15px;
}
@media screen and (max-width: 767px) {
  .table > :not(caption) > * > * {
    padding: 10px;
  }
}

.form {
  position: relative;
  font-size: 0.75rem;
  color: #818181;
}
.form-label {
  color: #474f5f;
  font-weight: bold;
}
.form-groupField {
  display: flex;
  margin: -3px;
}
.form-groupField--item {
  padding: 3px;
}
.form-ctrl {
  margin: 40px -7px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form-ctrl {
    padding: 0 10px;
  }
  .form-ctrl.type2 {
    flex-wrap: wrap;
    flex-flow: column-reverse;
    padding: 0 20px;
  }
  .form-ctrl.type2 .form-ctrl--item {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .form-ctrl.type2 .form-ctrl--item a {
    width: 100%;
    max-width: 100%;
  }
}
.form-ctrl--item {
  padding: 0 7px;
}
@media screen and (max-width: 767px) {
  .form-ctrl--item.btn-submitWrap {
    width: calc(100% - 70px);
  }
  .form-ctrl--item.btn-submitWrap .btn-submit {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .form-ctrl {
    margin-top: 20px;
  }
}
.form-ctrl2 {
  margin-top: 40px;
  text-align: center;
}
.form-ctrl2--link {
  margin-top: 35px;
}
.form--error {
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 0.75rem;
  color: #ff0000;
}
.form-input.type-btn {
  display: flex;
  align-items: center;
}
.form-input.type-btn ._num {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .form-input.type-btn ._num {
    width: 100px;
  }
}
.form-input.type-btn ._unit {
  width: 100px;
}

.input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 10px 16px;
  color: #818181;
  background-color: #fff;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
  transition: all 0.3s;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .input {
    padding: 10px;
  }
}
.input.error {
  color: #acacac;
  border: solid 1px #ff0000;
  background-color: #fff2f2;
}
.input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #c7c7c7;
  opacity: 1;
  /* Firefox */
}
.input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c7c7c7;
}
.input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #c7c7c7;
}
.input:focus,
.input.active {
  border-color: #474f5f;
  background-color: #fff;
  color: #474f5f;
}
.input.textarea {
  height: 140px;
}
.input.textarea2 {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .input.textarea2 {
    height: 180px;
  }
}
.input.textarea3 {
  height: 400px;
}
@media screen and (max-width: 767px) {
  .input.textarea3 {
    height: 300px;
  }
}
.input.textarea4 {
  height: 170px;
}
@media screen and (max-width: 767px) {
  .input.textarea4 {
    height: 180px;
  }
}
.input.textarea5 {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .input.textarea5 {
    height: 60px;
  }
}
.input.type2 {
  width: 60px;
  display: inline-block;
  padding: 10px 16px;
}
.input.type3 {
  width: 72px;
  display: inline-block;
  padding: 10px;
}
.input.type4 {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .input.type4 {
    width: 100%;
    margin-bottom: 15px;
  }
}
.input.type5 {
  width: 220px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .input.type5 {
    width: 100%;
    margin-bottom: 15px;
  }
}
.input.type6 {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .input.type6 {
    width: 100%;
  }
}
.input.type7 {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .input.type7 {
    width: 100%;
  }
}
.input.type8 {
  width: 175px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .input.type8 {
    width: 100%;
  }
}
.input.type9 {
  width: 100%;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .input.type9 {
    width: 100%;
  }
}
.input.type10 {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .input.type10 {
    width: 100%;
  }
}
.input.hasBtn {
  width: 100%;
  margin: 0 auto;
  padding-right: 45px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .input.hasBtn {
    height: 50px;
  }
}
.input._date {
  padding-right: 50px;
  background: url(../images/common/icon-calendar-gray.svg) right 20px center no-repeat;
}

textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #c7c7c7;
  opacity: 1;
  /* Firefox */
}

textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #c7c7c7;
}

textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #c7c7c7;
}

.input-submit {
  width: 38px;
  height: 38px;
  border: none;
  background: #68a0fa url(../images/common/icon-search-white.svg) center center no-repeat;
  box-shadow: none;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
}
.input-submit:hover {
  opacity: 0.8;
}

.select {
  display: inline-block;
  width: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../images/common/icon-arrow-down-blue.svg) right 12px center/10px 5px no-repeat;
  font-family:
    "Merriweather", "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3",
    "メイリオ", sans-serif;
  padding: 10px 40px 10px 16px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select {
    padding: 10px 35px 10px 10px;
  }
}
.select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.select::-ms-expand {
  display: none;
}
.select.type2 {
  display: block;
  width: 100%;
}
.select.type3 {
  width: 100px;
}
.select.small {
  padding-right: 28px;
}

.select2 .select2-selection--single {
  border: 1px solid #c7c7c7 !important;
  border-radius: 5px !important;
  width: auto;
  height: auto !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../images/common/icon-arrow-down-blue.svg) right 12px center/10px 5px no-repeat;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 10px 40px 11px 16px;
  cursor: pointer;
}
.select2 .select2-selection--single .select2-selection__rendered {
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-overflow: clip !important;
  color: #818181 !important;
  line-height: normal !important;
}
.select2 .select2-selection--single .select2-selection__arrow {
  display: none;
}

.select2-dropdown {
  background-color: #e8e8e7 !important;
}

.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0 0 0 38px;
}
.checkbox + label:before {
  top: -5px;
  left: 0;
  position: absolute;
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 30px;
  height: 30px;
  background: #fafcd7;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  content: "";
}
@media screen and (max-width: 1050px) {
  .checkbox + label:before {
    top: -8px;
  }
}
.checkbox:checked + label:before {
  background-color: #7b7b6c;
  border-color: #7b7b6c;
}
.checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 9px;
  background: #fafcd7;
  width: 2px;
  height: 2px;
  box-shadow:
    2px 0 0 #fafcd7,
    4px 0 0 #fafcd7,
    4px -2px 0 #fafcd7,
    4px -4px 0 #fafcd7,
    4px -6px 0 #fafcd7,
    4px -8px 0 #fafcd7;
  transform: rotate(45deg);
}
@media screen and (max-width: 1050px) {
  .checkbox:checked + label:after {
    top: 6px;
  }
}

.checkbox2 {
  position: absolute;
  opacity: 0;
}
.checkbox2 + label {
  position: relative;
  cursor: pointer;
  padding: 0 0 0 24px;
}
.checkbox2 + label:before {
  top: -17px;
  left: 0;
  position: absolute;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: #fff url(../images/common/icon-cbox.svg) center center no-repeat;
  background-size: 12px 8px;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  content: "";
}
@media screen and (max-width: 1050px) {
  .checkbox2 + label:before {
    top: -15px;
  }
}
.checkbox2:checked + label:before {
  background: #5dc1cf url(../images/common/icon-cbox-white.svg) center center no-repeat;
}
.checkbox2:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.checkbox2:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.checkbox3 {
  position: absolute;
  opacity: 0;
}
.checkbox3 + label {
  position: relative;
  cursor: pointer;
  padding: 0 0 0 24px;
}
.checkbox3 + label:before {
  top: -2px;
  left: 0;
  position: absolute;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: #fff url(../images/common/icon-cbox.svg) center center no-repeat;
  background-size: 12px 8px;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  content: "";
}
@media screen and (max-width: 1050px) {
  .checkbox3 + label:before {
    top: -2px;
  }
}
.checkbox3:checked + label:before {
  background: #5dc1cf url(../images/common/icon-cbox-white.svg) center center no-repeat;
}
.checkbox3:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.checkbox3:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.form-radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -6px -10px;
}
.form-radio--item {
  width: 25%;
  padding: 6px 10px;
}
@media screen and (max-width: 767px) {
  .form-radio--item {
    width: 50%;
  }
}
.form-radio--item.type2 {
  width: auto;
}
.form-radio label {
  display: inline-flex;
  cursor: pointer;
  vertical-align: top;
}
.form-radio label > input {
  display: none;
}
.form-radio label > span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.form-radio label > span::before {
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  border: 1px solid #ccc;
  background: #fff;
  margin-right: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.form-radio label > input:checked + span::before {
  border-color: #5dc1cf;
  background: #5dc1cf;
}
.form-radio label > input:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.form-action {
  display: flex;
  justify-content: center;
}

.form-search {
  position: relative;
  margin: 0 auto 30px;
}
.form-searchWrap {
  margin-bottom: 25px;
  border-bottom: solid 1px #ebebeb;
}
.form-search .input-submit {
  position: absolute;
  top: 3px;
  right: 3px;
}
@media screen and (max-width: 767px) {
  .form-search .input-submit {
    top: 4px;
    right: 4px;
    width: 42px;
    height: 42px;
  }
}

.important {
  position: relative;
}
.important:after {
  position: absolute;
  left: -3px;
  top: 14px;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  display: block;
  color: #ff000b;
  font-weight: bold;
  font-size: 12px;
  content: "※";
}

.form-row2 {
  display: flex;
  align-items: center;
}
.form-row2--label {
  min-width: 50px;
  flex-shrink: 0;
  margin-right: 10px;
}

.form-image {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.form-image--item {
  width: 50%;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .form-image--item {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
.form-image--item-thumb {
  height: 180px;
}
@media screen and (max-width: 767px) {
  .form-image--item-thumb {
    height: 208px;
  }
}
.form-image--item-ctrl {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .form-image--item-ctrl {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.form-image--item.last {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-itemDel {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #f4f4f4;
}
.form-itemDel:last-child {
  margin-bottom: 0;
}
.form-itemDel--head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.form-itemDel--ttl {
  font-size: 0.875rem;
  font-weight: bold;
  color: #474f5f;
}

.form-itemRadioInput {
  display: flex;
}
@media screen and (max-width: 767px) {
  .form-itemRadioInput {
    display: block;
  }
}
.form-itemRadioInput .form-radio {
  flex-wrap: nowrap;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .form-itemRadioInput .form-radio {
    margin-left: 0;
    margin-top: 15px;
  }
}
.form-itemRadioInput .form-radio--item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form-itemRadioInput .form-radio--item {
    padding-left: 0;
    padding-right: 0;
  }
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right;
}

.align-top {
  align-items: flex-start !important;
}

.d_flex {
  display: flex;
}
.d_flex.between {
  justify-content: space-between;
}
.d_flex.center {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .d_flex {
    display: block;
  }
}

.d_flex2 {
  display: flex;
  align-items: center;
}

.d_flex3 {
  display: flex;
  justify-content: center;
}

.col2-75 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .col2-75 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .col2-75--left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.col2-75--right {
  width: 25%;
  margin-left: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .col2-75--right {
    width: 100%;
    margin-left: 0;
  }
}

.col2-25 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .col2-25 {
    display: block;
  }
}
.col2-25--left {
  width: 25%;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .col2-25--left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .col2-25--right {
    width: 100%;
    margin-bottom: 20px;
  }
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .col2 {
    display: block;
    margin: 0;
  }
}
.col2-item {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .col2-item {
    width: 100%;
    padding: 0;
  }
}
.col2-item--inner {
  display: block;
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .col3 {
    display: block;
    margin: 0;
  }
}
.col3-item {
  width: 33.33%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .col3-item {
    width: 100%;
    padding: 0;
  }
}
.col3-item--inner {
  display: block;
}

.col4 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .col4 {
    display: block;
    margin: 0;
  }
}
.col4-item {
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .col4-item {
    width: 100%;
    padding: 0;
  }
}
.col4-item--inner {
  display: block;
}

.col5 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .col5 {
    display: block;
    margin: 0;
  }
}
.col5-item {
  width: 20%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .col5-item {
    width: 100%;
    padding: 0;
  }
}
.col5-item--inner {
  display: block;
}

.pagination {
  line-height: 1;
  margin: 50px 0;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .prev-area,
.pagination .number-area,
.pagination .next-area {
  display: flex;
  align-items: center;
}
.pagination li {
  margin: 0 15px;
}
.pagination .number-area li {
  margin: 0 10px;
}
.pagination .number-area li a {
  border: 1px solid #e63932;
  display: block;
  color: #292929;
  border-radius: 5px;
  width: 29px;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .number-area li.current {
  background: #e63932;
  border: 1px solid #e63932;
  color: #fff;
  border-radius: 5px;
  width: 29px;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------
	BREADCRUMB
--------------------*/
.breadcrumb {
  margin-top: 22px;
  padding: 0 30px;
}
@media screen and (max-width: 1050px) {
  .breadcrumb {
    white-space: nowrap;
    overflow-x: auto;
    margin-top: 5px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1050px) {
  .breadcrumb {
    padding: 0 8px;
  }
}
.breadcrumb-wrapper {
  padding-top: 15px;
}
@media screen and (max-width: 1050px) {
  .breadcrumb-wrapper {
    padding: 0 0 5px 0;
  }
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 0.75rem;
  position: relative;
  padding-right: 20px;
  color: #000;
}
.breadcrumb ul li a {
  display: inline-block;
  color: #68a0fa;
  transition: all 0.3s;
}
.breadcrumb ul li a:hover {
  opacity: 0.8;
}
.breadcrumb ul li:last-child {
  padding-right: 0;
}
.breadcrumb ul li:last-child:before {
  display: none;
}
.breadcrumb ul li:before {
  display: inline-block;
  position: absolute;
  top: 7px;
  right: 4px;
  width: 4px;
  height: 5px;
  background: url(../images/common/icon-breadcrumb.svg) center center/100% 100% no-repeat;
  content: "";
}
@media screen and (max-width: 1050px) {
  .breadcrumb ul li {
    margin-bottom: 8px;
  }
}
.breadcrumb ul li a {
  transition: all 0.3s;
}
.breadcrumb ul li a:hover {
  opacity: 0.7;
}

/* -------------------
  THUMBNAIL, IMAGE
--------------------*/
.thumb-ttl {
  margin-top: 10px;
}

/* -------------------
  PAGE TOP
--------------------*/
.page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  opacity: 0;
  background-color: #7b7b6c;
  transition: all 0.3s;
  z-index: -1;
}
.page-top.active {
  opacity: 1;
  z-index: 8999;
}
.page-top.active:hover {
  opacity: 0.6;
}
.page-top span {
  display: block;
  height: 6px;
  width: 12px;
  background: url(../images/common/pageTop.png) no-repeat;
  background-size: 100%;
  text-indent: 180%;
  white-space: nowrap;
  overflow: hidden;
}

/* -------------------
  ACCORDION
--------------------*/
.accordion-label {
  background: #f2f5f7;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  height: 65px;
  align-items: center;
  padding: 25px 70px 25px 20px;
  position: relative;
  transition: all 0.6s;
}
.accordion-label:after {
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-block;
  border: solid #939393;
  border-width: 0 0 2px 2px;
  display: inline-block;
  padding: 2px;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transition: all 0.25s;
  content: "";
}
.accordion-label.active:after {
  transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(135deg);
}

.accordion-cnt {
  display: none;
  padding: 25px 70px 25px 20px;
}

/* -------------------
  TABS
--------------------*/
@media screen and (max-width: 1050px) {
  .tabs-navWrapper {
    white-space: nowrap;
    overflow-x: auto;
  }
}

.tabs-nav {
  display: flex;
  width: 100%;
}

.tabs-item {
  width: 220px;
  max-width: 100%;
  font-size: 1.125rem;
  color: #818181;
  background-color: #ebebeb;
  margin-right: 8px;
  padding: 17px 15px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .tabs-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    margin-right: 0;
    font-size: 0.875rem;
  }
}
.tabs-item:last-child {
  margin-right: 0;
}
.tabs-item.active,
.tabs-item:hover {
  color: #5dc1cf;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .tabs-item.type2 {
    width: 50%;
  }
}
.tabs-item.type3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  max-width: 20%;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 17px 3px;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .tabs-item.type3 {
    max-width: 100%;
    width: 100%;
    font-size: 0.75rem;
  }
}

.tabs-cnt {
  background-color: #fff;
  padding: 30px 20px 0;
}
.tabs-cnt.type2 {
  padding-bottom: 40px;
}
.tabs-cnt.type3 {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .tabs-cnt.type4 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 1050px) {
  .tabs2-navWrapper {
    white-space: nowrap;
    overflow-x: auto;
  }
}

.tabs2-nav {
  margin: 0 auto;
  padding: 0 2vw;
}

.tabs2-item {
  padding: 20px 15px;
  color: #474f5f;
  font-size: 1.5rem;
  font-weight: bold;
  background: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 1050px) {
  .tabs2-item {
    font-size: 1.25rem;
  }
}
.tabs2-item span {
  padding-top: 42px;
  background: url(../images/common/icon-fac-black.svg) top center no-repeat;
}
@media screen and (min-width: 1051px) {
  .tabs2-item {
    cursor: auto;
  }
}

.tabs2-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  background: url(../images/top/bg-tabItem-blue.svg) no-repeat;
  background-size: 100% 100%;
  margin: 0 0 7px;
}
.tabs2-title-type2 {
  background-image: url(../images/top/bg-tabItem-pink.svg);
}
.tabs2-title-type2 span {
  background: url(../images/common/icon-doc-black.svg) top center no-repeat;
}
@media screen and (max-width: 1050px) {
  .tabs2-title {
    height: 39vw;
  }
}

.tabs2-cnt {
  display: flex;
  background-color: #fff;
  margin: 7px 0 0;
}

.tabs2-panel {
  width: 50%;
  padding: 0 15px;
}

.tabs2-menu .thumb {
  position: relative;
  background: url(../images/top/bg-card-blue.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  height: 139px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .tabs2-menu .thumb {
    height: 29vw;
  }
}
.tabs2-menu .thumb figcaption {
  font-size: 0.9375rem;
  font-weight: 700;
  position: absolute;
  bottom: 15px;
  display: block;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .tabs2-menu .thumb figcaption {
    font-size: 0.8125rem;
    bottom: 12px;
  }
}
@media screen and (max-width: 1050px) {
  .tabs2-menu .thumb img {
    max-width: 65%;
    max-height: 65%;
  }
}

.tabs2-menu-type2 .thumb {
  background-image: url(../images/top/bg-card-green.png);
}

@media screen and (max-width: 1050px) {
  .tabs2-menu {
    display: flex;
    flex-flow: row wrap;
  }
}

.tabs2-menu li {
  width: 32%;
  margin: 0 calc(4% / 2) 10px 0;
}
.tabs2-menu li:nth-of-type(3n) {
  margin: 0 0 10px 0;
}

.modal-complete {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  padding: 0;
  margin: 0;
  color: #ffffff;
  background: #191b1d;
  opacity: 0.8;
  border-radius: 3px;
  z-index: 8000;
}
.modal-complete--cnt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.modal-complete--cnt-icon {
  text-align: center;
}
.modal-complete--cnt-icon img {
  width: 46px;
}
.modal-complete--cnt-msg {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
}

.btn-close {
  background: #818181 url(../images/common/icon-x.svg) center center no-repeat;
  opacity: 1;
  border-radius: 50%;
}

.modal-dialog.type2 {
  max-width: 600px;
}

.modal-confirm {
  width: 335px;
  max-width: 100%;
  padding: 5px 20px 25px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-confirm {
    padding-bottom: 35px;
  }
}
.modal-confirm .modal-header {
  margin-bottom: 30px;
  border-bottom: none;
  padding-right: 0;
}
.modal-confirm .btn-white {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .modal-confirm .btn-white {
    margin-bottom: 20px;
  }
}
.modal-confirm .btn-blue {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .modal-confirm .btn-blue {
    margin-bottom: 25px;
  }
}
.modal-confirm .btn-white,
.modal-confirm .btn-blue {
  display: block;
  width: 100%;
  height: 52px;
  line-height: 52px;
  padding: 0;
}
.modal-confirm--ttl {
  color: #474f5f;
  font-weight: bold;
  margin-bottom: 15px;
}
.modal-confirm--msg {
  margin-bottom: 30px;
  font-size: 0.875rem;
}
.modal-confirm--close {
  color: #68a0fa;
  font-size: 0.75rem;
  cursor: pointer;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.modal-colection {
  width: 600px;
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-colection {
    padding-bottom: 35px;
  }
}
.modal-colection .btn-close {
  margin-right: 0;
  padding: 0;
  background: url(../images/common/icon-x.svg) center center no-repeat;
}
.modal-colection .modal-header {
  padding: 15px 20px;
  margin-bottom: 30px;
  border-bottom: none;
  background-color: #5dc1cf;
}
.modal-colection .modal-header--ttl {
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.modal-colection--close {
  color: #68a0fa;
  font-size: 0.75rem;
  cursor: pointer;
}
.modal-colection--list {
  padding: 10px 30px 20px;
}
.modal-colection--list-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.modal-colection--list-row-item {
  width: 33.33%;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .modal-colection--list-row-item {
    width: 100%;
  }
}
.modal-colection--list-row-item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-bottom: 20px;
  font-size: 1rem;
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #474f5f;
  border: solid 1px #5dc1cf;
  background-color: #f4f4f4;
  border-radius: 2px;
  transition: all 0.25s;
}
@media screen and (max-width: 767px) {
  .modal-colection--list-row-item a {
    padding: 0 15px 0 45px;
  }
}
.modal-colection--list-row-item a:hover {
  opacity: 0.7;
}
.modal-colection--list-row-item a:after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 1px #5dc1cf;
  content: "";
}
@media screen and (max-width: 767px) {
  .modal-colection--list-row-item a:after {
    left: 25px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.modal-colection--list-row-item.disable a {
  color: #c7c7c7;
  border-color: #ebebeb;
  background-color: #ebebeb;
}
.modal-colection--list-row-item.disable a:after {
  width: 6px;
  height: 2px;
  bottom: 16px;
  background-color: #c7c7c7;
  border: none;
}
.modal-colection--list-row-item.cancel a {
  color: #c7c7c7;
  border-color: #ebebeb;
  background-color: #f4f4f4;
}
.modal-colection--list-row-item.cancel a:after {
  width: auto;
  height: auto;
  bottom: 5px;
  font-size: 1.25rem;
  background: none;
  border: none;
  color: #5dc1cf;
  font-weight: normal;
  content: "×";
}

.modal-find {
  max-width: 1000px;
}
.modal-find .modal-header {
  border-bottom: none;
}
.modal-find .checkboxWrap label {
  width: 100%;
  padding-left: 28px;
  color: #818181;
  font-size: 0.875rem;
}
.modal-find .checkboxWrap-outer {
  position: relative;
  display: block;
  text-align: left;
  padding-right: 28px;
  padding: 15px 28px 15px 15px;
  margin-right: 0;
  width: 100%;
  background-color: #fff;
}
.modal-find .checkboxWrap-outer:hover {
  background-color: #effdf9;
}
.modal-find .checkboxWrap-outer:hover .checkboxWrap label {
  color: #5dc1cf;
}
.modal-find .checkboxWrap-outer:after {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  display: block;
  width: 5px;
  height: 10px;
  background: url(../images/common/icon-arrow-right-blue.svg) no-repeat;
  background-size: contain;
  content: "";
}
.modal-find .tabs {
  display: flex;
  padding: 0 40px 40px;
}
.modal-find .tabs-navWrapper {
  display: flex;
  flex-wrap: wrap;
  width: 30%;
  min-width: 200px;
  flex-shrink: 0;
  border-right: solid 1px #ebebeb;
}
.modal-find .tabs-nav {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
}
.modal-find .tabs-cnt {
  padding: 0;
  width: 100%;
}
.modal-find .tabs-cnt--list {
  display: flex;
  flex-wrap: wrap;
  height: 550px;
  overflow-y: auto;
}
.modal-find .tabs-cnt--item {
  width: 50%;
  background-color: #fafafa;
}
.modal-find .tabs-cnt--item:nth-child(2n + 1) {
  border-right: solid 1px #ebebeb;
}
.modal-find--foot {
  text-align: center;
  padding-bottom: 30px;
}
.modal-find--foot-direct {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .modal-form .container6 {
    padding: 0 20px;
  }
}

.modal-form .form-search {
  margin-bottom: 10px;
}
.modal-form .form-search .input.hasBtn {
  font-size: 0.875rem;
}

.modal-form .form-search02--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 30px;
}
@media screen and (max-width: 767px) {
  .modal-form .form-search02--inner {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .modal-form .form-search02--label {
    text-align: left;
    margin-bottom: 8px;
  }
}

.modal-form .form-search02--cnt .form-input {
  display: flex;
  align-items: center;
}
.modal-form .form-search02--cnt .form-input .input._date {
  width: 170px;
  margin-left: 30px;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  height: 72px;
  z-index: 10;
}
@media screen and (max-width: 1050px) {
  .l-header {
    height: 72px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .l-header {
    height: 80px;
  }
}
.l-header-logo {
  padding-left: 40px;
}
@media screen and (max-width: 1050px) {
  .l-header-logo {
    padding-left: 3vw;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .l-header-logo {
    padding-left: 3vw;
  }
  .l-header-logo img {
    width: 250px;
  }
}
.l-header-logo a img {
  height: 60px;
}

.g-nav {
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 14px;
}
.g-nav-main-list {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 1050px) {
  .g-nav-main-list {
    display: block;
    font-size: 16px;
    padding: 0 60px;
    margin-bottom: 30px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-main-list {
    display: block;
    font-size: 20px;
    padding: 0 60px;
    margin-bottom: 30px;
  }
}
.g-nav-main-list li {
  margin-right: 30px;
}
@media screen and (max-width: 1050px) {
  .g-nav-main-list li {
    margin-right: 0;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-main-list li {
    margin-right: 0;
    border-bottom: 1px solid #fff;
    padding: 20px;
  }
}
.g-nav-main-list li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 1050px) {
  .g-nav-main-list li a {
    color: #fff;
    padding: 10px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-main-list li a {
    color: #fff;
    padding: 10px;
  }
}
.g-nav-main-list li a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #e63932;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.g-nav-main-list li a:hover {
  opacity: 1;
}
.g-nav-main-list li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
.g-nav-main-list li.external-link a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  .g-nav-main-list li.external-link a {
    justify-content: center;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-main-list li.external-link a {
    justify-content: center;
  }
}
.g-nav-main-list li.external-link a .icon {
  margin-left: 5px;
}
@media screen and (max-width: 1050px) {
  .g-nav-main-list li.external-link a .icon path {
    fill: #fff;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-main-list li.external-link a .icon path {
    fill: #fff;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-main-list li.sp-only {
    display: block !important;
  }
}
.g-nav-ec-list {
  display: flex;
  margin: 0;
}
@media screen and (max-width: 1050px) {
  .g-nav-ec-list {
    margin-right: 17vw;
    font-size: 12px;
    padding-top: 6px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-ec-list {
    margin-right: 120px;
    font-size: 12px;
    padding-top: 6px;
  }
}
.g-nav-ec-list li {
  margin-right: 30px;
}
@media screen and (max-width: 1050px) {
  .g-nav-ec-list li {
    margin: 0 5px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-ec-list li {
    margin: 0 15px;
  }
}
.g-nav-ec-list li.cart .icon {
  position: relative;
}
.g-nav-ec-list li.cart .icon .totalquantity {
  background: #e63932;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: -2px;
  right: -8px;
  border-radius: 50%;
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-ec-list li .icon img {
    height: 35px;
    width: auto;
  }
}
.g-nav-contact {
  width: 148px;
}
@media screen and (max-width: 1050px) {
  .g-nav-contact {
    display: none;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-contact {
    display: none;
  }
}
.g-nav-contact a {
  background: #e63932;
  height: 72px;
  color: #fff;
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.g-nav-contact a .icon {
  line-height: 1;
}
@media screen and (max-width: 1050px) {
  .g-nav-contact-sp a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #e63932;
    padding: 15px;
  }
  .g-nav-contact-sp a .icon {
    margin-right: 10px;
  }
  .g-nav-contact-sp a .icon rect,
  .g-nav-contact-sp a .icon path {
    fill: #e63932;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .g-nav-contact-sp {
    display: block !important;
  }
  .g-nav-contact-sp a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #e63932;
    padding: 20px;
    font-size: 22px;
  }
  .g-nav-contact-sp a .icon {
    margin-right: 10px;
  }
  .g-nav-contact-sp a .icon rect,
  .g-nav-contact-sp a .icon path {
    fill: #e63932;
  }
}

@media screen and (max-width: 1050px) {
  #hamburger {
    display: block;
    position: absolute;
    z-index: 1;
    top: 6px;
    right: 3vw;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: 1s;
    padding: 15px 10px;
  }
  #hamburger .inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hamburger .inner .inner_line {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    transition: 1s;
    border-radius: 4px;
    background: #e63932;
  }
  #hamburger .inner .inner_line#line1 {
    top: 0;
  }
  #hamburger .inner .inner_line#line1.active {
    transform: translateY(8px) rotate(-45deg);
  }
  #hamburger .inner .inner_line#line2 {
    top: 50%;
    transform: translate(0, -50%);
  }
  #hamburger .inner .inner_line#line2.active {
    opacity: 0;
  }
  #hamburger .inner .inner_line#line3 {
    bottom: 0;
  }
  #hamburger .inner .inner_line#line3.active {
    transform: translateY(-9px) rotate(45deg);
  }
  #hamburger-menu {
    position: absolute;
    background: #e63932 url(../images/common/sp/bg-hamburger-menu.png) no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    right: -100%;
    top: 60px;
    background-size: cover;
    transition: 0.7s;
    padding: 20px 0px 80px;
  }
  #hamburger-menu.active {
    transform: translateX(-100%);
  }
  #hamburger-menu .hamburger-menu-inner {
    overflow: auto;
    height: 100%;
  }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  #hamburger {
    display: block;
    position: absolute;
    z-index: 1;
    top: 11px;
    right: 30px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: 1s;
    padding: 15px 5px;
  }
  #hamburger .inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hamburger .inner .inner_line {
    display: block;
    position: absolute;
    left: 0;
    width: 50px;
    height: 3px;
    transition: 1s;
    border-radius: 4px;
    background: #e63932;
  }
  #hamburger .inner .inner_line#line1 {
    top: 0;
  }
  #hamburger .inner .inner_line#line1.active {
    transform: translateY(13px) rotate(-45deg);
  }
  #hamburger .inner .inner_line#line2 {
    top: 50%;
    transform: translate(0, -50%);
  }
  #hamburger .inner .inner_line#line2.active {
    opacity: 0;
  }
  #hamburger .inner .inner_line#line3 {
    bottom: 0;
  }
  #hamburger .inner .inner_line#line3.active {
    transform: translateY(-13px) rotate(45deg);
  }
  #hamburger-menu {
    position: absolute;
    background: #e63932 url(../images/common/sp/bg-hamburger-menu.png) no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    right: -100%;
    top: 80px;
    background-size: cover;
    transition: 0.7s;
    padding: 20px 0px 80px;
  }
  #hamburger-menu.active {
    transform: translateX(-100%);
  }
  #hamburger-menu .hamburger-menu-inner {
    overflow: auto;
    height: 100%;
  }
}

.l-footer {
  font-size: 14px;
  line-height: 1.7;
  background: #f0f0f0;
}
.l-footer-bnr-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer-bnr-list {
    display: block;
  }
}
.l-footer-bnr-list li {
  width: 33.33%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer-bnr-list li {
    width: 100%;
  }
}
.l-footer-bnr-list-txt {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}
.l-footer-bnr-list-enttl {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 3px;
}
.l-footer-bnr-list-ttl {
  display: flex;
  justify-content: center;
}
.l-footer-bnr-list-ttl .icon {
  margin-left: 5px;
}
.l-footer-bnr-list-img {
  position: relative;
}
.l-footer-bnr-list-img::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
}
.l-footer-bnr-list-img img {
  width: 100%;
}
.l-footer-bnr-list a:hover {
  opacity: 1;
}
.l-footer-bnr-list a:hover .l-footer-bnr-list-img::after {
  opacity: 0;
}
.l-footer-middle {
  border-bottom: 1px solid #292929;
  display: flex;
  justify-content: center;
  padding: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .l-footer-middle {
    flex-direction: column-reverse;
    padding: 20px 30px 0;
    border-bottom: none;
  }
}
.l-footer-middle-left {
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  .l-footer-middle-left {
    margin-right: 0;
  }
}
.l-footer-middle-logo {
  margin-bottom: 10px;
}
.l-footer-middle-logo img {
  width: 266px;
}
.l-footer-middle-info {
  font-family:
    "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-footer-middle-right {
    text-align: center;
    margin-bottom: 50px;
  }
}
.l-footer-middle-enttl {
  color: #e63932;
  font-size: 30px;
  line-height: 1.2;
}
.l-footer-middle-ttl {
  margin-bottom: 10px;
}
.l-footer-middle .tel {
  margin-bottom: 10px;
}
.l-footer-middle .tel a {
  border: 3px solid #e63932;
  color: #292929;
  font-size: 20px;
  height: 46px;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
.l-footer-middle .tel a .icon {
  margin-right: 10px;
  width: 15px;
}
.l-footer-middle .contact a {
  background: #e63932;
  color: #fff;
  font-size: 16px;
  height: 46px;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
.l-footer-middle .contact a .icon {
  margin-right: 10px;
}
.l-footer-middle .contact a svg {
  margin-left: 10px;
}
.l-footer-bottom {
  text-align: center;
  padding: 30px 0 0;
}

.footer-nav {
  color: #939393;
}
.footer-nav a {
  color: #939393;
}
.footer-nav a:hover {
  color: #e63932;
  opacity: 1;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer-nav ul.main-list {
    display: none;
  }
}
.footer-nav ul.main-list li {
  margin: 0 20px;
}
.footer-nav ul.main-list li.external-link a {
  display: flex;
}
.footer-nav ul.main-list li.external-link a .icon {
  margin-left: 5px;
}
.footer-nav .sub-list a {
  margin: 0 7px;
}

.copyright {
  padding: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .copyright {
    padding: 20px 0;
  }
}

.sidebar-search {
  padding: 20px 0 40px;
  background-color: #fff;
}
.sidebar-search--head {
  padding: 0 10px 20px;
}
.sidebar-search--img {
  margin-bottom: 18px;
  text-align: center;
}
.sidebar-search--ttl {
  margin-bottom: 10px;
}
.sidebar-search--ratingWrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sidebar-search--rating {
  display: flex;
  align-items: center;
}
.sidebar-search--rating-stars {
  display: flex;
  align-items: center;
}
.sidebar-search--rating-stars img {
  display: inline-block;
  margin-right: 3px;
}
.sidebar-search--rating-number {
  line-height: 1;
}
.sidebar-search--rating-cmt {
  position: relative;
  display: block;
  padding-left: 22px;
}
.sidebar-search--rating-cmt:before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 15px;
  display: block;
  background: url(../images/search/icon-msg.svg) no-repeat;
  background-size: 100% 100%;
  content: "";
}
.sidebar-search .form {
  border-top: solid 1px #ebebeb;
}
.sidebar-search .form-row {
  display: flex;
  padding: 12px 15px;
  border-bottom: solid 1px #ebebeb;
}
.sidebar-search .form-row:last-child {
  border-bottom: none;
}
.sidebar-search .form-row--cnt {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sidebar-search .form-row--cnt .label-box {
    flex-wrap: wrap;
    flex-flow: column;
  }
  .sidebar-search .form-row--cnt .label-box .link-blue {
    display: block;
  }
}
.sidebar-search .form-label {
  width: 72px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sidebar-search .form-label {
    margin-right: 20px;
  }
}
.sidebar-search--map {
  margin: 30px 0 35px;
}

.kv {
  position: relative;
  margin-top: 72px;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .kv {
    margin-bottom: 40px;
    margin-top: 60px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .kv {
    margin-top: 80px;
  }
}
.kv-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 2.5s;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kv-logo {
    width: 70vw;
    transform: translate(-50%, -70%);
  }
}
.kv-logo.in {
  opacity: 1;
}
.kv-catch {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 148px;
  background-color: rgba(230, 57, 50, 0.8);
  /* 50% 不透過 */
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .kv-catch {
    left: 0;
    top: auto;
    bottom: 0;
    height: auto;
    width: 100%;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    padding: 20px 0;
  }
}
.kv-catch h1 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.7em;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .kv-catch h1 {
    letter-spacing: 0.2em;
    font-size: 6vw;
    text-align: center;
  }
}
.kv-img img {
  width: 100%;
}

.index-about {
  background: url(../images/top/about.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .index-about {
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .index-about-img {
    padding: 0 30px;
    position: relative;
    z-index: 1;
  }
}
.index-about-txt {
  background-color: rgba(230, 57, 50, 0.8);
  /* 50% 不透過 */
  color: #fff;
  width: 580px;
  position: relative;
  top: -85px;
  padding: 35px;
}
@media screen and (max-width: 767px) {
  .index-about-txt {
    width: 100%;
    background-color: #e63932;
    margin-top: -30vw;
    top: 0;
    padding: 40vw 30px 30px;
  }
}
.index-about .sec-header {
  text-align: left;
  color: #fff;
}
.index-about .enttl {
  font-size: 100px;
  opacity: 0.3;
  line-height: 1;
  margin: -35px 0 0 -35px;
}
@media screen and (max-width: 767px) {
  .index-about .enttl {
    font-size: 50px;
    margin: 0;
  }
}
.index-about .sttl {
  font-size: 25px;
  margin: 0;
}

.index-business {
  text-align: center;
  padding: 60px 0 100px;
  background: url(../images/top/bg-business.png) no-repeat center center;
}
@media screen and (max-width: 767px) {
  .index-business {
    padding: 40px 30px 100px;
    background: url(../images/top/sp/bg-business.png) no-repeat center center;
    background-size: cover;
  }
}
.index-business-txt {
  width: 630px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .index-business-txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .index-business-txt p {
    font-size: 3.6vw;
  }
}
.index-business .sttl {
  font-size: 25px;
  margin: 0;
}
.index-business-unit-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .index-business-unit-wrap {
    display: block;
  }
}
.index-business-unit {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  width: calc(25% - 45px);
  margin-right: 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .index-business-unit {
    margin: 0 10px 10px;
  }
}
.index-business-unit:last-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .index-business-unit:last-child {
    margin: 0 10px 10px;
  }
}
.index-business-unit-ttl {
  background: #e63932;
  color: #fff;
  font-size: 20px;
  padding: 8px;
}
.index-business-unit-logo {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .index-business-unit-logo {
    border-bottom: 1px solid #e63932;
    margin: 0 20px 15px;
    padding-bottom: 15px;
  }
}
.index-business-unit-txt {
  text-align: left;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .index-business-unit-txt {
    padding: 0 20px 20px;
  }
}
.index-business-unit-txt p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .index-business .slick-prev,
  .index-business .slick-next {
    bottom: auto;
    top: 40vw;
    width: 21px;
    height: 38px;
  }
}
@media screen and (max-width: 767px) {
  .index-business .slick-prev {
    left: -22px;
  }
}
@media screen and (max-width: 767px) {
  .index-business .slick-prev:before {
    width: 21px;
    height: 38px;
    opacity: 1;
    background: url(../images/top/sp/icon-slick-left.png) no-repeat center center;
    background-size: 21px 38px;
  }
}
@media screen and (max-width: 767px) {
  .index-business .slick-next {
    right: -22px;
  }
}
@media screen and (max-width: 767px) {
  .index-business .slick-next:before {
    width: 21px;
    height: 38px;
    opacity: 1;
    background: url(../images/top/sp/icon-slick-right.png) no-repeat center center;
    background-size: 21px 38px;
  }
}
@media screen and (max-width: 767px) {
  .index-business .slick-dots li {
    bottom: -10px;
  }
}
@media screen and (max-width: 767px) {
  .index-business .link-button {
    margin-top: 70px;
  }
}

.index-achievement {
  background: #f0f0f0;
  padding: 50px 0;
  /*タブ実装*/
}
.index-achievement-txt {
  text-align: center;
  width: 630px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .index-achievement-txt {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 40px;
  }
}
.index-achievement-unit-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .index-achievement-unit-wrap {
    display: block;
  }
}
.index-achievement-unit {
  margin-right: 66px;
  width: 281px;
}
@media screen and (max-width: 767px) {
  .index-achievement-unit {
    width: 100%;
    margin: 0 10px;
  }
}
.index-achievement-unit:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .index-achievement-unit:last-child {
    margin: 0 10px;
  }
}
.index-achievement-unit a {
  background: #fff;
  display: block;
  padding: 20px;
  color: #292929;
}
.index-achievement-unit-img {
  margin-bottom: 20px;
  height: 150px;
}
.index-achievement-unit-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.index-achievement-unit time {
  display: block;
}
.index-achievement-unit-ttl {
  font-weight: normal;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .index-achievement .link-button {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .index-achievement .slick-prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .index-achievement .slick-next {
    right: 0;
  }
}
.index-achievement .tab_box .btn_area {
  display: flex;
  border-bottom: 1px solid #e63932;
  padding: 0 64px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .index-achievement .tab_box .btn_area {
    padding: 0 30px;
  }
}
.index-achievement .tab_box .tab_btn {
  width: 302px;
  padding: 8px 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  border: 1px solid #e63932;
  margin-bottom: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-achievement .tab_box .tab_btn + .tab_btn {
  margin-left: 8px;
}
.index-achievement .tab_box .tab_btn.active {
  color: #e63932;
  border-top: 8px solid #e63932;
  border-bottom: 1px solid #f0f0f0;
}
.index-achievement .tab_box .panel_area {
  padding: 0 57px;
}
@media screen and (max-width: 767px) {
  .index-achievement .tab_box .panel_area {
    padding: 0 30px;
  }
}
.index-achievement .tab_box .tab_panel {
  display: none;
}
.index-achievement .tab_box .tab_panel.active {
  display: block;
}

.news-blog-wrap {
  padding: 150px 0 530px;
  background: url(../images/top/bg-nb.png) no-repeat left bottom;
  background-size: 100vw auto;
}
@media screen and (max-width: 767px) {
  .news-blog-wrap {
    padding: 90px 0 530px;
    background: url(../images/top/sp/bg-nb.png) no-repeat center top;
    background-size: 100vw auto;
  }
}
.news-blog-wrap .common-width {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news-blog-wrap .common-width {
    display: block;
  }
}

.index-news {
  border: 3px solid #e63932;
  background: #fff;
  width: 628px;
  padding: 0 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .index-news {
    border: none;
    padding: 0 30px;
    margin-bottom: 60px;
    background: none;
    width: 100%;
  }
}
.index-news .sec-header {
  position: relative;
  top: -36px;
  background: #fff;
  display: inline-block;
  padding: 0 16px;
  width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .index-news .sec-header {
    top: 0;
    padding: 0;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .index-news .sec-header .enttl {
    font-size: 30px;
  }
}
.index-news-list {
  text-align: left;
  margin-top: -35px;
}
@media screen and (max-width: 767px) {
  .index-news-list {
    margin-top: 0;
  }
}
.index-news-list a {
  display: flex;
  padding: 20px 0;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .index-news-list a {
    display: block;
    padding: 16px 0 18px;
  }
}
.index-news-list li {
  border-bottom: 1px solid #707070;
}
.index-news-list time {
  line-height: 1.5;
  margin-right: 30px;
}
.index-news-list-ttl {
  margin: 0;
}

.index-blog {
  border: 3px solid #e63932;
  background: #fff;
  width: 386px;
  padding: 0 40px 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index-blog {
    border: none;
    padding: 0 30px;
    background: none;
    width: 100%;
  }
}
.index-blog .sec-header {
  position: relative;
  top: -36px;
  background: #fff;
  display: inline-block;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .index-blog .sec-header {
    top: 0;
    padding: 0;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .index-blog .sec-header .enttl {
    font-size: 30px;
  }
}
.index-blog-list {
  text-align: left;
  margin-top: -35px;
}
@media screen and (max-width: 767px) {
  .index-blog-list {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .index-blog-list li {
    margin: 0 10px;
  }
}
.index-blog-list a {
  display: block;
  color: #292929;
}
.index-blog-list a time {
  display: block;
}
.index-blog .link-button {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .index-blog .link-button {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .index-blog .slick-prev,
  .index-blog .slick-next {
    bottom: auto;
    top: 40vw;
  }
}

section .slick-prev,
section .slick-next {
  width: 31px;
  height: 31px;
  top: auto;
  bottom: -80px;
}

section .slick-prev:before {
  content: "";
  display: block;
  width: 31px;
  height: 31px;
  opacity: 1;
  background: url(../images/top/icon-slick-left.png) no-repeat center center;
  background-size: 31px 31px;
}

section .slick-next:before {
  content: "";
  display: block;
  width: 31px;
  height: 31px;
  opacity: 1;
  background: url(../images/top/icon-slick-right.png) no-repeat center center;
  background-size: 31px 31px;
}

section .slick-dots li {
  bottom: -40px;
  width: 9px;
  height: 9px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  section .slick-dots li {
    bottom: -30px;
  }
}
section .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
section .slick-dots li button:before {
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  display: block;
  background-color: #c4bfbf;
  text-align: center;
  opacity: 1;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
section .slick-dots li.slick-active button:before {
  background-color: #e63932;
  width: 9px;
  height: 9px;
}

.index-faq {
  max-width: 685px;
  margin: -540px auto 100px;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .index-faq {
    padding: 80px 30px 0;
  }
}
.index-faq .enttl {
  font-size: 30px;
}
.index-faq ul.ac {
  border-top: 1px solid #e63932;
  border-bottom: none;
}
.index-faq ul.ac > li {
  border-bottom: 1px solid #e63932;
}
.index-faq ul.ac > li .ac-label {
  cursor: pointer;
  position: relative;
  padding: 30px 45px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .index-faq ul.ac > li .ac-label {
    padding: 10px 45px 10px 25px;
  }
}
.index-faq ul.ac > li .ac-label:before {
  content: "Q";
  position: absolute;
  left: 0px;
  top: 30px;
}
@media screen and (max-width: 767px) {
  .index-faq ul.ac > li .ac-label:before {
    top: 10px;
  }
}
.index-faq ul.ac > li .ac-label p {
  margin: 0;
}
.index-faq ul.ac > li .ac-label .icon-wrap {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translatey(-50%);
  width: 38px;
  height: 38px;
}
.index-faq ul.ac > li .ac-label .icon-wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.index-faq ul.ac > li .ac-label .icon-wrap .icon:before,
.index-faq ul.ac > li .ac-label .icon-wrap .icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #e63932;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 3px;
  transform: translate(-50%, -50%);
}
.index-faq ul.ac > li .ac-label .icon-wrap .icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.index-faq ul.ac > li .ac-label .icon-wrap .icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.index-faq ul.ac > li .ac-content {
  display: none;
  padding: 0px 20px 20px 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index-faq ul.ac > li .ac-content {
    padding: 0 20px 10px 25px;
  }
}
.index-faq ul.ac > li .ac-content:before {
  content: "A";
  position: absolute;
  left: 0px;
  top: 0px;
  color: #e63932;
}
.index-faq ul.ac > li .ac-content p {
  margin: 0;
  font-weight: 500;
}

.wrap-pt {
  background: url(../images/about/philosophy.jpg) no-repeat right top 60px;
  background-size: contain;
  padding: 160px 0 10px;
  position: relative;
  margin-top: -160px;
  z-index: -1;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .wrap-pt {
    background: none;
  }
}

.philosophy {
  margin-bottom: 50px;
  padding-right: 500px;
}
@media screen and (max-width: 767px) {
  .philosophy {
    padding: 0;
  }
}
.philosophy .sec-header {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .philosophy .sec-header {
    background: url(../images/about/sp/philosophy.jpg) no-repeat right top;
    background-size: cover;
    padding: 140px 20px 20px;
    margin-bottom: 15px;
    margin-top: 0;
  }
  .philosophy .sec-header p {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .philosophy .sec-header .enttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy .sec-header .ttl {
    margin: 0;
  }
}
.philosophy .sttl {
  font-size: 50px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .philosophy .sttl {
    font-size: 25px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .philosophy p {
    padding: 0 20px;
  }
}

.thought {
  margin-bottom: 50px;
  padding-right: 500px;
}
@media screen and (max-width: 767px) {
  .thought {
    padding-right: 0;
    padding: 0 20px;
  }
}
.thought .sec-header {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .thought .sec-header .enttl {
    font-size: 30px;
  }
}
.thought .sttl {
  font-size: 25px;
  margin: 0;
}

.point {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 0 30px;
    margin-bottom: 100px;
  }
}
.point .sec-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .point .sec-header .enttl {
    font-size: 30px;
  }
}
.point-unit-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .point-unit-wrap {
    display: block;
  }
}
.point-unit {
  border: 3px solid #e63932;
  width: calc(33.33% - 26px);
  margin-right: 39px;
  position: relative;
  -webkit-box-shadow: 20px 20px 0px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 20px 20px 0px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .point-unit {
    width: 100%;
    -webkit-box-shadow: 15px 15px 0px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 15px 15px 0px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
  }
}
.point-unit:last-child {
  margin-right: 0;
}
.point-unit-number {
  background: #e63932;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  z-index: 1;
}
.point-unit-number .line-1 {
  font-size: 12px;
}
.point-unit-number .line-2 {
  font-size: 30px;
}
.point-unit-img {
  margin-bottom: 20px;
}
.point-unit-txt {
  padding: 0 15px;
}
.point-unit-txt p {
  line-height: 1.5;
}
.point-unit-ttl {
  font-size: 25px;
  margin: 0;
}

.business-nav {
  max-width: 958px;
  margin: 0 auto 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business-nav {
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
.business-nav-ttl {
  font-size: 25px;
}
.business-nav-txt {
  width: 610px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .business-nav-txt {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.business-nav-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .business-nav-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .business-nav-list li {
    width: calc(50% - 5px);
  }
}
.business-nav-list li a {
  background: url(../images/business/bg-nav.png) no-repeat center center;
  width: 218px;
  background-size: cover;
  color: #fff;
  display: block;
  padding: 45px 10px 21px;
}
@media screen and (max-width: 767px) {
  .business-nav-list li a {
    width: 100%;
    margin: 0 auto;
  }
}
.business-nav-list li .line-1 {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .business-nav-list li .line-1 {
    font-size: 12px;
  }
}
.business-nav-list li .line-2 {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .business-nav-list li .line-2 {
    font-size: 16px;
    font-size: 0.9375rem;
  }
}
.business-nav-list li:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 6.5px 0 6.5px;
  border-color: #e63932 transparent transparent transparent;
  position: relative;
  bottom: -6px;
}

@media screen and (max-width: 767px) {
  #business1 {
    background: url(../images/business/sp/business1.jpg) no-repeat center top;
    background-size: contain;
    padding-top: 60vw;
  }
  #business2 {
    background: url(../images/business/sp/business2.jpg) no-repeat center top;
    background-size: contain;
    padding-top: 60vw;
  }
  #business3 {
    background: url(../images/business/sp/business3.jpg) no-repeat center top;
    background-size: contain;
    padding-top: 60vw;
  }
  #business4 {
    background: url(../images/business/sp/business4.jpg) no-repeat center top;
    background-size: contain;
    padding-top: 60vw;
  }
}

.business1 {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .business1 {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 70px;
    padding: 0 20px;
  }
}
.business1 .common-width {
  position: relative;
}
.business1-img {
  text-align: right;
  padding-left: calc((100vw - 1090px) / 2 + 170px);
}
@media screen and (max-width: 767px) {
  .business1-img {
    padding-left: 0;
  }
}
.business1-img-main {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .business1-img-main {
    display: none;
  }
}
.business1-img-main img {
  width: 100%;
}
.business1-img-sub ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .business1-img-sub ul {
    display: block;
  }
}
.business1-img-sub ul li {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .business1-img-sub ul li {
    margin: 0 0 30px;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .business1-img-sub ul li:last-child {
    margin-right: 0;
  }
}
.business1-txt {
  border: 4px solid #e63932;
  background: #fff;
  padding: 20px 40px 20px 20px;
  position: absolute;
  z-index: 1;
  top: calc(-460px - 15vw);
  left: 0;
  width: 698px;
}
@media screen and (max-width: 767px) {
  .business1-txt {
    position: static;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
  }
}
.business1-txt-main {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .business1-txt-main {
    display: block;
  }
}
.business1-logo {
  width: calc(100% - 462px);
  text-align: center;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .business1-logo {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business1-logo img {
    width: 100px;
  }
}
.business1-cnt {
  width: 462px;
}
@media screen and (max-width: 767px) {
  .business1-cnt {
    width: 100%;
  }
}
.business1-header {
  border-bottom: 1px solid #e63932;
  color: #e63932;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.business1-header .number {
  margin-right: 15px;
}
.business1-ttl {
  font-size: 25px;
  margin: 0;
}
.business1 .link-button {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .business1 .link-button a {
    padding: 0 40px;
  }
}

.business2 {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .business2 {
    margin-bottom: 70px;
    padding: 0 20px;
  }
}
.business2 .common-width {
  position: relative;
}
.business2-img {
  text-align: left;
  padding-right: calc((100vw - 1090px) / 2 + 170px);
}
@media screen and (max-width: 767px) {
  .business2-img {
    display: none;
  }
}
.business2-img-main {
  margin-bottom: 50px;
}
.business2-img-main img {
  width: 100%;
}
.business2-txt {
  border: 4px solid #e63932;
  background: #fff;
  padding: 20px 20px 20px 40px;
  position: absolute;
  z-index: 1;
  top: calc(-333px - 15vw);
  right: 0;
  width: 698px;
}
@media screen and (max-width: 767px) {
  .business2-txt {
    position: static;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
  }
}
.business2-txt-main {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .business2-txt-main {
    display: block;
  }
}
.business2-logo {
  width: calc(100% - 462px);
  text-align: center;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .business2-logo {
    width: 100%;
    padding: 30px;
  }
}
.business2-cnt {
  width: 462px;
}
@media screen and (max-width: 767px) {
  .business2-cnt {
    width: 100%;
  }
}
.business2-header {
  border-bottom: 1px solid #e63932;
  color: #e63932;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.business2-header .number {
  margin-right: 15px;
}
.business2-ttl {
  font-size: 25px;
  margin: 0;
}
.business2 .link-button {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .business2 .link-button a {
    padding: 0 40px;
  }
}

.business3 {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .business3 {
    margin-bottom: 70px;
    padding: 0 20px;
  }
}
.business3 .common-width {
  position: relative;
}
.business3-img {
  text-align: right;
  padding-left: calc((100vw - 1090px) / 2 + 170px);
}
@media screen and (max-width: 767px) {
  .business3-img {
    display: none;
  }
}
.business3-img-main {
  margin-bottom: 50px;
}
.business3-img-main img {
  width: 100%;
}
.business3-img-sub ul {
  display: flex;
}
.business3-img-sub ul li {
  margin-right: 40px;
}
.business3-txt {
  border: 4px solid #e63932;
  background: #fff;
  padding: 20px 40px 20px 20px;
  position: absolute;
  z-index: 1;
  top: calc(-333px - 15vw);
  left: 0;
  width: 698px;
}
@media screen and (max-width: 767px) {
  .business3-txt {
    position: static;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
  }
}
.business3-txt-main {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .business3-txt-main {
    display: block;
  }
}
.business3-logo {
  width: calc(100% - 462px);
  text-align: center;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .business3-logo {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .business3-logo img {
    width: 100px;
  }
}
.business3-cnt {
  width: 462px;
}
@media screen and (max-width: 767px) {
  .business3-cnt {
    width: 100%;
  }
}
.business3-header {
  border-bottom: 1px solid #e63932;
  color: #e63932;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.business3-header .number {
  margin-right: 15px;
}
.business3-ttl {
  font-size: 25px;
  margin: 0;
}
.business3 .link-button {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .business3 .link-button a {
    padding: 0 40px;
    font-size: 3.7vw;
  }
}

.greeting {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .greeting {
    margin-bottom: 50px;
  }
}
.greeting .common-width {
  display: flex;
}
@media screen and (max-width: 767px) {
  .greeting .common-width {
    display: block;
  }
}
.greeting-img {
  width: 409px;
  margin-top: -175px;
}
@media screen and (max-width: 767px) {
  .greeting-img {
    width: 100%;
    margin-top: 0;
    margin-bottom: 25px;
    background: #e63932;
    display: flex;
    align-items: center;
    color: #fff;
  }
  .greeting-img img {
    width: 50%;
    padding-left: 20px;
    margin-right: 20px;
  }
}
.greeting-txt {
  width: calc(100% - 409px);
  padding-left: 51px;
}
@media screen and (max-width: 767px) {
  .greeting-txt {
    width: 100%;
    padding-left: 0;
    padding: 0 20px;
  }
}
.greeting-txt .c-logo {
  margin-bottom: 15px;
}
.greeting-txt .c-logo img {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .greeting-txt .c-logo img {
    width: 260px;
  }
}
.greeting-txt .name {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .greeting-txt .name {
    font-size: 20px;
  }
}
.greeting-txt .name .pos {
  font-size: 16px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .greeting-txt p {
    font-size: 3.7vw;
  }
}
.greeting-header {
  background: #e63932;
  color: #fff;
  padding: 20px;
  padding-left: calc((100vw - 1090px) / 2 + 460px);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .greeting-header {
    display: none;
  }
}
.greeting-enttl {
  font-size: 50px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .greeting-enttl {
    font-size: 30px;
  }
}
.greeting-ttl {
  margin: 0;
}

.greeting-sttl {
  font-size: 25px;
  margin: 0 0 10px;
}
@media screen and (max-width: 767px) {
  .greeting-sttl {
    font-size: 6vw;
  }
}

.history {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .history {
    padding: 0 20px;
  }
}
.history .sec-header {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .history .sec-header .enttl {
    font-size: 30px;
  }
}
.history .timeline-list {
  padding: 40px 0;
}
.history .timeline-item {
  display: flex;
  align-items: center;
  line-height: 1.65;
  border-bottom: 1px solid #e63932;
  padding: 35px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .history .timeline-item {
    display: block;
    padding: 25px 0;
  }
}
.history .timeline-item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e63932;
  left: 0;
  top: 0;
}
.history .timeline-item:first-child {
  padding-top: 0;
}
.history .timeline-item:first-child:before {
  height: 38px;
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .history .timeline-item:first-child:before {
    height: calc(100% - 10px);
  }
}
.history .timeline-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.history .timeline-item:last-child:before {
  height: 38px;
}
.history .timeline-date {
  width: 18em;
  padding: 0 0 0 30px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .history .timeline-date {
    margin-bottom: 20px;
  }
}
.history .timeline-date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translate(0, -50%);
  width: 22px;
  height: 22px;
  background-color: #e63932;
  border-radius: 11px;
}
@media screen and (max-width: 767px) {
  .history .timeline-cnt {
    padding-left: 30px;
  }
}

.profile {
  background-color: #fdebeb;
  margin-bottom: 130px;
  padding: 70px 180px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 50px 20px;
    margin-bottom: 0;
  }
}
.profile .sec-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .profile .sec-header .enttl {
    font-size: 30px;
  }
}
.profile table {
  width: 100%;
}
.profile table th,
.profile table td {
  border-bottom: 1px solid #707070;
  padding: 15px 0;
}
.profile table th {
  width: 8em;
}
.profile table td iframe {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .profile table th {
    width: 5em;
  }
  .profile table td iframe {
    height: 50vw;
  }
}
.profile table dl {
  display: flex;
  flex-wrap: wrap;
}
.profile table dl dt {
  width: 13em;
  font-weight: normal;
}
.profile table dl dd {
  width: calc(100% - 13em);
}

.body-achievement {
  background: #f0f0f0;
}

.catsearch {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .catsearch {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.catsearch-header {
  color: #e63932;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .catsearch-header {
    display: none;
  }
}
.catsearch-header .enttl {
  font-size: 30px;
  line-height: 1;
  margin-right: 20px;
}
.catsearch-header .ttl {
  margin: 0;
}
.catsearch .select-wrap select {
  background: #fff url(../images/common/sp/arrow-select.png) no-repeat right 10px center;
  background-size: 17px 15px;
  border: 1px solid #707070;
  width: 358px;
  padding: 9px 15px;
}
@media screen and (max-width: 767px) {
  .catsearch .select-wrap select {
    width: 100%;
  }
}

.archive-achievement {
  margin-bottom: 150px;
}
.archive-achievement-unit-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .archive-achievement-unit-wrap {
    display: block;
    padding: 0 40px;
  }
}
.archive-achievement-unit {
  margin-right: 66px;
  margin-bottom: 60px;
  width: calc(33.33% - 44px);
}
@media screen and (max-width: 767px) {
  .archive-achievement-unit {
    width: 100%;
    margin: 0 0 50px;
  }
}
.archive-achievement-unit:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .archive-achievement-unit:nth-child(3n) {
    margin: 0 0 50px;
  }
}
.archive-achievement-unit a {
  background: #fff;
  display: block;
  padding: 20px;
  color: #292929;
}
.archive-achievement-unit-img {
  margin-bottom: 20px;
}
.archive-achievement-unit time {
  display: block;
}
.archive-achievement-unit-ttl {
  font-weight: normal;
  margin: 0;
}

.column-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .column-wrap {
    display: block;
  }
}

.achievement-single {
  width: 720px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .achievement-single {
    width: 100%;
    padding: 0 20px;
  }
}
.achievement-single time {
  display: block;
}
.achievement-single-ttl {
  font-size: 25px;
  border-bottom: 1px solid #707070;
  padding: 0 0 10px;
  margin: 10px 0 45px;
}
@media screen and (max-width: 767px) {
  .achievement-single-ttl {
    font-size: 20px;
    margin: 10px 0 20px;
  }
}
.achievement-single .eyecatch {
  margin-bottom: 40px;
}

.sidebar {
  width: 292px;
  padding-top: 75px;
}
@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
.sidebar-ttl {
  font-size: 18px;
  padding: 0 0 10px;
  margin: 10px 0 45px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .sidebar-ttl {
    font-size: 16px;
    margin: 10px 0 20px;
  }
}
.sidebar .archive-achievement-unit {
  width: 100%;
  margin: 0 0px 50px;
}

.archive-news {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .archive-news {
    padding: 0 20px;
  }
}
.archive-news-list {
  margin-bottom: 50px;
}
.archive-news-list a {
  display: flex;
  padding: 20px 0;
  color: #292929;
}
@media screen and (max-width: 767px) {
  .archive-news-list a {
    display: block;
    padding: 16px 0 18px;
  }
}
.archive-news-list li {
  border-bottom: 1px solid #707070;
}
.archive-news-list time {
  line-height: 1.5;
  margin-right: 30px;
}
.archive-news-list-ttl {
  margin: 0;
}

.single-news {
  max-width: 904px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 767px) {
  .single-news {
    padding: 0 20px;
    margin-bottom: 100px;
  }
}
.single-news-ttl {
  font-size: 25px;
  border-bottom: 1px solid #707070;
  padding: 0 0 10px;
  margin: 10px 0 30px;
}
@media screen and (max-width: 767px) {
  .single-news-ttl {
    font-size: 20px;
    margin: 10px 0 20px;
  }
}

.archive-blog {
  margin-bottom: 150px;
}
.archive-blog-unit-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .archive-blog-unit-wrap {
    display: block;
    padding: 0 40px;
  }
}
.archive-blog-unit {
  margin-right: 66px;
  margin-bottom: 60px;
  width: calc(33.33% - 44px);
}
@media screen and (max-width: 767px) {
  .archive-blog-unit {
    width: 100%;
    margin: 0 0 50px;
  }
}
.archive-blog-unit:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .archive-blog-unit:nth-child(3n) {
    margin: 0 0 50px;
  }
}
.archive-blog-unit a {
  background: #fff;
  display: block;
  color: #292929;
}
.archive-blog-unit-img {
  margin-bottom: 20px;
  height: 150px;
}
.archive-blog-unit-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.archive-blog-unit time {
  display: block;
}
.archive-blog-unit-ttl {
  font-weight: normal;
  margin: 0;
}

.sidebar .archive-blog-unit-wrap {
  display: block;
}

.sidebar .archive-blog-unit {
  width: 100%;
  margin: 0 0px 50px;
}

.products-search {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .products-search {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.products-search form {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .products-search form {
    display: block;
  }
}
.products-search .select-wrap select {
  background: #fff url(../images/common/sp/arrow-select.png) no-repeat right 10px center;
  background-size: 17px 15px;
  border: 1px solid #707070;
  width: 475px;
  padding: 9px 15px;
}
@media screen and (max-width: 767px) {
  .products-search .select-wrap select {
    width: 100%;
    margin-bottom: 20px;
    height: 51px;
  }
}
.products-search .search-wrap {
  position: relative;
}
.products-search .search-wrap input[type="search"] {
  background: #fff;
  border: 1px solid #707070;
  width: 583px;
  padding: 9px 15px;
}
@media screen and (max-width: 767px) {
  .products-search .search-wrap input[type="search"] {
    width: 100%;
    height: 51px;
  }
}
.products-search .search-wrap input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 51px;
  background: #e63932 url(../images/products/icon-search.png) no-repeat center center;
  background-size: 24px 26px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .products-search .search-wrap input[type="submit"] {
    width: 52px;
  }
}
.products-search .result {
  margin: 20px 0 -40px;
}
@media screen and (max-width: 767px) {
  .products-search .result {
    margin: 15px 0 -20px;
  }
}

.archive-products {
  margin-bottom: 150px;
}
.archive-products-unit-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .archive-products-unit-wrap {
    padding: 0 20px;
  }
}
.archive-products-unit {
  margin-right: 52px;
  margin-bottom: 50px;
  width: calc(25% - 39px);
}
@media screen and (max-width: 767px) {
  .archive-products-unit {
    width: 100%;
    margin: 0 36px 30px 0;
    width: calc(50% - 18px);
  }
}
.archive-products-unit:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .archive-products-unit:nth-child(4n) {
    margin: 0 36px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .archive-products-unit:nth-child(2n) {
    margin-right: 0;
  }
}
.archive-products-unit a {
  display: block;
  color: #292929;
}
.archive-products-unit-img {
  margin-bottom: 20px;
  height: 230px;
}
@media screen and (max-width: 767px) {
  .archive-products-unit-img {
    height: 40vw;
  }
}
.archive-products-unit-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.archive-products-unit-ttl {
  margin: 10px 0 0;
}
.archive-products-unit-price {
  font-weight: bold;
}

.products-overview {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .products-overview {
    display: block;
    padding: 0 20px;
  }
}
.products-overview-img {
  width: 534px;
}
@media screen and (max-width: 767px) {
  .products-overview-img {
    width: 100%;
  }
}
.products-overview-img #mainImg {
  margin-bottom: 20px;
}
.products-overview-img #subImg {
  display: flex;
  flex-wrap: wrap;
}
.products-overview-img #subImg li {
  width: calc(25% - 12px);
  margin-right: 16px;
  margin-bottom: 16px;
  height: 121px;
}
@media screen and (max-width: 767px) {
  .products-overview-img #subImg li {
    height: 19vw;
  }
}
.products-overview-img #subImg li:nth-child(4n) {
  margin-right: 0;
}
.products-overview-img #subImg li img {
  opacity: 0.6;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.products-overview-img #subImg li.current img {
  opacity: 1;
}
.products-overview-txt {
  width: 502px;
}
@media screen and (max-width: 767px) {
  .products-overview-txt {
    width: 100%;
  }
}
.products-overview-ttl {
  font-size: 25px;
  margin: 10px 0 10px;
}
@media screen and (max-width: 767px) {
  .products-overview-ttl {
    font-size: 20px;
  }
}
.products-overview-cnt {
  margin-bottom: 40px;
}
.products-overview-price {
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 15px;
}
.products-overview-price span {
  font-size: 16px;
}
.products-overview-action .cv-btn {
  display: flex;
  justify-content: flex-end;
}
.products-overview-action .select-wrap {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .products-overview-action .select-wrap {
    margin-right: 10px;
  }
}
.products-overview-action .select-wrap select {
  background: #fff url(../images/products/arrow-select.png) no-repeat right 10px center;
  background-size: 8px 9px;
  border: 1px solid #707070;
  width: 70px;
  padding: 6px 25px 6px 15px;
  margin-left: 10px;
}
.products-overview-action input[type="submit"] {
  background: #e63932;
  color: #fff;
  width: 239px;
  height: 46px;
  border-radius: 23px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products-overview-action input[type="submit"] {
    width: auto;
    padding: 0 30px;
  }
}

.products-detail {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .products-detail {
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
.products-detail-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .products-detail-flex {
    display: block;
  }
}
.products-detail-header {
  width: calc(100% - 900px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .products-detail-header {
    width: 100%;
  }
}
.products-detail-header .enttl {
  font-size: 30px;
  opacity: 1;
}
.products-detail-cnt {
  width: 900px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 60px;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .products-detail-cnt {
    width: 100%;
  }
}
.products-detail-cnt h4 {
  margin-bottom: 10px;
}
.products-detail-cnt figure {
  margin: 40px 0;
}

.cart-member {
  max-width: 1090px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .cart-member {
    padding: 0 20px;
  }
}
.cart-member .head {
  display: none;
}
.cart-member input[type="button"],
.cart-member input[type="submit"] {
  transition: all 0.3s ease 0s;
}
.cart-member input[type="button"]:hover,
.cart-member input[type="submit"]:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .cart-member input[type="button"],
  .cart-member input[type="submit"] {
    width: 290px;
  }
}
.cart-member input[type="submit"] {
  background: #e63932;
  color: #fff;
  padding: 0 20px;
  border-radius: 23px;
}
.cart-member input[type="button"] {
  background: #707070;
  color: #fff;
  padding: 0 20px;
  border-radius: 23px;
}
.cart-member h1 {
  font-size: 25px;
  border-bottom: 1px solid #383838;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .cart-member h1 {
    font-size: 20px;
  }
}

ol.ucart {
  display: flex;
  background: #f2f2f2;
  border: 1px solid #707070;
  height: 68px;
  overflow: hidden;
  margin-bottom: 30px;
}
ol.ucart li {
  width: 25%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  ol.ucart li {
    font-size: 12px;
    line-height: 1.3;
    padding: 0 20px 0 25px;
  }
}
ol.ucart li:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 68px 0 68px 38px;
  border-color: transparent transparent transparent #707070;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translate(0, -50%);
  z-index: 1;
}
ol.ucart li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 68px 0 68px 38px;
  border-color: transparent transparent transparent #f2f2f2;
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translate(0, -50%);
  z-index: 2;
}
ol.ucart li:last-child:before,
ol.ucart li:last-child:after {
  display: none;
}
ol.ucart li.usccart.usccart_cart,
ol.ucart li.usccustomer.usccart_customer,
ol.ucart li.uscdelivery.usccart_delivery,
ol.ucart li.uscconfirm.usccart_confirm {
  background: #e63932;
  color: #fff;
}
ol.ucart li.usccart.usccart_cart:after,
ol.ucart li.usccustomer.usccart_customer:after,
ol.ucart li.uscdelivery.usccart_delivery:after,
ol.ucart li.uscconfirm.usccart_confirm:after {
  border-color: transparent transparent transparent #e63932;
}

#cart_table {
  width: 100%;
}
#cart_table th,
#cart_table td {
  border: 1px solid #707070;
  text-align: center;
  vertical-align: middle;
}
#cart_table th {
  background: #f2f2f2;
}
#cart_table em {
  font-style: normal;
  font-size: 80%;
}
#cart_table td.quantity input.quantity {
  border: 1px solid #707070;
}

.cart-note {
  display: none;
}

.currency_code {
  display: none;
}

.error_message {
  color: #e63932;
}

.confiem_notice {
  margin-bottom: 20px;
}

#inside-cart .upbutton {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 20px;
}
#inside-cart .upbutton input[type="submit"] {
  width: auto;
}

.send {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .send {
    display: block;
    text-align: center;
  }
}
.send input {
  height: 46px;
  margin: 0 10px;
  padding: 0 80px !important;
}
@media screen and (max-width: 767px) {
  .send input {
    display: inline-block;
    margin-bottom: 15px;
  }
}
.send input[type="submit"] {
  background: #e63932 url(../images/products/arrow-right-white.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 43px 12px;
}
@media screen and (max-width: 767px) {
  .send input[type="submit"] {
    padding: 0 40px !important;
    background-size: 30px auto;
  }
}
.send input[type="submit"].back_cart_button,
.send input[type="submit"].back_to_delivery_button,
.send input[type="submit"].back_to_customer_button {
  background: #e63932 url(../images/products/arrow-left-white.png);
  background-repeat: no-repeat;
  background-position: left 20px center;
  background-size: 43px 12px;
}
@media screen and (max-width: 767px) {
  .send input[type="submit"].back_cart_button,
  .send input[type="submit"].back_to_delivery_button,
  .send input[type="submit"].back_to_customer_button {
    padding: 0 40px !important;
    background-size: 30px auto;
  }
}

@media screen and (max-width: 767px) {
  #cart_table {
    display: block;
    border: 1px solid #707070;
  }
  #cart_table .num,
  #cart_table .stock,
  #cart_table .thumbnail {
    display: none;
  }
  #cart_table td {
    padding: 0.357143em;
    border: none;
  }
  #cart_table thead {
    display: none;
  }
  #cart_table tbody,
  #cart_table tfoot {
    display: block;
  }
  #cart_table tbody {
    font-size: 12px;
  }
  #cart_table tbody tr {
    -ms-grid-columns: 10rem 0 13.7rem 0 10rem;
    -ms-grid-rows: auto 0 auto 0 auto 0 auto 0 auto;
    display: -ms-grid;
    display: grid;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: 70px 150px calc(100% - 220px);
    grid-template-areas: "image title title" "image stock delete" "image value delete" "image ryou delete" "image price delete";
    gap: 0 0;
  }
  #cart_table tbody tr .thumbnail {
    display: block;
    grid-area: image;
    border-right: 1px solid #383838;
    white-space: nowrap;
    width: 70px;
  }
  #cart_table tbody tr .productname {
    grid-area: title;
    margin-top: 15px;
    padding-left: 20px;
    border: none;
    font-weight: 700;
    line-height: 1.56;
    text-align: left;
  }
  #cart_table tbody tr .unitprice {
    grid-area: value;
    padding-left: 20px;
    border: none;
    text-align: left;
  }
  #cart_table tbody tr .unitprice:before {
    content: "単価：";
  }
  #cart_table tbody tr .quantity {
    display: flex;
    grid-area: ryou;
    align-items: center;
    width: 12rem;
    padding-left: 20px;
    border: none;
  }
  #cart_table tbody tr .quantity input {
    width: 6rem;
    height: 28px;
    padding-left: 0.8rem;
    border: 1px solid #707070;
    text-align: left;
  }
  #cart_table tbody tr .quantity:before {
    content: "数量：";
  }
  #cart_table tbody tr .subtotal {
    grid-area: price;
    margin-bottom: 1.5rem;
    padding-left: 20px;
    border: none;
    font-weight: 700;
    text-align: left;
  }
  #cart_table tbody tr .subtotal:before {
    content: "金額：";
    font-weight: 400;
  }
  #cart_table tbody tr .stock {
    display: block;
    grid-area: stock;
    padding-left: 20px;
    border: none;
    text-align: left;
  }
  #cart_table tbody tr .stock:before {
    content: "在庫状態：";
  }
  #cart_table tbody tr .action {
    grid-area: delete;
    width: auto;
    padding-top: 4.3rem;
    padding-left: 2rem;
    border: none;
  }
  #cart_table tfoot tr {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #383838;
    padding: 5px 10px;
  }
  #cart_table tfoot tr .aright {
    border: none;
    background: none;
  }
  #cart_table tfoot tr th:last-child {
    display: none;
  }
  #cart_table input.delButton {
    width: auto;
  }
}

table.customer_form,
table#confirm_table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  table.customer_form,
  table#confirm_table {
    display: block;
  }
  table.customer_form tbody,
  table.customer_form tr,
  table.customer_form th,
  table.customer_form td,
  table#confirm_table tbody,
  table#confirm_table tr,
  table#confirm_table th,
  table#confirm_table td {
    display: block;
    width: 100%;
  }
  table.customer_form th,
  table.customer_form td,
  table#confirm_table th,
  table#confirm_table td {
    border-top: none !important;
  }
  table.customer_form .ttl + tr th,
  table.customer_form tr:first-child:not(.ttl) th,
  table#confirm_table .ttl + tr th,
  table#confirm_table tr:first-child:not(.ttl) th {
    border-top: 1px solid #707070 !important;
  }
}
table.customer_form tr.ttl td,
table#confirm_table tr.ttl td {
  border: none;
  padding: 0;
}
table.customer_form tr.ttl td h3,
table#confirm_table tr.ttl td h3 {
  background: #f2f2f2;
  padding: 15px 20px;
  margin-top: 60px;
}
table.customer_form th,
table.customer_form td,
table#confirm_table th,
table#confirm_table td {
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 15px;
}
table.customer_form th,
table#confirm_table th {
  background: #f2f2f2;
  min-width: 16em;
}
table.customer_form th em,
table#confirm_table th em {
  color: #e63932;
  margin: 0 5px;
}
table.customer_form em,
table#confirm_table em {
  font-style: normal;
  font-size: 80%;
}
table.customer_form input[type="text"],
table.customer_form input[type="password"],
table.customer_form textarea,
table#confirm_table input[type="text"],
table#confirm_table input[type="password"],
table#confirm_table textarea {
  background: #fff;
  border: 1px solid #707070;
  width: 100%;
  padding: 9px 15px;
}
table.customer_form input[type="password"],
table#confirm_table input[type="password"] {
  margin-right: 10px;
}
table.customer_form select,
table#confirm_table select {
  background: #fff url(../images/common/sp/arrow-select.png) no-repeat right 10px center;
  background-size: 17px 15px;
  border: 1px solid #707070;
  width: 100%;
  padding: 9px 15px;
}
@media screen and (max-width: 767px) {
  table.customer_form select,
  table#confirm_table select {
    width: 100%;
  }
}

input.hidden {
  display: none;
}

#customer-info h5 {
  background: #f2f2f2;
  padding: 15px 20px;
  margin-top: 60px;
}

table#point_table {
  width: 100%;
  margin-top: 60px;
}
table#point_table th,
table#point_table td {
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 15px;
}
table#point_table th {
  background: #f2f2f2;
  min-width: 16em;
}
table#point_table th em {
  color: #e63932;
  margin: 0 5px;
}
table#point_table .used_point {
  background: #fff;
  border: 1px solid #707070;
  padding: 9px 15px;
  margin-right: 10px;
}
table#point_table input[type="submit"] {
  display: block;
  margin: 0 auto;
}

#memberinfo table {
  width: 100%;
}
#memberinfo table th,
#memberinfo table td {
  border: 1px solid #707070;
  vertical-align: middle;
  padding: 15px;
}
#memberinfo table th {
  background: #f2f2f2;
}
#memberinfo table th em {
  color: #e63932;
  margin: 0 5px;
}

@media screen and (max-width: 767px) {
  #memberinfo .memberinfo_table th,
  #memberinfo .memberinfo_table td {
    padding: 5px;
    line-height: 1.5;
  }
}

#memberinfo h3 {
  background: #f2f2f2;
  padding: 15px 20px;
  margin-top: 60px;
}

ul.member_submenu {
  display: flex;
  justify-content: center;
}
ul.member_submenu li {
  margin: 0 15px;
}
ul.member_submenu li a {
  background: #e63932;
  color: #fff;
  padding: 0 20px;
  border-radius: 23px;
  display: block;
}

#memberpages .loginbox {
  max-width: 650px;
  margin: 0 auto;
}
#memberpages .loginbox input[type="text"],
#memberpages .loginbox input[type="password"] {
  background: #fff;
  border: 1px solid #707070;
  width: 100%;
  padding: 9px 15px;
}
#memberpages .loginbox .submit {
  display: flex;
  justify-content: center;
  margin: 50px 0 30px;
}
#memberpages .loginbox input[type="submit"] {
  background: #e63932 url(../images/products/arrow-right-white.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 43px 12px;
  height: 46px;
  padding: 0 80px !important;
}
@media screen and (max-width: 767px) {
  #memberpages .loginbox input[type="submit"] {
    padding: 0 40px !important;
    background-size: 30px auto;
  }
}
#memberpages .loginbox p#nav {
  text-align: center;
}
#memberpages .loginbox p#nav a {
  color: #66d0e3;
}

#info-confirm #cart #cart_table tr th:last-child,
#info-confirm #cart #cart_table tr td:last-child {
  display: none;
}

@media screen and (max-width: 767px) {
  .table-scroll {
    overflow: scroll;
  }
}

#escott-token-dialog #cardno,
#escott-token-dialog #seccd {
  border: 1px solid #707070;
  margin-right: 10px;
}

#escott-token-dialog #expmm,
#escott-token-dialog #expyy {
  padding: 9px 35px 9px 15px;
  margin-right: 10px;
}

#escott-token-dialog #escott_token_cancel,
#escott-token-dialog #escott_token_next {
  background: #e63932;
  color: #fff;
  padding: 0 20px;
  border-radius: 23px;
}

#escott-token-dialog .send {
  margin: 40px 0 30px;
}

.privacy-policy {
  max-width: 900px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    padding: 0 20px;
  }
}
.privacy-policy h3 {
  margin: 40px 0 5px;
}
.privacy-policy ul li {
  margin-bottom: 1.2em;
  padding-left: 20px;
  position: relative;
}
.privacy-policy ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.notation {
  max-width: 900px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .notation {
    padding: 0 20px;
  }
}
.notation dl dt {
  font-weight: bold;
  border-bottom: 1px solid #707070;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.notation dl dd {
  margin-bottom: 30px;
}

.body-sitemap {
  background: #f0f0f0;
}

.sitemap-pc {
  max-width: 820px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .sitemap-pc {
    display: none;
  }
}
.sitemap-pc ul {
  border-left: 1px solid #212121;
  padding-left: 20px;
}
.sitemap-pc ul li {
  margin-bottom: 15px;
}
.sitemap-pc ul li a {
  color: #292929;
}
.sitemap-pc ul li a:hover {
  color: #e63932;
  opacity: 1;
}
.sitemap-pc ul li:last-child {
  margin-bottom: 0;
}

.sitemap-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sitemap-sp {
    margin: 0 0 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.sitemap-sp ul {
  border-left: 1px solid #212121;
  padding-left: 10px;
}
.sitemap-sp ul li {
  margin-bottom: 15px;
}
.sitemap-sp ul li a {
  color: #292929;
}
.sitemap-sp ul li a:hover {
  color: #e63932;
  opacity: 1;
}
.sitemap-sp ul li:last-child {
  margin-bottom: 0;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 0 20px;
  }
}
.contact-form-lead {
  margin-bottom: 30px;
}
.contact-form .red {
  color: #e63932;
}
.contact-form .required {
  color: #e63932;
  margin: 0 5px;
}
.contact-form table {
  width: 100%;
}
.contact-form table tr,
.contact-form table th,
.contact-form table td {
  display: block;
  width: 100%;
}
.contact-form table th {
  font-weight: normal;
}
.contact-form table td {
  padding: 5px 0 20px;
}
.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid #707070;
  width: 100%;
  padding: 9px 15px;
}
.contact-form input[type="checkbox"] {
  width: auto;
  margin-right: 7px;
  position: relative;
  top: -2px;
}
.contact-form p.button {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}
.contact-form input[type="submit"] {
  width: auto;
  background: #e63932 url(../images/products/arrow-right-white.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 43px 12px;
  border: none;
  color: #fff;
  height: 46px;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
  margin-left: 72px;
}
.contact-form .select-wrap select {
  background: #fff url(../images/common/sp/arrow-select.png) no-repeat right 10px center;
  background-size: 17px 15px;
  border: 1px solid #707070;
  width: 100%;
  padding: 9px 15px;
}
@media screen and (max-width: 767px) {
  .contact-form .select-wrap select {
    width: 100%;
  }
}

form .agree {
  text-align: center;
}
form .agree a {
  color: #66d0e3;
}
form .agree .wpcf7-list-item-label {
  display: none;
}

@-moz-document url-prefix() {
} /* -------------------
  OBJECT FIT FOR IE
--------------------*/
.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* 251014　物件募集ページ追加 */
.profile--property {
  background-color: transparent;
}
.propertywant-form {
  background-color: #fdebeb;
  padding: 100px 0;
}
.contact-form-inner + .contact-form-inner {
  margin-top: 100px;
}
.contact-form-inner-ttl {
  font-size: 24px;
  text-align: center;
}
.contact-form-propertywant {
  width: min(80vw, 300px);
  margin: 2vw auto;
  text-align: center;
  border: #707070 solid 1px;
}
.contact-form-propertywant-link {
  display: block;
  padding: 10px 0;
}
.contact-form-propertywant-link:hover {
  opacity: 0.5;
}
.sec-header .enttl p {
  margin-bottom: 5px;
}

.propertywant-form .sec-header {
  margin-bottom: 40px;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .profile-header.sec-header .enttl {
    font-size: 30px;
  }
  .profile--property table th {
    width: 7.5em;
  }
  .contact-form-inner + .contact-form-inner {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  .profile--property > table > tbody > tr > th,
  .profile--property > table > tbody > tr > td {
    display: block;
    width: 100%;
  }
  .profile--property table .td-inner table {
    font-size: 90%;
  }
  .profile--property table .td-inner table th {
    font-weight: normal;
  }

  .profile--property table .td-inner table tr:last-of-type th,
  .profile--property table .td-inner table tr:last-of-type td {
    border-bottom: none;
  }

  .profile--property table .td-inner table th + th,
  .profile--property table .td-inner table th + td,
  .profile--property table .td-inner table td + td {
    border-left: 1px solid #707070;
  }

  .profile--property table .td-inner table tr:first-of-type th:first-of-type {
    width: 15%;
  }

  .profile--property table .td-inner table tr:first-of-type th:nth-of-type(2) {
    width: 25%;
  }
  .profile--property table .td-inner table tr:first-of-type th:nth-of-type(3) {
    width: 27%;
  }
  .profile--property table .td-inner table tr:first-of-type th:last-of-type {
    width: 27%;
  }
  .profile--property table .td-inner table th,
  .profile--property table .td-inner table td {
    display: table-cell;
    padding: 5px;
    line-height: 1.2;
  }

  .br-sp {
    display: block;
  }
}
