@charset "UTF-8";
/*note: INDEXの表示は、コメントの「 index: 」でハイライト表示してください。*/
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: リセットCSS と body要素の文字（色・書体）と背景色*/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-style: normal;
  box-sizing: border-box;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: クリアフィックス*/
/* Class と ステークホルダー の名称設定 */
/* 処理 */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: スクリーンリーダー*/
/* スクリーンリーダーテキスト の名称設定 */
/* 処理 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}

:root {
  --base: #009261;
  --main: #1446b4;
  --text: #4d4d4d;
  --white: #fff;
  --black: #000;
  --red: #ea0029;
  --width: 1440;
}
@media only screen and (max-width: 768px) {
  :root {
    --width: 375;
  }
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
body {
  color: #000;
  font-family: "LINE Seed JP", sans-serif;
  position: relative;
}

.green_txt,
.green_ttl {
  color: var(--base);
}

.maison_ttl {
  color: #d8959e;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  transition-duration: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }
}

picture {
  display: block;
  width: 100%;
}
picture img {
  width: 100%;
}

.trigger {
  box-sizing: border-box;
}

.slideTrain,
.slideUpTrain {
  opacity: 0;
}

.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url(../images/bg01.jpg);
  background-position: center 0;
  background-size: cover;
  pointer-events: none;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: overlay */
