/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  color: #000;
  --color-red: #E9393B;
  --color-blue: #005BAB;
  --color-lightblue: #DFF4FF;
  --color-navy: #0B308E;
  --color-beige: #FFF9ED;
  --color-gray: #464646;
  --color-yellow: #FFF8A5;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

a {
  cursor: pointer;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.main {
  background-color: #fff;
}

.flex {
  flex: 1;
}
.flex_row {
  display: flex;
}
.flex_column {
  display: flex;
  flex-direction: column;
}

.align_center {
  align-items: center;
}
.align_start {
  align-items: flex-start;
}
.align_end {
  align-items: flex-end;
}

.justify_center {
  justify-content: center;
}
.justify_start {
  justify-content: flex-start;
}
.justify_end {
  justify-content: flex-end;
}
.justify_between {
  justify-content: space-between;
}

.text_red {
  color: var(--color-red);
  font-weight: 700;
}
.text_center {
  text-align: center;
}
.text_left {
  text-align: left;
}
.text_right {
  text-align: right;
}
.text_bold_700 {
  font-weight: 700;
}
.text_bold_800 {
  font-weight: 800;
}
.text_xs {
  font-size: 50%;
}
.text_sm {
  font-size: 75%;
}
.text_lg {
  font-size: 125%;
}
.text_xl {
  font-size: 150%;
}

@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.inner {
  width: 67.5rem;
  max-width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.display-block {
  display: block;
}

.icon-plus {
  margin: -1rem auto 0;
  background-color: var(--color-beige);
  text-align: center;
}
@media (min-width: 769px) {
  .icon-plus {
    margin: -2rem auto 0;
  }
}
.icon-plus img {
  width: 3.375rem;
  height: auto;
}
@media (min-width: 769px) {
  .icon-plus img {
    width: 6.25rem;
  }
}

.header_button {
  position: fixed;
  top: 1.25rem;
  right: 0.625rem;
  width: 2.875rem;
  z-index: 10;
  cursor: pointer;
}
@media (min-width: 769px) {
  .header_button {
    top: 1.875rem;
    right: 1.875rem;
  }
}
.header_button img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.header_nav {
  position: fixed;
  top: 0;
  right: 0;
  background: aliceblue;
  padding: 5rem 2.5rem 3.75rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: 0.5s;
}
@media (min-width: 769px) {
  .header_nav {
    width: auto;
    padding: 7.5rem 4.375rem 4.375rem;
  }
}
.header_nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header_nav_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
}
.header_nav_list_item a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  line-height: 1.75;
}
.header_nav_list_item a:hover {
  opacity: 0.7;
}
.header_nav_list_item a .en {
  font-size: 0.9375rem;
  font-weight: 400;
  display: block;
  color: #808080;
}
.header_nav_close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.875rem;
  cursor: pointer;
}
@media (min-width: 769px) {
  .header_nav_close {
    top: 1.875rem;
    right: 1.875rem;
  }
}
.header_nav_close img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.section {
  padding: 2rem 0;
  color: var(--color-gray);
}
@media (min-width: 769px) {
  .section {
    padding: 5rem 0;
  }
}
.section_button {
  margin-top: 1.5rem;
  text-align: center;
}
.section_button a {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding: 1.25em 2em;
  padding-right: 3em;
  border-radius: 3em;
  background: var(--color-blue);
  color: #fff;
  font-size: min(1rem, 4.1025641026vw);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s;
}
@media (min-width: 769px) {
  .section_button a {
    width: auto;
    padding: 1em 2em;
    padding-right: 3em;
    font-size: 1.5rem;
  }
}
.section_button a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.75em;
  height: 0.75em;
  background: url(../img/img_icon_arrow_wh.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
.section_button a:hover {
  transform: translateY(0.25em);
}
.section_button_subtext {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
}
.section_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_title_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  padding-bottom: 0.75em;
  margin: 0 auto 1em;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 769px) {
  .section_title_inner {
    font-size: 2.5rem;
  }
}
.section_title_en {
  display: block;
  position: relative;
  padding-bottom: 0.5em;
}
@media (min-width: 769px) {
  .section_title_en {
    padding-bottom: 0.75em;
  }
}
.section_title_en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 7.5rem;
  height: 0.125rem;
  transform: translateX(-50%);
  background-color: var(--color-navy);
  border-radius: 2px;
}
@media (min-width: 769px) {
  .section_title_en::after {
    height: 0.25rem;
  }
}
.section_title_ja {
  display: block;
  font-size: 1.625rem;
  line-height: 1.25;
}
@media (min-width: 769px) {
  .section_title_ja {
    font-size: 80%;
  }
}
.section_subtitle {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media (min-width: 769px) {
  .section_subtitle {
    font-size: 2.25rem;
  }
}
.section_text {
  color: var(--color-gray);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media (min-width: 769px) {
  .section_text {
    font-size: 1.125rem;
  }
}
.section_text:not(:last-of-type) {
  margin-bottom: 1em;
}
.section_text.text_en {
  font-weight: 500;
}
.section_notice {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .section_notice {
    font-size: 1.125rem;
  }
}

.key-visual {
  position: relative;
  min-height: 132vw;
  border-top: 0.625rem solid var(--color-blue);
  background: url(../img/bg_kv_sp.jpg) no-repeat center bottom/cover;
}
@media (min-width: 769px) {
  .key-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 63vw;
    padding: 0;
    background: url(../img/bg_kv_pc.jpg) no-repeat center bottom/cover;
  }
}
@media (min-width: 769px) {
  .key-visual::after {
    content: "";
    width: 82%;
    height: 90%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../img/bg_kv02_pc.png) no-repeat center/contain;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 769px) {
  .key-visual .inner {
    position: relative;
    width: 75%;
    height: auto;
  }
}
.key-visual_logo {
  position: absolute;
  top: -0.625rem;
  left: -7.6923076923vw;
  width: 74.358974359vw;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .key-visual_logo {
    width: 28%;
    left: 0;
    margin-left: 0;
    margin-bottom: 8%;
  }
}
.key-visual_logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.key-visual_title {
  position: absolute;
  width: 88%;
  left: 50%;
  bottom: 8vw;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .key-visual_title {
    width: 46.5%;
    left: unset;
    right: 0;
    bottom: 7vw;
    transform: unset;
  }
}
.key-visual_title img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.key-visual_subtitle {
  width: 47%;
  position: absolute;
  top: 16vw;
  right: 4%;
}
@media (min-width: 769px) {
  .key-visual_subtitle {
    width: 29.5%;
    top: 6vw;
    right: 0;
  }
}
.key-visual_subtitle img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1025px) {
  .service_content {
    margin-top: -2.5rem;
    padding-top: 2.5rem;
    background: url(../img/bg_service_bag.png) no-repeat top right/16.5% auto;
  }
}

