@charset "UTF-8";
/*setting*/
/*base*/
/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

* {
  box-sizing: border-box;
}

a img {
  border: none;
}

a:focus, *:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  position: relative;
  color: #000;
  font-weight: 500;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif !important;
}

.wrap {
  overflow: hidden;
}

/*tool*/
/*----------------------------------------------------------------
フェードアニメーション
----------------------------------------------------------------*/
.effect-fade-main {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1500ms;
}

/* 2つ目の要素に200msのdelayをかける */
.effect-fade-main:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}

/* 3つ目の要素に400msのdelayをかける */
.effect-fade-main:nth-of-type(3) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}

/* 3つ目の要素に400msのdelayをかける */
.effect-fade-main:nth-of-type(4) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.effect-fade-main.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-fade-under {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1500ms;
}
@media screen and (min-width: 768px) {
  .effect-fade-under {
    transform: translate(0, 60px);
  }
}

.effect-fade-under.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-fade-right {
  opacity: 0;
  transform: translate(60px, 0);
  transition: all 1500ms;
}

.effect-fade-right.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-fade-left {
  opacity: 0;
  transform: translate(-60px, 0);
  transition: all 1500ms;
}

.effect-fade-left.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes GoodsBurst {
  to {
    transform: translateY(0);
  }
}
@keyframes FastRotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes Boost {
  to {
    transform: translate(translate(45%, 25%));
  }
}
/*tool*/
.acd_single__box__item:not(:last-of-type) {
  margin-bottom: 6rem;
}
.acd_single__Unit {
  background-color: #fff;
  overflow: hidden;
  border-top: solid 2px #D8D8D8;
}
.acd_single__Unit:last-of-type {
  border-bottom: solid 2px #D8D8D8;
}
.acd_single__Unit .btn-area-acd {
  display: none;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.acd_single__Unit.active {
  padding-bottom: 3rem;
}
.acd_single__TitleUnit {
  cursor: pointer;
  padding: 1.4rem 3rem 1.4rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .acd_single__TitleUnit {
    padding: 2.2rem 5.5rem 2.2rem 2rem;
  }
}
.acd_single__TitleUnit::after {
  position: absolute;
  background: url(../img/common/icon-plus-circle.svg), url(../img/common/icon-minus-circle.svg) no-repeat;
  content: "";
  background-size: contain, 0 0;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  top: 1.5rem;
  right: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  .acd_single__TitleUnit::after {
    top: 2.5rem;
    right: 2.2rem;
  }
}
.acd_single__TitleUnit.active::after {
  background-size: 0 0, contain;
}
.acd_single--ttl {
  font-weight: bold;
  font-size: 1.8rem;
}

.acd_single__Item {
  display: none;
  list-style: none;
  background-color: #fff;
}

.acd_single__List {
  background: #F6F6F6;
  padding: 1.2rem 2rem 1.2rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .acd_single__List {
    padding: 2.2rem 5.5rem 2.2rem 2rem;
  }
}
.acd_single__List__txt {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .acd_single__List__txt {
    font-size: 1.8rem;
  }
}

.icon-faq-q {
  position: relative;
  padding-left: 3rem;
}
@media screen and (min-width: 768px) {
  .icon-faq-q {
    padding-left: 4rem;
  }
}
.icon-faq-q::before {
  position: absolute;
  content: "Q";
  font-size: 2.5rem;
  display: inline-block;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e23b0a;
  line-height: 1;
}

.icon-faq-a {
  position: relative;
  padding-left: 3rem;
}
@media screen and (min-width: 768px) {
  .icon-faq-a {
    padding-left: 4rem;
  }
}
.icon-faq-a::before {
  position: absolute;
  content: "A";
  font-size: 2.5rem;
  display: inline-block;
  top: 0.2rem;
  left: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000;
  line-height: 1;
}

/*layout*/
/*tool*/
.header {
  position: fixed;
  z-index: 99999;
}
.l-header {
  position: fixed;
  width: 100%;
  z-index: 9;
  top: 0;
  pointer-events: none;
  /*padding: 0 2rem;*/
}

.l-header--bar {
  height: 60px;
  z-index: 9999;
  padding-left: 0;
}
.l-header--bar.is-appear {
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.1);
}
.l-header--bar--logo img {
  pointer-events: auto;
  width: 12rem;
}
@media screen and (min-width: 690px) {
  .l-header--bar--logo img {
    margin: 0 auto 0 2rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header--bar--logo img {
    width: 15.7rem;
    margin: 2rem auto 0 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header--bar--logo img {
    width: 20rem;
    margin: 2rem auto 0 10rem;
  }
}
.l-header--bar--logo img:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

.is-open .is-appear {
  box-shadow: none;
}

.l-header--logo {
  /*width: 60px;*/
}

.l-header--hum {
  position: absolute;
  top: 1.5rem;
  right: 4.5rem;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 8rem;
  height: 6.4rem;
  border-radius: 1.5rem;
  /*background-color: #fff;*/
  z-index: 99999;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header--hum {
    right: 7rem;
    width: 13.4rem;
  }
  .l-header--hum:hover {
    background: #E33C0B;
    border: 0.2rem solid #000;
    /*box-shadow: 0 0 0 2px #000;*/
  }
  .l-header--hum:hover .l-header--hum__inner span {
    background-color: #fff;
  }
  .l-header--hum:hover .l-header--hum__inner::before {
    color: #fff;
  }
}
@media screen and (min-width: 1140px) {
  .l-header--hum {
    right: 8rem;
  }
}

.l-header--hum__inner {
  position: relative;
  width: 20px;
  height: 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-left: 6rem;
}
.l-header--hum__inner::before {
  content: "MENU";
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
  color: #000;
  vertical-align: baseline; /* これを指定すれば上寄せや下寄せが可能 */
  font-weight: bold;
  top: 50%;
  left: -3.3rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
}
.l-header--hum__inner span {
  display: inline-block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}
.l-header--hum__inner span:nth-of-type(1) {
  top: 0;
}
.l-header--hum__inner span:nth-of-type(2) {
  top: 6px;
}
.l-header--hum__inner span:nth-of-type(3) {
  bottom: 0;
}

.is-open .l-header--hum {
  /*background-color: #fff;*/
}
.is-open .l-header--hum span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.is-open .l-header--hum span:nth-of-type(2) {
  opacity: 0;
}
.is-open .l-header--hum span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .is-open .l-header--hum:hover {
    background: none;
    border: none;
  }
  .is-open .l-header--hum:hover .l-header--hum__inner span {
    background-color: #000;
  }
  .is-open .l-header--hum:hover .l-header--hum__inner::before {
    color: #000;
  }
}

.l-header--inner {
  pointer-events: auto;
  position: fixed;
  /*right: -280px;*/
  right: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background-color: #fff;
  z-index: 9999;
  /*width: 280px;*/
  /*height: 100%;*/
  overflow: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  top: 1.5rem;
  right: 30px;
  border-radius: 1.5rem;
  border: 0.2rem solid #000;
  box-shadow: 0.3rem 0.3rem 0 0 #e33c0b, 0.3rem 0.3rem 0 0.2rem #000;
  width: 23rem;
  height: 6.4rem;
}
@media screen and (min-width: 768px) {
  .l-header--inner {
    right: 70px;
    width: 30rem;
  }
}
@media screen and (min-width: 1140px) {
  .l-header--inner {
    right: 80px;
  }
}

.is-open .l-header--inner {
  /*right: 0;*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /*width: 280px;*/
  /*width: 90vw;*/
  width: calc(100vw - 30px * 2);
  height: calc(95vh - 8rem);
  overflow: visible;
  padding: 3.3rem 1.4rem;
  /*    transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);*/
}
@media screen and (min-width: 375px) {
  .is-open .l-header--inner {
    padding: 3.3rem 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .is-open .l-header--inner {
    width: calc(100vw - 70px * 2);
    padding: 3.3rem 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .is-open .l-header--inner {
    padding: 3.3rem 5rem;
    max-height: 65rem;
  }
}
@media screen and (min-width: 1140px) {
  .is-open .l-header--inner {
    width: calc(100vw - 80px * 2);
  }
}
@media screen and (min-width: 1300px) {
  .is-open .l-header--inner {
    max-height: 68rem;
  }
}
.is-open .l-header--bg {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: rgba(0,0,0,0)!important;*/
  width: 100vw;
  /*height: calc(100vh - 60px);*/
  height: 100vh;
  position: fixed;
  /*top: $hight-header;*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.l-link {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 14px 10px 14px 15px;
  background-color: #fff;
}
.l-link:hover {
  color: #333;
}

.l-header--unit:not(:first-child) {
  border-top: 1px solid #eee;
}
.l-header--unit:last-child {
  border-bottom: 1px solid #eee;
}

.l-link--single {
  position: relative;
}
.l-link--single::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  border-top: solid #333 2px;
  border-right: solid #333 2px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-link--trigger {
  position: relative;
}
.l-link--trigger.is-active {
  background-color: #eee;
}
.l-link--trigger.is-active::after {
  opacity: 0;
}
.l-link--trigger::before, .l-link--trigger::after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.l-link--trigger::before {
  width: 12px;
  height: 2px;
  right: 11px;
}
.l-link--trigger::after {
  width: 2px;
  height: 12px;
  right: 16px;
  transition: opacity 0.36s;
}
.l-link--trigger:not(:first-child) {
  border-top: 1px solid #333;
}

.l-sublink {
  background-color: #eee;
}

.l-sublink__link {
  text-decoration: none;
  color: #333;
  font-size: 90%;
  display: block;
  padding: 14px 20px 14px 15px;
  position: relative;
}
.l-sublink__link:hover {
  color: #333;
}
.l-sublink__link::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  right: 14px;
  margin-top: -3px;
  border-top: solid #333 1px;
  border-right: solid #333 1px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.l-sublink__link:not(:first-child) {
  border-top: 1px solid #eee;
}

.l-sublink--itemlist {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l-sublink--itemlist .l-sublink__link {
  width: 50%;
  margin-bottom: -1px;
}
.l-sublink--itemlist .l-sublink__link:nth-child(n+1) {
  border-bottom: 1px solid #eee;
}
.l-sublink--itemlist .l-sublink__link:nth-child(odd) {
  border-right: 1px solid #eee;
}
.l-sublink--itemlist .l-sublink__link:not(:first-child) {
  border-top: none;
}

.l-sublink__all {
  border-bottom: 1px solid #eee;
}

.l-header--bg {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.is-open .l-header--bg {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  /*height: calc(100vh - 60px);*/
  position: fixed;
  /*top: $hight-header;*/
  top: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  height: 100vh;
}

.is-navFixed {
  position: fixed;
  width: 100%;
}

.is-navFixed .l-header--inner {
  position: fixed;
  /*top: $hight-header;
  -webkit-overflow-scrolling:touch;
  padding-bottom: $hight-header + 40px;*/
  top: 1.5rem;
  /*right: 50%;*/
  /*transform: translate(50%, 0);
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);*/
  padding-top: 6rem;
}

.l-header--inner .l-header--inner--inner {
  display: none;
}

.is-navFixed .l-header--inner .l-header--inner--inner {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .is-navFixed .l-header--inner .l-header--inner--inner {
    max-width: 100rem;
  }
}
@media screen and (min-width: 1300px) {
  .is-navFixed .l-header--inner .l-header--inner--inner {
    max-width: 130rem;
  }
}

.l-header--inner {
  /*overflow-y: scroll;*/
  overflow-y: auto !important;
}

/*.l-header{
  .l-header--inner{
  width: 2%; 
  }
}

.l-header.is-open{
  .l-header--inner{
  width: 100%; 
  }
}*/
.l-unit--header:not(:last-child) {
  margin-bottom: 2rem;
}

.hero {
  width: 100%;
}

.l-header--inner {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}

.l-header--inner::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}

.l-header-link {
  margin: 0 auto;
  max-width: 40rem;
}
@media screen and (min-width: 690px) {
  .l-header-link {
    max-width: 50rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header-link {
    max-width: 100rem;
    display: flex;
    justify-content: space-between;
  }
}
.l-header-link_box {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 690px) {
  .l-header-link_box {
    margin-bottom: 16% 1.5rem;
  }
}
.l-header-link_box_unit {
  margin-bottom: 2rem;
}
.l-header-link_box_ttl {
  display: block;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  color: #E33C0B;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1000px) {
  .l-header-link_box_ttl {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.l-header-link_box_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.5rem;
  column-gap: 1.2rem;
}
@media screen and (min-width: 690px) {
  .l-header-link_box_list {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: normal;
  }
}
@media screen and (min-width: 1000px) {
  .l-header-link_box_list {
    display: block;
  }
}
.l-header-link_box_item {
  list-style: none;
  break-inside: avoid;
  margin-bottom: 0.2rem;
  line-height: 1.1em;
}
@media screen and (min-width: 690px) {
  .l-header-link_box_item {
    line-height: normal;
  }
}
@media screen and (min-width: 768px) {
  .l-header-link_box_item {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header-link_box_item {
    margin-bottom: 1rem;
  }
}
.l-header-link_box_item a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
}
.l-header-link_box_item a:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #E33C0B;
}
@media screen and (min-width: 375px) {
  .l-header-link_box_item a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-header-link_box_item a {
    font-size: 2rem;
  }
}

.l-header-link--item--none a {
  color: #D8D8D8;
  pointer-events: none;
}
.l-header-link--item--none a:hover {
  color: #D8D8D8;
}

.l-header--inner--logo {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .l-header--inner--logo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin-bottom: 4rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.l-header--inner--logo--choreo {
  width: 15rem;
  margin: 2rem auto 2rem auto;
}
@media screen and (min-width: 768px) {
  .l-header--inner--logo--choreo {
    margin: 0 auto 0 0;
    width: 20rem;
  }
}
.l-header--inner--logo--choreo {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-header--inner--logo--choreo:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

.l-header--inner--logo--sns {
  position: absolute;
  width: 10rem;
  top: 2rem;
  right: 11rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header--inner--logo--sns {
    width: 13rem;
    top: 1.5rem;
    right: 15rem;
  }
}
.l-header--inner--logo--sns .l-header--inner--logo--sns--item {
  width: 2.3rem;
  /*height: 2.6rem;*/
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header--inner--logo--sns .l-header--inner--logo--sns--item {
    width: 3.2rem;
    /*height: 3.2rem;*/
  }
}
.l-header--inner--logo--sns .l-header--inner--logo--sns--item__img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}
.l-header--inner--logo--sns .l-header--inner--logo--sns--item__img:nth-of-type(1) {
  display: block;
}
.l-header--inner--logo--sns .l-header--inner--logo--sns--item__img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.l-header--inner--logo--sns .l-header--inner--logo--sns--item:hover .l-header--inner--logo--sns--item__img:nth-of-type(2) {
  opacity: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.l-header--inner--logo--contact {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header--inner--logo--contact {
    text-align: start;
    margin: 2.7rem 2rem 0 4rem;
  }
}

.header-contact-btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 3rem;
  color: #fff;
  font-size: 1.5rem;
  background-color: #000;
  border-radius: 40rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-contact-btn:hover {
  background-color: #E33C0B;
}
@media screen and (min-width: 768px) {
  .header-contact-btn {
    padding: 0.5rem 2rem;
  }
}

@media screen and (min-width: 768px) {
  .none-pc-sm {
    display: none;
  }
}

/*.icon-svg{
  cursor: pointer;
}*/
.l-header--service {
  margin-bottom: 2rem;
}
.l-header--service--ttl {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}
.l-header--service--ttl::before {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #000;
  margin-right: 1rem;
}
.l-header--service--ttl::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #000;
  margin-left: 1rem;
}
@media screen and (min-width: 1000px) {
  .l-header--service--icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    gap: 40px;
    margin: 0 auto;
  }
}
.l-header--service--icon--box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 0 -2%;
}
@media screen and (min-width: 1000px) {
  .l-header--service--icon--box {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin: 0;
    gap: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .l-header--service--icon--box:first-child {
    width: fit-content;
  }
}
@media screen and (min-width: 1000px) {
  .l-header--service--icon--box:last-child {
    width: fit-content;
  }
}
.l-header--service--icon--item {
  width: 25%;
  max-width: 14rem;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 0 2% 2rem;
}
@media screen and (min-width: 690px) {
  .l-header--service--icon--item {
    width: 16%;
  }
}
@media screen and (min-width: 1000px) {
  .l-header--service--icon--item {
    margin: 0;
    width: 40%;
  }
}
.l-header--service--icon--item__img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
}
.l-header--service--icon--item__img:nth-of-type(1) {
  display: block;
}
.l-header--service--icon--item__img:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.l-header--service--icon--item:hover .l-header--service--icon--item__img:nth-of-type(2) {
  opacity: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.l-header--copy {
  font-size: 1.2rem;
  text-align: center;
}

.icon-header-blank {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.icon-header-blank::after {
  position: absolute;
  content: "";
  background: url(../img/common/icon-blank-black.svg) no-repeat;
  background-size: contain;
  width: 1.4rem;
  height: 1.4rem;
  top: 50%;
  right: -7px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.icon-header-blank:hover {
  color: #E33C0B;
}
.icon-header-blank:hover::after {
  content: "";
  background: url(../img/common/icon-blank-red.svg) no-repeat;
  background-size: contain;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.icon-header-none {
  pointer-events: none !important;
  opacity: 0.2;
}
.icon-header-none .icon-svg {
  fill: #D8D8D8 !important;
}
.icon-header-none .icon-svg:hover {
  fill: #D8D8D8 !important;
}

.footer {
  background-color: #e23b0a;
  color: #fff;
  margin: 0 2rem;
}
.footer img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer {
    margin: 0 4rem;
  }
}
.footer a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #fff;
}
.footer a:hover {
  opacity: 0.5;
}
.footer a img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.footer a img:hover {
  opacity: 0.5;
}
.footer .none-link {
  opacity: 0.5;
  pointer-events: none;
}
.footer .none-link img {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .footer .u-br-sp {
    display: none;
  }
}

.footer .footer-01 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 1000px) {
  .footer .footer-01 {
    flex-flow: row;
    justify-content: space-between;
    padding: 3rem 5rem;
  }
}
@media screen and (min-width: 1140px) {
  .footer .footer-01 {
    padding: 3rem 14rem;
  }
}
.footer .footer-01 .footer-01-left {
  padding: 3rem 2rem;
  margin-top: -10rem;
}
@media screen and (min-width: 1000px) {
  .footer .footer-01 .footer-01-left {
    padding: 3rem 0;
  }
}
.footer .footer-01 .footer-01-left .footer-01-left__img {
  width: 70%;
  max-width: 230px;
  margin: 0 auto;
}
.footer .footer-01 .footer-01-left .footer-01-left__text .address {
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footer-01 .footer-01-left .footer-01-left__text .address .u-br-address {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .footer .footer-01 .footer-01-left .footer-01-left__text .address .u-br-address {
    display: block;
  }
}
.footer .footer-01 .footer-01-left .footer-01-left__text .map {
  position: relative;
}
.footer .footer-01 .footer-01-left .footer-01-left__text .map::before {
  content: "";
  background: url(../img/common/icon-map-white.svg) no-repeat;
  display: inline-block;
  width: 1rem;
  height: 1.3rem;
  margin-right: 0.5em;
  background-size: contain;
}
.footer .footer-01 .footer-01-right {
  padding: 3rem 2rem;
  border-top: 1px solid #fff;
}
@media screen and (min-width: 1000px) {
  .footer .footer-01 .footer-01-right {
    padding: 3rem 0rem;
    border: none;
  }
}
@media screen and (min-width: 1140px) {
  .footer .footer-01 .footer-01-right {
    width: 60%;
    max-width: 460px;
  }
}
.footer .footer-01 .footer-01-right .footer-01-right__sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 150px;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 1000px) {
  .footer .footer-01 .footer-01-right .footer-01-right__sns {
    margin: 0 0 3rem auto;
  }
}
.footer .footer-01 .footer-01-right .footer-01-right__sns .sns-logo {
  padding: 0 0.5rem;
}
@media screen and (min-width: 375px) {
  .footer .footer-01 .footer-01-right .footer-01-right__sns .sns-logo {
    padding: 0 1rem;
  }
}
.footer .footer-01 .footer-01-right .footer-01-right__sns .sns-logo .x {
  width: 3rem;
}
.footer .footer-01 .footer-01-right .footer-01-right__link {
  column-count: 2;
}
@media screen and (min-width: 768px) {
  .footer .footer-01 .footer-01-right .footer-01-right__link {
    column-count: 3;
  }
}
@media screen and (min-width: 1000px) {
  .footer .footer-01 .footer-01-right .footer-01-right__link {
    margin-top: 5rem;
  }
}
.footer .footer-01 .footer-01-right .footer-01-right__link .footer-link {
  margin-bottom: 3rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.footer .footer-01 .footer-01-right .footer-01-right__link .footer-link a {
  text-decoration: none;
}
.footer .footer-01 .footer-01-right .footer-01-right__link .footer-link .footer-link__blank {
  display: inline-block;
  position: relative;
  padding-right: 2.4rem;
}
.footer .footer-01 .footer-01-right .footer-01-right__link .footer-link .footer-link__blank::after {
  content: "";
  position: absolute;
  background: url(../img/common/icon-blank-white.svg) no-repeat;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-size: contain;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
}

.footer .footer-02 {
  padding: 0 2rem;
}
@media screen and (min-width: 1000px) {
  .footer .footer-02 {
    padding: 0 5rem;
  }
}
.footer .footer-02 .footer-02-title {
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}
.footer .footer-02 .footer-02-title::before {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-02 .footer-02-title::before {
    margin-right: 3rem;
  }
}
.footer .footer-02 .footer-02-title::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
  margin-left: 1rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-02 .footer-02-title::after {
    margin-left: 3rem;
  }
}
.footer .footer-02 .footer-02-contents {
  display: flex;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footer-02 .footer-02-contents {
    justify-content: center;
    max-width: 630px;
  }
}
@media screen and (min-width: 1000px) {
  .footer .footer-02 .footer-02-contents {
    flex-wrap: nowrap;
    max-width: 1160px;
  }
}
.footer .footer-02 .footer-02-contents .footer-02-contents__item {
  width: 15%;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 375px) {
  .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    padding: 0 1rem;
  }
}
@media screen and (min-width: 768px) {
  .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    padding: 0 1rem;
  }
}
@media screen and (min-width: 1140px) {
  .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    padding: 0 1.5rem;
  }
}
.footer .footer-02 .footer-02-contents .footer-02-contents__item.item-small {
  width: 14%;
}
.footer .footer-02 .footer-02-contents .footer-02-contents__space {
  width: 0%;
}
@media screen and (min-width: 768px) {
  .footer .footer-02 .footer-02-contents .footer-02-contents__space {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .footer .footer-02 .footer-02-contents .footer-02-contents__space {
    width: 0%;
  }
}

.footer .footer-03 {
  padding: 2rem 2rem 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .footer-03 {
    padding: 6rem 2rem 4rem;
  }
}
.footer .footer-03 .copyright {
  font-size: 1.2rem;
}
.footer .footer-03 .footer-logo {
  width: 10rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-03 .footer-logo {
    width: 18rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

.container {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1000px) {
  .container {
    padding: 70px 0;
  }
}
.container:nth-child(even) {
  background-color: #eee;
}

.content {
  margin-left: auto;
  margin-right: auto;
}
.content:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .content:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .content:not(:last-child) {
    margin-bottom: 50px;
  }
}
.content {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1140px) {
  .content {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 320px) {
  .content {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .content {
    width: 768px;
  }
}
@media screen and (min-width: 1000px) {
  .content {
    width: 1000px;
  }
}

.section:not(:last-child) {
  margin-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .section:not(:last-child) {
    margin-bottom: 62px;
  }
}
@media screen and (min-width: 1000px) {
  .section:not(:last-child) {
    margin-bottom: 62px;
  }
}

.unit:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .unit:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .unit:not(:last-child) {
    margin-bottom: 30px;
  }
}

.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-left: 6px;
  margin-right: 6px;
}
@media screen and (min-width: 768px) {
  .row {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.row:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .row:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .row:not(:last-child) {
    margin-bottom: 30px;
  }
}

.row-half {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-left: 3px;
  margin-right: 3px;
}
@media screen and (min-width: 768px) {
  .row-half {
    margin-left: 6px;
    margin-right: 6px;
  }
}
.row-half:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .row-half:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .row-half:not(:last-child) {
    margin-bottom: 30px;
  }
}

.column {
  padding-left: 6px;
  padding-right: 6px;
}
@media screen and (min-width: 768px) {
  .column {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.column-half {
  padding-left: 3px;
  padding-right: 3px;
}
@media screen and (min-width: 768px) {
  .column-half {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.col-2 {
  display: block;
  width: 100%;
}
.col-2:nth-child(-n+1) {
  margin-top: 0;
}
.col-2:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-2:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-2 {
    width: 50%;
  }
  .col-2:nth-child(-n+2) {
    margin-top: 0;
  }
  .col-2:nth-of-type(n + 3) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .col-2:nth-of-type(n + 3) {
    margin-top: 24px;
  }
}

.col-3 {
  display: block;
  width: 100%;
}
.col-3:nth-child(-n+1) {
  margin-top: 0;
}
.col-3:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-3:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-3 {
    width: 33.33333%;
  }
  .col-3:nth-child(-n+3) {
    margin-top: 0;
  }
  .col-3:nth-of-type(n + 4) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 375px) {
  .col-3:nth-of-type(n + 4) {
    margin-top: 24px;
  }
}

.col-4 {
  display: block;
  width: 100%;
}
.col-4:nth-child(-n+1) {
  margin-top: 0;
}
.col-4:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-4:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-4 {
    width: 25%;
  }
  .col-4:nth-child(-n+4) {
    margin-top: 0;
  }
  .col-4:nth-of-type(n + 5) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 375px) {
  .col-4:nth-of-type(n + 5) {
    margin-top: 24px;
  }
}

/*module*/
.btn-area {
  width: 100%;
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .btn-area {
    width: 70%;
  }
}
@media screen and (min-width: 1000px) {
  .btn-area {
    margin: 2.5rem auto 0 0;
    width: 70%;
  }
}

.m-btn {
  text-align: center;
  width: 100%;
  line-height: 4.5rem;
}
@media screen and (min-width: 1000px) {
  .m-btn {
    line-height: 4.5rem;
    width: 100%;
  }
}
.m-btn:not(:first-child) {
  margin-top: 1rem;
}
.m-btn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 40rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0.2rem 0 0 #fff, 0 0.2rem 0 0.1rem #000;
  transform: translateY(-6px);
}
.m-btn:before {
  background: url(../img/common/icon-button-left-arrow.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
}
.m-btn:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-shadow: none;
  transform: translateY(-2px);
}

.m-btn.-tel {
  background: #fff;
  color: #000;
}
.m-btn.-tel::before {
  display: none;
}

.m-telNumber {
  display: block;
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  line-height: 1;
  padding: 1rem 0 0 0;
}
@media screen and (max-width: 320px) {
  .m-telNumber {
    font-size: 2rem;
  }
}

.m-telTime {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  line-height: 1.5;
  padding: 0 0 1rem 0;
}

.m-btn.-contact span {
  line-height: 4;
}

.btn-white {
  background: #fff;
  color: #000;
  line-height: 6.5rem;
}

.icon-btn-return {
  position: relative;
}
.icon-btn-return::before {
  background: url(../img/common/icon-right-arrow-black-circle-min.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
  transform: scale(-1, 1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

.btn-black {
  background: #000;
  color: #fff;
  line-height: 6.5rem;
}

.icon-btn-next {
  position: relative;
}
.icon-btn-next::before {
  background: url(../img/common/icon-button-left-arrow.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
}

.btn-second-space {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .btn-second-space {
    margin-right: 2rem;
    margin-top: 0;
  }
}

.single-btn--area {
  text-align: center;
  margin-top: 4rem;
}
.single-btn--area .m-btn {
  max-width: 28rem;
  width: 100%;
}

ul:not([class]), .list-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list {
  list-style: none;
  padding-left: 1rem;
}
.list li {
  text-indent: -0.55em;
}
.list li::before {
  background: #39ba18;
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 0.1rem;
  vertical-align: middle;
}
.list li a {
  color: #333;
}

ul + p {
  margin-bottom: 1rem;
}

ol {
  padding-left: 1.8rem;
}
ol + p {
  margin-top: 1rem;
}

.is-1 {
  font-size: 5rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .is-1 {
    font-size: 7.2rem;
  }
}
.is-1.title {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 768px) {
  .is-1.title {
    margin-bottom: 2.5rem;
  }
}

.is-2 {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .is-2 {
    font-size: 4rem;
  }
}
.is-2.title {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .is-2.title {
    margin-bottom: 2rem;
  }
}

.is-3 {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .is-3 {
    font-size: 3.2rem;
  }
}
.is-3.title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .is-3.title {
    margin-bottom: 2rem;
  }
}

.is-4 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .is-4 {
    font-size: 2.4rem;
  }
}
.is-4.title {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .is-4.title {
    margin-bottom: 1.5rem;
  }
}

.is-5 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .is-5 {
    font-size: 1.8rem;
  }
}
.is-5.title {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .is-5.title {
    margin-bottom: 1rem;
  }
}

.backgroundImg-caption {
  text-indent: -100000px;
  position: absolute;
}

.figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.figure + p, .figure + .title {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .figure + p, .figure + .title {
    margin-top: 2rem;
  }
}

.breadcrumb {
  padding: 1.2rem 1.5rem 0.9rem;
  padding: 1rem;
  list-style: none;
}
@media screen and (min-width: 1140px) {
  .breadcrumb {
    padding: 1.2rem 0 0.9rem;
    position: relative;
  }
}
@media screen and (min-width: 1300px) {
  .breadcrumb {
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
}
.breadcrumb .content {
  font-size: 12px;
  padding: 0;
}
@media screen and (min-width: 1140px) {
  .breadcrumb .content {
    width: 100%;
    position: absolute;
    left: 0;
    top: -166px;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1300px) {
  .breadcrumb .content {
    left: 230px;
    padding: 0;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.breadcrumb li {
  line-height: 1;
  margin-right: 20px;
  position: relative;
}
.breadcrumb li:last-of-type::after {
  display: none;
}
.breadcrumb li::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0px;
  border-top: solid 1px #333333;
  border-right: solid 1px #333333;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -12px;
  margin-top: -4px;
}
.breadcrumb li:not(:first-child):before {
  margin-left: 1rem;
  margin-right: 1rem;
}

p:not([class]) + p {
  margin-top: 0.5rem;
}

.svg-icon {
  position: absolute;
  width: 0;
  height: 0;
}

.icon-svg {
  fill: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .icon-svg:hover {
    fill: #e23b0a;
  }
}

.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem 3rem;
  box-sizing: border-box;
  z-index: 100;
  visibility: hidden;
}

.cookie-consent.is-show {
  visibility: visible;
}

.cookie-consent a {
  color: #fff !important;
}

.cookie-agree {
  color: #000;
  width: 30%;
  max-width: 100px;
  background: #92f933;
  padding: 0.5em 1.5em;
  border-radius: 1rem;
  text-align: center;
  border: 0.2rem solid #000;
  box-shadow: 0.3rem 0.3rem 0 0 #fff, 0.3rem 0.3rem 0 0.2rem #000;
}

.cookie-agree:hover {
  cursor: pointer;
}

/* パッと消える */
.cc-hide1 {
  display: none;
}

/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* メディアクエリ */
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
}
/*theme*/
.l-top_Content {
  margin: 0 2rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-top_Content {
    margin: 0 4rem;
  }
}

.l-top_Content__margin {
  margin: 0 4rem;
}

@keyframes bganm-up-sp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -53.5rem;
  }
}
@keyframes bganm-up-pc {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -117.8rem;
  }
}
.bg-text {
  display: block;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 100%;
  z-index: 3;
}
@media screen and (min-width: 1000px) {
  .bg-text {
    width: 4.4rem;
  }
}
.bg-text.-left {
  background: url(../img/top/img-side-letter-left-sp.png) repeat-y;
  background-size: 100%;
  left: 0;
  -webkit-animation: bganm-up-sp 13s linear infinite;
  animation: bganm-up-sp 13s linear infinite;
  transform: rotate(180deg);
}
@media screen and (min-width: 1000px) {
  .bg-text.-left {
    background: url(../img/top/img-side-letter-left.png) repeat-y;
    background-size: 100%;
    -webkit-animation: bganm-up-pc 13s linear infinite;
    animation: bganm-up-pc 13s linear infinite;
  }
}
.bg-text.-right {
  background: url(../img/top/img-side-letter-right-sp.png) repeat-y;
  background-size: 100%;
  right: 0;
  -webkit-animation: bganm-up-sp 13s linear infinite;
  animation: bganm-up-sp 13s linear infinite;
}
@media screen and (min-width: 1000px) {
  .bg-text.-right {
    background: url(../img/top/img-side-letter-right.png) repeat-y;
    background-size: 100%;
    -webkit-animation: bganm-up-pc 13s linear infinite;
    animation: bganm-up-pc 13s linear infinite;
  }
}

.slide-img img {
  display: block;
  width: 100%;
}

.l-top_MainImg {
  position: relative;
  margin: 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-top_MainImg {
    margin: 6rem 2rem 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_MainImg {
    margin: 6rem auto 0;
  }
}
.l-top_MainImg__Content {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .l-top_MainImg__Content {
    margin: 0 9rem;
  }
}
@media screen and (min-width: 1140px) {
  .l-top_MainImg__Content {
    margin: 0 9rem;
  }
}
.l-top_MainImg__Txt {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-top_MainImg__Txt {
    margin: 0 auto 0 20rem;
    width: 100%;
    display: block;
    position: absolute;
    top: -4.25rem;
    text-align: left;
    font-size: 1rem;
    margin: 0 auto 0 22rem;
  }
}
@media screen and (min-width: 1300px) {
  .l-top_MainImg__Txt {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top_MainImg__Single {
    border: 0.6rem solid #000;
  }
}
.l-top_MainImg__Single__item {
  display: block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-top_MainImg__Single__item:hover {
  opacity: 0.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.l-top_MainTitle {
  position: absolute;
  bottom: 32vh;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 27rem;
  opacity: 0.8;
  width: 100%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .l-top_MainTitle {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    bottom: 0;
    top: 0;
    max-width: 35%;
  }
}
.l-top_MainTitle img {
  width: 100%;
}

.l-top_Swiper__PC {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-top_Swiper__PC {
    display: block;
    position: relative;
    height: 80rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Swiper__PC {
    height: 80vh;
  }
}
.l-top_Swiper__PC .swiper-wrapper {
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
}
.l-top_Swiper__PC .swiper-wrapper img {
  height: auto;
  width: 100%;
}
.l-top_Swiper__PC .top_Swiper {
  position: relative;
  height: 100%;
}
.l-top_Swiper__PC .swiper-container {
  border: 0.5rem solid #000;
  position: absolute;
  top: 0;
  left: 0.25rem;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.l-top_Swiper__PC .swiper-container .swiper-slide.-main01 {
  background: url(../img/top/img-main-01-tb.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1140px) {
  .l-top_Swiper__PC .swiper-container .swiper-slide.-main01 {
    background: url(../img/top/img-main-01.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Swiper__PC .swiper-container .swiper-slide.-main03 {
  background: url(../img/top/img-main-03-tb.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1140px) {
  .l-top_Swiper__PC .swiper-container .swiper-slide.-main03 {
    background: url(../img/top/img-main-03.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Swiper__PC .swiper-container .swiper-slide.-main05 {
  background: url(../img/top/img-main-05-tb.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1140px) {
  .l-top_Swiper__PC .swiper-container .swiper-slide.-main05 {
    background: url(../img/top/img-main-05.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Swiper__PC .swiper-container02 {
  border: 0.5rem solid #000;
  position: absolute;
  right: 0.25rem;
  top: -6rem;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.l-top_Swiper__PC .swiper-container02 .swiper-slide.-main02 {
  background: url(../img/top/img-main-02-tb.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1140px) {
  .l-top_Swiper__PC .swiper-container02 .swiper-slide.-main02 {
    background: url(../img/top/img-main-02.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Swiper__PC .swiper-container02 .swiper-slide.-main04 {
  background: url(../img/top/img-main-04-tb.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1140px) {
  .l-top_Swiper__PC .swiper-container02 .swiper-slide.-main04 {
    background: url(../img/top/img-main-04.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Swiper__PC .swiper-container02 .swiper-slide.-main06 {
  background: url(../img/top/img-main-06-tb.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1140px) {
  .l-top_Swiper__PC .swiper-container02 .swiper-slide.-main06 {
    background: url(../img/top/img-main-06.jpg) no-repeat center;
    background-size: cover;
  }
}

.l-top_Swiper__SP {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .l-top_Swiper__SP {
    display: none;
  }
}
.l-top_Swiper__SP .swiper-container_sp {
  width: 100%;
  height: 100vh;
}
.l-top_Swiper__SP .swiper-wrapper {
  list-style: none;
}
.l-top_Swiper__SP .swiper-slide.-main01 {
  background: url(../img/top/img-main-01-sp.jpg) no-repeat center;
  background-size: cover;
}
.l-top_Swiper__SP .swiper-slide.-main02 {
  background: url(../img/top/img-main-02-sp.jpg) no-repeat center;
  background-size: cover;
}
.l-top_Swiper__SP .swiper-slide.-main03 {
  background: url(../img/top/img-main-03-sp.jpg) no-repeat center;
  background-size: cover;
}
.l-top_Swiper__SP .swiper-slide.-main04 {
  background: url(../img/top/img-main-04-sp.jpg) no-repeat center;
  background-size: cover;
}
.l-top_Swiper__SP .swiper-slide.-main05 {
  background: url(../img/top/img-main-05-sp.jpg) no-repeat center;
  background-size: cover;
}
.l-top_Swiper__SP .swiper-slide.-main06 {
  background: url(../img/top/img-main-06-sp.jpg) no-repeat center;
  background-size: cover;
}

.l-top_News {
  max-height: 18rem;
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .l-top_News {
    width: 60%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_News {
    width: 45%;
    max-width: 44.8rem;
  }
}
.l-top_News .swiper-wrapper {
  list-style: none;
}
.l-top_News__Unit {
  background: rgba(47, 39, 37, 0.8);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 2rem;
  min-height: 17rem;
}
@media screen and (min-width: 768px) {
  .l-top_News__Unit {
    min-height: none;
  }
}
.l-top_News__Label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #e23b0a;
  font-size: 1.6rem;
  padding: 0 0.5rem;
}
.l-top_News__Date {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  margin: 0 0 0 1rem;
}
.l-top_News__Txt {
  margin: 1rem 0 0 0;
}
.l-top_News__Txt a {
  color: #fff;
}
.l-top_News__Btn {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-top_News__Btn:hover {
  opacity: 0.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-top_News__Btn a {
  position: relative;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 7px 28px 7px 12px;
}
.l-top_News__Btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 56%;
  right: 10px;
  margin-top: -5px;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.l-top_News .swiper-button-next {
  width: 1.5rem;
  height: 1rem;
  top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .l-top_News .swiper-button-next {
    top: auto;
    bottom: 2rem;
  }
}
.l-top_News .swiper-button-next:after {
  content: "";
  background: url(../img/common/icon-right-arrow.svg) no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1rem;
  display: block;
}
.l-top_News .swiper-button-next:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-top_News .swiper-button-prev {
  left: auto;
  right: 4rem;
  width: 1.5rem;
  height: 1rem;
  top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .l-top_News .swiper-button-prev {
    top: auto;
    bottom: 2rem;
  }
}
.l-top_News .swiper-button-prev:after {
  content: "";
  background: url(../img/common/icon-left-arrow.svg) no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1rem;
  display: block;
}
.l-top_News .swiper-button-prev:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.top-bnr-fixed {
  padding: 0;
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-bnr-fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    width: auto;
  }
}
.top-bnr-fixed__link {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .top-bnr-fixed__link {
    max-width: 50rem;
  }
}
.top-bnr-fixed__link img {
  display: block;
}
.l-top_About__Wrapper {
  padding: 5rem 0 0 0;
  position: relative;
}

.l-top_About__Msg__Copy {
  max-width: 27rem;
  margin: 0 auto 4.4rem;
}
@media screen and (min-width: 768px) {
  .l-top_About__Msg__Copy {
    max-width: 60rem;
    margin: 0 auto 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_About__Msg__Copy {
    max-width: 69.6rem;
    margin: 0 auto 4rem;
  }
}
.l-top_About__Msg__Lead {
  font-size: 2.4rem;
  font-weight: bold;
  color: #e23b0a;
  text-align: center;
  margin: 0 auto 3rem;
}
.l-top_About__Msg__Txt {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e23b0a;
  line-height: 1.7;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .l-top_About__Msg__Txt {
    padding: 0 3rem;
    font-size: 4rem;
    line-height: 1.85;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_About__Msg__Txt {
    padding: 0;
    width: 78%;
    max-width: 69.6rem;
    line-height: 1.7;
    margin: 0 auto;
  }
}

.l-top_About__Img {
  display: block;
  position: fixed;
  width: 100%;
  z-index: 1;
  bottom: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-top_About__Img.is-static {
  position: static;
  width: 100%;
}
.l-top_About__Img .-animation {
  width: 100%;
}

.l-top_About.-specific .l-top_About__Img {
  display: block;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1000px) {
  .br-About01 {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .br-About02 {
    display: none;
  }
}

.l-top_About__Msg__Txt__Position {
  padding-bottom: 9rem;
  margin-bottom: -9rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Unit {
    flex-basis: 50%;
  }
}
.l-top_Feature__Box__Item {
  overflow: hidden;
  width: 100%;
  display: block;
  position: relative;
}
.l-top_Feature__Box__Item__label {
  position: absolute;
  background: #000;
  left: 0;
  top: 0;
  min-width: 23%;
  z-index: 1;
  padding: 1rem 0.7rem 1rem 0.7rem;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item__label {
    padding: 1.5rem 1rem 1.6rem 1rem;
  }
}
.l-top_Feature__Box__Item__label__text {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item__label__text {
    font-size: 2rem;
  }
}
.l-top_Feature__Box__Item.-yorumensetsu .l-top_Feature__Box__Img {
  background: url(../img/top/img-yorumensetsu-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-yorumensetsu .l-top_Feature__Box__Img {
    background: url(../img/top/img-yorumensetsu-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-yorumensetsu .l-top_Feature__Box__Img {
    background: url(../img/top/img-yorumensetsu.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-service .l-top_Feature__Box__Img {
  background: url(../img/top/img-service-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-service .l-top_Feature__Box__Img {
    background: url(../img/top/img-service-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-service .l-top_Feature__Box__Img {
    background: url(../img/top/img-service.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-message .l-top_Feature__Box__Img {
  background: url(../img/top/img-message-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-message .l-top_Feature__Box__Img {
    background: url(../img/top/img-message-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-message .l-top_Feature__Box__Img {
    background: url(../img/top/img-message.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-media .l-top_Feature__Box__Img {
  background: url(../img/top/img-media-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-media .l-top_Feature__Box__Img {
    background: url(../img/top/img-media-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-media .l-top_Feature__Box__Img {
    background: url(../img/top/img-media.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-statement .l-top_Feature__Box__Img {
  background: url(../img/top/img-statement-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-statement .l-top_Feature__Box__Img {
    background: url(../img/top/img-statement-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-statement .l-top_Feature__Box__Img {
    background: url(../img/top/img-statement.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-special .l-top_Feature__Box__Img {
  background: url(../img/top/img-lovebranding-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-special .l-top_Feature__Box__Img {
    background: url(../img/top/img-lovebranding-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-special .l-top_Feature__Box__Img {
    background: url(../img/top/img-lovebranding.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-company .l-top_Feature__Box__Img {
  background: url(../img/top/img-company-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-company .l-top_Feature__Box__Img {
    background: url(../img/top/img-company-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-company .l-top_Feature__Box__Img {
    background: url(../img/top/img-company.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-recruit .l-top_Feature__Box__Img {
  background: url(../img/top/img-recruit.png) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-recruit .l-top_Feature__Box__Img {
    background: url(../img/top/img-recruit.png) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-recruit .l-top_Feature__Box__Img {
    background: url(../img/top/img-recruit.png) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item.-fun .l-top_Feature__Box__Img {
  background: url(../img/top/img-fan-content-sp.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Box__Item.-fun .l-top_Feature__Box__Img {
    background: url(../img/top/img-fan-content-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Box__Item.-fun .l-top_Feature__Box__Img {
    background: url(../img/top/img-fan-content.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Feature__Box__Item:hover .l-top_Feature__Box__Img {
  transition-duration: 0.3s;
  transform: scale(1.1);
}
.l-top_Feature__Box__Img {
  transition-duration: 0.3s;
  position: relative;
}

.coming-soon:hover .l-top_Feature__Box__Img {
  transform: none !important;
}

.l-top_Feature__Value {
  background: #39ba18;
  padding: 3rem 1.6rem 6rem;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value {
    padding: 5.2rem 1.6rem 6rem 4rem;
  }
}
@media screen and (min-width: 1140px) {
  .l-top_Feature__Value {
    padding: 5.2rem 4rem 6rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Unit {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    min-height: 54rem;
    position: relative;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Unit {
    min-height: 60rem;
  }
}
.l-top_Feature__Value__Img {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Img {
    -webkit-align-self: flex-start;
    -moz-align-self: flex-start;
    -ms-align-self: flex-start;
    align-self: flex-start;
    width: 60%;
  }
}
.l-top_Feature__Value__Msg {
  padding: 4rem 0 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg {
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    -ms-align-self: flex-end;
    align-self: flex-end;
    padding: 20rem 0 0 5rem;
    width: 32rem;
    position: absolute;
    right: calc(50% - 33rem);
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Msg {
    width: 45rem;
    right: calc(50% - 43rem);
  }
}
@media screen and (min-width: 1300px) {
  .l-top_Feature__Value__Msg {
    width: 50rem;
    right: calc(50% - 54rem);
    padding: 33rem 0 0 5rem;
  }
}
.l-top_Feature__Value__Msg__Title {
  font-size: 1.8rem;
  color: #fff;
  background: #000;
  padding: 0.5rem 1rem;
  display: inline-block;
  position: absolute;
  top: -2rem;
}
@media screen and (max-width: 320px) {
  .l-top_Feature__Value__Msg__Title {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__Title {
    padding: 0.5rem 1rem 0.8rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__TitleUnit {
    position: relative;
    left: -3rem;
  }
}
.l-top_Feature__Value__Msg__Copy {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 320px) {
  .l-top_Feature__Value__Msg__Copy {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__Copy {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Msg__Copy {
    font-size: 3.2rem;
  }
}
.l-top_Feature__Value__Msg__Copy span {
  display: inline-block;
  background: #fff;
  border: 0.2rem solid #000;
  padding: 0 0.5rem;
}
.l-top_Feature__Value__Msg__Copy span:not(:last-of-type) {
  margin: 0 0 1rem 0;
}
.l-top_Feature__Value__Msg__Txt {
  margin: 3rem 0 0 0;
  font-weight: bold;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__Txt {
    width: 95%;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Msg__Txt {
    width: 62%;
    margin: 3rem auto 0;
  }
}
@media screen and (min-width: 1140px) {
  .l-top_Feature__Value__Msg__Txt {
    width: 80%;
  }
}
.l-top_Feature__Value__Msg__Img {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__Img {
    display: block;
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__Img.-plane {
    width: 12.8rem;
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Msg__Img.-plane {
    width: 20.6rem;
  }
}
@media screen and (min-width: 1300px) {
  .l-top_Feature__Value__Msg__Img.-plane {
    width: 18rem;
    left: 8rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg__Img.-justdoit {
    width: 13rem;
    right: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Msg__Img.-justdoit {
    width: 22rem;
  }
}
@media screen and (min-width: 1140px) {
  .l-top_Feature__Value__Msg__Img.-justdoit {
    width: 25rem;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-top_Feature__Value__Msg .btn-area {
    margin: 4rem auto 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature__Value__Msg .btn-area {
    margin: 4rem auto 0;
    max-width: 28rem;
  }
}

.l-top_Projects__Title {
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
}
.l-top_Projects .btn-area {
  margin: 4rem auto 0;
  text-align: center;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .btn-area {
    margin: 4rem auto 0;
    width: 28rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .btn-area {
    margin: 4rem auto 0;
  }
}
.l-top_Projects .swiper-container-pj {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.l-top_Projects .swiper-container-pj .swiper-wrapper {
  list-style: none;
  height: 100%;
}
.l-top_Projects .swiper-container-pj .slide-img img {
  border-radius: 1rem;
}
.l-top_Projects .swiper-container-pj .swiper-slide {
  border-radius: 1rem;
}
.l-top_Projects .swiper-container-pj .swiper-slide.-achieve1 {
  background: url(../img/top/img-achievement-1-sp.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve1 {
    background: url(../img/top/img-achievement-1-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve1 {
    background: url(../img/top/img-achievement-1.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Projects .swiper-container-pj .swiper-slide.-achieve2 {
  background: url(../img/top/img-achievement-2-sp.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve2 {
    background: url(../img/top/img-achievement-2-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve2 {
    background: url(../img/top/img-achievement-2.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Projects .swiper-container-pj .swiper-slide.-achieve3 {
  background: url(../img/top/img-achievement-3-sp.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve3 {
    background: url(../img/top/img-achievement-3-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve3 {
    background: url(../img/top/img-achievement-3.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Projects .swiper-container-pj .swiper-slide.-achieve4 {
  background: url(../img/top/img-achievement-4-sp.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve4 {
    background: url(../img/top/img-achievement-4-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve4 {
    background: url(../img/top/img-achievement-4.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Projects .swiper-container-pj .swiper-slide.-achieve5 {
  background: url(../img/top/img-achievement-5-sp.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve5 {
    background: url(../img/top/img-achievement-5-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve5 {
    background: url(../img/top/img-achievement-5.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Projects .swiper-container-pj .swiper-slide.-achieve6 {
  background: url(../img/top/img-achievement-6-sp.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve6 {
    background: url(../img/top/img-achievement-6-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Projects .swiper-container-pj .swiper-slide.-achieve6 {
    background: url(../img/top/img-achievement-6.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-top_Projects .swiper-button-next,
.l-top_Projects .swiper-button-prev {
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-button-next,
  .l-top_Projects .swiper-button-prev {
    width: 4rem;
  }
}
.l-top_Projects .swiper-button-prev:after {
  content: "";
  background: url(../img/common/icon-slide-left-arrow-circle.svg) no-repeat;
  background-size: contain;
  width: 4rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-button-prev:after {
    width: 4rem;
    height: 4rem;
  }
}
.l-top_Projects .swiper-button-next:after {
  content: "";
  background: url(../img/common/icon-slide-right-arrow-circle.svg) no-repeat;
  background-size: contain;
  width: 4rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .l-top_Projects .swiper-button-next:after {
    width: 4rem;
    height: 4rem;
  }
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.l-top_Feature.-b .container {
  padding-bottom: 0;
}
.l-top_Feature.-b .l-top_Feature__Goods {
  background: #92f933;
  padding: 4rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-top_Feature.-b .l-top_Feature__Goods {
    padding: 8rem 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature.-b .l-top_Feature__Goods {
    padding: 12rem 4rem;
  }
}
.l-top_Feature.-b .l-top_Feature__Goods__Content {
  max-width: 1000px;
  margin: 0 auto;
}
.l-top_Feature.-b .l-top_Feature__Goods__Unit {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0 -1%;
}
.l-top_Feature.-b .l-top_Feature__Goods__Item {
  flex-basis: 48%;
  margin: 0 1% 2rem;
}
@media screen and (min-width: 768px) {
  .l-top_Feature.-b .l-top_Feature__Goods__Item {
    flex-basis: 31%;
  }
}
.l-top_Feature.-b .l-top_Feature__Goods__Item img:hover {
  animation: katakata 6s infinite ease-out alternate;
}
.l-top_Feature.-b .l-top_Feature__Goods__Item:first-child {
  position: relative;
}
.l-top_Feature.-b .l-top_Feature__Goods__Item:first-child::before {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  white-space: pre;
  content: "OFFICIAL\aGOODS";
  font-size: 1.6rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-top_Feature.-b .l-top_Feature__Goods__Item:first-child::before {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1000px) {
  .l-top_Feature.-b .l-top_Feature__Goods__Item:first-child::before {
    font-size: 3.2rem;
  }
}
.l-top_Feature.-b .l-top_Feature__Goods__Item .-gizagiza {
  position: relative;
  animation: 12s linear infinite rotation1;
}
.l-top_Feature.-b .l-top_Feature__Goods__Name {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.Bursted {
  animation-name: GoodsBurst;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.FastRotate {
  animation: FastRotate 6s linear infinite;
}

.l-top_Notice__Wrapper {
  padding: 3rem 0;
  margin: 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-top_Notice__Wrapper {
    padding: 4rem 0;
  }
}

.l-top_Notice__Msg {
  border-top: 5px solid;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, yellow, #FC9724) 1;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .l-top_Notice__Msg {
    text-align: center;
  }
}
.l-top_Notice__Msg__Title {
  color: #e23b0a;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 2rem;
}
@media screen and (min-width: 375px) {
  .l-top_Notice__Msg__Title {
    font-size: 2.4rem;
  }
}
.l-top_Notice__Msg p {
  padding: 0 2rem;
}

.l-top_Sns__Item {
  margin: 0 2rem;
}
@media screen and (min-width: 1000px) {
  .l-top_Sns__Item {
    width: 50%;
    margin: 0 auto;
  }
}
.l-top_Sns__Item.-facebook {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-top_Sns__Item.-facebook {
    display: block;
  }
}
.l-top_Sns h3 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

#NewYear {
  width: 100%;
  height: calc(100% - 15rem);
  position: absolute;
}
@media screen and (min-width: 768px) {
  #NewYear {
    height: auto;
  }
}

.l-top_pm {
  padding: 6rem 0;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-top_pm {
    max-width: 85rem;
    padding: 11rem 0 12rem;
  }
}
.l-top_pm__bnr {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.sp-inner {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .sp-inner {
    padding: 0 2rem;
  }
}

.link-opa {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.link-opa:hover {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
}

.division {
  cursor: pointer;
}

.l-footerContent__Wrapper {
  background: url(../img/top/img-contact-bg-sp.jpg) no-repeat center;
  background-size: cover;
  padding: 5rem 0 10rem;
}
@media screen and (min-width: 768px) {
  .l-footerContent__Wrapper {
    background: url(../img/top/img-contact-bg-tb.jpg) no-repeat center;
    background-size: cover;
  }
}
@media screen and (min-width: 1000px) {
  .l-footerContent__Wrapper {
    background: url(../img/top/img-contact-bg.jpg) no-repeat center;
    background-size: cover;
  }
}
.l-footerContent__Title {
  text-align: center;
}
.l-footerContent__Unit {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-footerContent .btn-area {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .l-footerContent .btn-area {
    width: 65%;
    margin: 3rem auto 0;
    max-width: 60rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footerContent .m-btn {
    flex-basis: 48%;
    margin: 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-footerContent .m-btn {
    max-width: 28rem;
    margin: 0;
  }
}

/*----------------------------------

 START t-sub-page.scss

----------------------------------*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

中ページ 共通

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.breadcrumb {
  list-style: none;
  margin-bottom: 20px;
  margin-top: 0px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
@media screen and (min-width: 1140px) {
  .breadcrumb {
    position: relative;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.breadcrumb li {
  line-height: 1;
  margin-right: 30px;
  position: relative;
  list-style: none;
}
.breadcrumb li:last-of-type::after {
  display: none;
}
.breadcrumb li::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 0px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -17px;
  margin-top: -4px;
}
.breadcrumb li a {
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.breadcrumb li a:hover {
  color: #000;
}
.breadcrumb li a:not([class]) {
  color: #000;
  text-decoration: none;
}
.breadcrumb li a:not([class]):hover {
  color: #E33C0B;
}

@media screen and (min-width: 768px) {
  .breadcrumb-content {
    max-width: 100% !important;
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
}

.btn-white {
  background: #fff;
  color: #000;
  line-height: 6.5rem;
}

.icon-btn-return {
  position: relative;
}
.icon-btn-return::before {
  background: url(../img/common/icon-right-arrow-black-circle-min.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
  transform: scale(-1, 1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

.btn-black {
  background: #000;
  color: #fff;
  line-height: 6.5rem;
}

.icon-btn-next {
  position: relative;
}
.icon-btn-next::before {
  background: url(../img/common/icon-button-left-arrow.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
}

.btn-second-space {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .btn-second-space {
    margin-right: 2rem;
    margin-top: 0;
  }
}

.single-btn--area {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.single-btn--area .m-btn {
  max-width: 28rem;
  width: 100%;
}

.single-btn--area--top--large {
  margin-top: 4rem;
}
@media screen and (min-width: 1140px) {
  .single-btn--area--top--large {
    margin-top: 8rem;
  }
}

.bg--white {
  background: #fff !important;
}

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

.bg--red {
  background: #D0121C !important;
}

.bg--yl {
  background: #FDCE2D !important;
}

.black {
  color: #000 !important;
}

.white {
  color: #fff !important;
}

/*
.content{
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    @include mq.mq-min(md) {
    padding-left: 0;
    padding-right: 0;
    max-width: 850px;
    }
}
*/
.content-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .content-inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (min-width: 1140px) {
  .content-inner {
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}

.content-none {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .content-none {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1000px) {
  .content-none {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1140px) {
  .content-none {
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}

.content-box {
  margin: 0 2rem;
  padding: 8rem 0;
}
@media screen and (min-width: 768px) {
  .content-box {
    margin: 0 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .content-box {
    margin: 0 9rem;
  }
}
.content-box .content-inner--small {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content-box .content-inner--small {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media screen and (min-width: 1300px) {
  .content-box .content-inner--small {
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}
.content-box .content-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content-box .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .content-box .content-inner {
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}

.pb0 {
  padding-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

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

.mb1 {
  margin-bottom: 1rem !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.title-unit {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .title-unit {
    margin-bottom: 2rem;
  }
}

.title-unit--large {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .title-unit--large {
    margin-bottom: 4rem;
  }
}

.title-unit--small {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .title-unit--small {
    margin-bottom: 3rem;
  }
}

.l-unit:not(:last-child) {
  margin-bottom: 4rem;
}

.l-unit--small:not(:last-child) {
  margin-bottom: 2rem;
}

.l-unit--large:not(:last-child) {
  margin-bottom: 6rem;
}

.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-left: 6px;
  margin-right: 6px;
}
@media screen and (min-width: 768px) {
  .row {
    margin-left: 12px;
    margin-right: 12px;
  }
}
.row:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .row:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .row:not(:last-child) {
    margin-bottom: 30px;
  }
}

.row {
  margin-left: -20px;
  margin-right: -20px;
}

.row-half {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-left: 3px;
  margin-right: 3px;
}
@media screen and (min-width: 768px) {
  .row-half {
    margin-left: 6px;
    margin-right: 6px;
  }
}
.row-half:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .row-half:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .row-half:not(:last-child) {
    margin-bottom: 30px;
  }
}

.column {
  padding-left: 6px;
  padding-right: 6px;
}
@media screen and (min-width: 768px) {
  .column {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.column {
  padding-left: 20px;
  padding-right: 20px;
}

.column-half {
  padding-left: 3px;
  padding-right: 3px;
}
@media screen and (min-width: 768px) {
  .column-half {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.col-2 {
  display: block;
  width: 100%;
}
.col-2:nth-child(-n+1) {
  margin-top: 0;
}
.col-2:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-2:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-2 {
    width: 50%;
  }
  .col-2:nth-child(-n+2) {
    margin-top: 0;
  }
  .col-2:nth-of-type(n + 3) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .col-2:nth-of-type(n + 3) {
    margin-top: 24px;
  }
}

.col-3 {
  display: block;
  width: 100%;
}
.col-3:nth-child(-n+1) {
  margin-top: 0;
}
.col-3:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-3:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-3 {
    width: 33.33333%;
  }
  .col-3:nth-child(-n+3) {
    margin-top: 0;
  }
  .col-3:nth-of-type(n + 4) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 375px) {
  .col-3:nth-of-type(n + 4) {
    margin-top: 24px;
  }
}

.col-4 {
  display: block;
  width: 100%;
}
.col-4:nth-child(-n+1) {
  margin-top: 0;
}
.col-4:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-4:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-4 {
    width: 25%;
  }
  .col-4:nth-child(-n+4) {
    margin-top: 0;
  }
  .col-4:nth-of-type(n + 5) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 375px) {
  .col-4:nth-of-type(n + 5) {
    margin-top: 24px;
  }
}

.col-123 {
  display: block;
  width: 100%;
}
.col-123:nth-child(-n+1) {
  margin-top: 0;
}
.col-123:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-123:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-123 {
    width: 50%;
  }
  .col-123:nth-child(-n+2) {
    margin-top: 0;
  }
  .col-123:nth-of-type(n + 3) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .col-123:nth-of-type(n + 3) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1140px) {
  .col-123 {
    width: 33.33333%;
  }
  .col-123:nth-child(-n+3) {
    margin-top: 0;
  }
  .col-123:nth-of-type(n + 4) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1140px) and (min-width: 375px) {
  .col-123:nth-of-type(n + 4) {
    margin-top: 24px;
  }
}

.col-112 {
  display: block;
  width: 100%;
}
.col-112:nth-child(-n+1) {
  margin-top: 0;
}
.col-112:nth-of-type(n + 2) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .col-112:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .col-112 {
    display: block;
    width: 100%;
  }
  .col-112:nth-child(-n+1) {
    margin-top: 0;
  }
  .col-112:nth-of-type(n + 2) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .col-112:nth-of-type(n + 2) {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1140px) {
  .col-112 {
    width: 50%;
  }
  .col-112:nth-child(-n+2) {
    margin-top: 0;
  }
  .col-112:nth-of-type(n + 3) {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1140px) and (min-width: 768px) {
  .col-112:nth-of-type(n + 3) {
    margin-top: 24px;
  }
}

.sub-box--bottom-large .col-123:nth-of-type(n+1) {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .sub-box--bottom-large .col-123:nth-of-type(n+1) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-box--bottom-large .col-123:nth-of-type(n+3) {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1140px) {
  .sub-box--bottom-large .col-123:nth-of-type(n+3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1140px) {
  .sub-box--bottom-large .col-123:nth-of-type(n+4) {
    margin-top: 80px;
  }
}

.col-2:nth-of-type(n+2) {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .col-2:nth-of-type(n+2) {
    margin-top: 0;
  }
}

.u-text-center {
  text-align: center !important;
}

.u-text-center-sp {
  text-align: center;
}
@media screen and (min-width: 690px) {
  .u-text-center-sp {
    text-align: left;
  }
}

.u-text-center-pc {
  text-align: left;
}
@media screen and (min-width: 690px) {
  .u-text-center-pc {
    text-align: center;
  }
}

.u-text-center-sp-sm {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .u-text-center-sp-sm {
    text-align: left;
  }
}

.u-text-center-pc-sm {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u-text-center-pc-sm {
    text-align: center;
  }
}

.u-text-center-sp-md {
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .u-text-center-sp-md {
    text-align: left;
  }
}

.u-text-center-pc-md {
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .u-text-center-pc-md {
    text-align: center;
  }
}

.u-text-center-sp-lg {
  text-align: center;
}
@media screen and (min-width: 1140px) {
  .u-text-center-sp-lg {
    text-align: left;
  }
}

.u-text-center-pc-lg {
  text-align: left;
}
@media screen and (min-width: 1140px) {
  .u-text-center-pc-lg {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

.u-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-br-pc {
    display: block;
  }
}

@media screen and (min-width: 375px) {
  .u-br-sp-xs {
    display: none;
  }
}

.u-br-pc-xs {
  display: none;
}
@media screen and (min-width: 375px) {
  .u-br-pc-xs {
    display: block;
  }
}

@media screen and (min-width: 690px) {
  .u-br-sp-xsm {
    display: none;
  }
}

.u-br-pc-xsm {
  display: none;
}
@media screen and (min-width: 690px) {
  .u-br-pc-xsm {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-br-sp-sm {
    display: none;
  }
}

.u-br-pc-sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-br-pc-sm {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .u-br-sp-md {
    display: none;
  }
}

.u-br-pc-md {
  display: none;
}
@media screen and (min-width: 1000px) {
  .u-br-pc-md {
    display: block;
  }
}

@media screen and (min-width: 1140px) {
  .u-br-sp-lg {
    display: none;
  }
}

.u-br-pc-lg {
  display: none;
}
@media screen and (min-width: 1140px) {
  .u-br-pc-lg {
    display: block;
  }
}

.small {
  font-size: 1.4rem !important;
}

.sub-font {
  font-family: "Poppins", sans-serif;
}

figure figcaption {
  margin-top: 1.5rem;
}

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

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

.line-height-18 {
  line-height: 1.8;
}

.page-link {
  padding-top: 8rem !important;
  margin-top: -8rem !important;
}
@media screen and (min-width: 768px) {
  .page-link {
    padding-top: 9rem !important;
    margin-top: -9rem !important;
  }
}

.flex-stretch--parent {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-stretch {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.flex-stretch--child {
  flex-grow: 1;
}

a.link--black {
  color: #000;
  text-decoration: none;
}
a.link--black:hover {
  color: #000;
}

a.link--red {
  color: #E33C0B;
  text-decoration: none;
}
a.link--red:hover {
  color: #E33C0B;
}

a.link--black-red {
  color: #000;
  text-decoration: none;
}
a.link--black-red:hover {
  color: #E33C0B;
}

.icon-advance {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.icon-advance::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-right-arrow-black-circle-min.svg) no-repeat right;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.icon-advance:hover {
  color: #E33C0B;
}
.icon-advance:hover::before {
  content: "";
  background: url(../img/common/icon-right-arrow-red-circle-min.svg) no-repeat;
  background-size: contain;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.icon-contact-tel {
  display: inline-block;
  position: relative;
  padding-left: 3.5rem;
}
.icon-contact-tel::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.svg) no-repeat right;
  background-size: contain;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.table-responsive {
  width: 100%;
  border-collapse: collapse;
}
.table-responsive tr {
  border-top: solid 1px #D8D8D8;
  text-align: left;
}
.table-responsive tr:last-of-type {
  border-bottom: solid 1px #D8D8D8;
}
.table-responsive th {
  color: #8E8E8E;
  width: 100%;
  padding: 2rem 0.3rem 2rem 1rem;
  vertical-align: baseline;
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (min-width: 375px) {
  .table-responsive th {
    font-size: 1.6rem;
    width: 22%;
    min-width: 10rem;
    display: table-cell;
    padding: 2rem 0.3rem 2rem 1rem;
  }
}
@media screen and (min-width: 1000px) {
  .table-responsive th {
    padding: 2rem 0.3rem 2rem 2rem;
  }
}
.table-responsive td {
  width: 100%;
  padding: 0 1rem 2rem 1.5rem;
  display: block;
  font-size: 1.4rem;
}
@media screen and (min-width: 375px) {
  .table-responsive td {
    font-size: 1.6rem;
    flex: 1;
    padding: 1.6rem 1rem;
    display: table-cell;
  }
}
@media screen and (min-width: 1000px) {
  .table-responsive td {
    padding: 1.6rem 2rem;
  }
}

.pagetitle {
  position: relative;
  background: #fff !important;
  padding-top: 10rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .pagetitle {
    padding-top: 11.2rem;
    padding-bottom: 4rem;
    z-index: 1;
  }
}
.pagetitle h1 {
  color: #000;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.pagetitle .sub__inner {
  color: #000;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
メインイメージ・タイトル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 768px) {
  .sub-main {
    width: 100%;
    max-width: 100%;
  }
}
.sub-main--img {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sub-main--img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    z-index: -1;
  }
}
.sub-main--img--img {
  padding-left: 7rem;
}
@media screen and (min-width: 768px) {
  .sub-main--img--img {
    padding-left: 0;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-main--img--img {
    padding-right: 4.4rem;
    max-height: 74rem;
    max-width: 113.7rem;
    margin: 0 0 0 auto;
  }
}
.sub-main--img--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .sub-main--img--pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sub-main--txt {
    width: 70%;
    max-width: 64rem;
    margin: 0 auto 0 0;
    margin-left: 12rem;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-main--txt {
    margin-left: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-main--txt {
    margin-left: 10rem;
  }
}
@media screen and (min-width: 1140px) {
  .sub-main--txt {
    margin-top: 11rem;
    margin-left: 18.6rem;
  }
}
.sub-main--txt h1 {
  line-height: 1.2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-main--txt h1 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-main--txt h1 {
    font-size: 7.2rem;
  }
}
.sub-main--txt .sub__inner {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-main--txt .sub__inner {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .sub-main--txt--ttl--sub--box {
    background: #fff;
    padding: 3rem 2rem;
    padding-left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .sub-main--txt--ttl--sub--box {
    padding: 3rem 5rem;
    padding-left: 0;
  }
}
.sub-main--txt--ttl span {
  color: #fff;
  background: #93662F;
  display: inline-block;
  padding: 0.5rem 0.8rem 0.8rem 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .sub-main--txt--ttl span {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .sub-main--txt--ttl span {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1300px) {
  .sub-main--txt--ttl--none-pc {
    display: none !important;
  }
}
@media screen and (max-width: calc(1300px - 1px)) {
  .sub-main--txt--ttl--none-sp {
    display: none !important;
  }
}
.sub-main--txt--ttl--black span {
  background: #000;
}
.sub-main--txt--sub {
  padding: 4rem 0;
  line-height: 1.7;
}
.sub-main--txt--sub--sp {
  padding-top: 6rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .sub-main--txt--sub--sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sub-main--Profile {
    margin: 4rem 7rem 0 10rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-main--Profile {
    margin: 4rem 7rem 0 15rem;
  }
}
@media screen and (min-width: 1140px) {
  .sub-main--Profile {
    margin: 4rem 7rem 0 20rem;
  }
}
@media screen and (min-width: 1300px) {
  .sub-main--Profile {
    margin: 4rem auto 0 20rem;
    width: 40rem;
  }
}
.sub-main--Profile--ttl {
  font-family: "Poppins", sans-serif;
  text-decoration: underline;
}
.sub-main--Profile--detail--name {
  font-size: 2.4rem;
  margin-right: 2rem;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
メインイメージ・タイトル（代表ご挨拶用。レイアウトが特殊。）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 1140px) {
  .sub-main-message {
    width: 100%;
    max-width: 100%;
  }
}
.sub-main-message--img {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1140px) {
  .sub-main-message--img {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    z-index: -1;
  }
}
.sub-main-message--img--img {
  padding-left: 7rem;
}
@media screen and (min-width: 1000px) {
  .sub-main-message--img--img {
    padding-right: 4.4rem;
    max-height: 74rem;
    max-width: 113.7rem;
    margin: 0 0 0 auto;
  }
}
.sub-main-message--img--pc {
  display: none;
}
@media screen and (min-width: 1140px) {
  .sub-main-message--img--pc {
    display: block;
  }
}
@media screen and (min-width: 1140px) {
  .sub-main-message--txt {
    width: 70%;
    max-width: 64rem;
    margin: 0 auto 0 0;
    margin-left: 12rem;
    padding-left: 0;
    padding-right: 0;
    margin-top: 11rem;
    margin-left: 10rem;
  }
}
@media screen and (min-width: 1700px) {
  .sub-main-message--txt {
    margin-left: 18.6rem;
  }
}
.sub-main-message--txt h1 {
  line-height: 1.2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-main-message--txt h1 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1000px) {
  .sub-main-message--txt h1 {
    font-size: 7.2rem;
  }
}
.sub-main-message--txt .sub__inner {
  text-align: left;
}
@media screen and (min-width: 1140px) {
  .sub-main-message--txt--ttl--sub--box {
    background: #fff;
    padding: 3rem 2rem;
    padding-left: 0;
  }
}
.sub-main-message--txt--ttl span {
  color: #fff;
  background: #93662F;
  display: inline-block;
  padding: 0.5rem 0.8rem 0.8rem 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-size: 1.8rem;
}
@media screen and (min-width: 1140px) {
  .sub-main-message--txt--ttl span {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .sub-main-message--txt--ttl span {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1300px) {
  .sub-main-message--txt--ttl--none-pc {
    display: none !important;
  }
}
@media screen and (max-width: calc(1300px - 1px)) {
  .sub-main-message--txt--ttl--none-sp {
    display: none !important;
  }
}
.sub-main-message--txt--ttl--black span {
  background: #000;
}
.sub-main-message--txt--sub {
  padding: 4rem 0;
  line-height: 1.7;
}
.sub-main-message--txt--sub--sp {
  padding-top: 6rem;
  display: block;
}
@media screen and (min-width: 1140px) {
  .sub-main-message--txt--sub--sp {
    display: none;
  }
}
@media screen and (min-width: 1140px) {
  .sub-main-message--Profile {
    margin: 4rem 7rem 0 30rem;
  }
}
@media screen and (min-width: 1700px) {
  .sub-main-message--Profile {
    margin: 4rem auto 0 20rem;
    width: 40rem;
  }
}
.sub-main-message--Profile--ttl {
  font-family: "Poppins", sans-serif;
  text-decoration: underline;
}
.sub-main-message--Profile--detail--name {
  font-size: 2.4rem;
  margin-right: 2rem;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

CEO MESSAGE

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 1000px) {
  .message .sub-main-message--img--img {
    max-height: 111.8rem;
    max-width: 125.2rem;
    margin: 0 auto !important;
  }
}
.message .message-company--img {
  max-width: 100% !important;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

COMPANY PROFILE

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 1000px) {
  .company .sub-main--img--img {
    max-height: 111.8rem;
    max-width: 125.2rem;
    margin: 0 auto !important;
  }
}
.company .company-company--img {
  max-width: 100% !important;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

ACCESS

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.access-map {
  margin-top: 2rem;
  width: 100%;
}
.access-map__inner {
  border-radius: 0.5rem !important;
  -webkit-border-radius: 0.5rem !important;
  -moz-border-radius: 0.5rem !important;
  overflow: hidden;
  z-index: 1;
  position: relative;
  height: 30rem;
}
@media screen and (min-width: 768px) {
  .access-map__inner {
    height: 40rem;
  }
}
.access-map .google_map {
  width: 100%;
  height: 100%;
}
.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem !important;
  border: none !important;
}

.access-img {
  margin-top: 5rem;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

SERVICE

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.service .sub-main--txt--ttl span {
  font-size: 1.4rem;
}
@media screen and (min-width: 375px) {
  .service .sub-main--txt--ttl span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .service .sub-main--txt--ttl span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .service .sub-main--txt--ttl span {
    font-size: 3rem;
  }
}
.service .service--service-menu .content-box .content-inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 690px) {
  .service .service--service-menu .content-box .content-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .service .service--service-menu .content-box .content-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.service .service--strathegy .content-box .content-inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .service .service--strathegy .content-box .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .service .service--strathegy .content-box .content-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

POLICY

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.policy .policy--strengths .content-box .content-inner {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (min-width: 375px) {
  .policy .policy--strengths .content-box .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.policy .policy--strengths .column {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .policy .policy--strengths .column {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.policy .sub-main--txt--ttl span {
  font-size: 2rem;
}
@media screen and (min-width: 1300px) {
  .policy .sub-main--txt--ttl span {
    font-size: 3.2rem;
  }
}

.policy--strengths--box--item {
  border-radius: 1rem;
  padding: 5rem 2rem 3rem 2rem;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1607843137));
  position: relative;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item {
    padding: 6rem 4rem 4rem 4rem;
    margin-top: 5rem;
  }
}
.policy--strengths--box--item::before {
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item::before {
    width: 10rem;
    height: 10rem;
  }
}
.policy--strengths--box--item--01 {
  background: #E33C0B;
}
.policy--strengths--box--item--01::before {
  content: "";
  background: url(../img/policy/img-policy01-sp.png) no-repeat right;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item--01::before {
    content: "";
    background: url(../img/policy/img-policy01-tb.png) no-repeat right;
    background-size: contain;
  }
}
@media screen and (min-width: 1140px) {
  .policy--strengths--box--item--01::before {
    content: "";
    background: url(../img/policy/img-policy01.png) no-repeat right;
    background-size: contain;
  }
}
.policy--strengths--box--item--02 {
  background: #E97C00;
}
.policy--strengths--box--item--02::before {
  content: "";
  background: url(../img/policy/img-policy02-sp.png) no-repeat right;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item--02::before {
    content: "";
    background: url(../img/policy/img-policy02-tb.png) no-repeat right;
    background-size: contain;
  }
}
@media screen and (min-width: 1140px) {
  .policy--strengths--box--item--02::before {
    content: "";
    background: url(../img/policy/img-policy02.png) no-repeat right;
    background-size: contain;
  }
}
.policy--strengths--box--item--03 {
  background: #F3D300;
}
.policy--strengths--box--item--03::before {
  content: "";
  background: url(../img/policy/img-policy03-sp.png) no-repeat right;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item--03::before {
    content: "";
    background: url(../img/policy/img-policy03-tb.png) no-repeat right;
    background-size: contain;
  }
}
@media screen and (min-width: 1140px) {
  .policy--strengths--box--item--03::before {
    content: "";
    background: url(../img/policy/img-policy03.png) no-repeat right;
    background-size: contain;
  }
}
.policy--strengths--box--item--04 {
  background: #39BA18;
}
.policy--strengths--box--item--04::before {
  content: "";
  background: url(../img/policy/img-policy04-sp.png) no-repeat right;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item--04::before {
    content: "";
    background: url(../img/policy/img-policy04-tb.png) no-repeat right;
    background-size: contain;
  }
}
@media screen and (min-width: 1140px) {
  .policy--strengths--box--item--04::before {
    content: "";
    background: url(../img/policy/img-policy04.png) no-repeat right;
    background-size: contain;
  }
}
.policy--strengths--box--item--05 {
  background: #2D4EA7;
}
.policy--strengths--box--item--05::before {
  content: "";
  background: url(../img/policy/img-policy05-sp.png) no-repeat right;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item--05::before {
    content: "";
    background: url(../img/policy/img-policy05-tb.png) no-repeat right;
    background-size: contain;
  }
}
@media screen and (min-width: 1140px) {
  .policy--strengths--box--item--05::before {
    content: "";
    background: url(../img/policy/img-policy05.png) no-repeat right;
    background-size: contain;
  }
}
.policy--strengths--box--item--06 {
  background: #9731A7;
}
.policy--strengths--box--item--06::before {
  content: "";
  background: url(../img/policy/img-policy06-sp.png) no-repeat right;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .policy--strengths--box--item--06::before {
    content: "";
    background: url(../img/policy/img-policy06-tb.png) no-repeat right;
    background-size: contain;
  }
}
@media screen and (min-width: 1140px) {
  .policy--strengths--box--item--06::before {
    content: "";
    background: url(../img/policy/img-policy06.png) no-repeat right;
    background-size: contain;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

MEDIA

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.media .sub-main--txt--ttl span {
  font-size: 1.4rem;
}
@media screen and (min-width: 375px) {
  .media .sub-main--txt--ttl span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .media .sub-main--txt--ttl span {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .media .sub-main--txt--ttl span {
    font-size: 3rem;
  }
}
.media .sub-main--txt--sub p {
  height: 10rem;
}
.media .media--media-menu .content-box .content-inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 690px) {
  .media .media--media-menu .content-box .content-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1300px) {
  .media .media--media-menu .content-box .content-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.media .media--strathegy .content-box .content-inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .media .media--strathegy .content-box .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .media .media--strathegy .content-box .content-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.media .media--strathegy .content-box .content-inner .row {
  justify-content: flex-start;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

STATEMENT

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.statement .rinen-box {
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .statement .rinen-box {
    font-size: 1.8rem;
  }
}
.statement .value .col-112 {
  margin-bottom: 30px;
}
.statement .vision .content-inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .statement .vision .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .statement .vision .content-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.statement .container:nth-child(even) {
  background-color: #fff;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

entertainment（エンタメ企画）

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.entertainment .enta__contents__link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.entertainment .enta__contents__link .hero {
  opacity: 1;
  transition: all 0.3s ease;
}
.entertainment .enta__contents__link:hover {
  color: #e23b0a;
  transition: all 0.3s ease;
}
.entertainment .enta__contents__link:hover .hero {
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

Q & A

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (max-width: calc(768px - 1px)) {
  .faq .content-inner__faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* バナーモジュールで使う際のメディアクエリ */
.mq.media-sp {
  display: block;
}
@media screen and (min-width: 1000px) {
  .mq.media-sp {
    display: none;
  }
}

.mq.media-tb {
  display: none;
}
@media screen and (min-width: 1000px) {
  .mq.media-tb {
    display: block;
  }
}
@media screen and (min-width: 1140px) {
  .mq.media-tb {
    display: none;
  }
}

.mq.media-pc {
  display: none;
}
@media screen and (min-width: 1140px) {
  .mq.media-pc {
    display: block;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

お知らせ /news/

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.page-news .content-inner.breadcrumb {
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 0;
}
.page-news .content-inner.breadcrumb ul {
  flex-wrap: wrap;
}
.page-news .content-inner.breadcrumb ul li {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
.page-news .content-inner.breadcrumb a {
  color: #000;
}
.page-news .content-inner.breadcrumb a:hover {
  text-decoration: none;
  color: #e23b0a;
}
.page-news .pagetitle {
  margin-bottom: 0;
  padding-bottom: 0;
}
.page-news .pagetitle .title {
  font-feature-settings: "palt";
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 2rem;
}
@media screen and (min-width: 1000px) {
  .page-news .pagetitle .title {
    font-size: 3.2rem;
  }
}
.page-news .m-btn:visited {
  color: #000;
}
.page-news .m-btn:hover {
  text-decoration: none;
}
.page-news .info-content {
  max-width: 800px;
  margin: 0 auto;
}
.page-news .info-content__item {
  color: #000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-radius: 1.65rem;
  overflow: hidden;
  border: 2px #d8d8d8 solid;
  background-color: #f4f4f4;
  transition: all 0.5s;
}
@media screen and (min-width: 1000px) {
  .page-news .info-content__item {
    flex-wrap: nowrap;
  }
}
.page-news .info-content__item:visited {
  color: #000;
}
.page-news .info-content__item:hover {
  color: #595959;
  border: 2px solid #e23b0a;
  transition: all 0.3s;
  background-color: #fff;
  text-decoration: none;
}
.page-news .info-content__item:hover .info-content__item__image__img {
  width: 110%;
  max-width: 500px;
  transition: all 0.2s ease-out;
}
.page-news .info-content__item__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  order: 1;
}
@media screen and (min-width: 1000px) {
  .page-news .info-content__item__image {
    min-height: 140px;
    width: 30%;
    max-width: 300px;
    order: inherit;
  }
}
.page-news .info-content__item__image__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto 28/13;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: all 0.4s ease-out;
}
.page-news .info-content__item__info {
  width: 100%;
  font-feature-settings: "palt";
  padding: 1.5rem 4rem 1.5rem 2rem;
  order: 2;
}
@media screen and (min-width: 1000px) {
  .page-news .info-content__item__info {
    width: 70%;
    padding: 1.5rem 6rem 1.5rem 4rem;
    order: inherit;
  }
}
.page-news .info-content__item__info__date {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 0.5rem;
}
.page-news .info-content__item__info__cate {
  font-size: 1.25rem;
  color: #fff;
  padding: 0.4rem 0.5rem 0.5rem 0.5rem;
  background: #e23b0a;
  display: inline-block;
  line-height: 1;
}
.page-news .info-content__item__info__title {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  width: 100%;
}
.page-news .info-content__item__info .entry-new {
  background: #000;
  padding: 0.1rem 0.4rem;
  color: #fff;
  font-size: 1.25rem;
  min-height: 2.2rem;
  display: inline-block;
}

.page-entry .breadcrumb {
  padding-bottom: 0;
  list-style: none;
}
@media screen and (min-width: 1000px) {
  .page-entry .breadcrumb {
    padding-bottom: 0;
  }
}
.page-entry .entry-header {
  border-bottom: solid 1px #000;
}
.page-entry .entry-header .entryInfo .date {
  margin-bottom: 0.5rem;
  display: block;
}
@media screen and (min-width: 1000px) {
  .page-entry .entry-header .entryInfo .date {
    display: inline;
  }
}
.page-entry .entry-header .entryInfo .cateName {
  font-size: 1.35rem;
  padding: 0.5rem 0.75rem 0.7rem 0.75rem;
  line-height: 1;
  background: #d8d8d8;
  display: inline-block;
}
.page-entry .entry-title {
  font-feature-settings: "palt";
  font-size: 2.4rem;
}
@media screen and (min-width: 1000px) {
  .page-entry .entry-title {
    font-size: 3.2rem;
  }
}

.content-inner.-col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 1000px) {
  .content-inner.-col2 {
    flex-wrap: nowrap;
  }
}
.content-inner.-col2 .l-side {
  width: 100%;
  max-width: 100%;
  order: 2;
}
@media screen and (min-width: 1000px) {
  .content-inner.-col2 .l-side {
    max-width: 210px;
    width: 30%;
    order: 1;
  }
}
.content-inner.-col2 .l-main {
  width: 100%;
  order: 1;
}
@media screen and (min-width: 1000px) {
  .content-inner.-col2 .l-main {
    width: calc(100% - 280px);
    order: 2;
  }
}
.content-inner .sideMenu__heading {
  color: #000;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: left;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #595959;
  margin-bottom: 2rem;
}
.content-inner .sideMenu__list__item {
  list-style: none;
}
.content-inner .sideMenu__list__item__link {
  color: #000;
  padding: 1.25rem 1rem;
  display: block;
  transition: all 0.2s ease-out;
}
.content-inner .sideMenu__list__item__link:hover {
  text-decoration: none;
  background: #f4f4f4;
  transition: all 0.2s ease-out;
}

.m-pager {
  margin-top: 4rem;
}
.m-pager .m-pager__contents li a {
  border-radius: 0;
  background-color: #fff;
}
.m-pager .m-pager__contents li a:hover {
  border-color: #e23b0a;
}
.m-pager .m-pager__contents li.cur span {
  border-radius: 0;
  background-color: #e23b0a;
  color: #fff;
  border: none;
}

#adminBox, .acms-admin-box {
  position: relative;
  z-index: 100;
  width: 100%;
}

.dev .item-wrap {
  flex-wrap: wrap;
}
.dev .item-wrap .item {
  width: 100%;
}
.dev .item-wrap .item:first-of-type {
  width: 100%;
}
.dev .item-wrap .item:nth-last-of-type(2) {
  width: 100%;
}
.dev .item-wrap .item:only-of-type {
  width: 100%;
}
.dev .item-wrap .item:nth-of-type(3) {
  width: 100%;
}
.dev .item-wrap .item:nth-of-type(n+4) {
  display: none;
}
@media screen and (min-width: 768px) {
  .dev .item-wrap .item {
    width: 50%;
  }
  .dev .item-wrap .item:first-of-type {
    width: 100%;
  }
  .dev .item-wrap .item:nth-last-of-type(2) {
    width: 50%;
  }
  .dev .item-wrap .item:only-of-type {
    width: 100%;
  }
  .dev .item-wrap .item:nth-of-type(3) {
    width: 50%;
  }
}

/*----------------------------------

 START t-20th-utility.scss

----------------------------------*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

20周年ページ TOP

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.choreo20th img {
  vertical-align: top;
}
.choreo20th .top-container {
  display: block;
}
@media screen and (min-width: 768px) {
  .choreo20th .top-container {
    background-image: url(../img/20th/bg-tryangle.svg);
    background-size: cover;
    background-position: bottom;
    padding-top: 7rem;
  }
}
@media screen and (min-width: 1300px) {
  .choreo20th .top-container {
    padding-top: 0;
  }
}
.choreo20th .top-container .top-container-inner {
  padding: 0 2rem;
}
@media screen and (min-width: 1000px) {
  .choreo20th .top-container .top-container-inner {
    padding: 0 4rem;
    max-width: 1800px;
    margin: 0 auto;
  }
}
.choreo20th .container .content-box {
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .choreo20th .container .content-box {
    padding: 7rem 0;
  }
}
.choreo20th .container .content-box .content-inner-item:not(:last-of-type) {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .choreo20th .container .content-box .content-inner-item:not(:last-of-type) {
    margin-bottom: 5rem;
  }
}
.choreo20th .container .content-box .content-inner-item a {
  display: block;
}
@media screen and (min-width: 768px) {
  .choreo20th .container .content-box .content-inner-item a:hover {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0.5;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

20周年ページ 1st　ステッカー

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-1st::before {
    background: url(../img/20th/1st/bg-sticker.png) no-repeat;
    background-color: #e23b0a;
    background-position: top;
    -webkit-background-size: auto;
    background-size: auto;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-1st .container {
    background-color: #fff;
    max-width: 620px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-1st .container .content-box {
    margin: 0 4rem;
  }
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-1st .container .content-box .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.choreo20th.choreo20th-1st .container .content-box .content-inner .content-inner-item:not(:last-of-type) {
  margin-bottom: 4rem;
}
.choreo20th.choreo20th-1st .container .content-box .content-inner .m-btn::before {
  display: none;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

20周年ページ 2nd

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-2nd::before {
    background: url(../img/20th/2nd/bg-tshirt.jpg) no-repeat;
    background-color: #31ee60;
    background-position: top;
    -webkit-background-size: auto;
    background-size: auto;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-2nd .container {
    background-color: #fff;
    max-width: 620px;
    margin: 0 auto;
  }
}
.choreo20th.choreo20th-2nd .container .content-box {
  padding: 0 0 7rem 0;
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-2nd .container .content-box {
    margin: 0 4rem;
  }
}
.choreo20th.choreo20th-2nd .container .content-box .content-inner .content-inner-item {
  margin-bottom: 0;
}
.choreo20th.choreo20th-2nd .container .content-box .content-inner .m-btn::before {
  display: none;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

20周年ページ 3rd

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-3rd::before {
    background: url(../img/20th/3rd/bg-pouch.png) no-repeat;
    background-color: #e92930;
    background-position: top;
    -webkit-background-size: auto;
    background-size: auto;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-3rd .container {
    background-color: #fff;
    max-width: 620px;
    margin: 0 auto;
  }
}
.choreo20th.choreo20th-3rd .container .content-box {
  padding: 0 0 7rem 0;
}
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-3rd .container .content-box {
    margin: 0 4rem;
  }
}
.choreo20th.choreo20th-3rd .container .content-box .content-inner .content-inner-item {
  margin-bottom: 0;
}
.choreo20th.choreo20th-3rd .container .content-box .content-inner .m-btn::before {
  display: none;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

20周年ページ フッターSP幅固定

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-1st .l-footerContent .l-top_Content {
    margin: 0 4rem;
  }
  .choreo20th.choreo20th-1st .l-footerContent__Wrapper {
    background: url(../img/top/img-contact-bg-sp.jpg) no-repeat center;
    background-size: cover;
    padding: 5rem 0 10rem;
  }
  .choreo20th.choreo20th-1st .l-footerContent__Title {
    text-align: center;
  }
  .choreo20th.choreo20th-1st .l-footerContent__Unit {
    padding: 0 2rem;
  }
  .choreo20th.choreo20th-1st .l-footerContent .btn-area {
    display: block;
    width: 100%;
    max-width: inherit;
    margin: 4rem auto 0;
  }
  .choreo20th.choreo20th-1st .l-footerContent .m-btn {
    max-width: inherit;
  }
  .choreo20th.choreo20th-1st .l-footerContent .m-btn:not(:first-child) {
    margin-top: 1rem;
  }
  .choreo20th.choreo20th-1st .footer {
    margin: 0 4rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    padding: inherit;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 .footer-01-left {
    padding: 3rem 2rem;
    margin-top: -10rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 .footer-01-left .footer-01-left__text .address .u-br-address {
    display: none;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 .footer-01-right {
    padding: 3rem 2rem;
    border-top: 1px solid #fff;
    width: inherit;
    max-width: inherit;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 .footer-01-right .footer-01-right__sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 230px;
    margin: 0 auto 3rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 .footer-01-right .footer-01-right__sns .sns-logo {
    padding: 0 0.5rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-01 .footer-01-right .footer-01-right__link {
    column-count: 2;
    margin-top: 0;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 {
    padding: 0 2rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 .footer-02-title::before {
    margin-right: 1rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 .footer-02-title::after {
    margin-left: 1rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 .footer-02-contents {
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    width: 28%;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 .footer-02-contents .footer-02-contents__item.item-small {
    width: 22%;
  }
  .choreo20th.choreo20th-1st .footer .footer-02 .footer-02-contents .footer-02-contents__space {
    width: 0%;
  }
  .choreo20th.choreo20th-1st .footer .footer-03 {
    padding: 2rem 2rem 3rem;
    text-align: center;
  }
  .choreo20th.choreo20th-1st .footer .footer-03 .copyright {
    font-size: 1.2rem;
  }
  .choreo20th.choreo20th-1st .footer .footer-03 .footer-logo {
    width: 10rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-2nd .l-footerContent .l-top_Content {
    margin: 0 4rem;
  }
  .choreo20th.choreo20th-2nd .l-footerContent__Wrapper {
    background: url(../img/top/img-contact-bg-sp.jpg) no-repeat center;
    background-size: cover;
    padding: 5rem 0 10rem;
  }
  .choreo20th.choreo20th-2nd .l-footerContent__Title {
    text-align: center;
  }
  .choreo20th.choreo20th-2nd .l-footerContent__Unit {
    padding: 0 2rem;
  }
  .choreo20th.choreo20th-2nd .l-footerContent .btn-area {
    display: block;
    width: 100%;
    max-width: inherit;
    margin: 4rem auto 0;
  }
  .choreo20th.choreo20th-2nd .l-footerContent .m-btn {
    max-width: inherit;
  }
  .choreo20th.choreo20th-2nd .l-footerContent .m-btn:not(:first-child) {
    margin-top: 1rem;
  }
  .choreo20th.choreo20th-2nd .footer {
    margin: 0 4rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    padding: inherit;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 .footer-01-left {
    padding: 3rem 2rem;
    margin-top: -10rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 .footer-01-left .footer-01-left__text .address .u-br-address {
    display: none;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 .footer-01-right {
    padding: 3rem 2rem;
    border-top: 1px solid #fff;
    width: inherit;
    max-width: inherit;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 .footer-01-right .footer-01-right__sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 230px;
    margin: 0 auto 3rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 .footer-01-right .footer-01-right__sns .sns-logo {
    padding: 0 0.5rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-01 .footer-01-right .footer-01-right__link {
    column-count: 2;
    margin-top: 0;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 {
    padding: 0 2rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 .footer-02-title::before {
    margin-right: 1rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 .footer-02-title::after {
    margin-left: 1rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 .footer-02-contents {
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    width: 28%;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 .footer-02-contents .footer-02-contents__item.item-small {
    width: 22%;
  }
  .choreo20th.choreo20th-2nd .footer .footer-02 .footer-02-contents .footer-02-contents__space {
    width: 0%;
  }
  .choreo20th.choreo20th-2nd .footer .footer-03 {
    padding: 2rem 2rem 3rem;
    text-align: center;
  }
  .choreo20th.choreo20th-2nd .footer .footer-03 .copyright {
    font-size: 1.2rem;
  }
  .choreo20th.choreo20th-2nd .footer .footer-03 .footer-logo {
    width: 10rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .choreo20th.choreo20th-3rd .l-footerContent .l-top_Content {
    margin: 0 4rem;
  }
  .choreo20th.choreo20th-3rd .l-footerContent__Wrapper {
    background: url(../img/top/img-contact-bg-sp.jpg) no-repeat center;
    background-size: cover;
    padding: 5rem 0 10rem;
  }
  .choreo20th.choreo20th-3rd .l-footerContent__Title {
    text-align: center;
  }
  .choreo20th.choreo20th-3rd .l-footerContent__Unit {
    padding: 0 2rem;
  }
  .choreo20th.choreo20th-3rd .l-footerContent .btn-area {
    display: block;
    width: 100%;
    max-width: inherit;
    margin: 4rem auto 0;
  }
  .choreo20th.choreo20th-3rd .l-footerContent .m-btn {
    max-width: inherit;
  }
  .choreo20th.choreo20th-3rd .l-footerContent .m-btn:not(:first-child) {
    margin-top: 1rem;
  }
  .choreo20th.choreo20th-3rd .footer {
    margin: 0 4rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    padding: inherit;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 .footer-01-left {
    padding: 3rem 2rem;
    margin-top: -10rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 .footer-01-left .footer-01-left__text .address .u-br-address {
    display: none;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 .footer-01-right {
    padding: 3rem 2rem;
    border-top: 1px solid #fff;
    width: inherit;
    max-width: inherit;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 .footer-01-right .footer-01-right__sns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 230px;
    margin: 0 auto 3rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 .footer-01-right .footer-01-right__sns .sns-logo {
    padding: 0 0.5rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-01 .footer-01-right .footer-01-right__link {
    column-count: 2;
    margin-top: 0;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 {
    padding: 0 2rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 .footer-02-title::before {
    margin-right: 1rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 .footer-02-title::after {
    margin-left: 1rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 .footer-02-contents {
    display: flex;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 .footer-02-contents .footer-02-contents__item {
    width: 28%;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 .footer-02-contents .footer-02-contents__item.item-small {
    width: 22%;
  }
  .choreo20th.choreo20th-3rd .footer .footer-02 .footer-02-contents .footer-02-contents__space {
    width: 0%;
  }
  .choreo20th.choreo20th-3rd .footer .footer-03 {
    padding: 2rem 2rem 3rem;
    text-align: center;
  }
  .choreo20th.choreo20th-3rd .footer .footer-03 .copyright {
    font-size: 1.2rem;
  }
  .choreo20th.choreo20th-3rd .footer .footer-03 .footer-logo {
    width: 10rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}

/*----------------------------------

 START t-yorumensetsu.scss

----------------------------------*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

夜面接始めました

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.bg-yorumen-blue {
  background: #2E3191;
}

.bg-yorumen-dot {
  content: "";
  background: url(../img/yorumensetsu/bg-yorumen-light.svg) repeat-y;
  background-size: contain;
  position: absolute;
  top: 0;
  width: 0.5rem;
  height: 100%;
}
@media screen and (min-width: 690px) {
  .bg-yorumen-dot {
    width: 0.8rem;
  }
}
.bg-yorumen-dot.-left {
  left: 2.1rem;
}
@media screen and (min-width: 690px) {
  .bg-yorumen-dot.-left {
    left: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .bg-yorumen-dot.-left {
    left: 1.7rem;
  }
}
.bg-yorumen-dot.-right {
  right: 2.1rem;
}
@media screen and (min-width: 690px) {
  .bg-yorumen-dot.-right {
    right: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .bg-yorumen-dot.-right {
    right: 1.7rem;
  }
}

@media screen and (min-width: 768px) {
  .yorumen::before {
    background: url(../img/yorumensetsu/bg-yorumen.jpg) no-repeat;
    background-position: top;
    -webkit-background-size: auto;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}
.yorumen img {
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .yorumen .container {
    background-color: #fff;
    max-width: 620px;
    margin: 0 auto;
  }
}
@media screen and (max-width: calc(375px - 1px)) {
  .yorumen .content-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.yorumen-box {
  position: relative;
}
.yorumen-box__btn {
  padding: 4rem 0 6rem;
}
.yorumen-box__btn__link {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .yorumen-box__btn__link {
    max-width: 49.4rem;
  }
}
.yorumen-box__btn__link:hover {
  opacity: 0.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.yorumen-box__btn__txtLink {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .yorumen-box__btn__txtLink {
    margin-top: 6rem;
  }
}
.yorumen-box__btn__txtLink__item:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .yorumen-box__btn__txtLink__item:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}
.yorumen-box__btn__txtLink__item a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .yorumen-box__btn__txtLink__item a {
    font-size: 1.8rem;
  }
}
.yorumen-box__btn__txtLink__item a:hover {
  text-decoration: none;
}

/*----------------------------------

 START t-halloween.scss
 ko

----------------------------------*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

ハロウィン 共通

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

ハロウィン 2024年

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.bg-hw2024-red {
  background: #dc251e;
}

.bg-hw2024-black {
  background: #000;
}

.bg-hw2024-stripe {
  position: relative;
  background: url(../img/halloween/2024/bg-ptn.png) repeat;
  background-position: top;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .hw2024::before {
    background: url(../img/halloween/common/bg-hw.jpg) no-repeat;
    background-position: top;
    -webkit-background-size: auto;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}
.hw2024 img {
  vertical-align: top;
}
.hw2024 .container {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .hw2024 .container {
    background-color: #fff;
    max-width: 620px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}
.hw2024 .content-top {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 690px) {
  .hw2024 .content-top {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.hw2024 .content-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 690px) {
  .hw2024 .content-inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.hw2024 .content-inner__in:not(:last-of-type) {
  margin-bottom: 2rem;
}
.hw2024 .content-btn {
  display: block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.hw2024 .content-btn:hover {
  opacity: 0.8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.hw2024-box {
  position: relative;
}
.hw2024-box__movie {
  padding-bottom: 4rem;
}
.hw2024-box__movie__item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.hw2024-box__movie__item:not(:last-of-type) {
  margin-bottom: 2rem;
}
.hw2024-box__movie__item iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.hw2024-box__movie__item iframe video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.hw2024-box__footer {
  padding: 4rem 0 4rem;
}
.hw2024-box__footer .btn-area {
  margin: 0 auto;
  margin-bottom: 5rem;
}
.hw2024-box__footer .btn-area .m-btn {
  background: #e23b0a;
}
.hw2024-box__footer__logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.hw2024-box__footer__logo a {
  display: block;
  max-width: 15.5rem;
  margin-bottom: 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .hw2024-box__footer__logo a {
    max-width: 25.6rem;
  }
}
.hw2024-box__footer__logo a:hover {
  opacity: 0.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

ハロウィン 2023年

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.bg-hw2023-blue {
  background: #00FFFF;
}

.bg-hw2023-black {
  background: #000;
}

.bg-hw2023-pink {
  background: #E2007F;
}

@media screen and (min-width: 768px) {
  .hw2023::before {
    background: url(../img/halloween/2023/bg-hw2023.jpg) no-repeat;
    background-position: top;
    -webkit-background-size: auto;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
  }
}
.hw2023 img {
  vertical-align: top;
}
.hw2023 .container {
  padding-right: 2rem;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .hw2023 .container {
    background-color: #fff;
    max-width: 620px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}
.hw2023 .content-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (min-width: 690px) {
  .hw2023 .content-inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.hw2023-box {
  position: relative;
}
.hw2023-box__movie {
  padding-bottom: 4rem;
}
.hw2023-box__movie__item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.hw2023-box__movie__item:not(:last-of-type) {
  margin-bottom: 2rem;
}
.hw2023-box__movie__item iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.hw2023-box__movie__item iframe video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
.hw2023-box__footer {
  padding: 4rem 0 4rem;
}
.hw2023-box__footer .btn-area {
  margin: 0 auto;
  margin-bottom: 5rem;
}
.hw2023-box__footer .btn-area .m-btn {
  background: #e23b0a;
}
.hw2023-box__footer__logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.hw2023-box__footer__logo a {
  display: block;
  max-width: 15.5rem;
  margin-bottom: 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .hw2023-box__footer__logo a {
    max-width: 25.6rem;
  }
}
.hw2023-box__footer__logo a:hover {
  opacity: 0.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*tool*/
/*----------------------------------

 START t-sdgs.scss

----------------------------------*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

SDGs 共通

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
@media screen and (max-width: calc(768px - 1px)) {
  .sdgs main .content-inner {
    padding: 0 1.5rem;
  }
}
.sdgs main p {
  line-height: 1.6;
}
.sdgs .sdgs--outline .content-inner .box__outer {
  padding: 1rem;
}
.sdgs .sdgs--outline .content-inner .box__outer .box__inner {
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--outline .content-inner .box__outer .box__inner {
    padding: 3.5rem 0;
  }
}
.sdgs .sdgs--outline .content-inner .box__outer .box__inner__ttl {
  text-align: center;
  font-size: 3.2rem;
  color: #029EDB;
  font-weight: bold;
  margin-bottom: 2rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--outline .content-inner .box__outer .box__inner__ttl {
    margin-bottom: 1.5rem;
    font-feature-settings: normal;
  }
}
@media screen and (max-width: 386px) {
  .sdgs .u-br-sp {
    display: none;
  }
}
.sdgs .sdgs--about .content-box {
  padding-bottom: 1rem;
}
.sdgs .sdgs--about .box__outer {
  padding: 1rem;
}
.sdgs .sdgs--about .box__outer .box__inner {
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--about .box__outer .box__inner {
    padding: 3.5rem 3.6rem;
  }
}
@media screen and (min-width: 1000px) {
  .sdgs .sdgs--about .box__outer .box__inner {
    padding: 3.5rem 8rem;
  }
}
.sdgs .sdgs--about .box__outer .box__inner__ttl {
  text-align: center;
  font-size: 1.8rem;
  color: #029EDB;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--about .box__outer .box__inner__ttl {
    font-size: 3.2rem;
  }
}
.sdgs .sdgs--about .box__outer .box__inner__txt {
  margin-bottom: 2rem;
  word-break: break-all;
}
.sdgs .sdgs--about .box__outer .box__inner__img {
  max-width: 70rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.sdgs .sdgs--list__box .-number {
  font-size: 4.2rem;
  color: #029EDB;
  font-family: "Poppins", sans-serif;
  margin-right: 2rem;
  width: fit-content;
}
@media screen and (max-width: calc(768px - 1px)) {
  .sdgs .sdgs--list__box .-number.none-pc {
    display: inline-block !important;
    vertical-align: middle;
  }
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box .-number {
    font-size: 6.4rem;
    line-height: 1;
    margin-right: 4rem;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main {
    flex: 1;
  }
}
.sdgs .sdgs--list__box__main .-ttl {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main .-ttl {
    margin-bottom: 2rem;
  }
}
.sdgs .sdgs--list__box__main .-ttl__txt {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main .-ttl__txt {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    margin-bottom: 5rem;
  }
}
.sdgs .sdgs--list__box__main__flex__image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  margin: 0 -1.1% 1rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__flex__image {
    flex-wrap: wrap;
    margin: 0 -0.6rem -1rem;
    flex-basis: 34%;
  }
}
@media screen and (min-width: 1300px) {
  .sdgs .sdgs--list__box__main__flex__image {
    margin-top: -6rem;
  }
}
.sdgs .sdgs--list__box__main__flex__image .-img {
  flex-basis: 22.7%;
  margin: 0 1.1%;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__flex__image .-img {
    flex-basis: 46%;
    margin: 0 2% 1rem;
  }
}
.sdgs .sdgs--list__box__main__flex__image .-img .hero {
  vertical-align: bottom;
}
.sdgs .sdgs--list__box__main__flex__txt {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__flex__txt {
    flex-basis: 64%;
    margin-bottom: 0;
  }
}
.sdgs .sdgs--list__box__main__flex__txt .-txt {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__flex__txt .-txt {
    margin-bottom: 1.5rem;
  }
}
.sdgs .sdgs--list__box__main__flex__txt .-inner {
  padding: 2rem;
  font-size: 1.45rem;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__flex__txt .-inner {
    padding: 1.5rem 2.4rem;
    font-size: 1.5rem;
  }
}
.sdgs .sdgs--list__box__main__flex__txt .-inner .-subttl {
  font-size: 1.9rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}
.sdgs .sdgs--list__box__main__under {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1.2%;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__under {
    margin: 0 -1%;
  }
}
.sdgs .sdgs--list__box__main__under .-img {
  width: 47.5%;
  margin: 0 1.2% 1.5rem;
  /* 〇列リストの一番左下にある要素 */
}
.sdgs .sdgs--list__box__main__under .-img:nth-child(2n+1):nth-last-child(-n+2), .sdgs .sdgs--list__box__main__under .-img:nth-child(2n+1):nth-last-child(-n+2) ~ .flex-item {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sdgs .sdgs--list__box__main__under .-img {
    width: 23%;
    margin: 0 1% 0;
    /* 〇列リストの一番左下にある要素 */
  }
  .sdgs .sdgs--list__box__main__under .-img:nth-child(4n+1):nth-last-child(-n+4), .sdgs .sdgs--list__box__main__under .-img:nth-child(4n+1):nth-last-child(-n+4) ~ .flex-item {
    margin-bottom: 0;
  }
}
.sdgs .sdgs--list__box__main__under .-img .caption {
  font-size: 1.3rem;
  margin-top: 0.5rem;
}
.sdgs .sdgs--connection .connection-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: calc(768px - 1px)) {
  .sdgs .sdgs--connection .connection-link {
    margin-bottom: 7rem;
  }
}
.sdgs .sdgs--connection .connection-link__item {
  display: inline-block;
  color: #000;
  font-feature-settings: "palt";
}
.sdgs .sdgs--connection .connection-link__item:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1300px) {
  .sdgs .sdgs--connection .connection-link__item:not(:last-child) {
    margin-bottom: 0;
  }
}

/*tool*/
/*tool*/
.breadcrumb {
  list-style: none;
  margin-bottom: 20px;
  margin-top: 0px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
@media screen and (min-width: 1140px) {
  .breadcrumb {
    position: relative;
  }
}
.breadcrumb {
  /*.content {
  	padding: 0;
  	@include mq.mq-min(lg) {
  		width: 100%;
  		position: absolute;
  		left: 0;
  		top: -166px;
  		padding: 0 1.5rem;
  	}
  }*/
}
.breadcrumb ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb li {
  line-height: 1.8;
  margin-right: 30px;
  position: relative;
}
.breadcrumb li:last-of-type::after {
  display: none;
}
.breadcrumb li::after {
  content: "";
  width: 9px;
  height: 9px;
  border: 0px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -17px;
  margin-top: -4px;
}
.breadcrumb li a {
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.breadcrumb li a:hover {
  color: #000;
}
.breadcrumb li a:not([class]) {
  color: #000;
  text-decoration: none;
}
.breadcrumb li a:not([class]):hover {
  color: #E33C0B;
}

@media screen and (min-width: 768px) {
  .breadcrumb-content {
    max-width: 100% !important;
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
}

.pagetitle {
  background: #fff !important;
  padding-top: 10rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .pagetitle {
    padding-top: 11.2rem;
    padding-bottom: 4rem;
  }
}
.pagetitle h1 {
  color: #000;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.pagetitle .sub__inner {
  color: #000;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.bg--white {
  background: #fff !important;
}

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

/*
.content{
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    width: 100%;
    @include mq.mq-min(md) {
    padding-left: 0;
    padding-right: 0;
    max-width: 850px;
    }
}
*/
.pb0 {
  padding-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.title-unit {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .title-unit {
    margin-bottom: 2rem;
  }
}

.title-unit--large {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .title-unit--large {
    margin-bottom: 4rem;
  }
}

.l-unit:not(:last-child) {
  margin-bottom: 4rem;
}

.l-unit--small:not(:last-child) {
  margin-bottom: 2rem;
}

.l-unit--large:not(:last-child) {
  margin-bottom: 6rem;
}

.content-inner {
  padding: 2rem 2rem 8rem;
}
@media screen and (min-width: 375px) {
  .content-inner {
    padding: 4rem 2rem 10rem;
  }
}
@media screen and (min-width: 768px) {
  .content-inner {
    padding: 6rem 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .content-inner {
    padding: 6rem 7.5rem;
  }
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-center-sp {
  text-align: center;
}
@media screen and (min-width: 690px) {
  .u-text-center-sp {
    text-align: left;
  }
}

.u-text-center-pc {
  text-align: left;
}
@media screen and (min-width: 690px) {
  .u-text-center-pc {
    text-align: center;
  }
}

.u-text-center-sp-sm {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .u-text-center-sp-sm {
    text-align: left;
  }
}

.u-text-center-pc-sm {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u-text-center-pc-sm {
    text-align: center;
  }
}

.u-text-center-sp-md {
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .u-text-center-sp-md {
    text-align: left;
  }
}

.u-text-center-pc-md {
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .u-text-center-pc-md {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .u-br-sp {
    display: none;
  }
}

.u-br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-br-pc {
    display: block;
  }
}

@media screen and (min-width: 375px) {
  .u-br-sp-xs {
    display: none;
  }
}

.u-br-pc-xs {
  display: none;
}
@media screen and (min-width: 375px) {
  .u-br-pc-xs {
    display: block;
  }
}

@media screen and (min-width: 690px) {
  .u-br-sp-xsm {
    display: none;
  }
}

.u-br-pc-xsm {
  display: none;
}
@media screen and (min-width: 690px) {
  .u-br-pc-xsm {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-br-sp-sm {
    display: none;
  }
}

.u-br-pc-sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-br-pc-sm {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .u-br-sp-md {
    display: none;
  }
}

.u-br-pc-md {
  display: none;
}
@media screen and (min-width: 1000px) {
  .u-br-pc-md {
    display: block;
  }
}

@media screen and (min-width: 1140px) {
  .u-br-sp-lg {
    display: none;
  }
}

.u-br-pc-lg {
  display: none;
}
@media screen and (min-width: 1140px) {
  .u-br-pc-lg {
    display: block;
  }
}

.small {
  font-size: 1.4rem !important;
}

a.link--black {
  color: #000;
  text-decoration: none;
}
a.link--black:hover {
  color: #000;
}

a.link--red {
  color: #E33C0B;
  text-decoration: none;
}
a.link--red:hover {
  color: #E33C0B;
}

a.link--black-red {
  color: #000;
  text-decoration: none;
}
a.link--black-red:hover {
  color: #E33C0B;
}

.icon-advance {
  display: inline-block;
  position: relative;
  padding-left: 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.icon-advance::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-right-arrow-black-circle-min.svg) no-repeat right;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.icon-advance:hover {
  color: #E33C0B;
}
.icon-advance:hover::before {
  content: "";
  background: url(../img/common/icon-right-arrow-red-circle-min.svg) no-repeat right;
  background-size: contain;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.icon-contact-tel {
  display: inline-block;
  position: relative;
  padding-left: 3.5rem;
}
.icon-contact-tel::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon-tel.svg) no-repeat right;
  background-size: contain;
  width: 2.4rem;
  height: 2.4rem;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}

.contact .container {
  background: #fff;
}
.contact .content {
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .contact .content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .contact .content {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media screen and (min-width: 1300px) {
  .contact .content {
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}
@media screen and (max-width: calc(768px - 1px)) {
  .contact .container.contact-form {
    padding-bottom: 0;
  }
}
.contact .container.contact-form .content {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .contact .container.contact-form .content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1000px) {
  .contact .container.contact-form .content {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media screen and (min-width: 1300px) {
  .contact .container.contact-form .content {
    padding-left: 0;
    padding-right: 0;
    max-width: 1000px;
  }
}
.contact .l-footerContent {
  display: none;
}

@media screen and (min-width: 768px) {
  .contact .contact-top .contact-top-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
  }
}
.contact .contact-top .contact-top-box--txt {
  line-height: 2;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-top .contact-top-box--txt {
    width: 49%;
    margin-bottom: 0;
  }
}
.contact .contact-top .contact-top-box--tel {
  border: solid 1px #D8D8D8;
  padding: 1.5rem;
}
@media screen and (min-width: 375px) {
  .contact .contact-top .contact-top-box--tel {
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .contact .contact-top .contact-top-box--tel {
    width: 49%;
  }
}
@media screen and (min-width: 1140px) {
  .contact .contact-top .contact-top-box--tel {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}
.contact .contact-top .contact-top-box--tel--left {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1140px) {
  .contact .contact-top .contact-top-box--tel--left {
    margin-bottom: 0;
  }
}
.contact .contact-top .contact-top-box--tel--right .link--red {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.contact .contact-form .contact-form-step {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 1;
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .contact .contact-form .contact-form-step {
    margin: 0 auto;
    margin-bottom: 4rem;
    max-width: 35.2rem;
  }
}
@media screen and (min-width: 690px) {
  .contact .contact-form .contact-form-step {
    width: 35.2rem;
  }
}
.contact .contact-form .contact-form-step::after {
  position: absolute;
  width: 90%;
  height: 0.1rem;
  background-color: #000;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
}
.contact .contact-form .contact-form-step--item {
  padding: 1rem 1.8rem 1.3rem;
  color: #fff;
  font-size: 1.2rem;
  background: #D8D8D8;
  border-radius: 5rem;
  line-height: 1;
}
@media screen and (min-width: 375px) {
  .contact .contact-form .contact-form-step--item {
    padding: 1rem 2rem 1.3rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 690px) {
  .contact .contact-form .contact-form-step--item {
    padding: 1rem 2.7rem 1.3rem;
    font-size: 1.8rem;
  }
}
.contact .contact-form .contact-form-step--item--red {
  background: #E33C0B;
}

.is-6 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.contact-form-btn {
  text-align: center;
  margin-top: 4rem;
}
.contact-form-btn .m-btn.u-long {
  max-width: 54rem;
}
.contact-form-btn .m-btn.u-long input {
  padding: 2rem 2rem 2rem 4rem;
  white-space: pre-wrap;
}
.contact-form-btn .m-btn {
  max-width: 28rem;
  width: 100%;
  position: relative;
}
.contact-form-btn .m-btn input {
  display: block;
  padding: 2rem;
  margin-right: 0;
  width: 100%;
  border-radius: 9999px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.contact-form-btn .m-btn.icon-btn-next::before {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.contact-form-btn .m-btn.icon-btn-return::before {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%) scale(-1, 1);
  -webkit-transform: translate(0, -50%) scale(-1, 1);
  -ms-transform: translate(0, -50%) scale(-1, 1);
}

/*----------------------------------

 START form.scss

----------------------------------*/
::placeholder {
  color: #C4C4C4;
}

.contact {
  word-break: break-all;
}
@media screen and (max-width: 320px) {
  .contact .u-br-sp {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  .contact .pagetitle .u-br-sp {
    display: block;
  }
}

.contact .contact-form .form__table {
  border-collapse: collapse;
  width: 100%;
  display: block;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table {
    display: table;
    margin-bottom: 4.4rem;
  }
}
.contact .contact-form .form__table .form__table--tbody {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--tbody {
    display: contents;
  }
}
.contact .contact-form .form__table .form__table--contents {
  display: block;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--contents {
    /*display: table-row;*/
    display: flex;
    flex-wrap: nowrap;
  }
}
.contact .contact-form .form__table .form__table--contents:last-of-type {
  margin-bottom: 0;
}
.contact .contact-form .form__table .form__table--contents.form-wide {
  display: block;
}
.contact .contact-form .form__table .form__table--contents.form-wide .form__table--heading {
  width: 100%;
  max-width: none;
  display: block;
  margin-bottom: 2rem;
}
.contact .contact-form .form__table .form__table--contents.form-wide .form__table--content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact .contact-form .form__table .form__table--contents.form-wide .acms-admin-form-checkbox:not(:last-of-type) {
  margin-right: 2rem;
}
.contact .contact-form .form__table .form__table--contents .sw-Select {
  position: relative;
  max-width: 300px;
}
.contact .contact-form .form__table .form__table--contents .sw-Select::before {
  content: "";
  border-top: 0.2rem solid #2F3C3F;
  border-right: 0.2rem solid #2F3C3F;
  transform: rotateZ(-45deg);
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 45%;
  right: 1.5rem;
  margin-top: -0.6rem;
  pointer-events: none;
}
.contact .contact-form .form__table .form__table--contents .sw-Select::after {
  content: "";
  border-top: 0.2rem solid #2F3C3F;
  border-right: 0.2rem solid #2F3C3F;
  transform: rotateZ(135deg);
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  bottom: 35%;
  right: 1.5rem;
  margin-top: -0.6rem;
  pointer-events: none;
}
.contact .contact-form .form__table .form__table--contents .sw-Select_Unit {
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  width: 100%;
  line-height: 1;
  background: #fafafa;
}
.contact .contact-form .form__table .form-other {
  width: 100%;
}
.contact .contact-form .form__table .form-other .form-other-label {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form-other .form-other-label {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form-other .form-other-label .checkbox {
    top: 1rem;
  }
}
.contact .contact-form .form__table .form-other .form-other-input {
  border: 1px solid #D8D8D8;
  padding: 0.5rem 1rem 0.8rem;
  margin: 1rem 0 0 0;
  width: 100%;
  display: block;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form-other .form-other-input {
    margin: 0 0 0 1.5rem;
    flex: 1;
    width: auto;
  }
}
.contact .contact-form .form__table .form-other :disabled {
  background: #D8D8D8;
  pointer-events: none;
}
.contact .contact-form .form__table .form__table--heading {
  display: block;
  width: 100%;
  font-weight: bold;
  text-align: left;
  /*margin-bottom: 1.5rem;*/
  font-size: 1.6rem;
  vertical-align: middle;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--heading {
    width: 33%;
    max-width: 250px;
    font-size: 1.6rem;
    display: table-cell;
    padding: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  .contact .contact-form .form__table .form__table--heading {
    font-size: 1.6rem;
    padding: 0;
  }
}
.contact .contact-form .form__table .form__table--heading p {
  line-height: 1;
}
.contact .contact-form .form__table .form__table--content {
  display: block;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--content {
    display: table-cell;
    padding: 0;
    flex: 1;
  }
}
.contact .contact-form .form__table .form__table--content--item--text {
  width: 100%;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.contact .contact-form .form__table .form__table--content--item--select-wrap {
  position: relative;
  background: #efefef url(../img/icon--select-arrow.svg) no-repeat;
  background-size: 13px 6px;
  background-position: right 1.5rem center;
  width: 100%;
  margin-bottom: 0.5rem;
}
.contact .contact-form .form__table .form__table--content--item--select-wrap .form__table--content--item--select {
  display: block;
  padding: 1rem 3.5rem 1rem 1rem;
  width: 100%;
  font-size: 1.6rem;
  cursor: pointer;
}
.contact .contact-form .form__table .form__table--content--item--textarea {
  display: block;
  width: 100%;
  margin-bottom: 0;
  -webkit-appearance: none;
  height: 20rem;
  border: 1px solid #D8D8D8;
  padding: 1rem;
  min-height: 5rem;
}
.contact .contact-form .form__table .form__table--content--item--input {
  display: block;
  width: 100%;
  margin-bottom: 0;
  /*&:focus {
    border: 2px solid s-decoration.$color-main;
    background: #fff;
  }*/
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--content--item--input {
    width: 100%;
    flex: 1;
  }
}
.contact .contact-form .form__table .form__table--content--item {
  margin-bottom: 2rem;
}
.contact .contact-form .form__table .form__table--content--item:only-of-type, .contact .contact-form .form__table .form__table--content--item:last-of-type {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--content--item {
    align-items: center;
  }
}
.contact .contact-form .form__table .form__table--content--item .form__table--content--item--label {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .form__table .form__table--content--item .form__table--content--item--label {
    width: 25%;
    max-width: 160px;
  }
}

[class*=u-icon--]::before {
  content: "";
  display: inline-block;
  padding: 0.4rem 0.7rem 0.5rem 0.7rem;
  margin-right: 1rem;
  line-height: 1;
  font-weight: normal;
  font-size: 1.4rem;
  vertical-align: middle;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  [class*=u-icon--]::before {
    color: #E33C0B;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1000px) {
  [class*=u-icon--]::before {
    margin-right: 2rem;
  }
}

[class*=u-icon--] {
  padding-left: 5rem;
  position: relative;
  line-height: 1.5 !important;
}

.u-icon--required::before {
  content: "必須";
  background: #E33C0B;
  color: #fff;
}

.u-icon--any::before {
  content: "任意";
  background: #C4C4C4;
  color: #fff;
}

.u-icon--br {
  padding-left: 0;
}
.u-icon--br::before {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 1rem;
}

.form-style .form__error-wrap {
  width: 100%;
}
.form-style .form__error-wrap .form__error {
  padding: 1rem;
  font-size: 1.3rem;
  color: #E33C0B;
  background: #fbe9e7;
  line-height: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form-style .form__error-wrap .form__error {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .form-style .form__error-wrap.form__error-wrap--full:before {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .form-style .form__error-wrap.form__error-wrap--full .form__error {
    width: 100%;
  }
}
.form-style {
  /*[class*="u-icon--"]::before {
    content: "";
    display: inline-block;
    padding: 0.5rem 1rem 0.6rem 1rem;
    margin-right: 2rem;
    line-height: 1;
    font-weight: normal;
    font-size: 1.4rem;
    vertical-align: middle;
    @include mq.mq-min(sm) {
      color: #E33C0B;
      margin-right: 1rem;
    }
    @include mq.mq-min(md) {
      margin-right: 2rem;
    }
  }*/
  /*.u-icon--required {
    &::before {
      content: "必須";
      background: #E33C0B;
      color: #fff;
    }
  }*/
  /*.u-icon--any {
        &::before {
          content: "任意";
          background: gray;
          color: #fff;
        }
      }
  */
}
.form-style .form__button--wrap {
  /*padding-left: 1.8rem;
  padding-right: 1.8rem;
  margin-bottom: 3rem;*/
}
.form-style .form__button--wrap .form__button--input {
  display: block;
  width: 100%;
  padding: 2rem 1rem;
  background: #000;
  color: #fff;
  line-height: 1;
  font-size: 1.6rem;
  max-width: 220px;
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.form-style .form__button--wrap .form__button--input:hover {
  opacity: 0.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .form-style .form__button--wrap .btn {
    margin-top: 0;
  }
}

.l-container.pagetitle h1 {
  letter-spacing: -2px;
}

.contact-error-text {
  margin-bottom: 1.5rem;
  color: #E33C0B;
}

.contact-error-text--message {
  color: #E33C0B;
  width: 100%;
}

.contact .contact-confirm .contact-form {
  padding-top: 1rem;
}
.contact .contact-confirm .contact-form .u-icon--required::before {
  content: none !important;
}
.contact .contact-confirm .contact-form .u-icon--any::before {
  content: none !important;
}
@media screen and (max-width: calc(768px - 1px)) {
  .contact .contact-confirm .contact-form-btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: calc(768px - 1px)) {
  .contact .contact-confirm .btn-second-space {
    order: 1;
  }
}

.contact .contact-complete .contact-form {
  padding-top: 1rem;
}

.btn-white {
  background: #fff;
  color: #000;
  line-height: 6.5rem;
}

.icon-btn-return {
  position: relative;
}
.icon-btn-return::before {
  background: url(../img/common/icon-right-arrow-black-circle-min.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
  transform: scale(-1, 1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

.btn-black {
  background: #000;
  color: #fff;
  line-height: 6.5rem;
}

.icon-btn-next {
  position: relative;
}
.icon-btn-next::before {
  background: url(../img/common/icon-button-left-arrow.svg) no-repeat;
  background-size: contain;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
  top: 0.5rem;
}

.btn-second-space {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .btn-second-space {
    margin-right: 2rem;
    margin-top: 0;
  }
}

.contact-form-main .acms-admin-form-checkbox {
  margin-right: 0;
  display: block;
  width: fit-content;
}
.contact-form-main .checkbox {
  margin: 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact-form-main .checkbox {
    margin: 0 0.5rem 0;
  }
}
.contact-form-main label {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 3.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form-main label {
    margin-bottom: 2rem;
  }
}
.contact-form-main label span {
  display: inline-block;
  position: relative;
  background-color: transparent;
  width: 20px;
  height: 20px;
  transform-origin: center;
  border: 2px solid #e23b0a;
  border-radius: 0.5rem;
  vertical-align: -5px;
  margin-right: 0.6rem;
  transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.contact-form-main label span:before {
  content: "";
  width: 0px;
  height: 2px;
  border-radius: 2px;
  background: #e23b0a;
  position: absolute;
  transform: rotate(45deg);
  top: 8px;
  left: 5px;
  transform-origin: 0% 0%;
}
@media screen and (min-width: 768px) {
  .contact-form-main label span:before {
    transition: width 50ms ease 50ms;
  }
}
.contact-form-main label span:after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: #e23b0a;
  position: absolute;
  transform: rotate(305deg);
  top: 12px;
  left: 6px;
  transform-origin: 0% 0%;
}
@media screen and (min-width: 768px) {
  .contact-form-main label span:after {
    transition: width 50ms ease;
  }
}
.contact-form-main input[type=checkbox] {
  display: none;
}
.contact-form-main input[type=checkbox]:checked + span {
  background-color: #e23b0a;
  transform: scale(1.2);
}
.contact-form-main input[type=checkbox]:checked + span:after {
  width: 10px;
  background: #fff;
  transition: width 150ms ease 100ms;
}
.contact-form-main input[type=checkbox]:checked + span:before {
  width: 5px;
  background: #fff;
  transition: width 150ms ease 100ms;
}
.contact-form-main input[type=radio] {
  display: none;
}
.contact-form-main input[type=radio] + span {
  border-radius: 10rem;
}
.contact-form-main input[type=radio]:checked + span {
  background-color: #e23b0a;
  transform: scale(1.2);
}
.contact-form-main input[type=radio]:checked + span:after {
  width: 10px;
  background: #fff;
  transition: width 150ms ease 100ms;
}
.contact-form-main input[type=radio]:checked + span:before {
  width: 5px;
  background: #fff;
  transition: width 150ms ease 100ms;
}
@media screen and (min-width: 1000px) {
  .chrome .contact-form-main label:hover span:before, .firefox .contact-form-main label:hover span:before, .opera .contact-form-main label:hover span:before {
    width: 5px;
  }
}
@media screen and (min-width: 1000px) and (min-width: 768px) {
  .chrome .contact-form-main label:hover span:before, .firefox .contact-form-main label:hover span:before, .opera .contact-form-main label:hover span:before {
    transition: width 100ms ease;
  }
}
@media screen and (min-width: 1000px) {
  .chrome .contact-form-main label:hover span:after, .firefox .contact-form-main label:hover span:after, .opera .contact-form-main label:hover span:after {
    width: 10px;
  }
}
@media screen and (min-width: 1000px) and (min-width: 768px) {
  .chrome .contact-form-main label:hover span:after, .firefox .contact-form-main label:hover span:after, .opera .contact-form-main label:hover span:after {
    transition: width 150ms ease 100ms;
  }
}
@media screen and (min-width: 1000px) {
  .chrome .contact-form-main input[type=checkbox]:checked:hover span, .firefox .contact-form-main input[type=checkbox]:checked:hover span, .opera .contact-form-main input[type=checkbox]:checked:hover span {
    background-color: #e23b0a;
    transform: scale(1.2);
  }
  .chrome .contact-form-main input[type=checkbox]:checked:hover span:after, .firefox .contact-form-main input[type=checkbox]:checked:hover span:after, .opera .contact-form-main input[type=checkbox]:checked:hover span:after {
    width: 10px;
    background: #fff;
  }
}
@media screen and (min-width: 1000px) and (min-width: 768px) {
  .chrome .contact-form-main input[type=checkbox]:checked:hover span:after, .firefox .contact-form-main input[type=checkbox]:checked:hover span:after, .opera .contact-form-main input[type=checkbox]:checked:hover span:after {
    transition: width 150ms ease 100ms;
  }
}
@media screen and (min-width: 1000px) {
  .chrome .contact-form-main input[type=checkbox]:checked:hover span:before, .firefox .contact-form-main input[type=checkbox]:checked:hover span:before, .opera .contact-form-main input[type=checkbox]:checked:hover span:before {
    width: 5px;
    background: #fff;
  }
}
@media screen and (min-width: 1000px) and (min-width: 768px) {
  .chrome .contact-form-main input[type=checkbox]:checked:hover span:before, .firefox .contact-form-main input[type=checkbox]:checked:hover span:before, .opera .contact-form-main input[type=checkbox]:checked:hover span:before {
    transition: width 150ms ease 100ms;
  }
}

.teruko {
  position: relative;
  cursor: pointer;
}
.teruko .teruko-inner {
  text-align: left;
  background: #e23b0a;
  border-radius: 0.5rem;
  padding: 1.5rem 1.5rem;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  width: auto;
  width: max-content;
  max-width: 15rem;
  z-index: 1;
  display: none;
}
.teruko .teruko-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #e23b0a transparent transparent transparent;
  border-width: 8px 8px 0 8px;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
}
.teruko .teruko-inner.teruko-m {
  max-width: 25rem;
}
@media screen and (min-width: 1000px) {
  .teruko:hover .teruko-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
  }
}

.privacy .container {
  background: #fff;
}
.privacy .content {
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .privacy .content {
    padding-left: 0;
    padding-right: 0;
    max-width: 850px;
  }
}

.enpita-form {
  background: #FAEF01;
}
.enpita-form .contact-form .content {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
@media screen and (min-width: 768px) {
  .enpita-form .contact-form .content {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
.enpita-form .enpita-outer {
  border-radius: 2rem;
  margin: 1rem 1rem 0 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .enpita-form .enpita-outer {
    margin: 2rem 2rem 0 2rem;
  }
}
.enpita-form .contact-top-box--tel {
  border-radius: 2rem;
}
.enpita-form .icon-contact-tel::before {
  background: url(../../service/enpita/asset/img/common/icon-tel-bl.svg) no-repeat right;
  background-size: contain;
}
.enpita-form a.link--red {
  color: #008CD6 !important;
}
.enpita-form .contact-form-step--item--red {
  background: #008CD6 !important;
}
.enpita-form .u-icon--required::before {
  background: #008CD6 !important;
  border-radius: 0.5rem;
}
.enpita-form .u-icon--any::before {
  border-radius: 0.5rem;
}
.enpita-form .contact-form-main label span {
  border: 2px solid #008CD6 !important;
}
.enpita-form .contact-form-main label span::before {
  background: #008CD6 !important;
}
.enpita-form .contact-form-main label span::after {
  background: #008CD6 !important;
}
.enpita-form .contact-form-main input[type=checkbox]:checked + span {
  background-color: #008CD6 !important;
}
.enpita-form .contact-form-main input[type=checkbox]:checked + span:after {
  background: #fff !important;
}
.enpita-form .contact-form-main input[type=checkbox]:checked + span:before {
  background: #fff !important;
}
.enpita-form .content-inner {
  border-radius: 2rem;
  padding: 4rem 1rem 4rem;
}
@media screen and (min-width: 768px) {
  .enpita-form .content-inner {
    padding: 4rem 2rem 4rem;
  }
}
.enpita-form .contact-top-txt {
  margin-top: 2rem;
  font-size: 1.3rem;
  text-align: center;
}
.enpita-form .simple-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1607843137));
}
@media screen and (min-width: 1000px) {
  .enpita-form .simple-header {
    top: -2.5rem;
    left: 5rem;
  }
}
.enpita-form .simple-header__logo {
  display: block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.enpita-form .simple-header__logo img {
  max-width: 10rem;
}
@media screen and (min-width: 1000px) {
  .enpita-form .simple-header__logo img {
    max-width: 15rem;
  }
}
.enpita-form .enpita-footer__Wrap {
  background: #FAEF01;
  padding: 4rem 0 7.5rem;
}
@media screen and (min-width: 768px) {
  .enpita-form .enpita-footer__Wrap {
    padding: 6rem 0;
  }
}
.enpita-form .enpita-footer__Wrap__LogoArea {
  width: 8.7rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .enpita-form .enpita-footer__Wrap__LogoArea {
    width: 13rem;
  }
}
.enpita-form .enpita-footer__Wrap__Txt {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.enpita-form .cookie-consent {
  display: none !important;
}
.enpita-form .contact-form {
  padding-top: 30px !important;
  padding-bottom: 50px !important;
}
.enpita-form .xsmall {
  font-size: 1.3rem !important;
}

/*----------------------------------

 START t-recruit.scss

----------------------------------*/
.u-deco {
  color: #000;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.recruit.recruit_test .contact-form {
  padding-top: 0;
}
.recruit.recruit_test .u-hosoku {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem 0;
}
.recruit.recruit_test .u-hosoku:first-child {
  margin: 0 0 2rem 0;
}
.recruit.recruit_test .form__table--content .m-filebtn {
  cursor: pointer;
  padding-left: 0;
}
.recruit.recruit_test .form__table--content input[type=text] {
  padding: 1rem;
}

/*# sourceMappingURL=style.css.map */