#overlay {
  display: none;
}
@media only screen and (max-width: 768px) {
  #overlay.active {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main */
.main {
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .main {
    margin-top: 48px;
  }
}

section {
  position: relative;
}

.container {
  margin: auto;
  max-width: 750px;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sec .img {
  display: block;
}
.sec .note {
  font-size: clamp(12px, 1.25vw, 18px);
  text-align: center;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .sec .note {
    text-align: left;
  }
}
.sec .highlight {
  background: linear-gradient(transparent 60%, #ffed4a 60%);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: main_visual */
.main_visual {
  position: relative;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: cp */
.sec_cp {
  background-color: #fffbdb;
  margin-bottom: -300px;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .sec_cp {
    margin-bottom: -120px;
    padding-block: 20px;
  }
}
.sec_cp .container {
  background: url(../images/bg-cp.png) no-repeat center/contain;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .sec_cp .container {
    background-position: center bottom 20%;
  }
}
.sec_cp .text {
  color: var(--text);
  font-size: clamp(16px, 1.9444444444vw, 28px);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  text-align: center;
}
.sec_cp ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto;
  width: 90%;
}
.sec_cp ul li {
  width: 33.3333333333%;
}
@media only screen and (max-width: 768px) {
  .sec_cp ul {
    margin: 10px auto 0;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: point */
.sec_point {
  background: url(../images/bg-point.png) no-repeat top center/cover #fffbdb;
  padding-top: 300px;
  padding-bottom: 350px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .sec_point {
    padding-top: 150px;
    padding-bottom: 200px;
  }
}
.sec_point .container {
  position: relative;
  z-index: 1;
}
.sec_point .sec_title {
  max-width: 680px;
  margin: auto;
  margin-bottom: 80px;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .sec_point .sec_title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_point .con {
    margin: auto;
    width: 90%;
  }
}
.sec_point .photo {
  max-width: 650px;
  margin: auto;
  position: relative;
}
.sec_point .photo figure {
  border-radius: 25px;
  border: 5px solid var(--white);
  display: block;
  overflow: hidden;
}
.sec_point .photo figure img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .sec_point .photo figure {
    border-radius: 15px;
    border-width: 3px;
  }
}
.sec_point .photo .caption {
  padding: 30px 0;
  position: relative;
}
.sec_point .photo .caption p {
  color: var(--base);
  font-size: clamp(16px, 1.6666666667vw, 24px);
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.sec_point .photo .caption .img01 {
  position: absolute;
  top: -120px;
  right: -150px;
  z-index: 0;
  width: 380px;
}
.sec_point .photo .caption .img02 {
  position: absolute;
  top: -120px;
  right: -120px;
  z-index: 0;
  width: 380px;
}
@media only screen and (max-width: 768px) {
  .sec_point .photo .caption {
    padding: 15px 0;
  }
  .sec_point .photo .caption .img01 {
    top: -45%;
    right: -20%;
    width: 60%;
  }
  .sec_point .photo .caption .img02 {
    top: -45%;
    right: -20%;
    width: 60%;
  }
}
.sec_point .photo:last-of-type {
  padding-bottom: 80px;
}
.sec_point .photo:last-of-type:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: url(../images/line.svg) repeat-x center/contain;
}
@media only screen and (max-width: 768px) {
  .sec_point .photo:last-of-type {
    padding-bottom: 40px;
  }
}
.sec_point .arrow {
  margin: 30px auto;
  position: relative;
  width: 100px;
}
.sec_point .arrow img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .sec_point .arrow {
    margin: 20px auto;
    width: 18%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: apply */
.sec_apply {
  background: url(../images/bg-apply.png) no-repeat top center/contain;
  padding-top: 200px;
  padding-bottom: 150px;
  margin-top: -300px;
  position: relative;
  overflow: hidden;
}
.sec_apply::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-apply-2.png) repeat bottom center/contain;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .sec_apply {
    background-size: auto 60%;
    margin-top: -150px;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .sec_apply::after {
    background-size: auto 60%;
    background-repeat: repeat;
  }
}
.sec_apply .container {
  position: relative;
  z-index: 1;
}
.sec_apply .sec_title {
  max-width: 680px;
  margin: auto;
  margin-bottom: 80px;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .sec_apply .sec_title {
    margin-bottom: 30px;
  }
}
.sec_apply .con {
  display: grid;
  gap: 100px;
}
@media only screen and (max-width: 768px) {
  .sec_apply .con {
    gap: 40px;
  }
}
.sec_apply .step {
  background-color: var(--white);
  border: 5px solid var(--red);
  border-radius: 25px;
  padding-bottom: 20px;
  position: relative;
}
.sec_apply .step img {
  width: 100%;
}
.sec_apply .step_item p {
  font-size: clamp(16px, 1.9444444444vw, 28px);
  font-weight: bold;
  line-height: 1.5;
  padding: 30px 10px 0 120px;
}
.sec_apply .step_item img {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 130px;
}
@media only screen and (max-width: 768px) {
  .sec_apply .step {
    border-width: 3px;
    border-radius: 12px;
    padding-bottom: 10px;
  }
  .sec_apply .step_item p {
    padding: 20px 10px 0 70px;
  }
  .sec_apply .step_item img {
    top: -7%;
    left: -5%;
    width: 25%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: schedule */
.sec_schedule {
  background-color: #fffbdb;
  background: url(../images/bg-schedule.png) no-repeat center/contain #fffbdb;
  padding-block: 150px;
  margin-top: -5px;
  position: relative;
  overflow: hidden;
}
.sec_schedule::before, .sec_schedule::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 0;
}
.sec_schedule::before {
  background: url(../images/schedule-bf01_pc.png) no-repeat top left/contain;
  top: 0;
  left: 0;
}
.sec_schedule::after {
  background: url(../images/schedule-bf02_pc.png) no-repeat bottom left/contain;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .sec_schedule {
    padding-block: 80px;
  }
  .sec_schedule::before {
    background-image: url(../images/schedule-bf01.png);
  }
  .sec_schedule::after {
    background-image: url(../images/schedule-bf02.png);
    left: inherit;
    right: 0;
  }
}
.sec_schedule .container {
  position: relative;
  z-index: 1;
}
.sec_schedule .sec_title {
  max-width: 600px;
  margin: 0 auto -45px;
  width: 90%;
}
@media only screen and (max-width: 768px) {
  .sec_schedule .sec_title {
    margin-bottom: -25px;
  }
}
.sec_schedule .con {
  background-color: var(--white);
  border-radius: 24px;
  padding: 100px 60px 30px;
}
@media only screen and (max-width: 768px) {
  .sec_schedule .con {
    border-radius: 12px;
    padding: 50px 20px 15px;
  }
}
.sec_schedule .priod {
  background-color: var(--base);
  border: 3px solid var(--base);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  font-weight: bold;
  align-items: center;
}
.sec_schedule .priod .date {
  color: var(--white);
  font-size: clamp(16px, 1.9444444444vw, 26px);
  line-height: 1.4;
  text-align: center;
}
.sec_schedule .priod .term {
  background-color: var(--white);
  color: var(--base);
  font-size: clamp(16px, 1.9444444444vw, 26px);
  display: flex;
  align-items: baseline;
  line-height: 1.4;
  padding: 20px 15px;
}
.sec_schedule .priod .term .num {
  font-size: 130%;
  font-weight: bold;
}
.sec_schedule .priod .term .week {
  background-color: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 100vw;
  color: var(--white);
  font-size: 75%;
}
@media only screen and (max-width: 768px) {
  .sec_schedule .priod .term {
    flex-wrap: wrap;
    padding: 10px;
  }
  .sec_schedule .priod .term .year {
    width: 100%;
  }
  .sec_schedule .priod .term .week {
    width: 20px;
    height: 20px;
  }
}
.sec_schedule ul {
  margin: 30px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 85%;
}
.sec_schedule ul li {
  display: grid;
  grid-template-columns: 200px auto;
  font-size: clamp(15px, 1.9444444444vw, 28px);
  font-weight: bold;
}
.sec_schedule ul li span {
  text-align: justify;
  text-align-last: justify;
}
.sec_schedule ul li:last-child {
  color: var(--red);
}
@media only screen and (max-width: 768px) {
  .sec_schedule ul {
    width: 95%;
  }
  .sec_schedule ul li {
    grid-template-columns: 95px auto;
  }
}
.sec_schedule .notes {
  font-size: clamp(12px, 1.1111111111vw, 16px);
  letter-spacing: normal;
  line-height: 1.5;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: sns */
.sec_sns {
  background-color: #fff;
  padding-top: 100px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .sec_sns {
    padding-top: 50px;
  }
}
.sec_sns .container {
  max-width: 600px;
}
@media only screen and (max-width: 1024px) {
  .sec_sns .container {
    max-width: 450px;
  }
}
.sec_sns .bgImg {
  transform: translateX(-10px);
}
@media only screen and (max-width: 768px) {
  .sec_sns .bgImg {
    transform: translateX(0);
  }
}
.sec_sns .con {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: fit-content;
  margin: auto;
  z-index: 1;
}
.sec_sns .con .text {
  color: var(--base);
  font-size: clamp(16px, 1.9444444444vw, 28px);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  text-align: center;
}
.sec_sns .con ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 250px;
  margin: 50px auto 0;
}
.sec_sns .con ul li a {
  display: block;
}
.sec_sns .con ul li a img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .sec_sns .con ul {
    max-width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .sec_sns .con ul {
    gap: 20px;
    margin-top: 20px;
    width: 45%;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: terms */
.sec_terms {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
}
.sec_terms::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/terms-bf_pc.png) no-repeat bottom left/contain;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .sec_terms {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .sec_terms::after {
    left: inherit;
    right: 0;
    width: 110%;
    background-image: url(../images/terms-bf.png);
  }
}
.sec_terms .container {
  position: relative;
  z-index: 1;
}
.sec_terms .sec_title {
  max-width: 650px;
  margin: auto;
  width: 90%;
}
.sec_terms .con {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .sec_terms .con {
    margin: auto;
    margin-top: 30px;
    width: 95%;
  }
}
.sec_terms dl:last-child dd {
  margin-bottom: 0;
}
.sec_terms dl dt {
  font-family: "Meiryo", "メイリオ", "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.6666666667vw, 24px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.sec_terms dl dt span {
  display: table-cell;
}
.sec_terms dl dt span:first-child {
  color: var(--base);
  font-size: 70%;
  padding-right: 0.5em;
}
.sec_terms dl dd {
  font-family: "Meiryo", "メイリオ", "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 2em;
}
.sec_terms dl dd li span {
  display: table-cell;
}
.sec_terms dl dd .notes {
  font-size: clamp(14px, 1.1111111111vw, 16px);
  padding-left: 1em;
  text-indent: -1em;
}
.sec_terms dl dd .mt {
  margin-top: 1em;
}
.sec_terms dl dd .head {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: clamp(18px, 1.3888888889vw, 20px);
  font-weight: 600;
  padding: 0.25em 0;
  text-align: center;
}
.sec_terms dl dd .t-center {
  font-size: clamp(18px, 1.3888888889vw, 20px);
  line-height: 1.5;
  margin: 0.5em auto;
  text-align: center;
}
.sec_terms dl dd a {
  color: var(--base);
  text-decoration: underline;
  word-break: break-all;
}
@media only screen and (max-width: 768px) {
  .sec_terms dl dd {
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
  .sec_terms dl dd .notes {
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .sec_terms dl dd .head {
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
  .sec_terms dl dd .t-center {
    font-size: clamp(14px, 3.7333333333vw, 16px);
    margin: 0.75em auto 0.5em;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: service */
#service-disney {
  background-color: #ffea52;
}

#service {
  background-color: #FCDFE0;
}

.sec_service {
  padding: 60px clamp(5%, 8.3333333333%, 120px) 70px;
}
@media only screen and (max-width: 768px) {
  .sec_service {
    padding: 30px 5% 40px;
  }
}
.sec_service .container {
  background: #fff;
  border-radius: 30px;
  padding: 60px clamp(5%, 4.1666666667%, 60px);
}
@media only screen and (max-width: 768px) {
  .sec_service .container {
    border-radius: 15px;
    padding: 30px 5% 40px;
    width: 100%;
  }
}
.sec_service .title {
  border: 1px dashed var(--base);
  border-width: 2px 0;
  color: var(--base);
  font-size: clamp(21px, 30 / var(--width) * 100vw, 30px);
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 20px 0;
}
.sec_service .title span {
  display: inline-block;
  font-size: clamp(24px, 35 / var(--width) * 100vw, 35px);
  padding-bottom: 0.3em;
  position: relative;
}
.sec_service .title span:before {
  position: absolute;
  content: "";
  top: 0;
  left: -0.5em;
  width: 2px;
  height: 90%;
  transform: rotate(-15deg);
  background: var(--base);
}
.sec_service .title span:after {
  position: absolute;
  content: "";
  top: 0;
  right: -0.5em;
  width: 2px;
  height: 90%;
  transform: rotate(15deg);
  background: var(--base);
}
@media only screen and (max-width: 768px) {
  .sec_service .title {
    font-size: clamp(14px, 4vw, 21px);
  }
  .sec_service .title span {
    font-size: clamp(18px, 5.6vw, 21px);
  }
}
.sec_service .service_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_list {
    gap: 40px;
  }
}
.sec_service .service_bnr {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .sec_service .service_bnr {
    gap: 20px;
  }
}
.sec_service .service_bnr .border {
  border: 1px solid #B3B3B3;
}
.sec_service .button {
  display: block;
  max-width: 300px;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  .sec_service .button {
    margin: 15px auto;
    width: 90%;
  }
}
.sec_service .disney {
  max-width: 780px;
  margin: 2em auto 0;
  width: 90%;
}
.sec_service .disney a {
  color: var(--base);
  position: relative;
  text-decoration: underline;
}
.sec_service .disney a:after {
  content: "";
  filter: invert(42%) sepia(9%) saturate(5656%) hue-rotate(118deg) brightness(70%) contrast(101%);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: url(../images/arrow.svg) no-repeat center/cover;
}
@media only screen and (max-width: 768px) {
  .sec_service .disney {
    margin-top: 1em;
    width: 100%;
  }
  .sec_service .disney a {
    font-size: clamp(12px, 3.7333333333vw, 16px);
  }
  .sec_service .disney a:after {
    width: 12px;
    height: 12px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: pagetop_btn */
.pagetop_btn {
  position: relative;
}
.pagetop_btn .pagetop {
  display: block;
  padding: 20px;
  color: white;
  background: var(--base);
  border: 3px solid var(--base);
  bottom: 24px;
  right: 24px;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.pagetop_btn .pagetop:hover {
  color: var(--base);
  background: white;
  border: 3px solid var(--base);
}
.pagetop_btn .pagetop.active {
  opacity: 1;
  visibility: visible;
}
.pagetop_btn .pagetop.absolute {
  position: absolute;
  top: -100px;
  bottom: auto;
}
.pagetop_btn .pagetop svg {
  fill: currentcolor;
}

@media only screen and (max-width: 768px) {
  .pagetop_btn .pagetop {
    right: 4%;
    padding: 0.8rem;
  }
  .pagetop_btn .pagetop.absolute {
    top: -90px;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
footer {
  padding: 8px 20px 10px;
  background-color: var(--base);
  color: #fff;
  font-weight: 500;
  position: relative;
}
footer .container {
  display: grid;
  grid-template: auto auto/auto 264px;
}
footer .link {
  padding-top: 0.3rem;
  font-size: 12px;
  line-height: 1.4;
  margin-right: 1rem;
}
footer .link a {
  color: white;
  text-decoration: inherit;
  text-decoration-skip-ink: auto;
  margin-right: 1rem;
}
footer .link span {
  color: white;
}
footer .banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 264px;
  height: 54px;
  color: #666;
  grid-area: 1/2/3/3;
}
footer .banner img {
  position: absolute;
}
footer .banner span.t {
  position: relative;
  padding: 0.4em 1em 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0;
}
footer .copyright {
  font-size: 10px;
  margin-top: 1rem;
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  footer {
    padding-bottom: 20px;
    text-align: center;
  }
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .link {
    margin: 0 auto;
  }
  footer .banner {
    order: 1;
    margin-top: 8px;
  }
}/*# sourceMappingURL=style.css.map */