.price {
  background-color: var(--color-yellow);
}
.price_title {
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 769px) {
  .price_title {
    margin-bottom: 0.625rem;
  }
}
.price_title img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 769px) {
  .price_title img {
    width: 50%;
  }
}
.price_volume {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-direction: column;
}
@media (min-width: 769px) {
  .price_volume {
    flex-direction: row;
    padding: 0 3.75rem;
  }
}
.price_volume_pic {
  flex: 1;
}
@media (min-width: 769px) {
  .price_volume_pic {
    width: 31.25rem;
    flex: unset;
  }
}
.price_volume_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.price_volume_desc {
  width: 100%;
  background: var(--color-navy);
  border-radius: 1.125rem;
  padding: 1.25rem;
  margin-top: -10%;
  box-sizing: border-box;
  color: #fff;
}
@media (min-width: 769px) {
  .price_volume_desc {
    flex: 1;
    padding: 1.875rem;
    margin-top: 0;
    position: relative;
    left: -1.25rem;
  }
}
.price_volume_desc_title {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 769px) {
  .price_volume_desc_title {
    font-size: 2.75rem;
  }
}
.price_volume_desc_title .text_xl {
  font-size: 156.25%;
}
@media (min-width: 769px) {
  .price_volume_desc_title .text_xl {
    font-size: 4rem;
  }
}
.price_volume_desc_title .text_sm {
  font-size: 56.25%;
}
@media (min-width: 769px) {
  .price_volume_desc_title .text_sm {
    font-size: 1.6875rem;
  }
}
.price_volume_desc_guide {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .price_volume_desc_guide {
    font-size: 1.6875rem;
  }
}
.price_volume_desc_guide_title {
  display: block;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid;
  font-size: 70%;
}
@media (min-width: 769px) {
  .price_volume_desc_guide_title {
    font-size: 1.25rem;
  }
}
.price_volume_example {
  margin: 2.5rem -1.25rem 0;
  background: #F4FBFF;
}
@media (min-width: 769px) {
  .price_volume_example {
    margin: 1.25rem 0;
  }
}
.price_volume_example_title {
  padding: 0.5em;
  background: var(--color-navy);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
@media (min-width: 769px) {
  .price_volume_example_title {
    font-size: 1.75rem;
  }
}
.price_volume_example_list {
  display: grid;
  gap: 0.25rem;
  padding: 0.625rem;
  border: 2px solid #53B8E9;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (min-width: 769px) {
  .price_volume_example_list {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    row-gap: 0.625rem;
    padding: 1.25rem;
    font-size: 1.5rem;
  }
}
.price_volume_example_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.75em;
}
.price_volume_example_list_wrapper {
  padding: 1.25rem;
}
@media (min-width: 769px) {
  .price_volume_example_list_wrapper {
    padding: 1.25rem 2.5rem 2.5rem;
  }
}
.price_volume_example_text {
  padding: 0.5em;
  background: #53B8E9;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .price_volume_example_text {
    font-size: 1.75rem;
  }
}

.howto {
  background: #F6F7F7;
}
.howto_title {
  padding-left: 5vw;
}
@media (min-width: 769px) {
  .howto_title {
    padding-left: 0;
  }
}
.howto_title_inner {
  margin-top: 4vw;
}
@media (min-width: 769px) {
  .howto_title_inner {
    margin-top: 1.25rem;
  }
}
.howto_title_inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 4vw;
  left: -10%;
  background: url(../img/img_ponita01.svg) no-repeat center right/contain;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-100%);
}
@media (min-width: 769px) {
  .howto_title_inner::before {
    height: 120%;
    bottom: 1.25rem;
  }
}
.howto_list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 769px) {
  .howto_list {
    flex-direction: row;
  }
}
.howto_list_item {
  width: 100%;
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.5;
}
.howto_list_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.howto_list_title {
  margin: 0.75em auto;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .howto_list_title {
    margin: 1.5em auto 0.75em;
    text-align: left;
  }
}
.howto_list_text {
  font-weight: 400;
}
.howto_list_notice {
  margin-top: 0.75em;
  font-size: 0.75rem;
}
.howto_list_button a {
  padding: 0.5em 2em;
}
@media (min-width: 769px) {
  .howto_list_button a {
    width: 100%;
    font-size: 1rem;
  }
}
@media (min-width: 769px) {
  .howto_list_button_subtext {
    font-size: 0.9375rem;
  }
}

@media (min-width: 769px) {
  .about_title_inner {
    margin-top: 1.875rem;
  }
}
@media (min-width: 769px) {
  .about_title_inner::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: -5%;
    bottom: 1.875rem;
    background: url(../img/img_ponita02.svg) no-repeat center right/contain;
    z-index: 0;
    pointer-events: none;
    transform: translateX(-100%);
  }
}
.about_pic {
  margin-top: 1.25rem;
  text-align: center;
}
@media (min-width: 769px) {
  .about_pic {
    width: 60%;
    margin: 2.5rem auto;
  }
}

.stores {
  background: var(--color-lightblue);
}
.stores_time {
  margin-bottom: 3em;
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 769px) {
  .stores_time {
    margin-bottom: 4em;
    font-size: 1.125rem;
  }
}
.stores_list {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 769px) {
  .stores_list {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}
.stores_list_header {
  display: grid;
  grid-template-columns: 1fr 6em;
}
@media (min-width: 769px) {
  .stores_list_header {
    grid-template-columns: 1fr 10em;
  }
}
.stores_list_title {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .stores_list_title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    -moz-column-gap: 0.5em;
         column-gap: 0.5em;
  }
}
.stores_list_title_en {
  display: block;
  font-size: 80%;
}
@media (min-width: 769px) {
  .stores_list_title_en {
    display: inline-block;
  }
}
@media (min-width: 769px) {
  .stores_list_title_en.pc-w100 {
    display: block;
    width: 100%;
  }
}
.stores_list_button {
  margin: 0;
  text-align: right;
}
.stores_list_button a {
  display: inline-block;
  width: auto;
  padding: 0.5em 1em;
  padding-right: 1.5em;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.stores_list_button a::after {
  right: 0.5em;
}
.stores_list_desc {
  margin: 0.5em auto;
  font-size: 1.25rem;
  line-height: 1.5;
}
.stores_list_desc_item {
  display: flex;
  align-items: flex-start;
}
.stores_list_desc_title {
  width: 3em;
  font-weight: 700;
}
.stores_list_desc_text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
}
.stores_list_desc_text.text_sm {
  padding-top: 0.25em;
  font-size: 80%;
  font-weight: 500;
}
.stores_list_map {
  border-radius: 0.5rem;
  overflow: hidden;
}
.stores_list_map iframe {
  width: 100%;
  height: 50vw;
}
@media (min-width: 769px) {
  .stores_list_map iframe {
    height: 15rem;
  }
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .faq_list {
    font-size: 1.5rem;
  }
}
.faq_list_question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75em;
  padding: 0.75em;
  background: var(--color-blue);
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 769px) {
  .faq_list_question {
    padding: 0.5em 1.5em;
    padding-right: 1em;
  }
}
.faq_list_question::before {
  content: "Q";
  font-size: 140%;
}
.faq_list_question::after {
  content: "";
  width: 1.25em;
  height: 1.25em;
  background: #fff url(../img/img_icon_arrow.svg) no-repeat center/80% auto;
  border-radius: 50%;
  transform: rotate(90deg);
  transition: 0.35s;
}
.faq_list_question.open::after {
  transform: rotate(-90deg);
}
.faq_list_question_inner {
  flex: 1;
}
.faq_list_answer {
  display: none;
  margin-top: 1em;
  padding: 1em;
  background: var(--color-lightblue);
  border-radius: 0.5rem;
  line-height: 1.75;
}
@media (min-width: 769px) {
  .faq_list_answer {
    padding: 1em 2em;
    font-size: 1rem;
  }
}
.faq_list_answer p + * {
  margin-top: 1em;
}

.contact {
  background: #F6F7F7;
}
.contact_container {
  padding: 1.25rem;
  background: #fff;
  border-radius: 1.25rem;
}
.contact_information {
  padding: 0.5em 0;
  font-size: 1.5rem;
}
@media (min-width: 769px) {
  .contact_information {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.contact_information::before {
  content: "";
  display: block;
  width: 100%;
  height: 3em;
  margin: 0.75em auto 1.75em;
  background: url(../img/icon_mail.svg) no-repeat center/contain;
}
@media (min-width: 769px) {
  .contact_information::before {
    width: 40%;
    margin: 0;
  }
}
@media (min-width: 769px) {
  .contact_information_inner {
    flex: 1;
    padding: 2.5rem 0;
    padding-right: 5rem;
  }
}
.contact_information_title {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.contact_information_text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .contact_information_button {
    margin-top: 1.5em;
    text-align: left;
  }
}
.contact_information_button a {
  padding: 1em 2em;
}
@media (min-width: 769px) {
  .contact_information_button a {
    min-width: 27.5rem;
    max-width: 100%;
    padding: 0.75em 2em;
  }
}
@media (min-width: 769px) {
  .contact_button {
    margin-top: 3em;
  }
}
.contact_button a {
  padding: 1em 2em;
}
@media (min-width: 769px) {
  .contact_button a {
    min-width: 27.5rem;
    max-width: 100%;
    padding: 0.75em 2em;
    padding-right: 3em;
  }
}

.footer {
  background: #005BAB;
  color: #fff;
}
.footer_wrapper {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
}
@media (min-width: 769px) {
  .footer_wrapper {
    flex-direction: row;
  }
}
.footer_left {
  width: 100%;
  text-align: center;
}
@media (min-width: 769px) {
  .footer_left {
    flex: 1;
    text-align: left;
  }
}
.footer_right {
  width: 100%;
}
@media (min-width: 769px) {
  .footer_right {
    width: auto;
  }
}
.footer_sns {
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .footer_sns {
    margin-bottom: 0;
  }
}
.footer_sns_title {
  margin-bottom: 1em;
  font-size: 1.125rem;
  font-weight: 800;
  text-align: center;
}
.footer_sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.footer_sns_list_item {
  flex: 1;
  text-align: center;
}
.footer_sns_list_item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.footer_sns_list_item img {
  width: 2.75rem;
  height: 2.75rem;
}
.footer_sns_list_item .title {
  margin-top: 1em;
  font-size: 0.9375rem;
}
.footer_logo {
  margin-bottom: 1rem;
}
.footer_logo img {
  width: 14.375rem;
  height: auto;
}
@media (min-width: 769px) {
  .footer_logo img {
    width: 22.5rem;
  }
}
.footer_copyright {
  font-size: 0.75rem;
}
@media (min-width: 769px) {
  .footer_copyright {
    font-size: 0.875rem;
  }
}
/*# sourceMappingURL=style.css.map */